/* ─────────────────────────────────────────────
     TOKENS
  ───────────────────────────────────────────── */
  :root {
    --forest:   #152b24;
    --forest-2: #1a342c;
    --deep:     #1e3c34;
    --sage:     #a8c9b8;
    --sage-30:  rgba(168, 201, 184, 0.30);
    --sage-15:  rgba(168, 201, 184, 0.15);
    --cream:    #f0ede6;
    --cream-80: rgba(240, 237, 230, 0.80);
    --cream-60: rgba(240, 237, 230, 0.55);
    --cream-40: rgba(240, 237, 230, 0.38);
    --cream-22: rgba(240, 237, 230, 0.22);
    --sand:     #e8e4dc;
    --line:     #e0dbd0;
    --text:     #2a2a2a;
    --muted:    #7a7a7a;

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --page-x:  clamp(20px, 4.5vw, 64px);
    --section-y: clamp(56px, 7vw, 96px);

    --r-card: 10px;
    --r-pill: 999px;
    --r-flat: 2px;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  /* ─────────────────────────────────────────────
     RESET
  ───────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  ::selection { background: var(--sage); color: var(--forest); }

  /* ─────────────────────────────────────────────
     TYPOGRAPHY
  ───────────────────────────────────────────── */
  .eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .eyebrow--sage  { color: var(--sage); }
  .eyebrow--light { color: rgba(240, 237, 230, 0.7); }

  .display-hero {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.012em;
    color: var(--cream);
  }
  .display-hero em { font-style: italic; color: var(--sage); font-weight: 300; }

  .display-section {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1a1a1a;
  }
  .display-section em { font-style: italic; }
  .display-section--light { color: var(--cream); }
  .display-section--light em { color: var(--sage); }

  .display-number {
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 300;
    line-height: 1;
    color: var(--deep);
  }

  .display-quote {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
  }

  .body-copy {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
  }
  .body-copy--muted { color: var(--muted); }
  .body-copy--light { color: rgba(240, 237, 230, 0.62); font-size: 16px; }

  /* ─────────────────────────────────────────────
     BUTTONS
  ───────────────────────────────────────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), opacity 0.3s var(--ease);
    white-space: nowrap;
  }
  .btn .arrow {
    width: 16px; height: 1px; background: currentColor; position: relative; transition: width 0.4s var(--ease);
  }
  .btn .arrow::after {
    content: ''; position: absolute; right: 0; top: 50%;
    width: 8px; height: 1px; background: currentColor;
    transform: translateY(-50%) rotate(35deg); transform-origin: right center;
  }
  .btn:hover .arrow { width: 24px; }

  .btn--primary {
    background: var(--cream);
    color: var(--forest);
    padding: 20px 32px;
    border-radius: var(--r-flat);
  }
  .btn--primary:hover { background: #ffffff; }

  .btn--dark {
    background: var(--forest);
    color: var(--cream);
    padding: 18px 30px;
    border-radius: var(--r-flat);
  }
  .btn--dark:hover { background: var(--deep); }

  .btn--outline {
    background: transparent;
    color: var(--sage);
    border: 0.5px solid rgba(168,201,184,0.45);
    padding: 12px 22px;
    border-radius: var(--r-flat);
    letter-spacing: 0.18em;
    font-size: 11.5px;
  }
  .btn--outline:hover { background: rgba(168,201,184,0.08); border-color: var(--sage); color: var(--cream); }

  .btn--ghost {
    background: transparent;
    color: var(--cream);
    border: 0.5px solid rgba(240,237,230,0.22);
    padding: 20px 32px;
    border-radius: var(--r-flat);
  }
  .btn--ghost:hover { border-color: var(--cream); }

  /* ─────────────────────────────────────────────
     NAV — glass over hero
  ───────────────────────────────────────────── */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px var(--page-x);
    background: rgba(21, 43, 36, 0.0);
    backdrop-filter: blur(0px);
    transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 0.5px solid transparent;
  }
  .nav.is-scrolled {
    background: rgba(21, 43, 36, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    padding: 14px var(--page-x);
    border-bottom-color: rgba(168, 201, 184, 0.12);
  }
  .nav__brand {
    display: flex; align-items: center; gap: 12px;
  }
  .nav__icon {
    width: 24px; height: 24px;
  }
  .nav__wordmark {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--cream);
  }
  .nav__links {
    display: flex; align-items: center; gap: 36px;
  }
  .nav__link {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-60);
    transition: color 0.3s var(--ease);
    position: relative;
  }
  .nav__link::after {
    content: ''; position: absolute; left: 0; bottom: -6px;
    width: 0; height: 1px; background: var(--sage);
    transition: width 0.4s var(--ease);
  }
  .nav__link:hover { color: var(--cream); }
  .nav__link:hover::after { width: 100%; }

  /* ─────────────────────────────────────────────
     HERO
  ───────────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    color: var(--cream);
    overflow: hidden;
    isolation: isolate;
  }
  .hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
  }
  .hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: heroBreathe 28s ease-in-out infinite alternate;
  }
  @keyframes heroBreathe {
    from { transform: scale(1.0); }
    to   { transform: scale(1.12); }
  }
  /* Forest tonal overlay — keeps text legible, adds CPT brand mood */
  .hero__media::after {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(120% 90% at 80% 20%, transparent 0%, rgba(21,43,36,0.55) 70%),
      linear-gradient(180deg, rgba(21,43,36,0.55) 0%, rgba(21,43,36,0.35) 35%, rgba(21,43,36,0.75) 100%),
      linear-gradient(90deg, rgba(21,43,36,0.78) 0%, rgba(21,43,36,0.30) 55%, rgba(21,43,36,0.05) 100%);
  }
  .hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: end;
    padding: clamp(120px, 18vh, 180px) var(--page-x) clamp(40px, 6vw, 72px);
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero__left { max-width: 620px; }
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(168, 201, 184, 0.10);
    border: 0.5px solid rgba(168, 201, 184, 0.28);
    border-radius: var(--r-pill);
    padding: 7px 16px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero__badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 10px rgba(168, 201, 184, 0.7);
    animation: pulse 2.6s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
  }
  .hero__badge-text {
    font-family: var(--font-body);
    font-size: 11.5px; font-weight: 500;
    letter-spacing: 0.20em; text-transform: uppercase;
    color: var(--sage);
  }
  .hero__copy {
    margin: 28px 0 24px;
    max-width: 480px;
    color: rgba(240,237,230,0.78);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 300;
  }
  .hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

  /* Hero right column — vertically stacked editorial cards */
  .hero__right {
    display: flex; flex-direction: column;
    gap: 12px;
    width: 100%;
    align-self: end;
    max-width: 500px;
    margin-left: auto;
  }
  .hero__cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero__caption {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0 4px 4px;
    color: var(--cream-60);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .hero__caption-meta { color: var(--cream-40); }

  /* Hero scroll cue */
  .hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--cream-60);
    z-index: 2;
    font-size: 9px;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .hero__scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(180deg, var(--sage) 0%, transparent 100%);
    animation: scrollLine 2.2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%   { transform: scaleY(0.2); transform-origin: top; }
    50%  { transform: scaleY(1);   transform-origin: top; }
    51%  { transform: scaleY(1);   transform-origin: bottom; }
    100% { transform: scaleY(0.2); transform-origin: bottom; }
  }

  /* ─────────────────────────────────────────────
     DESTINATION CARD — photographic
  ───────────────────────────────────────────── */
  .dest {
    position: relative;
    border-radius: var(--r-card);
    overflow: hidden;
    isolation: isolate;
    display: block;
    color: var(--cream);
    cursor: pointer;
    transform: translateZ(0);
  }
  .dest__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease), filter 0.8s var(--ease);
    filter: saturate(0.92) contrast(1.02);
  }
  .dest__overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(10,20,16,0.20) 0%, rgba(10,20,16,0.05) 40%, rgba(10,20,16,0.78) 100%);
    transition: opacity 0.6s var(--ease);
  }
  .dest__overlay--strong {
    background:
      linear-gradient(180deg, rgba(10,20,16,0.35) 0%, rgba(10,20,16,0.25) 40%, rgba(10,20,16,0.88) 100%);
  }
  .dest__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 20px;
    transition: transform 0.7s var(--ease);
  }
  .dest__eyebrow {
    display: block;
    color: rgba(240,237,230,0.82);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .dest__title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.1;
    font-size: 28px;
    color: var(--cream);
    letter-spacing: -0.005em;
  }
  .dest__quote {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    font-size: 22px;
    line-height: 1.3;
    color: var(--cream);
    letter-spacing: -0.005em;
  }
  .dest__reveal {
    display: flex; align-items: center; gap: 10px;
    margin-top: 12px;
    color: var(--sage);
    font-size: 11.5px; font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  }
  .dest__reveal .arrow {
    width: 14px; height: 1px; background: currentColor; position: relative;
  }
  .dest__reveal .arrow::after {
    content: ''; position: absolute; right: 0; top: 50%;
    width: 6px; height: 1px; background: currentColor;
    transform: translateY(-50%) rotate(35deg); transform-origin: right center;
  }
  .dest:hover .dest__img { transform: scale(1.08); filter: saturate(1.05) contrast(1.04); }
  .dest:hover .dest__reveal { opacity: 1; transform: translateY(0); }

  /* tiny tonal corner mark — sage dot top-left of every card */
  .dest__mark {
    position: absolute;
    top: 16px; left: 18px;
    z-index: 1;
    display: flex; align-items: center; gap: 8px;
    color: var(--cream);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .dest__mark::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 6px rgba(168,201,184,0.6);
  }

  /* ─────────────────────────────────────────────
     HERO RIGHT CARD SIZES
  ───────────────────────────────────────────── */
  .hero__cards-row .dest { height: 230px; }
  .hero__card-wide { height: 130px; }
  .hero__card-wide .dest__content { padding: 16px 20px; }

  /* hero quote card (small) */
  .hero__quote-card {
    background: rgba(168, 201, 184, 0.06);
    border: 0.5px solid rgba(168, 201, 184, 0.20);
    border-radius: var(--r-card);
    padding: 18px 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .hero__quote-card .display-quote {
    font-size: 20px;
    line-height: 1.35;
    color: rgba(240,237,230,0.92);
    margin-top: 10px;
  }

  /* ─────────────────────────────────────────────
     TRUST BAR
  ───────────────────────────────────────────── */
  .trust {
    background: var(--cream);
    border-bottom: 0.5px solid var(--line);
  }
  .trust__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 var(--page-x);
  }
  .trust__item {
    display: flex; align-items: center; gap: 18px;
    padding: 36px 28px;
    border-right: 0.5px solid var(--line);
  }
  .trust__item:first-child { padding-left: 0; }
  .trust__item:last-child { border-right: none; padding-right: 0; }
  .trust__number {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 300;
    line-height: 0.9;
    color: var(--forest);
    letter-spacing: -0.015em;
  }
  .trust__number .num-suffix {
    font-size: 0.55em;
    color: var(--sage);
    margin-left: 2px;
    vertical-align: super;
    line-height: 1;
  }
  .trust__label {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
  }
  .trust__sublabel {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ─────────────────────────────────────────────
     SECTIONS — generic layout
  ───────────────────────────────────────────── */
  .section {
    padding: var(--section-y) var(--page-x);
    background: var(--cream);
  }
  .section--dark {
    background: var(--forest);
    color: var(--cream);
  }
  .section__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: clamp(36px, 4.5vw, 64px);
    flex-wrap: wrap;
  }
  .section__head-left { max-width: 620px; }
  .section__head-left .eyebrow { display: block; margin-bottom: 14px; }
  .section__head-right {
    max-width: 360px;
    color: var(--muted);
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.7;
  }

  /* ─────────────────────────────────────────────
     04 · TRAVEL INSPIRATIONS
  ───────────────────────────────────────────── */
  .insp__grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 14px;
  }
  .insp__grid-top .dest { height: 380px; }
  /* feature variation: first card tall span */
  .insp__grid-bottom {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
  }
  .insp__grid-bottom .dest { height: 260px; }

  .insp__cta {
    background: var(--cream);
    border: 0.5px solid var(--line);
    border-radius: var(--r-card);
    height: 260px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
  }
  .insp__cta:hover { background: #f8f6f1; border-color: var(--sage); }
  .insp__cta::after {
    content: '';
    position: absolute;
    right: -40px; bottom: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 0.5px solid var(--line);
    transition: transform 0.7s var(--ease);
  }
  .insp__cta:hover::after { transform: scale(1.12) rotate(8deg); }
  .insp__cta-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 300;
    line-height: 1.15;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    max-width: 320px;
  }
  .insp__cta-title em { font-style: italic; color: var(--forest); }
  .insp__cta-foot {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: relative; z-index: 1;
  }

  /* ─────────────────────────────────────────────
     05 · HOW WE WORK
  ───────────────────────────────────────────── */
  .how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 24px;
    border-top: 0.5px solid var(--line);
  }
  .how__step {
    padding: 40px 40px 40px 0;
    border-right: 0.5px solid var(--line);
    position: relative;
  }
  .how__step:first-child { padding-right: 40px; }
  .how__step:not(:first-child) { padding-left: 40px; }
  .how__step:last-child { border-right: none; padding-right: 0; }
  .how__step-num {
    display: flex; align-items: baseline; gap: 14px;
    margin-bottom: 24px;
  }
  .how__step-num .display-number { letter-spacing: -0.02em; }
  .how__step-num-line {
    flex: 1;
    height: 0.5px;
    background: var(--line);
  }
  .how__step-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #1a1a1a;
    letter-spacing: 0.01em;
  }
  .how__step-copy {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 320px;
  }

  /* ─────────────────────────────────────────────
     06 · ABOUT
  ───────────────────────────────────────────── */
  .about__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(48px, 6vw, 88px);
    align-items: start;
  }
  .about__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.2vw, 60px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
    color: #1a1a1a;
  }
  .about__title em { font-style: italic; color: var(--deep); }
  .about__copy {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
    max-width: 520px;
  }
  .about__pillars {
    display: flex;
    flex-direction: column;
  }
  .pillar {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 0.5px solid var(--line);
    transition: background 0.4s var(--ease);
  }
  .pillar:first-child { padding-top: 0; }
  .pillar:last-child { border-bottom: none; padding-bottom: 0; }
  .pillar__num {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    color: var(--sage);
    line-height: 1.4;
    letter-spacing: 0.02em;
    border-top: 0.5px solid var(--deep);
    padding-top: 6px;
  }
  .pillar__title {
    font-family: var(--font-body);
    font-size: 16.5px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
  .pillar__copy {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 420px;
  }

  /* ─────────────────────────────────────────────
     07 · CTA BANNER
  ───────────────────────────────────────────── */
  .cta-banner {
    background: var(--deep);
    padding: clamp(48px, 5.5vw, 72px) var(--page-x);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(80% 120% at 20% 50%, rgba(168,201,184,0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-banner > * { position: relative; z-index: 1; }
  .cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    max-width: 720px;
  }
  .cta-banner__title em { font-style: italic; color: var(--sage); }

  /* ─────────────────────────────────────────────
     08 · CONTACT
  ───────────────────────────────────────────── */
  .contact { background: var(--forest); padding: var(--section-y) var(--page-x); position: relative; overflow: hidden; }
  .contact::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(60% 80% at 90% 20%, rgba(168,201,184,0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 88px);
    align-items: start;
    position: relative;
    z-index: 1;
  }
  .contact__title {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.6vw, 72px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.015em;
    color: var(--cream);
    margin: 16px 0 28px;
  }
  .contact__title em { font-style: italic; color: var(--sage); }
  .contact__copy {
    font-size: 16.5px;
    line-height: 1.75;
    color: rgba(240,237,230,0.66);
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 40px;
  }
  .contact__meta {
    display: flex; flex-direction: column;
    border-top: 0.5px solid rgba(168,201,184,0.18);
  }
  .contact__meta-row {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 0;
    border-bottom: 0.5px solid rgba(168,201,184,0.18);
    color: rgba(240,237,230,0.82);
    font-size: 15px;
    font-weight: 300;
  }
  .contact__meta-row svg { flex-shrink: 0; opacity: 0.6; width: 16px; height: 16px; }

  /* Form */
  .contact__form { display: flex; flex-direction: column; gap: 18px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-label {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(168,201,184,0.68);
  }
  .form-input,
  .form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    background: transparent;
    border: none;
    border-bottom: 0.5px solid rgba(240, 237, 230, 0.22);
    color: var(--cream);
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s var(--ease);
  }
  .form-input::placeholder, .form-textarea::placeholder {
    color: rgba(240, 237, 230, 0.30);
  }
  .form-input:focus, .form-textarea:focus { border-color: var(--sage); }
  .form-textarea { resize: none; min-height: 80px; }

  .form-submit {
    align-self: flex-start;
    margin-top: 18px;
    background: var(--cream);
    color: var(--forest);
    padding: 20px 34px;
    border-radius: var(--r-flat);
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.3s var(--ease);
  }
  .form-submit:hover { background: #ffffff; }
  .form-submit .arrow {
    width: 16px; height: 1px; background: currentColor; position: relative; transition: width 0.4s var(--ease);
  }
  .form-submit .arrow::after {
    content: ''; position: absolute; right: 0; top: 50%;
    width: 8px; height: 1px; background: currentColor;
    transform: translateY(-50%) rotate(35deg); transform-origin: right center;
  }
  .form-submit:hover .arrow { width: 24px; }

  .contact__note {
    font-size: 11.5px;
    font-weight: 300;
    color: rgba(240, 237, 230, 0.42);
    letter-spacing: 0.10em;
    margin-top: 12px;
  }

  /* ─────────────────────────────────────────────
     09 · FOOTER
  ───────────────────────────────────────────── */
  .footer {
    background: var(--cream);
    padding: 28px var(--page-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 0.5px solid var(--line);
    flex-wrap: wrap;
  }
  .footer__brand {
    display: flex; align-items: center; gap: 10px;
  }
  .footer__brand .nav__icon path,
  .footer__brand .nav__icon circle { stroke: var(--deep); fill: var(--deep); }
  .footer__wordmark {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  .footer__copy {
    font-size: 12.5px;
    color: #aaa;
    letter-spacing: 0.05em;
  }

  /* ─────────────────────────────────────────────
     SCROLL REVEAL
  ───────────────────────────────────────────── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal[data-delay="1"].in { transition-delay: 0.08s; }
  .reveal[data-delay="2"].in { transition-delay: 0.16s; }
  .reveal[data-delay="3"].in { transition-delay: 0.24s; }
  .reveal[data-delay="4"].in { transition-delay: 0.32s; }

  /* ─────────────────────────────────────────────
     RESPONSIVE
  ───────────────────────────────────────────── */
  @media (max-width: 980px) {
    .hero__content { grid-template-columns: 1fr; gap: 36px; padding-top: 110px; }
    .hero__right { max-width: 100%; margin-left: 0; }
    .hero__cards-row .dest { height: 180px; }
    .nav__links { gap: 18px; }
    .trust__inner { grid-template-columns: 1fr; }
    .trust__item { border-right: none; border-bottom: 0.5px solid var(--line); padding: 26px 0; }
    .trust__item:last-child { border-bottom: none; }
    .insp__grid-top { grid-template-columns: 1fr 1fr; }
    .insp__grid-top .dest:nth-child(3) { grid-column: span 2; height: 260px; }
    .insp__grid-bottom { grid-template-columns: 1fr; }
    .how__steps { grid-template-columns: 1fr; }
    .how__step { border-right: none; border-bottom: 0.5px solid var(--line); padding: 32px 0 !important; }
    .how__step:last-child { border-bottom: none; }
    .about__grid, .contact__grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section__header { flex-direction: column; align-items: flex-start; }
    .cta-banner { flex-direction: column; align-items: flex-start; }
    .hero__scroll { display: none; }
  }
  @media (max-width: 640px) {
    .nav__links .nav__link:not(:last-child) { display: none; }
    .insp__grid-top { grid-template-columns: 1fr; }
    .insp__grid-top .dest:nth-child(3) { grid-column: auto; }
    .insp__grid-top .dest { height: 280px; }
    .hero__cards-row { grid-template-columns: 1fr; }
    .hero__cards-row .dest { height: 200px; }
  }