:root {
        --ivory: #f6f2e9;
        --ivory-warm: #efe7d4;
        --white: #fffdf9;
        --charcoal: #1c1a15;
        --charcoal-soft: #2b2820;
        --green: #3e4a34;
        --green-deep: #232b1d;
        --clay: #a15c31;
        --gold: #b4924e;
        --sand: #d9c9a3;
        --line: rgba(28, 26, 21, 0.12);
        --max: 1280px;
        --serif: 'Fraunces', serif;
        --sans: 'Inter', sans-serif;
      }
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--sans);
        color: var(--charcoal);
        background: var(--ivory);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
      }
      ul {
        list-style: none;
      }
      .wrap {
        max-width: var(--max);
        margin: 0 auto;
        padding: 0 32px;
      }
      @media (max-width: 640px) {
        .wrap {
          padding: 0 20px;
        }
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: var(--serif);
        font-weight: 500;
        letter-spacing: -0.01em;
        line-height: 1.05;
      }
      .eyebrow {
        font-family: var(--sans);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--clay);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
      }
      .eyebrow::before {
        content: '';
        width: 22px;
        height: 1px;
        background: var(--clay);
      }

      /* ambient grain */
      .grain {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 9999;
        opacity: 0.035;
        mix-blend-mode: multiply;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      }

      /* ===== HEADER ===== */
      header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 26px 0;
        transition: all 0.4s ease;
      }
      header .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .logo {
        font-family: var(--serif);
        font-size: 22px;
        letter-spacing: 0.03em;
        color: var(--white);
        font-weight: 500;
      }
      nav {
        display: flex;
        align-items: center;
        gap: 40px;
      }
      .nav-links {
        display: flex;
        gap: 34px;
      }
      .nav-links a {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.04em;
        color: rgba(255, 253, 249, 0.88);
        position: relative;
        padding: 4px 0;
      }
      .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s;
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 28px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        border-radius: 2px;
        transition: all 0.3s ease;
        white-space: nowrap;
      }
      .btn-primary {
        background: var(--gold);
        color: var(--charcoal);
      }
      .btn-primary:hover {
        background: var(--sand);
      }
      .btn-outline {
        border: 1px solid rgba(255, 253, 249, 0.5);
        color: var(--white);
      }
      .btn-outline:hover {
        border-color: var(--white);
        background: rgba(255, 253, 249, 0.08);
      }
      .btn-dark {
        background: var(--charcoal);
        color: var(--ivory);
      }
      .btn-dark:hover {
        background: var(--green-deep);
      }

      header.scrolled {
        background: rgba(28, 26, 21, 0.92);
        backdrop-filter: blur(10px);
        padding: 16px 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        width: 26px;
      }
      .hamburger span {
        height: 1.5px;
        background: var(--white);
        width: 100%;
        transition: all 0.3s;
      }
      .mobile-menu {
        position: fixed;
        inset: 0;
        background: var(--charcoal);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: transform 0.45s cubic-bezier(0.6, 0, 0.2, 1);
      }
      .mobile-menu.open {
        transform: translateY(0);
      }
      .mobile-menu a {
        font-family: var(--serif);
        font-size: 28px;
        color: var(--ivory);
      }
      .mobile-close {
        position: absolute;
        top: 26px;
        right: 24px;
        color: var(--ivory);
        font-size: 28px;
      }

      @media (max-width: 900px) {
        .nav-links,
        header .btn-primary {
          display: none;
        }
        .hamburger {
          display: flex;
        }
      }

      /* ===== HERO ===== */
      .hero {
        position: relative;
        min-height: 100svh;
        display: flex;
        align-items: flex-end;
        background: radial-gradient(
            ellipse at 30% 20%,
            rgba(180, 146, 78, 0.18),
            transparent 55%
          ),
          linear-gradient(
            180deg,
            rgba(20, 19, 15, 0.35) 0%,
            rgba(20, 19, 15, 0.35) 40%,
            rgba(15, 14, 11, 0.92) 100%
          ),
          linear-gradient(
            120deg,
            #4a4028 0%,
            #3a3520 35%,
            #2b3524 65%,
            #1f2418 100%
          );
        overflow: hidden;
      }
      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 90px
          ),
          repeating-linear-gradient(
            25deg,
            rgba(0, 0, 0, 0.05) 0px,
            rgba(0, 0, 0, 0.05) 1px,
            transparent 1px,
            transparent 60px
          );
        opacity: 0.6;
      }
      .hero-silhouette {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 38%;
        opacity: 0.5;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 300' preserveAspectRatio='none'%3E%3Cpath d='M0,300 L0,180 Q80,160 160,175 T320,170 L340,120 L360,170 Q420,155 480,165 L500,90 L515,165 Q600,150 660,168 T820,160 L840,100 L860,160 Q950,145 1020,165 T1180,155 L1200,80 L1220,155 Q1320,140 1400,160 T1600,150 L1600,300 Z' fill='%230f0e0b'/%3E%3C/svg%3E");
        background-size: cover;
        background-position: bottom;
      }
      .hero-inner {
        position: relative;
        z-index: 2;
        width: 100%;
        padding-bottom: 96px;
      }
      .hero-content {
        max-width: 760px;
      }
      .hero .eyebrow {
        color: var(--gold);
      }
      .hero .eyebrow::before {
        background: var(--gold);
      }
      .hero h1 {
        font-size: clamp(48px, 8vw, 96px);
        color: var(--white);
        font-weight: 400;
        margin-bottom: 22px;
      }
      .hero h1 em {
        font-style: italic;
        color: var(--gold);
        font-weight: 300;
      }
      .hero-sub {
        font-family: var(--serif);
        font-style: italic;
        font-size: clamp(19px, 2.4vw, 26px);
        color: var(--sand);
        margin-bottom: 16px;
        font-weight: 400;
      }
      .hero-support {
        font-size: 16px;
        color: rgba(246, 242, 233, 0.78);
        max-width: 520px;
        line-height: 1.65;
        margin-bottom: 38px;
      }
      .hero-price-row {
        display: flex;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
        margin-bottom: 38px;
      }
      .hero-price {
        display: flex;
        flex-direction: column;
      }
      .hero-price .amount {
        font-family: var(--serif);
        font-size: 42px;
        color: var(--white);
      }
      .hero-price .amount span {
        font-family: var(--sans);
        font-size: 14px;
        color: rgba(246, 242, 233, 0.6);
        font-weight: 500;
      }
      .hero-price .note {
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 4px;
      }
      .hero-btns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
      }
      .scroll-hint {
        margin-top: 56px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(246, 242, 233, 0.6);
      }
      .scroll-hint .arrow {
        animation: bob 2s infinite;
      }
      @keyframes bob {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(6px);
        }
      }

      /* flight line signature - appears across hero */
      .flight-line-svg {
        position: absolute;
        right: 6%;
        top: 14%;
        width: 38%;
        max-width: 460px;
        opacity: 0.85;
        z-index: 2;
      }
      @media (max-width: 900px) {
        .flight-line-svg {
          display: none;
        }
      }
      .flight-dot {
        fill: var(--gold);
      }
      .flight-path {
        fill: none;
        stroke: var(--sand);
        stroke-width: 1.2;
        stroke-dasharray: 4 6;
        opacity: 0.7;
      }
      .flight-label {
        font-family: var(--sans);
        font-size: 10px;
        letter-spacing: 0.1em;
        fill: rgba(246, 242, 233, 0.75);
        text-transform: uppercase;
      }

      /* ===== TRUST BAR ===== */
      .trust-bar {
        background: var(--charcoal);
        padding: 26px 0;
        border-top: 1px solid rgba(255, 253, 249, 0.08);
      }
      .trust-bar ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 48px;
      }
      .trust-bar li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12.5px;
        letter-spacing: 0.03em;
        color: rgba(246, 242, 233, 0.82);
        font-weight: 500;
      }
      .trust-bar li svg {
        width: 16px;
        height: 16px;
        stroke: var(--gold);
        flex-shrink: 0;
      }

      /* ===== GENERIC SECTION ===== */
      section {
        padding: 120px 0;
      }
      @media (max-width: 768px) {
        section {
          padding: 76px 0;
        }
      }
      .section-head {
        max-width: 640px;
        margin-bottom: 64px;
      }
      .section-head h2 {
        font-size: clamp(30px, 4.2vw, 48px);
      }
      .section-head p {
        margin-top: 18px;
        font-size: 17px;
        color: rgba(28, 26, 21, 0.7);
        line-height: 1.7;
      }
      .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
      }
      .section-head.center .eyebrow {
        justify-content: center;
      }
      .section-head.center .eyebrow::before {
        display: none;
      }

      /* placeholder photographic panel (to be replaced with real photography) */
      .photo {
        position: relative;
        border-radius: 2px;
        overflow: hidden;
        aspect-ratio: 4/5;
        background: linear-gradient(155deg, #6b5a3a, #4a5237 45%, #2c3524 100%);
      }
      .photo::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at 70% 20%,
          rgba(255, 255, 255, 0.14),
          transparent 60%
        );
      }
      .photo .experience-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .photo.wide {
        aspect-ratio: 16/10;
      }
      .photo.tall {
        aspect-ratio: 3/4.4;
      }
      .photo .cap {
        position: absolute;
        left: 20px;
        bottom: 18px;
        z-index: 2;
        color: var(--ivory);
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        opacity: 0.85;
      }
      .photo svg.mark {
        position: absolute;
        opacity: 0.22;
        width: 46%;
      }

      /* ===== EXPERIENCE SPLIT ===== */
      .experience {
        background: var(--white);
      }
      .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      @media (max-width: 900px) {
        .split {
          grid-template-columns: 1fr;
          gap: 40px;
        }
      }
      .split-text p {
        font-size: 16.5px;
        line-height: 1.75;
        color: rgba(28, 26, 21, 0.75);
        margin-bottom: 18px;
      }
      .split-text .lead {
        font-family: var(--serif);
        font-size: 24px;
        font-style: italic;
        color: var(--charcoal);
        margin-bottom: 24px;
        line-height: 1.4;
      }
      .emphasis-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 28px 0 32px;
      }
      .emphasis-tags span {
        font-size: 11.5px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 8px 14px;
        border: 1px solid var(--line);
        border-radius: 20px;
        color: var(--green-deep);
      }

      /* ===== WHY CARDS ===== */
      .why {
        background: var(--ivory-warm);
      }
      .card-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
      }
      @media (max-width: 900px) {
        .card-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 560px) {
        .card-grid {
          grid-template-columns: 1fr;
        }
      }
      .why-card {
        background: var(--ivory-warm);
        padding: 44px 32px;
        transition: background 0.35s;
      }
      .why-card:hover {
        background: var(--white);
      }
      .why-card .num {
        font-family: var(--serif);
        font-style: italic;
        font-size: 15px;
        color: var(--clay);
        margin-bottom: 22px;
      }
      .why-card h3 {
        font-size: 21px;
        margin-bottom: 14px;
      }
      .why-card p {
        font-size: 14.5px;
        line-height: 1.65;
        color: rgba(28, 26, 21, 0.68);
      }

      /* ===== YOUR DAY TIMELINE (signature flight-line) ===== */
      .day {
        background: var(--charcoal);
        color: var(--ivory);
        position: relative;
      }
      .day .section-head h2,
      .day .section-head p {
        color: var(--ivory);
      }
      .day .section-head p {
        color: rgba(246, 242, 233, 0.65);
      }
      .timeline {
        position: relative;
        padding-left: 0;
      }
      .timeline-track {
        position: relative;
        margin-top: 20px;
      }
      .timeline-track::before {
        content: '';
        position: absolute;
        left: 5px;
        top: 6px;
        bottom: 6px;
        width: 1px;
        background-image: linear-gradient(
          rgba(180, 146, 78, 0.5) 60%,
          transparent 0%
        );
        background-size: 1px 10px;
        background-repeat: repeat-y;
      }
      @media (min-width: 900px) {
        .timeline-track::before {
          left: 50%;
          transform: translateX(-50%);
        }
      }
      .t-item {
        position: relative;
        padding-left: 28px;
        padding-bottom: 44px;
      }
      .t-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gold);
        z-index: 2;
      }
      @media (min-width: 900px) {
        .t-item {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 44px;
          padding-left: 0;
          padding-bottom: 56px;
          align-items: start;
        }
        .t-item::before {
          left: 50%;
          top: 6px;
          transform: translateX(-50%);
        }
        .t-item .t-time {
          text-align: right;
          padding-right: 34px;
        }
        .t-item .t-body {
          padding-left: 34px;
        }
        .t-item:nth-child(even) .t-body {
          grid-column: 1;
          grid-row: 1;
          text-align: right;
          padding-left: 0;
          padding-right: 34px;
        }
        .t-item:nth-child(even) .t-time {
          grid-column: 2;
          text-align: left;
          padding-right: 0;
          padding-left: 34px;
        }
      }
      .t-time {
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 6px;
        display: block;
      }
      @media (min-width: 900px) {
        .t-time {
          margin-bottom: 0;
          padding-top: 2px;
        }
      }
      .t-body h3 {
        font-size: 22px;
        color: var(--white);
        margin-bottom: 8px;
        font-weight: 500;
      }
      .t-body p {
        font-size: 14.5px;
        color: rgba(246, 242, 233, 0.68);
        line-height: 1.65;
        max-width: 420px;
      }
      .t-body ul.animals {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
      }
      .t-body ul.animals li {
        font-size: 11.5px;
        padding: 5px 12px;
        border: 1px solid rgba(246, 242, 233, 0.2);
        border-radius: 16px;
        color: rgba(246, 242, 233, 0.75);
      }
      .day-note {
        margin-top: 20px;
        font-size: 12.5px;
        color: rgba(246, 242, 233, 0.5);
        font-style: italic;
      }

      /* ===== WILDLIFE ===== */
      .wildlife {
        background: var(--green-deep);
        color: var(--ivory);
        position: relative;
        overflow: hidden;
      }
      .wildlife .section-head h2,
      .wildlife .section-head p {
        color: var(--ivory);
      }
      .wildlife .section-head p {
        color: rgba(246, 242, 233, 0.65);
      }
      .animal-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 18px;
      }
      @media (max-width: 900px) {
        .animal-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      @media (max-width: 520px) {
        .animal-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .animal-card {
        background: rgba(246, 242, 233, 0.05);
        border: 1px solid rgba(246, 242, 233, 0.12);
        border-radius: 2px;
        padding: 26px 14px;
        text-align: center;
        transition: all 0.3s;
      }
      .animal-card:hover {
        background: rgba(246, 242, 233, 0.1);
        transform: translateY(-4px);
      }
      .animal-card svg {
        width: 38px;
        height: 38px;
        stroke: var(--gold);
        margin: 0 auto 14px;
      }
      .animal-card span {
        font-size: 12.5px;
        letter-spacing: 0.04em;
      }
      .wildlife-note {
        margin-top: 36px;
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        color: var(--sand);
        max-width: 520px;
      }

      /* ===== INCLUDED ===== */
      .included {
        background: var(--white);
      }
      .inc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
      }
      @media (max-width: 800px) {
        .inc-grid {
          grid-template-columns: 1fr;
          gap: 36px;
        }
      }
      .inc-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
      }
      .inc-list li svg {
        width: 16px;
        height: 16px;
        stroke: var(--green);
        flex-shrink: 0;
        margin-top: 3px;
      }
      .exc-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
        color: rgba(28, 26, 21, 0.6);
      }
      .exc-list li svg {
        width: 16px;
        height: 16px;
        stroke: var(--clay);
        flex-shrink: 0;
        margin-top: 3px;
      }
      .list-label {
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--green);
        margin-bottom: 18px;
        font-weight: 600;
      }
      .transfer-note {
        margin-top: 28px;
        padding: 20px 22px;
        background: var(--ivory-warm);
        border-left: 2px solid var(--gold);
        font-size: 14px;
        line-height: 1.6;
        color: rgba(28, 26, 21, 0.75);
      }

      /* ===== PRICING ===== */
      .pricing {
        background: var(--ivory-warm);
      }
      .price-card {
        max-width: 520px;
        margin: 0 auto;
        background: var(--charcoal);
        color: var(--ivory);
        padding: 64px 48px;
        text-align: center;
        border-radius: 2px;
        position: relative;
      }
      @media (max-width: 560px) {
        .price-card {
          padding: 48px 26px;
        }
      }
      .price-card h3 {
        font-size: 24px;
        color: var(--white);
        margin-bottom: 6px;
        font-weight: 400;
      }
      .price-card .big {
        font-family: var(--serif);
        font-size: 76px;
        color: var(--gold);
        margin: 18px 0 4px;
      }
      .price-card .per {
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(246, 242, 233, 0.6);
        margin-bottom: 8px;
      }
      .price-card .flight-included {
        font-size: 12.5px;
        color: var(--sand);
        margin-bottom: 36px;
      }
      .price-summary {
        text-align: left;
        margin-bottom: 36px;
      }
      .price-summary li {
        display: flex;
        justify-content: space-between;
        padding: 11px 0;
        border-bottom: 1px solid rgba(246, 242, 233, 0.1);
        font-size: 14px;
        color: rgba(246, 242, 233, 0.85);
      }
      .price-card .note {
        font-size: 12px;
        color: rgba(246, 242, 233, 0.5);
        margin-top: 22px;
        line-height: 1.5;
      }

      /* ===== BOOKING ===== */
      .booking {
        background: var(--white);
      }
      .booking-panel {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid var(--line);
        border-radius: 2px;
        overflow: hidden;
      }
      .b-steps {
        display: flex;
        border-bottom: 1px solid var(--line);
        overflow-x: auto;
      }
      .b-step {
        flex: 1;
        min-width: 100px;
        text-align: center;
        padding: 16px 8px;
        font-size: 11px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(28, 26, 21, 0.4);
        border-bottom: 2px solid transparent;
        white-space: nowrap;
      }
      .b-step.active {
        color: var(--charcoal);
        border-color: var(--gold);
        font-weight: 600;
      }
      .b-body {
        padding: 44px 40px;
      }
      @media (max-width: 600px) {
        .b-body {
          padding: 32px 22px;
        }
      }
      .b-pane {
        display: none;
      }
      .b-pane.active {
        display: block;
        animation: fade 0.4s ease;
      }
      @keyframes fade {
        from {
          opacity: 0;
          transform: translateY(6px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .b-pane h3 {
        font-size: 24px;
        margin-bottom: 26px;
      }
      .field {
        margin-bottom: 20px;
      }
      .field label {
        display: block;
        font-size: 12px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(28, 26, 21, 0.55);
        margin-bottom: 8px;
      }
      .field input,
      .field select,
      .field textarea {
        width: 100%;
        padding: 13px 14px;
        border: 1px solid var(--line);
        border-radius: 2px;
        font-size: 15px;
        font-family: inherit;
        background: var(--ivory);
      }
      .field input:focus,
      .field select:focus,
      .field textarea:focus {
        outline: 2px solid var(--gold);
        outline-offset: 1px;
      }
      .field-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      @media (max-width: 520px) {
        .field-row {
          grid-template-columns: 1fr;
        }
      }
      .traveler-select {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
      .t-pill {
        padding: 12px 20px;
        border: 1px solid var(--line);
        border-radius: 20px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s;
      }
      .t-pill.selected {
        background: var(--charcoal);
        color: var(--ivory);
        border-color: var(--charcoal);
      }
      .b-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 32px;
      }
      .b-back {
        font-size: 13px;
        color: rgba(28, 26, 21, 0.55);
        text-decoration: underline;
      }
      .review-box {
        background: var(--ivory-warm);
        padding: 24px 26px;
        border-radius: 2px;
        margin-bottom: 8px;
      }
      .review-box .r-row {
        display: flex;
        justify-content: space-between;
        padding: 9px 0;
        font-size: 14.5px;
        border-bottom: 1px solid var(--line);
      }
      .review-box .r-row:last-child {
        border: none;
      }
      .review-box .r-total {
        font-weight: 700;
        font-size: 17px;
        padding-top: 14px;
      }
      .review-box .tbd {
        color: var(--clay);
        font-style: italic;
        font-size: 13px;
      }
      .thank-you {
        text-align: center;
        padding: 20px 0;
      }
      .thank-you h3 {
        margin-bottom: 14px;
      }
      .thank-you p {
        color: rgba(28, 26, 21, 0.7);
        line-height: 1.6;
        max-width: 420px;
        margin: 0 auto;
      }

      /* ===== TABS ===== */
      .tabs-section {
        background: var(--ivory-warm);
      }
      .tab-nav {
        display: flex;
        gap: 6px;
        border-bottom: 1px solid var(--line);
        overflow-x: auto;
        margin-bottom: 40px;
      }
      .tab-btn {
        padding: 14px 20px;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        color: rgba(28, 26, 21, 0.5);
        border-bottom: 2px solid transparent;
      }
      .tab-btn.active {
        color: var(--charcoal);
        border-color: var(--clay);
      }
      .tab-pane {
        display: none;
      }
      .tab-pane.active {
        display: block;
        animation: fade 0.4s ease;
      }
      .tab-pane p,
      .tab-pane li {
        font-size: 15.5px;
        line-height: 1.75;
        color: rgba(28, 26, 21, 0.75);
        margin-bottom: 10px;
      }
      .tab-pane li {
        list-style: disc;
        margin-left: 20px;
      }

      /* ===== GALLERY ===== */
      .gallery {
        background: var(--white);
      }
      .gal-filter {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 36px;
      }
      .gal-filter button {
        padding: 9px 18px;
        font-size: 12px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        border: 1px solid var(--line);
        border-radius: 20px;
      }
      .gal-filter button.active {
        background: var(--charcoal);
        color: var(--ivory);
        border-color: var(--charcoal);
      }
      .gal-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
      }
      @media (max-width: 900px) {
        .gal-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .gal-item {
        aspect-ratio: 1/1;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }
      .gal-item img,
      .gal-item .photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
      }
      .gal-item:hover img {
        transform: scale(1.05);
      }
      .lightbox {
        position: fixed;
        inset: 0;
        background: rgba(10, 9, 7, 0.94);
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 40px;
      }
      .lightbox.open {
        display: flex;
      }
      .lightbox .photo {
        max-width: 800px;
        width: 100%;
        max-height: 85vh;
        height: auto;
        object-fit: contain;
      }
      .lightbox-close {
        position: absolute;
        top: 26px;
        right: 30px;
        color: var(--ivory);
        font-size: 30px;
      }

      /* ===== REVIEWS ===== */
      .reviews {
        background: var(--white);
      }
      .reviews-intro {
        max-width: 640px;
        margin: 0 auto 44px;
        text-align: center;
      }
      .reviews-intro .eyebrow {
        justify-content: center;
      }

      .rating-summary {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 56px;
        flex-wrap: wrap;
        background: var(--ivory-warm);
        padding: 42px 48px;
        margin-bottom: 20px;
        border: 1px solid rgba(180, 146, 78, 0.22);
        border-radius: 6px;
        box-shadow: 0 12px 30px rgba(28, 26, 21, 0.06);
      }
      @media (max-width: 700px) {
        .rating-summary {
          flex-direction: column;
          gap: 26px;
          padding: 32px 26px;
          text-align: center;
        }
      }
      .rs-score {
        text-align: center;
      }
      .rs-score .rs-label {
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--clay);
        margin-bottom: 6px;
      }
      .rs-score .rs-stars {
        color: var(--gold);
        display: block;
        font-size: 25px;
        line-height: 1;
        letter-spacing: 5px;
        margin: 10px 0 9px;
        text-shadow: 0 2px 8px rgba(180, 146, 78, 0.22);
      }
      .rs-score .rs-num {
        font-family: var(--serif);
        font-size: 44px;
        color: var(--charcoal);
        line-height: 1;
      }
      .rs-score .rs-count {
        font-size: 12.5px;
        color: rgba(28, 26, 21, 0.55);
        margin-top: 6px;
      }
      .rs-bars {
        flex: 1;
        min-width: 220px;
        max-width: 340px;
      }
      .rs-bar-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 7px;
        font-size: 12px;
        color: rgba(28, 26, 21, 0.6);
      }
      .rs-bar-row .rs-bar-label {
        width: 32px;
        flex-shrink: 0;
      }
      .rs-bar-track {
        flex: 1;
        height: 6px;
        background: rgba(28, 26, 21, 0.08);
        border-radius: 4px;
        overflow: hidden;
      }
      .rs-bar-fill {
        height: 100%;
        background: var(--gold);
        border-radius: 4px;
      }
      .rs-bar-row .rs-bar-count {
        width: 26px;
        text-align: right;
        flex-shrink: 0;
        color: rgba(28, 26, 21, 0.45);
      }
      .reviews-demo-note {
        text-align: center;
        font-size: 12.5px;
        color: rgba(28, 26, 21, 0.5);
        font-style: italic;
        margin-bottom: 44px;
      }

      .review-filters {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 38px;
      }
      .review-filters button {
        padding: 11px 18px;
        font-size: 12px;
        letter-spacing: 0.04em;
        border: 1px solid var(--line);
        border-radius: 20px;
        color: rgba(28, 26, 21, 0.6);
        white-space: nowrap;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      }
      .review-filters button:hover {
        border-color: var(--gold);
        color: var(--charcoal);
      }
      .review-filters button.active {
        background: var(--charcoal);
        color: var(--ivory);
        border-color: var(--charcoal);
      }

      .review-track-wrap {
        margin-bottom: 36px;
      }
      .review-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
      }
      @media (max-width: 900px) {
        .review-track {
          display: flex;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          gap: 16px;
          margin: 0 -20px;
          padding: 4px 20px 10px;
          -webkit-overflow-scrolling: touch;
        }
        .review-card {
          scroll-snap-align: start;
          flex: 0 0 84%;
        }
      }
      .review-card {
        background: linear-gradient(145deg, var(--white), #fbf8f0);
        border: 1px solid var(--line);
        border-radius: 6px;
        padding: 26px 24px 22px;
        box-shadow: 0 2px 10px rgba(28, 26, 21, 0.04);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        display: flex;
        flex-direction: column;
        min-height: 270px;
        position: relative;
        overflow: hidden;
      }
      .review-card::before {
        content: '“';
        position: absolute;
        top: 10px;
        right: 20px;
        color: rgba(180, 146, 78, 0.16);
        font-family: var(--serif);
        font-size: 68px;
        line-height: 1;
      }
      .review-card:hover {
        box-shadow: 0 10px 28px rgba(28, 26, 21, 0.09);
        transform: translateY(-2px);
      }
      .review-card .rc-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 18px;
      }
      .review-card .rc-stars {
        color: var(--gold);
        font-size: 17px;
        line-height: 1;
        letter-spacing: 3px;
        text-shadow: 0 1px 5px rgba(180, 146, 78, 0.18);
      }
      .review-card .rc-badge {
        font-size: 10.5px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 12px;
        font-weight: 600;
      }
      .review-card .rc-badge.verified {
        background: rgba(62, 74, 52, 0.1);
        color: var(--green);
      }
      .review-card .rc-badge.demo {
        background: rgba(180, 146, 78, 0.15);
        color: var(--clay);
      }
      .review-card h4 {
        font-family: var(--serif);
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 10px;
        font-weight: 500;
        color: var(--charcoal);
      }
      .review-card p.quote {
        font-size: 14px;
        line-height: 1.65;
        color: rgba(28, 26, 21, 0.72);
        margin-bottom: 18px;
        flex: 1;
      }
      .review-card .rc-response {
        background: var(--ivory-warm);
        border-left: 2px solid var(--gold);
        padding: 12px 14px;
        font-size: 12.5px;
        color: rgba(28, 26, 21, 0.7);
        margin-bottom: 16px;
        border-radius: 2px;
        line-height: 1.6;
      }
      .review-card .rc-response strong {
        color: var(--charcoal);
        display: block;
        margin-bottom: 3px;
        font-size: 11.5px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }
      .review-card .rc-photo {
        width: 100%;
        aspect-ratio: 16/10;
        border-radius: 4px;
        margin-bottom: 16px;
        background: linear-gradient(150deg, #6b5a3a, #2c3524);
      }
      .review-card .rc-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-top: 14px;
        border-top: 1px solid var(--line);
        font-size: 12px;
        color: rgba(28, 26, 21, 0.5);
      }
      .review-card .rc-name {
        font-weight: 600;
        color: var(--charcoal);
      }
      .review-card .rc-tour {
        font-size: 11.5px;
        color: var(--clay);
        margin-top: 2px;
        text-align: right;
      }

      .reviews-cta {
        text-align: center;
      }

      /* Review submission modal */
      .review-modal-inner {
        background: var(--ivory);
        max-width: 640px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 2px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
      }
      .review-modal-body {
        padding: 8px 36px 40px;
      }
      @media (max-width: 600px) {
        .review-modal-body {
          padding: 8px 20px 32px;
        }
      }
      .star-picker {
        display: flex;
        gap: 8px;
        font-size: 30px;
        color: rgba(28, 26, 21, 0.2);
        cursor: pointer;
      }
      .star-picker span {
        display: inline-block;
        line-height: 1;
        transition: color 0.15s, transform 0.15s;
      }
      .star-picker span:hover {
        transform: translateY(-2px) scale(1.08);
      }
      .star-picker span.active {
        color: var(--gold);
        text-shadow: 0 2px 8px rgba(180, 146, 78, 0.24);
      }
      .rf-note {
        font-size: 12.5px;
        color: rgba(28, 26, 21, 0.55);
        line-height: 1.6;
        margin-top: 6px;
      }
      .review-thanks {
        text-align: center;
        padding: 40px 10px;
      }
      .review-thanks h3 {
        margin-bottom: 14px;
      }
      .review-thanks p {
        color: rgba(28, 26, 21, 0.7);
        line-height: 1.6;
        max-width: 400px;
        margin: 0 auto;
      }
      @media (max-width: 520px) {
        .review-filters {
          justify-content: flex-start;
          flex-wrap: nowrap;
          overflow-x: auto;
          margin: 0 -20px 30px;
          padding: 0 20px 8px;
        }
        .review-filters button {
          flex: 0 0 auto;
        }
        .review-card {
          min-height: 250px;
          padding: 24px 20px 20px;
        }
        .review-card .rc-meta {
          align-items: flex-start;
          flex-direction: column;
        }
        .review-card .rc-tour {
          text-align: left;
        }
      }

      /* ===== FAQ ===== */
      .faq {
        background: var(--white);
      }
      .faq-list {
        max-width: 760px;
        margin: 0 auto;
      }
      .faq-item {
        border-bottom: 1px solid var(--line);
      }
      .faq-q {
        width: 100%;
        text-align: left;
        padding: 24px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16.5px;
        font-weight: 500;
      }
      .faq-q .plus {
        font-size: 20px;
        color: var(--clay);
        transition: transform 0.3s;
      }
      .faq-item.open .plus {
        transform: rotate(45deg);
      }
      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }
      .faq-a p {
        padding-bottom: 22px;
        font-size: 15px;
        line-height: 1.7;
        color: rgba(28, 26, 21, 0.7);
        max-width: 640px;
      }

      /* ===== CONTACT ===== */
      .contact {
        background: var(--white);
      }
      .contact-intro {
        max-width: 680px;
        margin: 0 auto 70px;
        text-align: center;
      }
      .contact-intro .lead {
        font-family: var(--serif);
        font-style: italic;
        font-size: clamp(22px, 3vw, 28px);
        color: var(--charcoal);
        margin: 16px 0 20px;
      }
      .contact-intro p.desc {
        font-size: 16px;
        color: rgba(28, 26, 21, 0.72);
        line-height: 1.7;
        margin-bottom: 24px;
      }
      .contact-brand-line {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding-top: 6px;
        border-top: 1px solid var(--line);
      }
      .contact-brand-line .b-name {
        font-family: var(--serif);
        font-size: 15px;
        color: var(--charcoal);
      }
      .contact-brand-line .b-tag {
        font-family: var(--serif);
        font-style: italic;
        font-size: 13px;
        color: var(--clay);
      }

      .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        margin-bottom: 90px;
      }
      @media (max-width: 800px) {
        .contact-grid {
          grid-template-columns: 1fr;
        }
      }
      .contact-card {
        background: var(--white);
        padding: 40px 34px;
        text-align: left;
      }
      .contact-card .c-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--ivory-warm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
      }
      .contact-card .c-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--clay);
      }
      .contact-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
        font-weight: 500;
      }
      .contact-card p {
        font-size: 14px;
        color: rgba(28, 26, 21, 0.65);
        line-height: 1.6;
        margin-bottom: 16px;
      }
      .contact-card .c-detail {
        font-family: var(--serif);
        font-size: 17px;
        color: var(--charcoal);
        margin-bottom: 20px;
        display: block;
      }
      .contact-card .btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 11.5px;
      }

      .contact-plan {
        background: var(--ivory-warm);
        padding: 64px 56px;
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 56px;
        align-items: center;
        margin-bottom: 20px;
      }
      @media (max-width: 800px) {
        .contact-plan {
          grid-template-columns: 1fr;
          padding: 40px 28px;
          gap: 34px;
        }
      }
      .contact-plan h3 {
        font-size: 26px;
        margin-bottom: 8px;
      }
      .contact-plan .plan-sub {
        font-size: 14.5px;
        color: rgba(28, 26, 21, 0.6);
        margin-bottom: 22px;
      }
      .contact-plan ul {
        margin: 0 0 0 0;
      }
      .contact-plan li {
        font-size: 14.5px;
        color: rgba(28, 26, 21, 0.75);
        padding: 8px 0;
        border-bottom: 1px solid var(--line);
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .contact-plan li svg {
        width: 14px;
        height: 14px;
        stroke: var(--clay);
        flex-shrink: 0;
      }
      .contact-plan-card {
        background: var(--charcoal);
        color: var(--ivory);
        padding: 36px 32px;
        text-align: center;
        border-radius: 2px;
      }
      .contact-plan-card .amount {
        font-family: var(--serif);
        font-size: 44px;
        color: var(--gold);
        margin: 4px 0;
      }
      .contact-plan-card .amount span {
        font-family: var(--sans);
        font-size: 13px;
        color: rgba(246, 242, 233, 0.6);
      }
      .contact-plan-card .plan-line {
        font-size: 12.5px;
        color: rgba(246, 242, 233, 0.7);
        margin: 4px 0;
      }
      .contact-plan-card .btn {
        width: 100%;
        margin-top: 18px;
      }

      /* ===== FINAL CTA ===== */
      .final-cta {
        position: relative;
        padding: 140px 0;
        text-align: center;
        color: var(--white);
        background: linear-gradient(
            180deg,
            rgba(20, 19, 15, 0.55),
            rgba(15, 14, 11, 0.88)
          ),
          linear-gradient(120deg, #4a4028, #2b3524 60%, #1f2418);
      }
      .final-cta h2 {
        font-size: clamp(32px, 5vw, 54px);
        margin-bottom: 20px;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
      }
      .final-cta .sub {
        font-size: 17px;
        color: rgba(246, 242, 233, 0.75);
        margin-bottom: 10px;
      }
      .final-cta .price {
        font-family: var(--serif);
        font-size: 22px;
        color: var(--gold);
        margin-bottom: 38px;
      }
      .final-cta .btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ===== FOOTER ===== */
      footer {
        background: var(--charcoal);
        color: rgba(246, 242, 233, 0.7);
        padding: 80px 0 30px;
      }
      .foot-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 50px;
        padding-bottom: 50px;
        border-bottom: 1px solid rgba(246, 242, 233, 0.1);
      }
      @media (max-width: 700px) {
        .foot-grid {
          grid-template-columns: 1fr;
          gap: 34px;
        }
      }
      .foot-logo {
        font-family: var(--serif);
        font-size: 24px;
        color: var(--white);
        margin-bottom: 12px;
      }
      .foot-tag {
        font-family: var(--serif);
        font-style: italic;
        color: var(--sand);
        font-size: 15px;
      }
      .social-links {
        display: flex;
        gap: 10px;
        margin-top: 24px;
      }
      .social-links a {
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(246, 242, 233, 0.2);
        border-radius: 50%;
        color: var(--ivory);
        transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
      }
      .social-links a:hover {
        color: var(--gold);
        border-color: var(--gold);
        transform: translateY(-2px);
      }
      .social-links svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .social-links .social-dot {
        fill: currentColor;
        stroke: none;
      }
      .foot-col h4 {
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(246, 242, 233, 0.5);
        margin-bottom: 18px;
      }
      .foot-col li {
        margin-bottom: 11px;
        font-size: 14px;
      }
      .foot-col a:hover {
        color: var(--gold);
      }
      .foot-bottom {
        padding-top: 26px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12.5px;
        color: rgba(246, 242, 233, 0.4);
      }

      /* ===== LEGAL MODAL (Privacy Policy etc.) ===== */
      .legal-modal {
        position: fixed;
        inset: 0;
        z-index: 3000;
        background: rgba(10, 9, 7, 0.72);
        display: none;
        align-items: flex-start;
        justify-content: center;
        padding: 40px 20px;
        backdrop-filter: blur(3px);
      }
      .legal-modal.open {
        display: flex;
      }
      .legal-modal-inner {
        background: var(--ivory);
        max-width: 820px;
        width: 100%;
        max-height: 88vh;
        overflow-y: auto;
        border-radius: 2px;
        position: relative;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
      }
      .legal-modal-head {
        position: sticky;
        top: 0;
        z-index: 2;
        background: var(--charcoal);
        color: var(--white);
        padding: 22px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .legal-modal-head .lm-title {
        font-family: var(--serif);
        font-size: 19px;
      }
      .legal-modal-head .lm-updated {
        font-size: 11.5px;
        color: var(--sand);
        font-style: italic;
        margin-top: 3px;
      }
      .legal-modal-close {
        font-size: 24px;
        color: var(--ivory);
        line-height: 1;
        padding: 4px 8px;
      }
      .legal-modal-close:hover {
        color: var(--gold);
      }
      .legal-modal-body {
        padding: 36px 34px 50px;
      }
      @media (max-width: 600px) {
        .legal-modal-body {
          padding: 26px 20px 40px;
        }
        .legal-modal-head {
          padding: 18px 20px;
        }
      }
      .legal-modal-body h2 {
        font-family: var(--serif);
        font-weight: 500;
        font-size: 20px;
        margin: 34px 0 14px;
        color: var(--charcoal);
      }
      .legal-modal-body h2:first-child {
        margin-top: 0;
      }
      .legal-modal-body h3 {
        font-size: 13px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--clay);
        margin: 22px 0 8px;
        font-weight: 600;
      }
      .legal-modal-body p {
        font-size: 14.5px;
        color: rgba(28, 26, 21, 0.78);
        margin-bottom: 12px;
        line-height: 1.7;
      }
      .legal-modal-body ul {
        margin: 0 0 14px 20px;
      }
      .legal-modal-body li {
        font-size: 14.5px;
        color: rgba(28, 26, 21, 0.78);
        margin-bottom: 6px;
        list-style: disc;
        line-height: 1.6;
      }
      .legal-modal-body strong {
        color: var(--charcoal);
        font-weight: 600;
      }
      .legal-modal-body hr {
        border: none;
        border-top: 1px solid var(--line);
        margin: 32px 0;
      }
      .lm-contact {
        background: var(--white);
        border: 1px solid var(--line);
        border-left: 2px solid var(--gold);
        padding: 20px 22px;
        margin: 18px 0;
        border-radius: 2px;
      }
      .lm-contact p {
        margin-bottom: 5px;
        font-size: 13.5px;
      }
      .lm-contact p:last-child {
        margin-bottom: 0;
      }
      .lm-disclaimer {
        background: var(--green-deep);
        color: var(--ivory);
        padding: 22px 24px;
        margin-top: 36px;
        border-radius: 2px;
      }
      .lm-disclaimer p {
        color: rgba(246, 242, 233, 0.85);
        font-size: 13px;
        font-style: italic;
        margin: 0;
        line-height: 1.7;
      }

      .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 900;
        background: var(--charcoal);
        color: var(--white);
        padding: 14px 20px;
        display: none;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
      }
      .mobile-cta .price {
        font-size: 14px;
        font-weight: 600;
      }
      .mobile-cta .price span {
        display: block;
        font-size: 10px;
        color: rgba(246, 242, 233, 0.6);
        font-weight: 400;
      }
      @media (max-width: 768px) {
        .mobile-cta {
          display: flex;
        }
        body {
          padding-bottom: 68px;
        }
      }

      /* ===== WHATSAPP FLOATING BUTTON ===== */
      .wa-float {
        position: fixed;
        right: 24px;
        bottom: calc(28px + env(safe-area-inset-bottom, 0px));
        z-index: 950;
        display: flex;
        align-items: center;
        height: 60px;
        min-width: 60px;
        background: #25d366;
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(18, 20, 16, 0.28),
          0 2px 8px rgba(18, 20, 16, 0.18);
        transition: min-width 0.45s cubic-bezier(0.6, 0, 0.2, 1),
          box-shadow 0.3s ease, transform 0.3s ease;
        text-decoration: none;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
      }
      .wa-float:hover {
        box-shadow: 0 12px 32px rgba(18, 20, 16, 0.34),
          0 3px 10px rgba(18, 20, 16, 0.2);
      }
      @media (hover: hover) {
        .wa-float:hover {
          transform: translateY(-3px);
        }
      }
      .wa-icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .wa-icon svg {
        width: 30px;
        height: 30px;
      }
      .wa-label {
        max-width: 0;
        overflow: hidden;
        white-space: nowrap;
        color: #fff;
        font-family: var(--sans);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.01em;
        opacity: 0;
        transition: max-width 0.45s cubic-bezier(0.6, 0, 0.2, 1),
          opacity 0.3s ease 0.1s, padding 0.45s ease;
      }
      .wa-float.expanded {
        min-width: 210px;
      }
      .wa-float.expanded .wa-label {
        max-width: 170px;
        opacity: 1;
        padding-right: 22px;
      }
      .wa-tooltip {
        position: absolute;
        right: 72px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--charcoal);
        color: var(--ivory);
        font-size: 12.5px;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: 4px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
      }
      .wa-tooltip::after {
        content: '';
        position: absolute;
        right: -5px;
        top: 50%;
        transform: translateY(-50%);
        border: 5px solid transparent;
        border-left-color: var(--charcoal);
      }
      @media (hover: hover) {
        .wa-float:hover .wa-tooltip {
          opacity: 1;
          transform: translateY(-50%) translateX(-4px);
        }
      }
      .wa-float.expanded .wa-tooltip {
        display: none;
      }
      @media (max-width: 768px) {
        .wa-float {
          right: 16px;
          height: 54px;
          min-width: 54px;
          bottom: calc(84px + env(safe-area-inset-bottom, 0px));
        }
        .wa-icon {
          width: 54px;
          height: 54px;
          flex-basis: 54px;
        }
        .wa-icon svg {
          width: 27px;
          height: 27px;
        }
        .wa-tooltip {
          display: none;
        }
      }

      /* reveal on scroll */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (prefers-reduced-motion: reduce) {
        * {
          animation: none !important;
          transition: none !important;
        }
      }