/* ============================================================
   travelsuitely — styles.css  v3
   Palette 1: Dark Slate + Champagne Gold
   Fonts: DM Serif Display (headings) + Inter (body)
   Mobile-first. Breakpoints: 768px, 1024px
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --slate:        #1E2A3A;   /* primary dark bg */
  --charcoal:     #263238;   /* secondary dark bg / dark text */
  --gold:         #C9A967;
  --gold-light:   #DCBF86;
  --gold-dim:     rgba(var(--gold-rgb),0.18);
  --ivory:        #FAF8F3;
  --ivory-mid:    #F2EDE3;
  --text-dark:    #263238;
  --text-muted:   #6B7280;
  --text-light:   rgba(var(--ivory-rgb),0.75);

  /* Feedback colors */
  --error:        #c0392b;
  --error-rgb:    192,57,43;
  --success:      #2d7a2d;
  --success-rgb:  45,122,45;

  /* RGB channels for opacity variants */
  --slate-rgb:    30,42,58;
  --charcoal-rgb: 38,50,56;
  --gold-rgb:     201,169,103;
  --ivory-rgb:    250,248,243;

  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Typography scale — headings (DM Serif Display) */
  --text-hero:    clamp(40px, 7vw, 82px);
  --text-h2:      clamp(28px, 4vw, 44px);
  --text-h3:      clamp(20px, 2.5vw, 28px);
  --text-h4:      clamp(17px, 2vw, 20px);

  /* Typography scale — body (Inter) */
  --text-body:    15px;
  --text-sm:      14px;
  --text-ui:      11px;
  --text-micro:   10px;

  --nav-h:        72px;
  --section-pad:  clamp(64px, 9vw, 110px);
  --max-w:        1200px;
  --max-w-narrow: 780px;
  --max-w-form:   700px;
}

/* ===== SKIP LINK (a11y) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--slate);
  color: var(--ivory);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITIES ===== */
.section-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-eyebrow {
  display: block;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}

.section-heading--dark {
  color: var(--charcoal);
}

.section-subheading {
  margin-top: 16px;
  font-size: var(--text-body);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.section-subheading--dark {
  color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 38px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  min-height: 48px;
  line-height: 1;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn--gold {
  background: var(--gold);
  color: var(--slate);
  border-color: var(--gold);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  outline: none;
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--gold-dim);
  transform: translateY(-2px);
  outline: none;
}

.btn--large {
  padding: 18px 52px;
}

/* ===== LOGO SVG ===== */
.logo-svg {
  display: block;
  height: 48px;
  width: auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: var(--slate);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 52px);
}

.navbar__nav {
  display: none;
  gap: 28px;
  align-items: center;
}

.navbar__link {
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color 0.2s ease;
  padding: 4px 0;
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar__link:hover::after,
.navbar__link:focus-visible::after { width: 100%; }

.navbar__link:hover,
.navbar__link:focus-visible { color: var(--gold); outline: none; }

.navbar__link--cta {
  background: var(--gold);
  color: var(--slate);
  padding: 10px 22px;
  font-weight: 600;
}
.navbar__link--cta::after { display: none; }
.navbar__link--cta:hover,
.navbar__link--cta:focus-visible {
  background: var(--gold-light);
  color: var(--slate);
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
}
.navbar__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.navbar__nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--slate);
  padding: 20px clamp(20px, 5vw, 52px) 28px;
  gap: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.navbar__nav.open .navbar__link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(var(--gold-rgb),0.12);
  font-size: var(--text-ui);
}
.navbar__nav.open .navbar__link--cta {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
  padding: 14px 22px;
}
.navbar__nav.open .navbar__link::after { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1528164344705-47542687000d?w=1920&auto=format&fit=crop&q=85');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
  .hero__bg { background-attachment: scroll; }
}

@media (max-width: 1024px) {
  .hero__bg { background-attachment: scroll; }
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--slate-rgb),0.55) 0%,
    rgba(var(--slate-rgb),0.30) 50%,
    rgba(var(--slate-rgb),0.60) 100%
  );
}

.hero__content {
  position: relative; z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) clamp(20px, 6vw, 80px) 80px;
  max-width: 960px;
}

.hero__eyebrow {
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.08;
  margin-bottom: 28px;
}

.hero__subline {
  font-size: var(--text-body);
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.82);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.85;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2.4s infinite ease-in-out;
  opacity: 0.6;
  transition: opacity 0.2s;
  cursor: pointer;
}
.hero__scroll-indicator:hover { opacity: 1; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== BRAND STATEMENT ===== */
.brand { background: var(--slate); }

.brand__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.brand__pull-quote { position: relative; }

.brand__quote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 100px;
  line-height: 0.65;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 12px;
  user-select: none;
}

.brand__quote-mark--close {
  text-align: right;
  margin-bottom: 0;
  margin-top: 12px;
}

.brand__quote-text {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.32;
  max-width: 480px;
}

.brand__story {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand__heading {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 4px;
}

.brand__body {
  font-size: var(--text-body);
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.78);
  line-height: 1.9;
}

.brand__divider {
  width: 48px; height: 1px;
  background: var(--gold);
  opacity: 0.35;
}


/* ===== WHO WE'RE FOR ===== */
.who-for { background: var(--ivory); }

.who-for__inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  text-align: center;
}

.who-for .section-header {
  margin-bottom: 16px;
}

.who-for__intro {
  font-size: var(--text-body);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 40px;
}

.who-for__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
}

.who-for__point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.who-for__point-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.who-for__point-text {
  font-size: var(--text-body);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.8;
}

.who-for__point-text strong {
  font-weight: 600;
  color: var(--charcoal);
}

.who-for__occasions {
  margin-bottom: 40px;
}

.who-for__occasions-intro {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

/* Occasions dot-separated list on ivory bg */
.who-for__occasions .occasions__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 0;
}

.who-for__occasions .occasions__item {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--charcoal);
  padding: 4px 14px;
}

.who-for__occasions .occasions__sep {
  color: var(--gold);
  font-size: var(--text-h4);
  line-height: 1;
}

.who-for__cta-text {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 24px;
}

/* ===== SERVICES ===== */
.services { background: var(--charcoal); }

.services .section-heading { color: var(--ivory); }
.services .section-subheading { color: rgba(var(--ivory-rgb),0.65); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(var(--gold-rgb),0.14);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: rgba(var(--gold-rgb),0.38);
  background: rgba(var(--gold-rgb),0.05);
}

.service-card__badge {
  display: inline-block;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 5px 12px;
  align-self: flex-start;
}

.service-card__badge--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(var(--gold-rgb),0.4);
}

.service-card__icon { color: var(--gold); }

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}

.service-card__desc {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(var(--ivory-rgb),0.70);
  line-height: 1.85;
}
.service-card__desc--snug { margin-top: 4px; }

.service-card__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.service-card__perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(var(--ivory-rgb),0.72);
  line-height: 1.5;
}

.service-card__perk::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}

.service-card__price-block {
  padding-top: 4px;
  border-top: 1px solid rgba(var(--gold-rgb),0.15);
}

.service-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 4px;
}

.service-card__price-note {
  font-size: var(--text-ui);
  font-weight: 400;
  color: rgba(var(--ivory-rgb),0.50);
  line-height: 1.7;
  font-style: italic;
}
.service-card__price-note--spaced { margin-top: 10px; }

.service-card__cta { margin-top: auto; padding-top: 8px; }

/* ===== DESTINATION SPECIALTIES ===== */
.destinations { background: var(--ivory-mid); }

.destinations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  cursor: default;
}

.dest-card__img {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-card__img { transform: scale(1.04); }

.dest-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(var(--slate-rgb),0.90) 0%, rgba(var(--slate-rgb),0.30) 60%, transparent 100%);
}

.dest-card__content {
  position: absolute;
  top: 55%;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 40px;
  z-index: 1;
  overflow: hidden;
}

.dest-card__tag {
  display: block;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.dest-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 10px;
}

.dest-card__body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.78);
  line-height: 1.75;
  max-width: 380px;
}

.destinations__footnote {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 32px;
}

/* ===== SIGNATURE EXPERIENCES ===== */
.experiences { background: var(--slate); }

.experiences__scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 calc(-1 * clamp(20px, 5vw, 60px));
  padding: 0 clamp(20px, 5vw, 60px);
}
.experiences__scroll-wrapper::-webkit-scrollbar { display: none; }

.experiences__grid {
  display: flex;
  gap: 20px;
  min-width: max-content;
}

.exp-card {
  position: relative;
  overflow: hidden;
  width: 300px;
  flex-shrink: 0;
  height: 460px;
}

.exp-card__img {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.exp-card:hover .exp-card__img { transform: scale(1.06); }

.exp-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(var(--slate-rgb),0.92) 0%, rgba(var(--slate-rgb),0.25) 60%, transparent 100%);
}

.exp-card__content {
  position: absolute;
  top: 55%;
  bottom: 0; left: 0; right: 0;
  padding: 24px 24px 28px;
  z-index: 1;
  overflow: hidden;
}

.exp-card__location {
  display: block;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.exp-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 10px;
}

.exp-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.72);
  line-height: 1.7;
}

.experiences__scroll-outer {
  position: relative;
}

/* Gradient fade panels */
.exp-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 72px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
}

.exp-fade--left {
  left: calc(-1 * clamp(20px, 5vw, 60px));
  background: linear-gradient(to right, var(--slate) 0%, transparent 100%);
}

.exp-fade--right {
  right: calc(-1 * clamp(20px, 5vw, 60px));
  background: linear-gradient(to left, var(--slate) 0%, transparent 100%);
}

.exp-fade.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.exp-fade__chevron {
  color: var(--ivory);
  opacity: 0.7;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.exp-fade__chevron:hover {
  opacity: 1;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--ivory); }

.how-it-works .section-heading--dark { color: var(--charcoal); }

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 40px 0;
  border-top: 1px solid rgba(var(--charcoal-rgb),0.1);
}

.step:first-child { border-top: none; padding-top: 0; }

.step__number {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  flex-shrink: 0;
}

.step__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 6px;
}

.step__desc {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 400px;
}

/* ===== WHY TRAVELSUITELY ===== */
.why { background: var(--charcoal); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 28px 20px;
}

.why-item__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.why-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 12px;
}

.why-item__desc {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(var(--ivory-rgb),0.68);
  line-height: 1.85;
  max-width: 300px;
  margin: 0 auto;
}

/* ===== CURRENTLY LOVING ===== */
.currently-loving { background: var(--slate); }

.currently-loving .section-subheading { color: rgba(var(--ivory-rgb),0.6); }

/* TEMPLATE: To add/update a card, copy one .cl-card block and change:
   1. <img> src and alt
   2. .cl-card__tag text
   3. .cl-card__title text
   4. .cl-card__teaser text
   The Start Planning link points to #get-started. */
.cl__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.cl-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(var(--gold-rgb),0.14);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cl-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border-color: rgba(var(--gold-rgb),0.3);
}

.cl-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.cl-card__img {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.cl-card:hover .cl-card__img { transform: scale(1.04); }

.cl-card__content {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cl-card__tag {
  display: block;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.cl-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.25;
  margin-bottom: 10px;
}

.cl-card__teaser {
  font-size: 13px;
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.65);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}

.cl-card__perks {
  margin-bottom: 20px;
}

.cl-card__perks-label {
  display: block;
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.cl-card__perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cl-card__perks-list li {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.55);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.cl-card__perks-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}

.cl-card__link {
  font-size: var(--text-ui);
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.cl-card__link:hover { gap: 10px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--ivory); }

.testimonials .section-heading--dark { color: var(--charcoal); }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--ivory-mid);
  border: 1px solid rgba(var(--charcoal-rgb),0.07);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: var(--text-sm);
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.75;
}

.testimonial-card__footer {
  margin-top: 4px;
}

.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}

/* ===== ABOUT (Personal Story) ===== */
.about-advisor { background: var(--ivory-mid); }

.about-advisor__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-advisor__photo-wrap {
  position: relative;
  align-self: center;
  max-width: 360px;
  width: 100%;
}

.about-advisor__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.about-advisor__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-advisor__eyebrow {
  display: block;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.about-advisor__name {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 4px;
}

.about-advisor__title {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-advisor__story {
  font-size: var(--text-body);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.9;
}

.about-advisor__philosophy {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  font-style: normal;
}

.partner-name {
  font-family: var(--font-heading);
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.partner-name--dark { color: rgba(var(--ivory-rgb),0.55); }
.partner-name--accent { font-style: italic; color: var(--gold); }

/* Why — affiliations & partners block */
.why__partners {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(var(--gold-rgb),0.18);
  text-align: center;
}

.why__partners-note {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(var(--ivory-rgb),0.55);
  line-height: 1.85;
  margin: 0 auto 24px;
}

.why__partners-label {
  display: block;
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.why__partners-label--spaced { margin-top: 20px; }

.why__partners-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}

/* ===== FAQ ===== */
.faq { background: var(--ivory-mid); }

.faq .section-heading--dark { color: var(--charcoal); }

.faq-list {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(var(--charcoal-rgb),0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(var(--charcoal-rgb),0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: color 0.2s ease;
}

.faq-question:hover .faq-question-text { color: var(--gold); }

.faq-question-text {
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.45;
  transition: color 0.2s ease;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.35s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 800px; }

.faq-answer-body {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.9;
  padding-bottom: 24px;
  max-width: 620px;
}

/* ===== GET STARTED ===== */
.get-started { background: var(--slate); }

.get-started__inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  text-align: center;
}

.get-started__headline {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 16px;
}

.get-started__subtext {
  font-size: var(--text-body);
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.72);
  line-height: 1.85;
  max-width: 480px;
  margin: 0 auto 48px;
}

.get-started__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.gs-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.gs-btn-sub {
  font-size: var(--text-ui);
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.50);
  letter-spacing: 0.5px;
}

.get-started__response-time {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.45);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer { background: var(--slate); border-top: 1px solid rgba(var(--gold-rgb),0.12); }

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 60px) 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__brand { display: flex; flex-direction: column; gap: 14px; }

.footer__tagline {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(var(--ivory-rgb),0.48);
  line-height: 1.7;
  max-width: 220px;
}

.footer__nav { display: flex; flex-wrap: wrap; gap: 14px 28px; }

.footer__link {
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(var(--ivory-rgb),0.58);
  transition: color 0.2s ease;
}

.footer__link:hover,
.footer__link:focus-visible { color: var(--gold); outline: none; }

.footer__social { display: flex; }

.footer__ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-ui);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(var(--ivory-rgb),0.55);
  transition: color 0.2s ease;
}

.footer__ig-link:hover,
.footer__ig-link:focus-visible { color: var(--gold); outline: none; }

.footer__aff-line {
  font-size: var(--text-ui);
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.35);
  line-height: 1.6;
}

.footer__aff-line strong {
  color: rgba(var(--gold-rgb),0.6);
  font-weight: 500;
}

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(var(--gold-rgb),0.1);
}

.footer__copy {
  font-size: var(--text-ui);
  color: rgba(var(--ivory-rgb),0.28);
  text-align: center;
}

/* ============================================================
   FORM PAGES (hotel-inquiry.html, custom-escape.html)
   ============================================================ */

/* Back link at top */
.back-link-bar {
  background: var(--slate);
  padding: calc(var(--nav-h) + 12px) clamp(20px, 5vw, 60px) 12px;
}

.back-link {
  font-size: var(--text-ui);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(var(--ivory-rgb),0.60);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.back-link:hover { color: var(--gold); }

/* Form page header */
.form-page-header {
  background: var(--slate);
  padding: 32px clamp(20px, 5vw, 60px) 60px;
  text-align: center;
}

.form-page-header__headline {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 16px;
}

.form-page-header__sub {
  font-size: var(--text-body);
  font-weight: 300;
  color: rgba(var(--ivory-rgb),0.72);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 auto;
}

/* Form container */
.form-container {
  background: var(--ivory);
  max-width: var(--max-w-form);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

/* Form section groupings */
.form-section {
  margin-bottom: 40px;
}

.form-section:last-of-type { margin-bottom: 0; }

.form-section-title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(var(--charcoal-rgb),0.12);
}

/* Form groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 20px;
}

.form-group:last-child { margin-bottom: 0; }

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.form-row:last-child { margin-bottom: 0; }

/* Labels */
.form-label {
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.required { color: var(--gold); }

.optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--text-ui);
  color: var(--text-muted);
}


/* Inputs */
.form-input {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid rgba(var(--charcoal-rgb),0.22);
  padding: 14px 16px;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}

.form-input::placeholder { color: rgba(var(--charcoal-rgb),0.32); font-weight: 300; }

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(var(--gold-rgb),0.15);
}

.form-input.error { border-color: var(--error); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23263238' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

/* Radio groups */
.form-radio-group { display: flex; flex-direction: column; gap: 10px; }

.form-radio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.form-radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-radio-item input[type="radio"]:focus-visible + .form-radio-box {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-radio-box {
  width: 18px; height: 18px;
  border: 1.5px solid rgba(var(--charcoal-rgb),0.3);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.form-radio-item input[type="radio"]:checked + .form-radio-box {
  border-color: var(--gold);
  background: var(--gold);
}

.form-radio-item input[type="radio"]:checked + .form-radio-box::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--slate);
}

.form-radio-label {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
}

/* Checkbox groups (multi-select pills) */
.form-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-check-item { display: inline-block; }

.form-check-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-check-item input[type="checkbox"]:focus-visible + .form-check-label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-check-label {
  padding: 8px 16px;
  font-size: var(--text-ui);
  font-weight: 400;
  color: var(--charcoal);
  border: 1px solid rgba(var(--charcoal-rgb),0.22);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  min-height: 36px;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.form-check-item input[type="checkbox"]:checked + .form-check-label {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--slate);
  font-weight: 500;
}

.form-check-item input[type="checkbox"]:disabled + .form-check-label {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Loyalty toggle (Yes/No inline radio) */
.form-toggle {
  display: flex;
  gap: 0;
}

.form-toggle-item { display: flex; }

.form-toggle-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-toggle-item input[type="radio"]:focus-visible + .form-toggle-label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-toggle-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--charcoal);
  border: 1px solid rgba(var(--charcoal-rgb),0.22);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  min-height: 44px;
}

.form-toggle-item:not(:first-child) .form-toggle-label { border-left: none; }

.form-toggle-item input[type="radio"]:checked + .form-toggle-label {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--slate);
  font-weight: 500;
}

/* Hidden reveal field */
.loyalty-reveal { display: none; margin-top: 12px; }
.loyalty-reveal.visible { display: block; }

/* Form submit */
.fee-acknowledge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 600px;
  margin: 24px auto 0;
}

.fee-acknowledge input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.fee-acknowledge label {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.fee-acknowledge input[type="checkbox"].error + label {
  color: var(--error);
}

.form-check-inline {
  margin-right: 8px;
  accent-color: var(--gold);
}

.form-submit { text-align: center; margin-top: 32px; }

.form-privacy {
  text-align: center;
  font-size: var(--text-ui);
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-message {
  text-align: center;
  font-size: var(--text-sm);
  min-height: 24px;
  padding: 8px;
  font-weight: 400;
  margin-top: 16px;
}

.form-message.success {
  color: var(--success);
  background: rgba(var(--success-rgb),0.08);
  padding: 14px;
}

.form-message.error {
  color: var(--error);
  background: rgba(var(--error-rgb),0.08);
  padding: 14px;
}

/* ============================================================
   TABLET — 768px+
   ============================================================ */
@media (min-width: 768px) {

  /* Navbar */
  .navbar__nav { display: flex; flex-direction: row; }
  .navbar__hamburger { display: none; }

  /* Brand */
  .brand__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
  .brand__pull-quote { flex: 0 0 44%; }
  .brand__story { flex: 1; padding-top: 8px; }

  /* Who We're For */
  .who-for__points { gap: 28px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Destinations */
  .destinations__grid { grid-template-columns: repeat(3, 1fr); }
  .dest-card { height: 480px; }

  /* Experiences */
  .exp-card { width: 340px; }

  /* How It Works */
  .steps { flex-direction: row; align-items: flex-start; gap: 0; }
  .step {
    flex: 1;
    flex-direction: column;
    padding: 0 36px 0 0;
    border-top: none;
    border-right: 1px solid rgba(var(--charcoal-rgb),0.1);
  }
  .step:last-child { border-right: none; padding-right: 0; }
  .step:not(:first-child) { padding-left: 36px; padding-top: 0; }
  .step__desc { max-width: 100%; }

  /* Why */
  .why-grid { grid-template-columns: repeat(3, 1fr); }

  /* Currently Loving */
  .cl__grid { grid-template-columns: repeat(3, 1fr); }

  /* About */
  .about-advisor__inner { flex-direction: row; align-items: flex-start; gap: 64px; }
  .about-advisor__photo-wrap { flex: 0 0 300px; }
  .about-advisor__content { flex: 1; }

  /* Get Started buttons */
  .get-started__buttons { flex-direction: row; justify-content: center; align-items: flex-start; gap: 32px; }

  /* Footer */
  .footer__inner { flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
  .footer__brand { flex: 0 0 220px; }
  .footer__nav { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer__social { align-items: flex-start; }

  /* Form pages */
  .form-row { flex-direction: row; gap: 20px; align-items: flex-end; }
  .form-row .form-group { margin-bottom: 0; }
  .form-radio-group--inline { flex-direction: row; gap: 20px; flex-wrap: wrap; }
}

/* ============================================================
   DESKTOP — 1024px+
   ============================================================ */
@media (min-width: 1024px) {

  .service-card { padding: 48px 40px 44px; }
  .dest-card { height: 520px; }
  .exp-card { width: 380px; height: 500px; }

  .footer__inner { flex-wrap: nowrap; align-items: flex-start; }
  .footer__brand { flex: 0 0 260px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__scroll-indicator { animation: none; }
  .hero__bg { background-attachment: scroll; }
  * { transition-duration: 0.01ms !important; }
  /* Auto-scroll disabled via JS when this media query matches */
}
