.sc-nav,
.sc-nav__inner {
  display: flex;
  align-items: center
}

.sc-airport-card:hover .sc-airport-card__arrow svg,
.sc-station-card:hover .sc-station-card__arrow svg {
  stroke: var(--sc-bg-dark)
}

.sc-about__eyebrow,
.sc-airport-card__tag,
.sc-content__req h3,
.sc-split__eyebrow,
.sc-station-card__tag,
.sc-stations__eyebrow,
.sc-toc__label {
  text-transform: uppercase
}

#topBtn,
.auth-submit,
.contact-submit,
.faq-question,
.fb-submit,
.sc-airport-card,
.sc-btn,
.sc-hamburger,
.sc-mobile__link,
.sc-nav__link,
.sc-toast__close {
  cursor: pointer
}

:root {
  --sc-bg: #333d29;
  --sc-bg-dark: #27311f;
  --sc-bg-drop: #2a3422;
  --sc-accent: #c8a96e;
  --sc-text: #e8e4d9;
  --sc-muted: #9fa88e;
  --sc-hover-bg: rgba(200, 169, 110, 0.1);
  --sc-border: rgba(200, 169, 110, 0.18);
  --sc-height: 68px;
  --sc-font-nav: 'DM Sans', sans-serif;
  --sc-font-logo: 'Bebas Neue', sans-serif;
  --sc-radius: 6px;
  --sc-drop-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --sc-bg: #333d29;
  --sc-accent: #c8a96e;
  --sc-accent-dim: rgba(200, 169, 110, 0.12);
  --sc-text: #1e251a;
  --sc-muted: #5a6350;
  --sc-border: rgba(51, 61, 41, 0.12);
  --sc-bg-section: #f5f3ee;
  --sc-bg-card: #ffffff;
  --sc-font-nav: 'DM Sans', sans-serif;
  --sc-font-logo: 'Bebas Neue', sans-serif;
  --sc-bg: #333d29;
  --sc-bg-dark: #27311f;
  --sc-bg-deeper: #1e251a;
  --sc-accent: #c8a96e;
  --sc-text: #e8e4d9;
  --sc-muted: #8a9478;
  --sc-border: rgba(200, 169, 110, 0.15);
  --sc-font-nav: 'DM Sans', sans-serif;
  --sc-font-logo: 'Bebas Neue', sans-serif
}

*,
::after,
::before {
  box-sizing: border-box
}

body {
  margin: 0px !important;
  padding: 0px !important;
  box-sizing: border-box;
  font-family: var(--sc-font-nav)
}
.sc-nav {
  background: var(--sc-bg);
  height: var(--sc-height);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--sc-border)
}

.sc-nav__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  justify-content: space-between
}

.sc-logo,
.sc-nav__links {
  align-items: center;
  display: flex
}

.sc-logo {
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0
}

.sc-logo__icon img {
  width: 65px;
  height: 65px
}

.sc-logo__text {
  font-family: var(--sc-font-logo);
  font-size: 1.65rem;
  letter-spacing: .06em;
  color: var(--sc-text);
  line-height: 1
}

.sc-mobile__link,
.sc-nav__link {
  font-family: var(--sc-font-nav)
}

.sc-logo__text span {
  color: var(--sc-accent)
}

.sc-nav__links {
  list-style: none;
  gap: 2px
}

.sc-nav__item {
  position: relative
}

.sc-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: var(--sc-text);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .02em;
  border-radius: var(--sc-radius);
  transition: background .18s, color .18s;
  white-space: nowrap;
  border: none;
  background: 0 0
}

.sc-dropdown__link,
.sc-mobile__link {
  letter-spacing: .01em;
  text-decoration: none
}

.sc-nav__item:hover>.sc-nav__link,
.sc-nav__link:hover {
  background: var(--sc-hover-bg);
  color: var(--sc-accent)
}

.sc-nav__link--cta {
  background: var(--sc-accent);
  color: var(--sc-bg-dark) !important;
  font-weight: 500;
  padding: 8px 18px;
  margin-left: 6px
}

.sc-nav__link--cta:hover {
  background: #d9bc84 !important;
  color: var(--sc-bg-dark) !important
}

.sc-mobile__link:hover,
.sc-mobile__sub-link:hover {
  color: var(--sc-accent)
}

.sc-chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s;
  flex-shrink: 0
}

.sc-nav__item.sc-open>.sc-nav__link .sc-chevron,
.sc-nav__item:hover>.sc-nav__link .sc-chevron {
  transform: rotate(180deg)
}

.sc-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--sc-bg-drop);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  box-shadow: var(--sc-drop-shadow);
  min-width: 210px;
  padding: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  pointer-events: none
}

.sc-dropdown__link,
.sitemap-list li a {
  transition: background .15s, color .15s
}

.sc-nav__item.sc-open .sc-dropdown,
.sc-nav__item:hover .sc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(2);
  pointer-events: auto
}

.sc-dropdown__link {
  display: block;
  padding: 9px 14px;
  color: var(--sc-muted);
  font-size: .845rem;
  border-radius: 4px
}

.sc-dropdown__link:hover {
  background: var(--sc-hover-bg);
  color: var(--sc-accent)
}

.sc-dropdown__divider {
  height: 1px;
  background: var(--sc-border);
  margin: 4px 6px
}

.sc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: 0 0;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  padding: 8px;
  flex-shrink: 0
}

.sc-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--sc-text);
  border-radius: 2px;
  transition: transform .28s, opacity .28s, width .28s;
  transform-origin: center
}

.sc-hamburger.sc-active span:first-child {
  transform: translateY(6.5px) rotate(45deg)
}

.sc-hamburger.sc-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.sc-hamburger.sc-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.sc-mobile-menu {
  display: none;
  position: fixed;
  top: var(--sc-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sc-bg-dark);
  overflow-y: auto;
  padding: 1rem 1.5rem 2rem;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1)
}

.sc-mobile-menu.sc-open {
  transform: translateX(0)
}

.sc-mobile__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  color: var(--sc-text);
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(200, 169, 110, .1);
  background: 0 0;
  border: none;
  width: 100%;
  text-align: left
}

.sc-mobile__chevron {
  width: 16px;
  height: 16px;
  stroke: var(--sc-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s
}

.sc-mobile__sub {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s
}

.sc-mobile__sub.sc-open {
  max-height: 500px
}

.sc-mobile__sub-link {
  display: block;
  padding: 10px 16px;
  color: var(--sc-muted);
  text-decoration: none;
  font-size: .9rem;
  border-bottom: 1px solid rgba(200, 169, 110, .06);
  transition: color .15s
}

.sc-mobile__cta {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 13px;
  background: var(--sc-accent);
  color: var(--sc-bg-dark);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--sc-radius);
  font-size: .95rem;
  letter-spacing: .02em
}

@media (max-width:960px) {
  .sc-nav__links {
    display: none
  }

  .sc-hamburger {
    display: flex
  }

  .sc-mobile-menu {
    display: block
  }
}

.hero {
  background-color: #f5f2eb;
  overflow: hidden
}

.hero-container {
  display: flex;
  align-items: stretch;
  min-height: 480px;
  max-width: 100%
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 3rem 5%;
  z-index: 2
}

.hero-left h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin: 0 0 1rem
}

.hero-highlight {
  background-color: #b8a060;
  color: #111;
  padding: 2px 6px;
  display: inline
}

.hero-left p {
  font-size: .95rem;
  color: #444;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 0 2rem
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background-color: #333d29;
  color: #fff;
  text-decoration: none;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  width: fit-content;
  transition: opacity .2s
}

.cta-btn:hover {
  opacity: .85;
  color: #c8a96e
}

.cta-btn img {
  width: 30px;
  height: 30px
}

.hero-right {
  flex: 1;
  position: relative;
  width: 100%;
  clip-path: polygon(100% 0%, 82.75% 23.5%, 100% 100%, 0% 100%, 0% 0%);
background-color: #000000;
  overflow: hidden;
  min-height: 400px
}


.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.not-found,
body {
  min-height: 100vh
}

.sc-airport-card,
.sc-service-card {
  position: relative;
  overflow: hidden
}

.sc-airports__title span,
.sc-services__title span {
  color: var(--sc-accent)
}

.sc-content,
.sc-services,
.sc-stations {
  background: var(--sc-bg-section);
  padding: 5rem 2rem;
  font-family: var(--sc-font-nav)
}

.sc-airports__inner,
.sc-services__inner,
.sc-stations__inner {
  max-width: 1200px;
  margin: 0 auto
}

.contact-header,
.sc-airports__header,
.sc-services__header,
.sc-stations__header {
  text-align: center;
  margin-bottom: 3.5rem
}

.sc-airports__eyebrow,
.sc-services__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sc-accent);
  background: var(--sc-accent-dim);
  border: 1px solid var(--sc-border);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1rem
}

.sc-services__title,
.sc-stations__title {
  font-family: var(--sc-font-logo);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: .05em;
  color: var(--sc-bg-dark);
  line-height: 1.05;
  margin-bottom: 1rem
}

.sc-services__subtitle,
.sc-stations__subtitle {
  font-size: .95rem;
  color: var(--sc-bg-dark);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7
}

.sc-airports__divider,
.sc-services__divider,
.sc-stations__divider {
  width: 48px;
  height: 2px;
  background: var(--sc-accent);
  margin: 1.25rem auto 0;
  border-radius: 2px
}

.sc-services__grid,
.sc-stations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem
}

.sc-service-card {
  background: var(--sc-bg-card);
  border: 1px solid var(--sc-border);
  border-radius: 10px;
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  transition: border-color .22s, transform .22s, box-shadow .22s
}

.sc-service-card:hover {
  border-color: rgba(200, 169, 110, .5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(51, 61, 41, .1)
}

.sc-service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--sc-accent-dim);
  border: 1px solid var(--sc-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: background .22s, border-color .22s
}

.sc-service-card:hover .sc-service-card__icon {
  background: rgba(200, 169, 110, .25);
  border-color: rgba(200, 169, 110, .45)
}

.sc-service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sc-accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-service-card__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--sc-bg-dark);
  margin-bottom: .6rem;
  line-height: 1.3
}

.sc-service-card__desc {
  font-size: .845rem;
  color: var(--sc-muted);
  line-height: 1.65
}

.sc-about,
.sc-airports {
  background: var(--sc-bg-deeper);
  padding: 5rem 2rem;
  font-family: var(--sc-font-nav)
}

.sc-airports__title {
  font-family: var(--sc-font-logo);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: .05em;
  color: var(--sc-text);
  line-height: 1.05;
  margin-bottom: 1rem
}

.sc-airports__subtitle {
  font-size: .95rem;
  color: var(--sc-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7
}

.sc-airports__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem
}

.sc-airports__grid .sc-airport-card:nth-child(4) {
  grid-column: 1/2;
  margin-left: auto;
  width: 100%
}

.sc-airports__grid .sc-airport-card:nth-child(5) {
  grid-column: 2/3;
  width: 100%
}

.sc-airport-card {
  border-radius: 12px;
  aspect-ratio: 4/3;
  border: 1px solid var(--sc-border);
  display: block;
  text-decoration: none
}

.sc-airport-card__img,
.sc-station-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s
}

.sc-airport-card:hover .sc-airport-card__img {
  transform: scale(1.07)
}

.sc-airport-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 12, .92) 0, rgba(15, 20, 12, .45) 45%, rgba(15, 20, 12, .1) 100%);
  transition: background .3s
}

.sc-airport-card:hover .sc-airport-card__overlay {
  background: linear-gradient(to top, rgba(15, 20, 12, .95) 0, rgba(15, 20, 12, .55) 50%, rgba(15, 20, 12, .2) 100%)
}

.sc-airport-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.4rem 1.4rem
}

.sc-airport-card__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--sc-accent);
  background: var(--sc-accent-dim);
  border: 1px solid rgba(200, 169, 110, .25);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: .5rem
}

.sc-airport-card__name {
  font-family: var(--sc-font-logo);
  font-size: 1.55rem;
  letter-spacing: .05em;
  color: var(--sc-text);
  line-height: 1.1;
  margin-bottom: .35rem
}

.sc-airport-card__desc {
  font-size: .8rem;
  color: rgba(232, 228, 217, .65);
  line-height: 1.5;
  max-width: 280px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s, transform .28s
}

.sc-station-card__tag,
.sc-stations__eyebrow,
.sc-stations__title span {
  color: var(--sc-accent)
}

.sc-airport-card__arrow,
.sc-station-card__arrow {
  align-items: center;
  transform: scale(.8);
  opacity: 0
}

.sc-airport-card:hover .sc-airport-card__desc {
  opacity: 1;
  transform: translateY(0)
}

.sc-airport-card__arrow {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sc-accent-dim);
  border: 1px solid var(--sc-border);
  display: flex;
  justify-content: center;
  transition: opacity .25s, transform .25s, background .2s
}

.sc-airport-card__arrow svg {
  width: 15px;
  height: 15px;
  stroke: var(--sc-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-airport-card:hover .sc-airport-card__arrow {
  opacity: 1;
  transform: scale(1);
  background: var(--sc-accent)
}

.sc-stations__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  background: var(--sc-accent-dim);
  border: 1px solid rgba(200, 169, 110, .3);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1rem
}

.sc-stations__grid .sc-station-card:nth-child(5) {
  grid-column: 1/2
}

.sc-stations__grid .sc-station-card:nth-child(6) {
  grid-column: 2/3
}

.sc-stations__grid .sc-station-card:nth-child(7) {
  grid-column: 3/4
}

.sc-station-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
  border: 1px solid var(--sc-border);
  box-shadow: 0 2px 12px rgba(51, 61, 41, .07);
  transition: box-shadow .28s, transform .28s
}

.sc-station-card:hover {
  box-shadow: 0 12px 36px rgba(51, 61, 41, .16);
  transform: translateY(-4px)
}

.sc-station-card:hover .sc-station-card__img {
  transform: scale(1.07)
}

.sc-station-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 12, .85) 0, rgba(15, 20, 12, .35) 45%, rgba(15, 20, 12, .05) 100%);
  transition: background .3s
}

.sc-station-card:hover .sc-station-card__overlay {
  background: linear-gradient(to top, rgba(15, 20, 12, .92) 0, rgba(15, 20, 12, .5) 50%, rgba(15, 20, 12, .15) 100%)
}

.sc-station-card__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sc-accent-dim);
  border: 1px solid rgba(200, 169, 110, .3);
  display: flex;
  justify-content: center;
  transition: opacity .25s, transform .25s, background .2s
}

.sc-station-card__arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--sc-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-station-card:hover .sc-station-card__arrow {
  opacity: 1;
  transform: scale(1);
  background: var(--sc-accent)
}

.sc-station-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.2rem 1.2rem
}

.sc-station-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .1em;
  background: var(--sc-accent-dim);
  border: 1px solid rgba(200, 169, 110, .25);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: .45rem
}

.sc-station-card__tag svg {
  width: 10px;
  height: 10px;
  stroke: var(--sc-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-station-card__name {
  font-family: var(--sc-font-logo);
  font-size: 1.35rem;
  letter-spacing: .05em;
  color: #e8e4d9;
  line-height: 1.1;
  margin-bottom: .3rem
}

.sc-station-card__desc {
  font-size: .78rem;
  color: rgba(232, 228, 217, .6);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s, transform .25s
}

.sc-about__stat-num,
.sc-about__title {
  line-height: 1;
  font-family: var(--sc-font-logo)
}

.sc-station-card:hover .sc-station-card__desc {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width:1024px) {
  .sc-services__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sc-stations__grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .sc-stations__grid .sc-station-card:nth-child(5),
  .sc-stations__grid .sc-station-card:nth-child(6),
  .sc-stations__grid .sc-station-card:nth-child(7) {
    grid-column: auto
  }
}

@media (max-width:680px) {
  .sc-stations__grid {
    grid-template-columns: 1fr
  }

  .sc-stations {
    padding: 3.5rem 1.25rem
  }
}

@media (max-width:420px) {
  .sc-stations__grid {
    grid-template-columns: 1fr
  }

  .sc-station-card {
    aspect-ratio: 16/9
  }
}

.sc-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start
}

.sc-about__left,
.sc-content__sidebar {
  position: sticky;
  top: 5rem
}

.sc-about__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--sc-accent);
  background: var(--sc-accent-dim);
  border: 1px solid var(--sc-border);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1.1rem
}

.sc-about__title {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  letter-spacing: .05em;
  color: var(--sc-text);
  margin-bottom: 1.5rem
}

.sc-about__stat-num,
.sc-about__title span {
  color: var(--sc-accent)
}

.sc-about__divider {
  width: 48px;
  height: 2px;
  background: var(--sc-accent);
  border-radius: 2px;
  margin-bottom: 1.75rem
}

.sc-about__stats {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.sc-about__stat {
  background: var(--sc-bg-card);
  border: 1px solid var(--sc-border);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem
}

.sc-about__stat-icon {
  width: 40px;
  height: 40px;
  background: var(--sc-accent-dim);
  border: 1px solid var(--sc-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sc-about__stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sc-accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-about__stat-num {
  font-size: 1.6rem;
  letter-spacing: .04em
}

.sc-content__cta-btn,
.sc-split {
  font-family: var(--sc-font-nav)
}

.sc-about__stat-label {
  font-size: .8rem;
  color: var(--sc-muted);
  margin-top: 1px
}

.sc-about__right {
  display: flex;
  flex-direction: column;
  gap: 1.1rem
}

.sc-about__para {
  font-size: .95rem;
  color: var(--sc-muted);
  line-height: 1.8;
  padding-left: 1.1rem;
  border-left: 2px solid transparent;
  transition: border-color .2s, color .2s
}

.sc-about__para:first-child,
.sc-about__para:hover {
  border-left-color: var(--sc-accent);
  color: var(--sc-text)
}

.sc-about__para:first-child {
  font-size: 1.05rem;
  font-weight: 400
}

.sc-about__booking-pill,
.sc-about__payment-pill {
  border: 1px solid var(--sc-border);
  padding: 5px 13px;
  font-size: .8rem
}

.sc-about__booking {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .5rem
}

.sc-about__booking-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--sc-accent);
  background: var(--sc-accent-dim);
  border-radius: 20px;
  letter-spacing: .02em
}

.sc-about__payment-pill,
.sc-content__body ul,
.sc-toc {
  background: var(--sc-bg-card)
}

.sc-about__booking-pill svg {
  width: 13px;
  height: 13px;
  stroke: var(--sc-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0
}

.sc-about__payment {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .25rem
}

.sc-about__payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sc-muted);
  border-radius: 20px
}

.sc-about__payment-pill svg {
  width: 13px;
  height: 13px;
  stroke: var(--sc-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0
}

.sc-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.6fr;
  gap: 3.5rem;
  align-items: start
}

.sc-toc {
  border: 1px solid var(--sc-border);
  border-radius: 10px;
  padding: 1.4rem 1.3rem
}

.sc-toc__label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--sc-accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px
}

.sc-toc__label svg {
  width: 13px;
  height: 13px;
  stroke: var(--sc-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.sc-toc__list a {
  display: block;
  font-size: .8rem;
  color: var(--sc-muted);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 5px;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
  line-height: 1.4
}

.sc-toc__list a:hover {
  color: var(--sc-bg-drop);
  border-left-color: var(--sc-accent);
  background: var(--sc-accent-dim)
}

.sc-content__body {
  display: flex;
  flex-direction: column;
  gap: 2rem
}

.sc-content__body h2 {
  font-family: var(--sc-font-logo);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: .04em;
  color: var(--sc-bg-drop);
  line-height: 1.1;
  padding-top: 1rem;
  margin-bottom: -.75rem
}

.sc-content__body h2:first-child {
  padding-top: 0
}

.sc-content__body h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--sc-accent);
  border-radius: 2px;
  margin-top: .5rem
}

#topBtn,
.sc-content__cta h3::after {
  display: none
}

.sc-content__body h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--sc-bg-drop);
  margin-bottom: -.75rem;
  padding-top: .25rem
}

.sc-content__body p {
  font-size: .925rem;
  color: var(--sc-muted);
  line-height: 1.85
}

.sc-content__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  border: 1px solid var(--sc-border);
  border-radius: 10px;
  padding: 1.3rem 1.4rem
}

.sc-content__body ul li {
  font-size: .9rem;
  color: var(--sc-muted);
  line-height: 1.65;
  padding-left: 1.3rem;
  position: relative
}

.sc-content__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 6px;
  background: var(--sc-accent);
  border-radius: 50%;
  flex-shrink: 0
}

.sc-content__body ul li strong {
  color: var(--sc-bg-drop);
  font-weight: 500
}

.sc-content__cta {
  background: var(--sc-bg);
  border-radius: 10px;
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.sc-content__cta h3 {
  font-family: var(--sc-font-logo);
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: #e8e4d9;
  margin-bottom: 0;
  padding-top: 0
}

.sc-content__cta p {
  color: #8a9478;
  font-size: .88rem
}

.sc-content__cta-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .4rem
}

.sc-content__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .84rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .18s
}

.sc-content__cta-btn--primary {
  background: var(--sc-accent);
  color: var(--sc-bg-dark)
}

.sc-content__cta-btn--primary:hover {
  background: #d9bc84
}

.sc-content__cta-btn--ghost {
  background: rgba(200, 169, 110, .12);
  color: var(--sc-accent);
  border: 1px solid rgba(200, 169, 110, .25)
}

.sc-content__req,
.sc-split__badge {
  border: 1px solid var(--sc-border)
}

.sc-content__cta-btn--ghost:hover {
  background: rgba(200, 169, 110, .2)
}

.sc-content__cta-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-content__req {
  background: var(--sc-bg-card);
  border-left: 3px solid var(--sc-accent);
  border-radius: 0 10px 10px 0;
  padding: 1.3rem 1.4rem
}

.sc-content__req h3 {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--sc-accent);
  margin-bottom: .75rem;
  padding-top: 0
}

.sc-content__req p {
  font-size: .88rem;
  color: var(--sc-muted);
  line-height: 1.7
}

.sc-content__req p+p {
  margin-top: .5rem
}

.sc-split {
  padding: 5rem 2rem
}

.sc-split--alt {
  background: var(--sc-bg-dark)
}

.sc-split__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.sc-split--flip .sc-split__inner {
  direction: rtl
}

.sc-split--flip .sc-split__inner>* {
  direction: ltr
}

.sc-split__img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--sc-border)
}

.sc-split__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.sc-split__img-wrap:hover img {
  transform: scale(1.04)
}

.sc-split__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 110, .08) 0, transparent 50%);
  pointer-events: none
}

.sc-split__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(27, 33, 22, .88);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .7rem
}

.sc-toast-wrap,
.sc-whatsapp {
  position: fixed;
  bottom: 1.5rem
}

.sc-split__badge-icon,
.sc-split__eyebrow {
  border: 1px solid var(--sc-border);
  background: var(--sc-accent-dim)
}

.sc-split__badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sc-split__badge-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--sc-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-split__badge-num {
  font-family: var(--sc-font-logo);
  font-size: 1.35rem;
  letter-spacing: .04em;
  color: var(--sc-accent);
  line-height: 1
}

.sc-split__badge-label {
  font-size: .75rem;
  color: var(--sc-muted);
  margin-top: 1px
}

.sc-split__eyebrow,
.sc-split__title span {
  color: var(--sc-accent)
}

.sc-split__content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem
}

.sc-split__eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .13em;
  padding: 4px 14px;
  border-radius: 20px
}

.sc-split__title {
  font-family: var(--sc-font-logo);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: .04em;
  color: var(--sc-text);
  line-height: 1.05
}

.sc-btn,
.sc-footer,
body {
  font-family: var(--sc-font-nav)
}

.sc-split__desc {
  font-size: .925rem;
  color: var(--sc-muted);
  line-height: 1.8
}

.sc-split__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.sc-split__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--sc-text)
}

.sc-split__list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--sc-accent-dim);
  border: 1px solid var(--sc-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a96e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center
}

.sc-split__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .18s, transform .15s, box-shadow .18s;
  border: none
}

.sc-btn--ghost,
.sc-btn--store {
  border: 1px solid var(--sc-border)
}

.sc-btn:hover {
  transform: translateY(-1px)
}

.sc-btn--primary {
  background: var(--sc-accent);
  color: var(--sc-bg-dark);
  box-shadow: 0 4px 16px rgba(200, 169, 110, .25)
}

.sc-btn--ghost,
.sc-footer__logo-text span {
  color: var(--sc-accent)
}

.sc-btn--primary:hover {
  background: #d9bc84;
  box-shadow: 0 6px 20px rgba(200, 169, 110, .35)
}

.sc-btn--ghost {
  background: var(--sc-accent-dim)
}

.sc-btn--ghost:hover {
  background: rgba(200, 169, 110, .18)
}

.sc-btn--store {
  background: var(--sc-bg-card);
  color: var(--sc-text);
  padding: 10px 20px
}

.sc-btn--store:hover {
  background: #303d26
}

.sc-btn img,
.sc-btn svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0
}

.sc-btn svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-btn--primary svg {
  stroke: var(--sc-bg-dark)
}

.sc-btn__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2
}

.sc-btn__sub {
  font-size: .65rem;
  font-weight: 400;
  opacity: .7;
  letter-spacing: .02em
}

.sc-footer__col-title,
.sc-toast__title {
  font-weight: 500;
  text-transform: uppercase
}

@media (max-width:860px) {

  .sc-about__inner,
  .sc-split__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .sc-about__left,
  .sc-content__sidebar {
    position: static
  }

  .sc-about__stats {
    flex-direction: row;
    flex-wrap: wrap
  }

  .sc-about__stat {
    flex: 1 1 160px
  }

  .sc-content__inner {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .sc-toc {
    display: none
  }

  .sc-split--flip .sc-split__inner {
    direction: ltr
  }

  .sc-split {
    padding: 3.5rem 1.25rem
  }
}

.bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #eff6e8;
  color: #000;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px
}

.bottom-footer p {
  margin: 0;
  letter-spacing: .5px
}

#topBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #333d29;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
  z-index: 999;
  transition: .25s
}

#topBtn img {
  width: 22px;
  height: 22px;
  object-fit: contain
}

#topBtn:hover {
  transform: translateY(-5px) scale(1.05);
  background: #677b53
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0 !important
}

body {
  background: var(--sc-bg-section);
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.sc-footer__logo,
.sc-footer__social-btn {
  align-items: center;
  text-decoration: none
}

.sc-footer {
  background: var(--sc-bg-dark);
  border-top: 1px solid var(--sc-border);
  padding: 3.5rem 2rem 0
}

.sc-footer__inner {
  max-width: 1280px;
  margin: 0 auto
}

.sc-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem 2rem
}

.sc-footer__logo {
  display: flex;
  gap: 10px;
  margin-bottom: 1.25rem
}

.sc-footer__logo-icon img {
  width: 65;
  height: 65
}

.sc-footer__logo-text {
  font-family: var(--sc-font-logo);
  font-size: 1.55rem;
  letter-spacing: .06em;
  color: var(--sc-text);
  line-height: 1
}

.auth-group input,
.auth-submit,
.fb-submit,
.verify-digit,
.verify-resend-btn {
  font-family: inherit
}

.sc-footer__tagline {
  font-size: .85rem;
  color: var(--sc-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  max-width: 240px
}

.sc-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: .6rem
}

.sc-footer__contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--sc-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px
}

.sc-footer__contact-item a,
.sc-footer__contact-item p {
  font-size: .845rem;
  color: var(--sc-muted);
  text-decoration: none;
  line-height: 1.5;
  transition: color .15s
}

.sc-footer__contact-item a:hover {
  color: var(--sc-accent)
}

.sc-footer__col-title {
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--sc-accent);
  margin-bottom: 1.1rem
}

.sc-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem
}

.sc-footer__links a {
  font-size: .855rem;
  color: var(--sc-muted);
  text-decoration: none;
  transition: color .15s, padding-left .15s;
  display: inline-block
}

.sc-footer__bottom-links a,
.sc-footer__copy {
  font-size: .8rem;
  color: var(--sc-muted)
}

.sc-footer__links a:hover {
  color: var(--sc-accent);
  padding-left: 4px
}

.sc-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 1.4rem
}

.sc-footer__social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--sc-border);
  display: flex;
  justify-content: center;
  color: var(--sc-muted);
  transition: border-color .18s, color .18s, background .18s
}

.sc-footer__bottom,
.sc-whatsapp {
  align-items: center;
  display: flex
}

.sc-footer__social-btn:hover {
  border-color: var(--sc-accent);
  color: var(--sc-accent);
  background: rgba(200, 169, 110, .08)
}

.sc-footer__social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor
}

.sc-footer__divider {
  border: none;
  border-top: 1px solid var(--sc-border);
  margin: 2.5rem 0 0
}

.sc-footer__bottom {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0 1.4rem;
  flex-wrap: wrap
}

.sc-footer__bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap
}

.sc-footer__bottom-links a {
  text-decoration: none;
  transition: color .15s
}

.sc-footer__bottom-links a:hover,
.sc-toast__body a,
.sc-toast__title {
  color: var(--sc-accent)
}

.sc-whatsapp {
  right: 1.5rem;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none
}

.sc-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45)
}

.sc-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

.sc-toast-wrap {
  left: 1.5rem;
  z-index: 998
}

.sc-toast {
  background: var(--sc-bg);
  border: 1px solid var(--sc-border);
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
  overflow: hidden;
  transform: translateY(0);
  transition: opacity .3s, transform .3s
}

.sc-toast.sc-toast--hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none
}

.sc-toast__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--sc-border);
  background: rgba(200, 169, 110, .08)
}

.sc-toast__title {
  font-size: .78rem;
  letter-spacing: .06em
}

.sc-toast__close {
  background: 0 0;
  border: none;
  color: var(--sc-muted);
  padding: 2px;
  line-height: 1;
  font-size: 1.1rem;
  transition: color .15s
}

.sc-toast__close:hover {
  color: var(--sc-text)
}

.sc-toast__body {
  padding: 11px 14px;
  font-size: .835rem;
  color: var(--sc-muted);
  line-height: 1.55
}

.sc-toast__body a {
  text-decoration: none
}

.auth-forgot a:hover,
.auth-header p a:hover,
.auth-register-link a:hover,
.contact-item a:hover,
.sc-toast__body a:hover {
  text-decoration: underline
}

ol,
ul {
  padding-left: 0
}

img,
svg {
  vertical-align: middle
}

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #f9f9f9
}

.not-found__inner {
  text-align: center;
  max-width: 500px
}

.not-found__code {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: #333d29;
  letter-spacing: -4px;
  margin-bottom: 1rem
}

.not-found__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 1rem
}

.not-found__text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem
}

.btn-primary,
.btn-secondary {
  padding: .75rem 2rem;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none
}

.btn-primary,
.btn-secondary:hover {
  background-color: #333d29;
  color: gold
}

.not-found__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.btn-primary {
  transition: opacity .2s
}

.about-cta-btn:hover,
.auth-submit:hover,
.btn-primary:hover,
.contact-submit:hover,
.fb-submit:hover,
.verify-resend-btn:hover:not(.disabled) {
  opacity: .85
}

.btn-secondary {
  background-color: transparent;
  color: #333d29;
  border: 2px solid #333d29;
  transition: .2s
}

.about-section,
.contact-section,
.faq-section,
.feedback-section,
.sitemap-section {
  background-color: #f5f2eb;
  padding: 5rem 1.5rem
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto
}

.faq-header,
.feedback-header,
.sitemap-header {
  text-align: center;
  margin-bottom: 3rem
}

.faq-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b8a060;
  margin-bottom: .75rem
}

.faq-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #ddd8cc
}

.faq-item {
  border-bottom: 1px solid #ddd8cc
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: 0 0;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: color .2s
}

.about-cta,
.about-header,
.about-intro,
.about-stat,
.fb-submit-wrap,
.map-label {
  text-align: center
}

.faq-question:hover {
  color: #333d29
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #333d29;
  position: relative;
  transition: background .25s, border-color .25s
}

.faq-icon::after,
.faq-icon::before {
  content: '';
  position: absolute;
  background: #333d29;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s, background .25s
}

.faq-icon::before {
  width: 10px;
  height: 2px
}

.faq-icon::after {
  width: 2px;
  height: 10px
}

.faq-question[aria-expanded=true] .faq-icon {
  background: #333d29;
  border-color: #333d29
}

.faq-question[aria-expanded=true] .faq-icon::after,
.faq-question[aria-expanded=true] .faq-icon::before {
  background: #fff
}

.faq-question[aria-expanded=true] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0)
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s
}

.faq-answer>p {
  overflow: hidden;
  margin: 0;
  padding: 0 0 1.25rem;
  font-size: .95rem;
  color: #555;
  line-height: 1.7
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto
}

.about-eyebrow,
.contact-eyebrow,
.feedback-eyebrow,
.sitemap-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b8a060;
  margin-bottom: .6rem
}

.contact-header h1,
.sitemap-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 .75rem
}

.contact-header p,
.feedback-header p,
.sitemap-header p {
  color: #666;
  font-size: 1rem;
  margin: 0
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #333d29;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.contact-item h4 {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #b8a060;
  margin: 0 0 .25rem
}

.contact-item p {
  font-size: .95rem;
  color: #444;
  margin: 0 0 .15rem;
  line-height: 1.5
}

.contact-item a {
  color: #333d29;
  text-decoration: none;
  font-weight: 500
}

.contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .06)
}

.auth-card,
.verify-card {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06)
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.75rem
}

.form-group label,
.map-label span {
  font-weight: 600;
  margin-bottom: .4rem;
  text-transform: uppercase
}

.auth-row,
.feedback-form-row,
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.auth-group,
.fb-group,
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem
}

.form-group label {
  font-size: .8rem;
  color: #555;
  letter-spacing: .06em
}

.fb-group input,
.fb-group textarea,
.form-group input,
.form-group textarea {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .95rem;
  color: #1a1a1a;
  background: #fafafa;
  outline: 0;
  transition: border-color .2s;
  font-family: inherit;
  resize: vertical
}

.auth-group input:focus,
.fb-group input:focus,
.fb-group textarea:focus,
.form-group input:focus,
.form-group textarea:focus,
.verify-digit:focus {
  border-color: #333d29;
  background: #fff
}

.contact-submit {
  width: 100%;
  background: #333d29;
  color: #fff;
  border: none;
  padding: .85rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: opacity .2s;
  margin-top: .5rem
}

.map-section {
  padding: 4rem 1.5rem 0;
  background: #fff
}

.map-label {
  margin-bottom: 1.5rem
}

.map-label span {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .12em;
  color: #b8a060
}

.map-label h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0
}

.map-embed {
  width: 100%;
  height: 420px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #e5e0d5
}

.about-inner,
.feedback-inner,
.sitemap-inner {
  max-width: 1000px;
  margin: 0 auto
}

.about-header {
  margin-bottom: 2rem
}

.about-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0
}

.about-intro {
  max-width: 700px;
  margin: 0 auto 3rem
}

.about-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin: 0
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ddd8cc;
  border: 1px solid #ddd8cc;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3.5rem
}

.about-stat {
  background: #fff;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333d29;
  line-height: 1
}

.stat-label {
  font-size: .8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem
}

.about-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e8e3d8;
  transition: box-shadow .2s
}

.about-card-icon,
.about-cta {
  background: #333d29;
  display: flex
}

.about-card:hover,
.review-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07)
}

.about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem
}

.about-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 .75rem
}

.about-card p {
  font-size: .93rem;
  color: #666;
  line-height: 1.7;
  margin: 0
}

.about-cta {
  padding: 3rem 2rem;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap
}

.about-cta-btn,
.about-cta-outline {
  color: #fff;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  text-decoration: none;
  font-weight: 600
}

.about-cta p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  flex-basis: 100%
}

.about-cta-btn {
  background: #b8a060;
  transition: opacity .2s
}

.about-cta-outline {
  background: 0 0;
  border: 2px solid rgba(255, 255, 255, .4);
  transition: border-color .2s
}

.about-cta-outline:hover,
.airport-btn-outline:hover,
.services-btn-outline:hover,
.station-btn-outline:hover {
  border-color: #fff
}

.airport-hero,
.services-hero,
.station-hero {
  position: relative;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.airport-hero-overlay,
.services-hero-overlay,
.station-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .75) 0, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .15) 100%);
  z-index: 0
}

.airport-hero-content,
.services-hero-content,
.station-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  width: 100%
}

.airport-hero-eyebrow,
.services-hero-eyebrow,
.station-hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b8a060;
  margin-bottom: 1rem
}

.airport-hero-content h1,
.services-hero-content h1,
.station-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  max-width: 560px
}

.airport-hero-content p,
.services-hero-content p,
.station-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 2rem
}

.airport-hero-btns,
.services-hero-btns,
.station-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.airport-btn-primary,
.services-btn-primary,
.station-btn-primary {
  background: #b8a060;
  color: #fff;
  padding: .8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: opacity .2s
}

.airport-btn-primary:hover,
.services-btn-primary:hover,
.station-btn-primary:hover {
  opacity: .88
}

.airport-btn-outline,
.services-btn-outline,
.station-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: 0 0;
  color: #fff;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .5);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: border-color .2s
}

.airport-link,
.services-link,
.station-link {
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, .12);
  transition: color .2s, background .2s;
  letter-spacing: .04em;
  text-decoration: none
}

.airport-hero-links,
.services-hero-links,
.station-hero-links {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: auto;
  flex-wrap: wrap
}

.airport-link {
  font-size: .88rem;
  padding: 1rem 2rem
}

.airport-link:last-child,
.services-link:last-child,
.station-link:last-child {
  border-right: none
}

.airport-link:hover,
.services-link:hover,
.station-link:hover {
  color: #b8a060;
  background: rgba(255, 255, 255, .06)
}

.station-link {
  font-size: .88rem;
  padding: 1rem 1.5rem
}

.services-link.active,
.station-link.active {
  color: #b8a060;
  border-bottom: 2px solid #b8a060
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  padding: 1.1rem 3rem
}

#reviews,
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.services-link svg {
  opacity: .7;
  transition: opacity .2s
}

.services-link:hover svg,
.sitemap-list li a:hover::before {
  opacity: 1
}

@media (max-width:768px) {

  .hero,
  .hero-container {
    position: relative
  }

  .hero,
  .hero-container,
  .hero-left {
    min-height: 480px
  }

  .hero-container {
    flex-direction: column
  }

  .hero-right {
    position: absolute;
    inset: 0;
    clip-path: none;
    flex: none;
    width: 100%;
    height: 100%;
    z-index: 0
  }

  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55)
  }

  .hero-left {
    position: relative;
    z-index: 2;
    display: block;
    padding: 3rem 1.5rem;
    justify-content: flex-end
  }

  .hero-left h1 {
    color: #fff;
    font-size: 1.75rem
  }

  .hero-highlight {
    background-color: #b8a060;
    color: #111
  }

  .hero-left p {
    color: #ddd
  }

  .about-grid,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr
  }

  .contact-grid {
    gap: 2rem
  }

  .contact-form-wrap {
    padding: 1.75rem 1.25rem
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-cta {
    padding: 2rem 1.25rem
  }

  .airport-hero,
  .services-hero,
  .station-hero {
    min-height: 520px
  }

  .airport-hero-overlay,
  .services-hero-overlay,
  .station-hero-overlay {
    background: rgba(0, 0, 0, .6)
  }

  .airport-hero-content,
  .services-hero-content,
  .station-hero-content {
    padding: 4rem 1.25rem 2rem
  }

  .airport-hero-content h1,
  .services-hero-content h1,
  .station-hero-content h1 {
    font-size: 1.9rem
  }

  .airport-link {
    padding: .75rem 1.25rem;
    font-size: .82rem
  }

  .station-link {
    padding: .75rem 1rem;
    font-size: .8rem
  }

  .services-link {
    padding: .85rem 1.5rem;
    font-size: .85rem
  }
}

.sitemap-grid {
  gap: 1.5rem
}

.sitemap-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid #e8e3d8;
  transition: box-shadow .2s
}

.sitemap-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.sitemap-card-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #333d29;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0ece3
}

.sitemap-card-title svg {
  flex-shrink: 0;
  color: #b8a060
}

.review-card-body,
.sitemap-list {
  flex-direction: column;
  display: flex
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: .1rem
}

.sitemap-list li a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #444;
  text-decoration: none;
  font-size: .93rem;
  padding: .45rem .5rem;
  border-radius: 6px
}

.sitemap-list li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8a060;
  flex-shrink: 0;
  opacity: .6;
  transition: opacity .15s
}

.sitemap-list li a:hover {
  color: #333d29;
  background: #f5f2eb
}

.feedback-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 .5rem
}

.feedback-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid #e8e3d8;
  margin-bottom: 4rem
}

.fb-submit,
.reviews-badge {
  background: #333d29;
  color: #fff
}

.feedback-form-wrap h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0ece3
}

.auth-group label,
.fb-group label {
  font-size: .78rem;
  font-weight: 600;
  color: #555;
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .06em
}

.fb-submit-wrap {
  margin-top: .5rem
}

.fb-submit {
  border: none;
  padding: .85rem 3rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity .2s
}

.reviews-header {
  margin-bottom: 1.75rem
}

.reviews-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0
}

.reviews-badge {
  font-size: .82rem;
  font-weight: 600;
  padding: .2rem .7rem;
  border-radius: 50px
}

.auth-header h1,
.review-title {
  font-weight: 700;
  color: #1a1a1a
}

#reviews {
  gap: 1.25rem
}

.review-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e3d8;
  transition: box-shadow .2s
}

.review-card-body {
  padding: 1.5rem;
  gap: .5rem
}

.review-title {
  font-size: 1rem;
  margin: 0
}

.review-message {
  font-size: .88rem;
  color: #666;
  line-height: 1.65;
  margin: 0
}

.review-author {
  font-size: .82rem;
  color: #999;
  font-style: italic;
  margin-top: .5rem;
  padding-top: .75rem;
  border-top: 1px solid #f0ece3;
  text-align: right
}

.auth-eyebrow,
.auth-required {
  color: #b8a060
}

@media (max-width:900px) {

  #reviews,
  .sc-airports__grid,
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sc-airports__grid .sc-airport-card:nth-child(4),
  .sc-airports__grid .sc-airport-card:nth-child(5) {
    grid-column: auto;
    margin-left: 0
  }

  .sc-airports__grid .sc-airport-card:nth-child(5) {
    grid-column: auto
  }

  .sc-footer__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:600px) {

  #reviews,
  .feedback-form-row {
    grid-template-columns: 1fr
  }

  .feedback-form-wrap {
    padding: 1.75rem 1.25rem
  }
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0
}

.auth-section {
  background-color: #f5f2eb;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem
}

.auth-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e3d8;
  padding: 2.5rem;
  width: 100%;
  max-width: 570px
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0ece3
}

.auth-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem
}

.auth-header h1 {
  font-size: 1.8rem;
  margin: 0 0 .5rem
}

.auth-header p {
  font-size: .9rem;
  color: #888;
  margin: 0
}

.auth-header p a,
.auth-register-link a {
  color: #333d29;
  font-weight: 600;
  text-decoration: none
}

.auth-form {
  display: flex;
  flex-direction: column
}

.auth-group input {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .95rem;
  color: #1a1a1a;
  background: #fafafa;
  outline: 0;
  transition: border-color .2s, background .2s
}

.auth-group input.border-danger {
  border-color: #dc3545
}

.auth-submit {
  width: 100%;
  background: #333d29;
  color: #fff;
  border: none;
  padding: .9rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity .2s;
  margin-top: .5rem;
  letter-spacing: .02em
}

.auth-forgot {
  text-align: right;
  margin-top: -.5rem;
  margin-bottom: 1.25rem
}

.auth-forgot a {
  font-size: .85rem;
  color: #b8a060;
  text-decoration: none;
  font-weight: 500
}

.auth-register-link {
  text-align: center;
  font-size: .88rem;
  color: #888;
  margin: 1rem 0 0
}

@media (max-width:560px) {

  .auth-row,
  .sc-airports__grid,
  .sc-footer__grid,
  .sc-services__grid,
  .sitemap-grid {
    grid-template-columns: 1fr
  }

  .sc-services {
    padding: 3.5rem 1.25rem
  }

  .sc-airports {
    padding: 3.5rem 1.25rem
  }

  .sc-airport-card {
    aspect-ratio: 16/9
  }

  .sc-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem
  }

  .auth-card {
    padding: 1.75rem 1.25rem
  }
}

.verify-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e3d8;
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto
}

.verify-form {
  margin: 1.5rem 0
}

.verify-inputs {
  display: flex;
  justify-content: center;
  gap: .75rem
}

.verify-digit {
  width: 52px;
  height: 58px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
  outline: 0;
  transition: border-color .2s, background .2s
}

.verify-digit:disabled {
  background: #f0ece3;
  border-color: #b8a060;
  color: #333d29
}

.verify-resend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0ece3;
  gap: 1rem
}

.verify-resend-btn {
  background: #333d29;
  color: #fff;
  border: none;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s
}

.verify-resend-btn.disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: .6
}

.verify-resend-btn.btn-dark {
  background: #333d29;
  opacity: 1
}

.verify-timer {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b8a060;
  min-width: 48px;
  text-align: right;
  font-variant-numeric: tabular-nums
}

@media (max-width:480px) {

  .sc-about,
  .sc-content {
    padding: 3.5rem 1.25rem
  }

  .sc-about__stats {
    flex-direction: column
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .verify-digit {
    width: 42px;
    height: 50px;
    font-size: 1.2rem
  }

  .verify-inputs {
    gap: .5rem
  }
}

.list-group{
  display:grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem !important;
}

.list-group-item{
  border: 1px solid #e8e3d8 !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  background: (var(--sc-bg)) !important;
  transition: box-shadow .2s !important;
  color: (var(--sc-text)) !important;
}

@media (max-width:768px){
  .list-group{
    grid-template-columns: 1fr !important;
  }
}
