
    * { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --purple-deep: #14061f;
      --purple-soft: #2c1a38;
      --purple-glass: rgba(20, 6, 31, .86);
      --gold: #e3bc6c;
      --gold-soft: #f4dca1;
      --gold-dark: #a9792e;
      --white: #ffffff;
      --ivory: #fbf7ef;
      --cream: #f5efe4;
      --ink: #1e1b24;
      --muted-dark: #6b6372;
      --muted-light: rgba(255,255,255,.72);
      --line-gold: rgba(227,188,108,.28);
      --line-dark: rgba(30,27,36,.1);
      --shadow-soft: 0 24px 80px rgba(20,6,31,.14);
      --shadow-deep: 0 34px 100px rgba(0,0,0,.32);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --container: min(1120px, calc(100vw - 32px));
      --ease: cubic-bezier(.22, 1, .36, 1);
    }

    html,
    body {
      max-width: 100%;
      overflow-x: clip;
    }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background: var(--ivory);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 14px;
      text-rendering: geometricPrecision;
    }

    body.menu-open,
    body.modal-open { overflow: hidden; }

    @media (max-width: 720px) {
      body { padding-bottom: 92px; }
    }

    img, video, iframe, svg {
      display: block;
      max-width: 100%;
    }

    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; max-width: 100%; }
    button { cursor: pointer; }

    p, li, a, span, strong, dd, dt, h1, h2, h3 {
      overflow-wrap: anywhere;
    }

    h1, h2, h3, h4, h5, h6 {
      margin: 0;
      font-family: var(--serif);
      font-weight: 400;
      letter-spacing: -.015em;
    }

    h1 { font-size: clamp(30px, 4.4vw, 36px); line-height: 1.05; }
    h2 { font-size: clamp(24px, 3vw, 28px); line-height: 1.12; }
    h3 { font-size: 24px; line-height: 1.16; }
    h4, h5, h6 { font-size: 22px; line-height: 1.18; }

    p, li {
      font-size: 14px;
      line-height: 1.65;
      color: var(--muted-dark);
    }

    .container {
      width: var(--container);
      margin-inline: auto;
      min-width: 0;
    }

    .section {
      padding: 72px 0;
      overflow-x: clip;
    }

    @media (max-width: 620px) {
      .section { padding: 54px 0; }
      p { line-height: 1.6; }
      h3 { font-size: 22px; }
    }

    .section.dark {
      background: var(--purple-deep);
      color: var(--white);
    }

    .section.dark p,
    .section.dark li { color: var(--muted-light); }

    .section.dark h2,
    .section.dark h3 { color: var(--white); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
    }

    .section-head {
      display: grid;
      gap: 12px;
      max-width: 650px;
      margin-bottom: 34px;
    }

    .section-head.center {
      margin-inline: auto;
      text-align: center;
      justify-items: center;
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 18px;
      border: 1px solid var(--gold);
      background: transparent;
      color: var(--purple-deep);
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 11px;
      font-weight: 600;
      cursor: pointer;
      transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    }

    .btn:hover {
      transform: translateY(-2px);
      background: var(--gold);
      color: var(--purple-deep);
      box-shadow: 0 14px 34px rgba(227,188,108,.24);
    }

    .btn.light { color: var(--white); }

    .btn.filled {
      background: linear-gradient(135deg, var(--gold), var(--gold-soft));
      border-color: transparent;
      color: var(--purple-deep);
      box-shadow: 0 16px 38px rgba(227,188,108,.2);
    }

    .icon {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex: 0 0 auto;
    }

    .site-progress {
      position: fixed;
      inset: 0 auto auto 0;
      z-index: 100;
      height: 2px;
      width: 0%;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-soft));
      transform-origin: left;
    }

    /* ===== SMART NAVBAR ===== */
    .navbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 90;
      padding: 12px 0;
      padding-top: calc(12px + env(safe-area-inset-top));
      background: linear-gradient(180deg, rgba(20,6,31,.76), transparent);
      border-bottom: 1px solid transparent;
      transform: translateY(0);
      transition:
        transform .32s var(--ease),
        background .28s var(--ease),
        border-color .28s var(--ease),
        padding .28s var(--ease);
    }

    .navbar.scrolled {
      padding: 8px 0;
      padding-top: calc(8px + env(safe-area-inset-top));
      background: rgba(20,6,31,.9);
      backdrop-filter: blur(16px);
      border-color: var(--line-gold);
    }

    .navbar.nav-hidden {
      transform: translateY(-110%);
    }

    .nav-inner {
      width: min(1220px, calc(100vw - 32px));
      min-height: 52px;
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-width: 0;
    }

    .logo-link {
      display: inline-flex;
      align-items: center;
      width: 138px;
      min-width: 0;
    }

    .brand-logo-img {
      width: 138px;
      max-height: 42px;
      height: auto;
      object-fit: contain;
    }

    .logo-fallback {
      width: 138px;
      display: grid;
      gap: 2px;
      color: var(--white);
    }

    .logo-fallback strong {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 400;
      letter-spacing: .08em;
      line-height: 1;
      color: var(--white);
    }

    .logo-fallback span {
      color: var(--gold);
      font-size: 8px;
      font-weight: 600;
      letter-spacing: .32em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      min-width: 0;
    }

    .nav-links a {
      position: relative;
      color: rgba(255,255,255,.78);
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 10px;
      font-weight: 600;
      transition: color .2s var(--ease);
      white-space: nowrap;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 100%;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .25s var(--ease);
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--gold-soft); }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(227,188,108,.32);
      background: rgba(255,255,255,.06);
      color: var(--gold-soft);
      backdrop-filter: blur(12px);
      border-radius: 999px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .menu-toggle span {
      width: 16px;
      height: 1px;
      background: currentColor;
      transition: transform .25s var(--ease), opacity .25s var(--ease);
    }

    .menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
    .menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }

    .mobile-panel {
      position: fixed;
      inset: 0 0 0 auto;
      width: min(380px, 88vw);
      z-index: 120;
      background:
        radial-gradient(circle at 70% 0%, rgba(227,188,108,.12), transparent 18rem),
        var(--purple-deep);
      padding: 78px 24px 24px;
      padding-top: calc(78px + env(safe-area-inset-top));
      box-shadow: -24px 0 80px rgba(0,0,0,.36);
      border-left: 1px solid var(--line-gold);
      backdrop-filter: blur(18px);
      transform: translateX(110%);
      transition: transform .35s var(--ease);
    }

    .mobile-panel.open { transform: translateX(0); }

    .mobile-panel a {
      display: block;
      padding: 18px 0;
      color: var(--white);
      font-family: var(--serif);
      font-size: 22px;
      border-bottom: 1px solid rgba(227,188,108,.18);
    }

    .mobile-panel a::after {
      content: "→";
      float: right;
      color: var(--gold);
      font-family: var(--sans);
      font-size: 14px;
      margin-top: 6px;
    }

    .mobile-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line-gold);
      background: transparent;
      color: var(--gold);
      font-size: 24px;
      cursor: pointer;
      border-radius: 999px;
    }

    .scrim {
      position: fixed;
      inset: 0;
      z-index: 110;
      background: rgba(0,0,0,.5);
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s var(--ease);
    }

    .scrim.open {
      opacity: 1;
      pointer-events: auto;
    }

    @media (max-width: 960px) {
      .nav-links,
      .navbar .btn { display: none; }
      .menu-toggle { display: flex; }
    }

    @media (max-width: 620px) {
      .logo-link,
      .brand-logo-img,
      .logo-fallback {
        width: 124px;
        max-height: 38px;
      }

      .logo-fallback strong { font-size: 18px; }
      .logo-fallback span { font-size: 7px; }
    }

    @media (min-width: 761px) and (max-width: 1024px) {
      .nav-links { gap: 16px; }
      .logo-link,
      .brand-logo-img,
      .logo-fallback { width: 130px; }
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 94svh;
      display: grid;
      align-items: center;
      color: var(--white);
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(60, 60, 61, 0), rgba(63, 62, 63, 0.016)),
        linear-gradient(90deg, rgba(70, 69, 70, 0), rgba(78, 77, 78, 0.023)),
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1900&q=82") center/cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 22% 24%, rgba(227,188,108,.18), transparent 22rem),
        linear-gradient(0deg, var(--ivory), transparent 7rem);
      pointer-events: none;
    }

    .hero .container {
      padding-top: calc(116px + env(safe-area-inset-top));
      padding-bottom: 58px;
      display: grid;
      grid-template-columns: 1fr 330px;
      gap: 48px;
      align-items: end;
    }

    .hero-copy {
      max-width: 620px;
      display: grid;
      gap: 16px;
    }

    .hero p { color: var(--muted-light); max-width: 560px; }

    .hero-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 6px;
    }

    .hero-card {
      padding: 22px;
      border: 1px solid var(--line-gold);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow-deep);
    }

    .hero-card small {
      display: block;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: 10px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .hero-card strong {
      display: block;
      color: var(--gold-soft);
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 400;
      line-height: 1;
      margin-bottom: 10px;
    }

    .hero-card span {
      display: block;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.5;
    }

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--line-gold);
      background: rgba(20,6,31,.58);
      backdrop-filter: blur(14px);
      margin-top: 16px;
      max-width: 820px;
    }

    .trust-strip span {
      padding: 14px 12px;
      color: var(--gold-soft);
      text-align: center;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .16em;
      border-right: 1px solid rgba(227,188,108,.18);
    }

    .trust-strip span:last-child { border-right: 0; }

    @media (max-width: 860px) {
      .hero .container {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .hero-card {
        max-width: 420px;
      }
    }

    @media (max-width: 620px) {
      .hero {
        min-height: 90svh;
        background-position: center top;
      }

      .hero .container {
        padding-top: calc(110px + env(safe-area-inset-top));
        padding-bottom: 46px;
      }

      .hero h1,
      .hero p {
        max-width: 340px;
      }

      .hero-actions .btn { width: 100%; }

      .trust-strip {
        grid-template-columns: 1fr 1fr;
      }

      .trust-strip span {
        border-bottom: 1px solid rgba(227,188,108,.18);
      }

      .trust-strip span:nth-child(2) {
        border-right: 0;
      }
    }

    /* ===== QUICK FACTS ===== */
    .quick-facts {
      margin-top: -44px;
      position: relative;
      z-index: 5;
    }

    .facts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--white);
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--line-gold);
    }

    .fact {
      padding: 24px 20px;
      border-right: 1px solid var(--line-dark);
      text-align: center;
    }

    .fact:last-child { border-right: 0; }

    .fact strong {
      display: block;
      font-family: var(--serif);
      font-size: 30px;
      font-weight: 400;
      color: var(--purple-deep);
      line-height: 1;
      margin-bottom: 8px;
    }

    .fact span {
      display: block;
      color: var(--muted-dark);
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: 10px;
      font-weight: 600;
    }

    @media (max-width: 760px) {
      .facts-grid {
        grid-template-columns: 1fr 1fr;
      }

      .fact {
        border-right: 1px solid var(--line-dark);
        border-bottom: 1px solid var(--line-dark);
      }

      .fact:nth-child(2),
      .fact:nth-child(4) {
        border-right: 0;
      }

      .fact:nth-child(3),
      .fact:nth-child(4) {
        border-bottom: 0;
      }
    }

    /* ===== INTRO / OVERVIEW ===== */
    .overview-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 32px;
      align-items: center;
    }

    .overview-image {
      min-height: 460px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background:
        linear-gradient(0deg, rgba(20,6,31,.28), transparent),
        url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1100&q=82") center/cover no-repeat;
    }

    .overview-image::after {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(227,188,108,.58);
      pointer-events: none;
    }

    .overview-copy {
      display: grid;
      gap: 18px;
      min-width: 0;
    }

    .mini-card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 4px;
    }

    .mini-card {
      background: var(--white);
      border: 1px solid rgba(30,27,36,.08);
      padding: 16px;
      box-shadow: 0 14px 40px rgba(20,6,31,.06);
      transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
    }

    .mini-card:hover {
      transform: translateY(-3px);
      border-color: rgba(227,188,108,.45);
      box-shadow: 0 18px 54px rgba(20,6,31,.1);
    }

    .mini-card .icon {
      color: var(--gold);
      margin-bottom: 8px;
    }

    .mini-card strong {
      display: block;
      color: var(--purple-deep);
      font-size: 13px;
      margin-bottom: 4px;
    }

    .mini-card span {
      color: var(--muted-dark);
      font-size: 13px;
      line-height: 1.45;
    }

    @media (max-width: 860px) {
      .overview-grid {
        grid-template-columns: 1fr;
      }

      .overview-image {
        min-height: 340px;
      }
    }

    @media (max-width: 620px) {
      .mini-card-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== FEATURED ROUTES ===== */
    .route-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .route-card {
      position: relative;
      min-height: 300px;
      padding: 22px;
      display: grid;
      align-items: end;
      color: var(--white);
      overflow: hidden;
      background: var(--route-img) center/cover no-repeat;
      box-shadow: var(--shadow-soft);
      isolation: isolate;
    }

    .route-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(0deg, rgba(20,6,31,.9), rgba(20,6,31,.16));
    }

    .route-card::after {
      content: "";
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(227,188,108,.42);
      pointer-events: none;
    }

    .route-card span {
      display: block;
      color: var(--gold-soft);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .18em;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .route-card h3 {
      color: var(--white);
      margin-bottom: 8px;
    }

    .route-card p {
      color: rgba(255,255,255,.72);
      margin-bottom: 16px;
    }

    .route-card .btn {
      width: fit-content;
      color: var(--white);
      position: relative;
      z-index: 2;
    }

    @media (max-width: 900px) {
      .route-grid {
        grid-template-columns: 1fr;
      }

      .route-card {
        min-height: 260px;
      }
    }

    /* ===== GALLERY ===== */
    .gallery-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      grid-template-rows: 230px 230px;
      gap: 14px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      background: var(--img) center/cover no-repeat;
      cursor: pointer;
      box-shadow: 0 18px 60px rgba(20,6,31,.08);
      border: 1px solid rgba(227,188,108,.18);
    }

    .gallery-item:first-child {
      grid-row: span 2;
    }

    .gallery-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(20,6,31,.72), transparent 60%);
      opacity: .7;
      transition: opacity .2s var(--ease);
    }

    .gallery-item:hover::before {
      opacity: .9;
    }

    .gallery-label {
      position: absolute;
      left: 16px;
      bottom: 16px;
      color: var(--gold-soft);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: 10px;
      font-weight: 600;
      z-index: 1;
    }

    @media (max-width: 760px) {
      .gallery-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 82%;
        grid-template-columns: none;
        grid-template-rows: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 8px;
      }

      .gallery-grid::-webkit-scrollbar { display: none; }

      .gallery-item {
        min-height: 360px;
        scroll-snap-align: start;
      }

      .gallery-item:first-child {
        grid-row: auto;
      }
    }

    /* ===== PRICE / BUYING GUIDE ===== */
    .buying-grid {
      display: grid;
      grid-template-columns: 1fr 330px;
      gap: 34px;
      align-items: center;
    }

    .buying-points {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .buying-point {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border: 1px solid rgba(227,188,108,.18);
      background: rgba(255,255,255,.06);
    }

    .buying-point .icon {
      color: var(--gold);
      margin-top: 2px;
    }

    .buying-point strong {
      display: block;
      color: var(--white);
      margin-bottom: 2px;
      font-size: 13px;
    }

    .buying-point small {
      color: var(--muted-light);
      font-size: 13px;
      line-height: 1.45;
    }

    .price-card {
      padding: 26px;
      border: 1px solid var(--line-gold);
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(18px);
      box-shadow: 0 24px 70px rgba(0,0,0,.18);
    }

    .price-card span {
      display: block;
      color: rgba(255,255,255,.64);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .22em;
      margin-bottom: 10px;
    }

    .price-card strong {
      display: block;
      color: var(--gold-soft);
      font-family: var(--serif);
      font-size: 30px;
      font-weight: 400;
      line-height: 1;
      margin-bottom: 14px;
    }

    .price-card p {
      margin-bottom: 18px;
    }

    @media (max-width: 860px) {
      .buying-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== JOURNAL PREVIEW ===== */
    .journal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .journal-card {
      background: var(--white);
      border: 1px solid rgba(30,27,36,.08);
      box-shadow: 0 18px 48px rgba(20,6,31,.08);
      overflow: hidden;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }

    .journal-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 28px 68px rgba(20,6,31,.16);
    }

    .journal-img {
      height: 210px;
      background: var(--img) center/cover no-repeat;
    }

    .journal-content {
      padding: 20px;
      display: grid;
      gap: 10px;
    }

    .journal-meta {
      color: var(--gold-dark);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-weight: 700;
    }

    .journal-content a {
      color: var(--purple-deep);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 11px;
      font-weight: 700;
    }

    @media (max-width: 900px) {
      .journal-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - 28px) / 3);
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      padding-bottom: 6px;
    }

    .testimonial-track::-webkit-scrollbar { display: none; }

    .testimonial-card {
      scroll-snap-align: start;
      min-height: 220px;
      padding: 22px;
      background: var(--white);
      border: 1px solid rgba(30,27,36,.08);
      box-shadow: 0 16px 48px rgba(20,6,31,.06);
      display: grid;
      align-content: space-between;
    }

    .stars {
      color: var(--gold);
      letter-spacing: .1em;
      font-size: 13px;
      margin-bottom: 12px;
    }

    .testimonial-card blockquote {
      margin: 0;
      font-family: var(--serif);
      font-size: 22px;
      line-height: 1.2;
      color: var(--ink);
    }

    .testimonial-card footer {
      margin-top: 18px;
    }

    .testimonial-card strong {
      display: block;
      color: var(--ink);
      font-size: 13px;
    }

    .testimonial-card span {
      display: block;
      color: var(--muted-dark);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .18em;
      margin-top: 4px;
      font-weight: 600;
    }

    @media (max-width: 900px) {
      .testimonial-track {
        grid-auto-columns: calc((100% - 14px) / 2);
      }
    }

    @media (max-width: 620px) {
      .testimonial-track {
        grid-auto-columns: 100%;
      }
    }

    /* ===== CONTACT ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
      min-width: 0;
    }

    .contact-card {
      position: relative;
      padding: 28px;
      background: var(--white);
      border: 1px solid rgba(227,188,108,.24);
      box-shadow: var(--shadow-soft);
      min-width: 0;
    }

    .contact-card::before {
      content: "";
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(227,188,108,.16);
      pointer-events: none;
    }

    .contact-card > * {
      position: relative;
      z-index: 1;
    }

    .contact-list {
      margin-top: 22px;
      display: grid;
      gap: 12px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      color: var(--muted-dark);
      padding: 14px;
      background: var(--ivory);
      border: 1px solid rgba(30,27,36,.08);
      transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
    }

    .contact-item:hover {
      transform: translateY(-2px);
      border-color: rgba(227,188,108,.45);
      background: #fff;
    }

    .contact-item .icon {
      color: var(--gold);
      margin-top: 2px;
    }

    .contact-item strong {
      display: block;
      color: var(--ink);
      font-size: 13px;
      margin-bottom: 2px;
    }

    .contact-item small {
      display: block;
      color: var(--muted-dark);
      font-size: 13px;
      line-height: 1.45;
    }

    .contact-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 22px;
    }

    .map-card {
      min-height: 360px;
      position: relative;
      display: grid;
      align-items: end;
      padding: 24px;
      color: var(--white);
      background:
        linear-gradient(0deg, rgba(20,6,31,.84), rgba(20,6,31,.22)),
        url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=82') center/cover;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .map-card::after {
      content: "";
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(227,188,108,.54);
      pointer-events: none;
    }

    .map-card span {
      position: relative;
      z-index: 1;
    }

    .map-card strong {
      display: block;
      color: var(--white);
      font-family: var(--serif);
      font-size: 24px;
      font-weight: 400;
    }

    .map-card small {
      color: var(--muted-light);
      display: block;
      margin-top: 4px;
    }

    @media (max-width: 760px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .map-card {
        min-height: 270px;
      }
    }

    @media (max-width: 620px) {
      .contact-card {
        padding: 24px;
      }

      .contact-actions .btn {
        width: 100%;
      }
    }

    /* ===== FOOTER ===== */
    .footer {
      padding: 58px 0 22px;
      background:
        radial-gradient(circle at 85% 10%, rgba(227,188,108,.12), transparent 20rem),
        var(--purple-deep);
      color: var(--white);
      border-top: 1px solid var(--line-gold);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr repeat(3, 1fr);
      gap: 32px;
      margin-bottom: 38px;
      min-width: 0;
    }

    .footer .brand-logo-img,
    .footer .logo-fallback {
      width: 170px;
      margin-bottom: 14px;
    }

    .footer p,
    .footer a {
      color: rgba(255,255,255,.7);
      font-size: 13px;
    }

    .footer a:hover { color: var(--gold-soft); }

    .footer-title {
      color: var(--gold);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .22em;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .socials a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(227,188,108,.25);
      color: var(--gold-soft);
      transition: transform .2s var(--ease), background .2s var(--ease);
    }

    .socials a:hover {
      transform: translateY(-2px);
      background: rgba(227,188,108,.08);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.09);
      color: rgba(255,255,255,.48);
      font-size: 12px;
    }

    @media (max-width: 760px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .footer-bottom {
        display: grid;
        gap: 6px;
      }

      .footer-links a {
        min-height: 36px;
        display: flex;
        align-items: center;
      }
    }

    /* ===== MOBILE CTA + WHATSAPP ===== */
    .mobile-cta-bar { display: none; }

    @media (max-width: 720px) {
      .mobile-cta-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        z-index: 95;
        display: grid;
        grid-template-columns: 1fr 1.35fr 1fr;
        gap: 8px;
        padding: 10px 12px;
        background: rgba(20,6,31,.88);
        backdrop-filter: blur(16px);
        border: 1px solid var(--line-gold);
        border-radius: 60px;
        box-shadow: 0 18px 60px rgba(0,0,0,.28);
        max-width: calc(100vw - 24px);
      }

      .mobile-cta-bar a,
      .mobile-cta-bar button {
        min-height: 44px;
        border: 1px solid rgba(227,188,108,.35);
        background: transparent;
        color: #fff;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .14em;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 60px;
      }

      .mobile-cta-bar button {
        background: linear-gradient(135deg, var(--gold), var(--gold-soft));
        color: var(--purple-deep);
        border: 0;
      }

      .whatsapp-float { display: none; }
    }

    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 80;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #25d366;
      box-shadow: 0 18px 48px rgba(37,211,102,.35);
      transition: transform .2s var(--ease);
      color: white;
    }

    .whatsapp-float:hover {
      transform: translateY(-3px) scale(1.03);
    }

    .whatsapp-float .icon {
      width: 30px;
      height: 30px;
    }

    /* ===== MODALS ===== */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 160;
      display: none;
      place-items: center;
      padding: 20px;
      background: rgba(0,0,0,.62);
      backdrop-filter: blur(6px);
    }

    .modal.open { display: grid; }

    .modal-dialog {
      width: min(680px, 100%);
      max-height: 90svh;
      overflow: auto;
      background: var(--ivory);
      border: 1px solid var(--line-gold);
      box-shadow: var(--shadow-deep);
      position: relative;
    }

    .modal-body {
      padding: 30px;
    }

    .modal-close {
      position: absolute;
      right: 12px;
      top: 12px;
      width: 38px;
      height: 38px;
      border: 1px solid var(--line-dark);
      background: var(--white);
      color: var(--purple-deep);
      font-size: 22px;
      cursor: pointer;
      z-index: 2;
      border-radius: 999px;
    }

    .form-grid {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    .field label {
      color: var(--purple-deep);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .18em;
      font-weight: 600;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      border: 1px solid rgba(30,27,36,.12);
      background: var(--white);
      color: var(--ink);
      padding: 12px;
      outline: none;
    }

    .field textarea {
      min-height: 92px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(227,188,108,.12);
    }

    .form-note {
      min-height: 20px;
      margin-top: 2px;
      font-size: 12px;
      color: var(--gold-dark);
    }

    .privacy-note {
      margin-top: 12px;
      font-size: 12px;
      color: var(--muted-dark);
    }

    .gallery-preview {
      width: 100%;
      min-height: 480px;
      background: var(--preview) center/cover no-repeat;
    }

    @media (max-width: 620px) {
      .modal {
        align-items: end;
        padding: 0;
      }

      .modal-dialog {
        width: 100%;
        max-height: 88svh;
        border-radius: 22px 22px 0 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
      }

      .modal-body {
        padding: 28px 20px calc(28px + env(safe-area-inset-bottom));
      }

      .modal-close {
        top: 14px;
        right: 16px;
      }

      .gallery-preview {
        min-height: 300px;
      }
    }

    /* ===== REVEAL ===== */
    [data-reveal] {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .55s var(--ease), transform .55s var(--ease);
    }

    [data-reveal].visible {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
      }

      [data-reveal] {
        opacity: 1;
        transform: none;
      }
    }


/* ===== PREMIUM BALANCED HOMEPAGE OVERRIDES ===== */
.hero {
  min-height: 96svh;
  background:
    linear-gradient(180deg, rgba(20, 6, 31, 0), rgba(20, 6, 31, 0)),
    linear-gradient(90deg, rgba(20, 6, 31, 0), rgba(20, 6, 31, 0.037) 58%, rgba(20,6,31,.56)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1900&q=84") center/cover no-repeat;
}
.hero .container { align-items: center; }
.hero-copy { max-width: 590px; gap: 15px; }
.hero h1 { max-width: 560px; text-wrap: balance; }
.hero p { max-width: 520px; font-size: 14px; }
.hero-text-link {
  display: inline-flex; align-items: center; min-height: 24px; color: var(--gold-soft);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
}
.hero-text-link:hover { color: var(--white); }
.hero-card { align-self: end; }
.hero-card-btn { width: 100%; margin-top: 18px; }
.trust-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0;
  max-width: 700px; border-color: rgba(227,188,108,.22); background: rgba(20,6,31,.42);
}
.trust-badge {
  display: grid; justify-items: center; gap: 7px; padding: 14px 10px;
  border-right: 1px solid rgba(227,188,108,.16); color: var(--gold-soft);
}
.trust-badge .icon { width: 17px; height: 17px; }
.trust-badge em { font-style: normal; color: rgba(255,255,255,.76); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; text-align: center; }
.trust-badge:last-child { border-right: 0; }
.facts-grid, .mini-card, .route-card, .gallery-item, .journal-card, .testimonial-card, .contact-card, .price-card, .hero-card {
  border-radius: 0;
}
.fact { transition: background .25s var(--ease); }
.fact:hover { background: #fffaf0; }
.mini-card { position: relative; overflow: hidden; }
.mini-card::after {
  content: ""; position: absolute; inset: auto 16px 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .4;
}
.route-card { min-height: 340px; }
.route-card p { max-width: 330px; }
.route-card .btn { background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.route-card .btn:hover { background: var(--gold); color: var(--purple-deep); }
.home-gallery-shell { position: relative; }
.home-gallery-top, .home-testimonial-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; gap: 14px;
}
.home-gallery-top span, .home-testimonial-top span {
  color: var(--gold-dark); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; font-weight: 700;
}
.home-gallery-controls, .home-testimonial-controls { display: flex; gap: 8px; }
.home-gallery-arrow, .home-testimonial-arrow {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(227,188,108,.36); background: var(--purple-deep); color: var(--gold-soft);
  font-size: 26px; transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}
.home-gallery-arrow:hover, .home-testimonial-arrow:hover { transform: translateY(-2px); background: var(--gold); color: var(--purple-deep); }
.home-gallery-progress, .home-testimonial-progress { display: flex; justify-content: center; margin-top: 14px; }
.home-gallery-progress-track, .home-testimonial-progress-track { width: min(240px, 70vw); height: 1px; background: rgba(20,6,31,.18); overflow: hidden; }
.home-gallery-progress-fill, .home-testimonial-progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transition: width .25s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(227,188,108,.34); pointer-events: none; z-index: 1;
}
.gallery-label { z-index: 2; }
.buying-grid { align-items: stretch; }
.price-card { position: relative; overflow: hidden; }
.price-card::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(227,188,108,.26); pointer-events: none; }
.price-card > * { position: relative; z-index: 1; }
.reviews-premium-section { background: #f5f2f9; }
.home-testimonial-shell { max-width: 1060px; margin: 0 auto; }
.testimonial-card { position: relative; min-height: 260px; border-color: rgba(227,188,108,.22); box-shadow: 0 20px 60px rgba(20,6,31,.08); }
.testimonial-card::before {
  content: "“"; position: absolute; top: 8px; right: 20px; color: rgba(227,188,108,.2);
  font-family: var(--serif); font-size: 84px; line-height: 1;
}
.testimonial-card blockquote { position: relative; z-index: 1; }
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(227,188,108,.48); box-shadow: 0 30px 90px rgba(20,6,31,.14); }
.journal-card .journal-content p { min-height: 46px; }
/* Gallery modal should be centered, not bottom sheet */
@media (max-width: 620px) {
  .hero { min-height: 92svh; }
  .hero .container { padding-top: calc(106px + env(safe-area-inset-top)); }
  .hero h1, .hero p { max-width: 360px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; max-width: 360px; }
  .hero-actions .btn { width: 100%; min-width: 0; padding: 0 10px; font-size: 10px; letter-spacing: .11em; white-space: nowrap; }
  .hero-text-link { grid-column: 1 / -1; justify-content: center; min-height: 28px; }
  .trust-strip { grid-template-columns: 1fr 1fr; max-width: 360px; }
  .trust-badge { padding: 12px 8px; }
  .trust-badge:nth-child(2) { border-right: 0; }
  .trust-badge:nth-child(1), .trust-badge:nth-child(2) { border-bottom: 1px solid rgba(227,188,108,.16); }
  .hero-card { display: none; }
  .home-gallery-controls, .home-testimonial-controls { display: none; }
  .home-gallery-top, .home-testimonial-top { justify-content: center; }
  .gallery-grid { grid-auto-columns: 84%; gap: 14px; }
  .testimonial-track { grid-auto-columns: 86%; gap: 14px; }
  #galleryModal { align-items: center; justify-items: center; padding: 14px; }
  #galleryModal .modal-dialog { width: 100%; max-width: 430px; height: 76svh; max-height: 76svh; border-radius: 14px; border: 1px solid rgba(227,188,108,.42); overflow: hidden; }
  #galleryModal .gallery-preview { width: 100%; height: 100%; min-height: 0; background-size: cover; background-position: center; }
  #galleryModal .modal-close { top: 12px; right: 12px; background: rgba(20,6,31,.82); color: var(--gold-soft); border-color: rgba(227,188,108,.48); }
}
@media (max-width: 360px) {
  .hero-actions { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero-about h1 { font-size: 28px; line-height: 1.2; }
  .hero-about p { font-size: 13px; max-width: 90%; margin: 0 auto 16px; }
  .hero-about .cta-btn { width: 100%; padding: 14px; }
  .trust-strip { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 12px; justify-content: center; }
}

@media (max-width: 760px) {
  .spec-summary-grid, .route-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .spec-summary-grid article, .route-card { padding: 18px; }
}

@media (max-width: 620px) {
  .project-gallery { grid-auto-columns: 82%; gap: 12px; }
  .gallery-label { font-size: 11px; }
}

@media (max-width: 620px) {
  .testimonial-swiper { grid-auto-columns: 84%; gap: 14px; }
  .testimonial-slide { min-height: 250px; padding: 20px; }
  .testimonial-slide blockquote { font-size: 14px; }
}

/* ===== PREMIUM OVERVIEW IMAGE SWIPER ===== */
.overview-media {
  position: relative;
  min-height: 460px;
  background: var(--purple-deep);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(227,188,108,.24);
}

.overview-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(227,188,108,.54);
  pointer-events: none;
  z-index: 3;
}

.overview-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  height: 100%;
  min-height: 460px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.overview-slider::-webkit-scrollbar {
  display: none;
}

.overview-slide {
  position: relative;
  scroll-snap-align: start;
  min-height: 460px;
  width: 100%;
  border: 0;
  background:
    linear-gradient(0deg, rgba(20,6,31,.76), transparent 58%),
    var(--img) center/cover no-repeat;
  text-align: left;
  color: var(--white);
  overflow: hidden;
}

.overview-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(227,188,108,.18), transparent 18rem);
  opacity: .85;
}

.overview-slide span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  color: var(--gold-soft);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
}

.overview-slider-ui {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}

.overview-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(227,188,108,.48);
  background: rgba(20,6,31,.7);
  color: var(--gold-soft);
  backdrop-filter: blur(14px);
  font-size: 26px;
  line-height: 1;
  pointer-events: auto;
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}

.overview-arrow:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--purple-deep);
}

.overview-progress {
  min-width: 150px;
  display: grid;
  gap: 8px;
  justify-items: center;
  pointer-events: auto;
}

.overview-progress span {
  color: var(--gold-soft);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
}

.overview-progress-track {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,.3);
  overflow: hidden;
}

.overview-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width .25s var(--ease);
}

@media (max-width: 860px) {
  .overview-media,
  .overview-slider,
  .overview-slide {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .overview-media,
  .overview-slider,
  .overview-slide {
    min-height: 330px;
  }

  .overview-media::after {
    inset: 10px;
  }

  .overview-slider-ui {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .overview-arrow {
    width: 38px;
    height: 38px;
  }

  .overview-progress {
    min-width: 112px;
  }

  .overview-progress-track {
    width: 90px;
  }

  .overview-slide span {
    left: 20px;
    bottom: 72px;
  }
}

/* ===== HERO BACKGROUND IMAGE SLIDER ===== */
.hero {
  background: var(--purple-deep) !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 6s ease;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,6,31,.42), rgba(20,6,31,.92)),
    linear-gradient(90deg, rgba(20,6,31,.9), rgba(20,6,31,.32)),
    radial-gradient(circle at 22% 24%, rgba(227,188,108,.18), transparent 22rem);
}

@media (max-width: 620px) {
  .hero-bg-slide {
    background-position: center top;
  }

  .hero-bg-slide::after {
    background:
      linear-gradient(180deg, rgba(20,6,31,.36), rgba(20,6,31,.92)),
      linear-gradient(90deg, rgba(20,6,31,.76), rgba(20,6,31,.42));
  }
}

/* ===== PREMIUM HERO BUTTONS ===== */
.hero-actions {
  align-items: center;
  gap: 12px;
}

.hero .hero-actions .btn,
.hero .hero-actions .hero-text-link {
  min-height: 48px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}

/* Main CTA: Book a Viewing */
.hero .hero-actions .btn.filled {
  padding: 0 26px;
  border: 1px solid rgba(244, 220, 161, .72);
  background:
    linear-gradient(135deg, #f7df9c 0%, #e3bc6c 42%, #a9792e 100%);
  color: #14061f;
  box-shadow:
    0 18px 48px rgba(227, 188, 108, .32),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.hero .hero-actions .btn.filled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.55) 35%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .75s var(--ease);
}

.hero .hero-actions .btn.filled:hover::before {
  transform: translateX(120%);
}

.hero .hero-actions .btn.filled:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 64px rgba(227, 188, 108, .42),
    inset 0 1px 0 rgba(255,255,255,.65);
}

/* Secondary CTA: Project Details */
.hero .hero-actions .btn.light {
  padding: 0 24px;
  border: 1px solid rgba(244, 220, 161, .48);
  background: rgba(255,255,255,.08);
  color: var(--white);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 16px 46px rgba(0,0,0,.16);
}

.hero .hero-actions .btn.light:hover {
  background: rgba(227,188,108,.14);
  border-color: rgba(244,220,161,.78);
  color: var(--gold-soft);
  transform: translateY(-3px);
}

/* Text CTA: See Photos */
.hero .hero-actions .hero-text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .hero-actions .hero-text-link::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  transform: scaleX(.45);
  opacity: .75;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}

.hero .hero-actions .hero-text-link:hover {
  color: #fff4d2;
}

.hero .hero-actions .hero-text-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Mobile refinement */
@media (max-width: 620px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: 340px;
  }

  .hero .hero-actions .btn,
  .hero .hero-actions .hero-text-link {
    width: 100%;
    min-height: 46px;
    font-size: 10px;
    letter-spacing: .15em;
  }

  .hero .hero-actions .hero-text-link {
    justify-content: center;
    border: 1px solid rgba(244,220,161,.28);
    background: rgba(20,6,31,.32);
    backdrop-filter: blur(12px);
    padding: 0 18px;
  }

  .hero .hero-actions .hero-text-link::after {
    display: none;
  }
}
@media (max-width: 420px) {
  .hero .hero-actions .hero-text-link {
    display: none;
  }
}

/* ===== HERO BUTTONS SIDE-BY-SIDE ON MOBILE ===== */
@media (max-width: 620px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two buttons side by side */
    gap: 10px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto; /* center them */
  }

  /* Make buttons fill their grid cells */
  .hero .hero-actions .btn.filled,
  .hero .hero-actions .btn.light {
    width: 100%;
  }

  /* Keep the text-link below, full width */
  .hero .hero-actions .hero-text-link {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 8px;
  }
}

/* ===== BROCHURE PRICE CARD ===== */
.brochure-card {
  position: relative;
  overflow: hidden;
}

.brochure-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(227, 188, 108, .22);
  pointer-events: none;
}

.brochure-card > * {
  position: relative;
  z-index: 1;
}

.brochure-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.brochure-actions .btn {
  width: 100%;
  border-radius: 999px;
}

.brochure-preview-link {
  width: fit-content;
  justify-self: center;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
}

.brochure-preview-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.brochure-preview-link:hover {
  color: var(--white);
}

@media (max-width: 620px) {
  .brochure-card {
    padding: 24px;
  }

  .brochure-actions {
    gap: 10px;
  }

  .brochure-preview-link {
    font-size: 9px;
  }
}

/* ===== PREMIUM FOOTER UPGRADE ===== */
.premium-footer {
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(227,188,108,.1), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(244,220,161,.08), transparent 20rem);
  pointer-events: none;
}

.premium-footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand p {
  max-width: 280px;
}

.premium-footer-links {
  gap: 10px;
}

.premium-footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.35;
  transition:
    color .22s var(--ease),
    transform .22s var(--ease);
}

.premium-footer-links a:hover {
  color: var(--gold-soft);
  transform: translateX(3px);
}

.footer-link-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  border: 1px solid rgba(227,188,108,.22);
  color: var(--gold-soft);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  transition:
    background .22s var(--ease),
    border-color .22s var(--ease),
    color .22s var(--ease);
}

.premium-footer-links a:hover .footer-link-icon {
  background: rgba(227,188,108,.12);
  border-color: rgba(227,188,108,.48);
  color: var(--gold);
}

.footer-link-icon i {
  font-size: 12px;
  line-height: 1;
}

.contact-footer-links a {
  max-width: 100%;
}

.contact-footer-links a span:last-child {
  overflow-wrap: anywhere;
}

.footer-socials a {
  border-radius: 999px;
}

.premium-footer-bottom a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,220,161,.55);
  padding-bottom: 2px;
  transition: color .22s var(--ease), border-color .22s var(--ease);
}

.premium-footer-bottom a:hover {
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 760px) {
  .premium-footer-links a {
    width: 100%;
    min-height: 38px;
  }

  .footer-link-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

.hero .hero-actions .btn,
.hero .hero-actions .hero-text-link {
  min-height: 42px;           /* was 48px */
}

.hero .hero-actions .btn.filled {
  padding: 0 20px;            /* was 26px */
}

.hero .hero-actions .btn.light {
  padding: 0 18px;            /* was 24px */
}

.hero .hero-actions .btn,
.hero .hero-actions .hero-text-link {
  min-height: 38px;           /* was 46px */
}