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

    :root {
      --ink: #0a0d0f;
      --ink-2: #111518;
      --ink-3: #181d22;
      --steel: #232b33;
      --mist: #8a9298;
      --silver: #c4c9cc;
      --white: #f5f3ee;
      --gold: #c9a96e;
      --gold-lt: #dfc191;
      --gold-dim: rgba(201, 169, 110, .18);
      --pool: #1e8fb5;

      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Jost', system-ui, sans-serif;

      --ease: cubic-bezier(.22, .68, 0, 1.2);
      --fast: .25s ease;
      --slow: .7s ease;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      background: var(--ink);
      color: var(--silver);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    /* =========================================================
SCROLLBAR
========================================================= */
    ::-webkit-scrollbar {
      width: 4px;
    }

    ::-webkit-scrollbar-track {
      background: var(--ink);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 2px;
    }

    /* =========================================================
UTILITIES
========================================================= */
    .container {
      width: 90%;
      max-width: 1160px;
      margin-inline: auto;
    }

    .container--narrow {
      width: 90%;
      max-width: 760px;
      margin-inline: auto;
    }

    .label {
      font-family: var(--sans);
      font-size: .68rem;
      font-weight: 400;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .serif-xl {
      font-family: var(--serif);
      font-size: clamp(3rem, 7vw, 6.5rem);
      font-weight: 300;
      line-height: 1.04;
      letter-spacing: -.01em;
      color: var(--white);
    }

    .serif-lg {
      font-family: var(--serif);
      font-size: clamp(2rem, 4.5vw, 3.6rem);
      font-weight: 300;
      line-height: 1.12;
      color: var(--white);
    }

    .serif-md {
      font-family: var(--serif);
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 300;
      line-height: 1.3;
      color: var(--white);
    }

    .rule {
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 1.8rem;
    }

    .rule--center {
      margin-inline: auto;
    }

    /* =========================================================
ANIMATIONS
========================================================= */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal-left.in,
    .reveal-right.in {
      opacity: 1;
      transform: none;
    }

    /* stagger children */
    .stagger>*:nth-child(1) {
      transition-delay: .0s;
    }

    .stagger>*:nth-child(2) {
      transition-delay: .1s;
    }

    .stagger>*:nth-child(3) {
      transition-delay: .2s;
    }

    .stagger>*:nth-child(4) {
      transition-delay: .3s;
    }

    .stagger>*:nth-child(5) {
      transition-delay: .4s;
    }

    .stagger>*:nth-child(6) {
      transition-delay: .5s;
    }

    .stagger>*:nth-child(7) {
      transition-delay: .6s;
    }

    .stagger>*:nth-child(8) {
      transition-delay: .7s;
    }

    /* =========================================================
HERO
========================================================= */
    #hero {
      position: relative;
      width: 100%;
      height: 100svh;
      min-height: 620px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }

    /* KEY VISUAL
─────────────────────────────────────────────────────────
The architectural render is used as the hero background.
File path: images/villa-renders_1.jpg  (place next to this HTML)
───────────────────────────────────────────────────────── */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-color: #0e2030;
      /* fallback until image loads */
      background-image: url('/images/villa-renders_1.jpg');
      background-size: cover;
      background-position: center 30%;
      will-change: transform;
      transition: transform 12s ease;
    }

    .hero-bg.loaded {
      transform: scale(1.04);
    }

    /* Cinematic gradient — dark at bottom, clear at top */
    .hero-grad {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(8, 12, 16, .96) 0%, rgba(8, 12, 16, .55) 40%, rgba(8, 12, 16, .1) 100%),
        linear-gradient(to right, rgba(8, 12, 16, .35) 0%, transparent 60%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 5% 8vh;
    }

    .hero-logo {
      width: 110px;
      height: auto;
      margin-bottom: 2rem;
      display: block;
    }

    .hero-location {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 1.4rem;
      color: rgba(255, 255, 255, .55);
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
    }

    .hero-location::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(4rem, 10vw, 9rem);
      font-weight: 300;
      line-height: .95;
      color: var(--white);
      letter-spacing: -.02em;
      margin-bottom: 1.6rem;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .hero-tagline {
      max-width: 520px;
      font-size: clamp(.9rem, 1.5vw, 1.1rem);
      font-weight: 200;
      color: rgba(255, 255, 255, .65);
      line-height: 1.8;
      margin-bottom: 2.8rem;
    }

    /* ─── Soon Available button (per brief, preserved exactly) ─── */
    .btn-soon {
      display: inline-block;
      padding: 14px 32px;
      font-family: var(--sans);
      font-size: .9rem;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #6c757d;
      background-color: rgba(224, 224, 224, .12);
      border: 1px solid rgba(196, 196, 196, .3);
      border-radius: 0;
      cursor: not-allowed;
      opacity: 0.7;
    }

    /* Scroll cue */
    .hero-scroll {
      position: absolute;
      right: 5%;
      bottom: 8vh;
      z-index: 2;
      writing-mode: vertical-rl;
      font-size: .65rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hero-scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: lineDown 2s ease infinite;
    }

    @keyframes lineDown {
      0% {
        transform: scaleY(0);
        transform-origin: top;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
      }

      51% {
        transform: scaleY(1);
        transform-origin: bottom;
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom;
      }
    }

    /* =========================================================
INTRO STRIP  (Monte + Mar meaning)
========================================================= */
    #intro {
      padding: 120px 0;
      background: var(--ink);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      gap: 0 60px;
      align-items: center;
    }

    .intro-divider {
      background: var(--gold-dim);
      height: 160px;
      align-self: center;
    }

    .intro-word {
      text-align: center;
    }

    .intro-word .big {
      font-family: var(--serif);
      font-size: clamp(4rem, 8vw, 7rem);
      font-weight: 300;
      font-style: italic;
      color: var(--white);
      line-height: 1;
      display: block;
    }

    .intro-word .def {
      font-size: .7rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-top: .6rem;
    }

    .intro-body {
      padding: 80px 0;
      border-top: 1px solid rgba(255, 255, 255, .06);
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .intro-body p {
      font-size: 1.05rem;
      font-weight: 200;
      color: var(--silver);
      line-height: 1.9;
      margin-bottom: 1.2rem;
    }

    .intro-body p:last-child {
      margin-bottom: 0;
    }

    .intro-body strong {
      color: var(--white);
      font-weight: 400;
    }

    .intro-body em {
      font-family: var(--serif);
      font-style: italic;
      color: var(--gold-lt);
    }

    @media (max-width: 640px) {
      .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
      }

      .intro-divider {
        display: none;
      }
    }

    /* =========================================================
KEY VISUAL FULL-BLEED BAND
========================================================= */
    #keyvisual {
      position: relative;
      width: 100%;
      height: clamp(480px, 60vw, 820px);
      overflow: hidden;
    }

    /*
KEY VISUAL IMAGE
────────────────────────────────────────────────────────
Place the architectural render image at:  images/villa-renders.jpg
This is the composite night-render provided by the client.
─────────────────────────────────────────────────────── */
    .kv-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      /* Fallback when image is not yet placed: */
      background: linear-gradient(135deg, #0e2030 0%, #1a3a50 50%, #0a1820 100%);
      display: block;
    }

    .kv-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          rgba(8, 12, 16, .55) 0%,
          transparent 30%,
          transparent 70%,
          rgba(8, 12, 16, .75) 100%);
    }

    .kv-caption {
      position: absolute;
      bottom: 40px;
      left: 5%;
      font-size: .68rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
    }

    /* =========================================================
AMENITIES
========================================================= */
    #amenities {
      padding: 120px 0;
      background: var(--ink-2);
    }

    .amenities-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 72px;
      gap: 40px;
    }

    .amenities-header p {
      max-width: 380px;
      font-size: .95rem;
      font-weight: 200;
      color: var(--mist);
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }

    .amen-item {
      background: var(--steel);
      padding: 40px 32px;
      transition: background var(--fast), transform var(--fast);
      position: relative;
    }

    .amen-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width .4s ease;
    }

    .amen-item:hover {
      background: #1e2830;
      transform: translateY(-3px);
    }

    .amen-item:hover::before {
      width: 100%;
    }

    .amen-icon {
      font-size: 1.6rem;
      margin-bottom: 1.2rem;
      display: block;
      color: var(--gold);
    }

    .amen-name {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: .4rem;
      display: block;
    }

    .amen-desc {
      font-size: .82rem;
      font-weight: 200;
      color: var(--mist);
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .amenities-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .amenities-grid {
        grid-template-columns: 1fr;
      }
    }

    /* =========================================================
GALLERY
========================================================= */
    #gallery {
      padding: 0;
      background: var(--ink);
    }

    .gallery-header {
      padding: 100px 5% 60px;
    }

    .gallery-mosaic {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      grid-template-rows: 320px 280px;
      gap: 3px;
    }

    .g-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    /* First image: tall, spans 2 rows */
    .g-item:nth-child(1) {
      grid-row: span 2;
    }

    /*
GALLERY IMAGES
Using the available render photos.
*/
    .g-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .8s ease;
    }

    /* Different image for each tile */
    .g-item:nth-child(1)::before {
      background-image: url('/images/villa-renders_2.jpg');
    }

    .g-item:nth-child(2)::before {
      background-image: url('/images/villa-renders_3.jpg');
    }

    .g-item:nth-child(3)::before {
      background-image: url('/images/villa-renders_4.jpg');
    }

    .g-item:nth-child(4)::before {
      background-image: url('/images/villa-renders_1.jpg');
    }

    .g-item:nth-child(5)::before {
      background-image: url('/images/villa-renders_3.jpg');
    }

    .g-item:nth-child(6)::before {
      background-image: url('/images/villa-renders_4.jpg');
    }

    .g-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(8, 12, 16, .3);
      transition: background var(--fast);
    }

    .g-item:hover::before {
      transform: scale(1.06);
    }

    .g-item:hover::after {
      background: rgba(8, 12, 16, .1);
    }

    /* Fallback solid colors if image doesn't load */
    .g-item:nth-child(1) {
      background: #1a3a50;
    }

    .g-item:nth-child(2) {
      background: #0e2030;
    }

    .g-item:nth-child(3) {
      background: #192838;
    }

    .g-item:nth-child(4) {
      background: #112030;
    }

    .g-item:nth-child(5) {
      background: #0d1a25;
    }

    .g-item:nth-child(6) {
      background: #1e2f3a;
    }

    @media (max-width: 768px) {
      .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .g-item {
        aspect-ratio: 4/3;
      }

      .g-item:nth-child(1) {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 16/9;
      }
    }

    @media (max-width: 480px) {
      .gallery-mosaic {
        grid-template-columns: 1fr;
      }

      .g-item:nth-child(1) {
        grid-column: auto;
      }
    }

    /* =========================================================
LOCATION STRIP
========================================================= */
    #location {
      padding: 120px 0;
      background: var(--ink-3);
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .location-text .serif-lg {
      margin-bottom: 1.8rem;
    }

    .location-text p {
      font-size: .97rem;
      font-weight: 200;
      color: var(--mist);
      line-height: 1.9;
      margin-bottom: 1rem;
    }

    .dist-list {
      margin-top: 2rem;
    }

    .dist-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      font-size: .88rem;
    }

    .dist-row:last-child {
      border-bottom: none;
    }

    .dist-place {
      color: var(--white);
      font-weight: 300;
    }

    .dist-time {
      color: var(--gold);
      font-weight: 200;
      font-size: .8rem;
      letter-spacing: .1em;
    }

    .map-box {
      border-radius: 0;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--steel);
      position: relative;
    }

    /*
GOOGLE MAPS EMBED
Replace the .map-placeholder div below with your iframe:

<iframe
src="https://www.google.com/maps/embed?pb=..."
width="100%" height="100%"
style="border:0;" allowfullscreen loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
title="Villa Montemar map">
</iframe>
*/
    .map-placeholder {
      width: 100%;
      height: 100%;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      background: linear-gradient(135deg, #111820 0%, #1a2530 100%);
      color: rgba(255, 255, 255, .4);
    }

    .map-placeholder svg {
      width: 36px;
      height: 36px;
      fill: var(--gold);
      opacity: .6;
    }

    .map-placeholder p {
      font-size: .78rem;
      letter-spacing: .1em;
      text-align: center;
    }

    .map-placeholder a {
      font-size: .75rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
      border-bottom: 1px solid var(--gold-dim);
      padding-bottom: 2px;
      transition: color var(--fast), border-color var(--fast);
    }

    .map-placeholder a:hover {
      color: var(--white);
      border-color: var(--white);
    }

    @media (max-width: 860px) {
      .location-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    /* =========================================================
NEARBY EXPERIENCES
========================================================= */
    #nearby {
      padding: 120px 0;
      background: var(--ink-2);
    }

    .nearby-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 72px;
    }

    .nearby-intro p {
      font-size: .97rem;
      font-weight: 200;
      color: var(--mist);
      line-height: 1.9;
    }

    .nearby-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .near-card {
      background: var(--steel);
      padding: 40px 32px 36px;
      position: relative;
      overflow: hidden;
      transition: background var(--fast);
    }

    .near-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }

    .near-card:hover {
      background: #1e2830;
    }

    .near-card:hover::after {
      transform: scaleX(1);
    }

    .near-emoji {
      font-size: 1.8rem;
      display: block;
      margin-bottom: 1.4rem;
      line-height: 1;
      color: var(--gold);
    }

    .near-title {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: .5rem;
      display: block;
    }

    .near-body {
      font-size: .84rem;
      font-weight: 200;
      color: var(--mist);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .near-dist {
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    @media (max-width: 860px) {
      .nearby-grid {
        grid-template-columns: 1fr 1fr;
      }

      .nearby-intro {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    @media (max-width: 480px) {
      .nearby-grid {
        grid-template-columns: 1fr;
      }
    }

    /* =========================================================
REVIEWS
========================================================= */
    #reviews {
      padding: 120px 0;
      background: var(--ink);
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .rev-card {
      padding: 48px 36px;
      background: var(--ink-2);
      position: relative;
    }

    .rev-card::before {
      content: '\201C';
      font-family: var(--serif);
      font-size: 6rem;
      line-height: 1;
      color: var(--gold-dim);
      position: absolute;
      top: 24px;
      left: 28px;
    }

    .rev-stars {
      letter-spacing: 3px;
      color: var(--gold);
      font-size: .9rem;
      margin-bottom: 1.6rem;
    }

    .rev-text {
      font-family: var(--serif);
      font-size: 1.08rem;
      font-weight: 300;
      font-style: italic;
      color: var(--silver);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .rev-author-name {
      font-size: .8rem;
      font-weight: 400;
      color: var(--white);
      letter-spacing: .08em;
      display: block;
    }

    .rev-author-from {
      font-size: .72rem;
      color: var(--mist);
      font-weight: 200;
      letter-spacing: .06em;
    }

    @media (max-width: 860px) {
      .reviews-grid {
        grid-template-columns: 1fr;
      }
    }

    /* =========================================================
CONTACT
========================================================= */
    #contact {
      padding: 120px 0;
      background: var(--ink-3);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1px 1.2fr;
      gap: 0 80px;
      align-items: start;
    }

    .contact-divider-v {
      background: rgba(255, 255, 255, .07);
      height: 100%;
      min-height: 480px;
    }

    /* Contact info */
    .contact-info .serif-lg {
      margin-bottom: 2rem;
    }

    .ci-item {
      display: flex;
      gap: 18px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .ci-item:last-of-type {
      border-bottom: none;
    }

    .ci-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--gold);
    }

    .ci-label {
      font-size: .66rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: .25rem;
    }

    .ci-val {
      font-size: .97rem;
      font-weight: 300;
      color: var(--silver);
      transition: color var(--fast);
    }

    .ci-val:hover {
      color: var(--white);
    }

    .ci-note {
      margin-top: 2.5rem;
      padding: 24px 28px;
      border-left: 2px solid var(--gold);
      font-family: var(--serif);
      font-style: italic;
      font-size: 1.05rem;
      color: var(--silver);
      background: rgba(201, 169, 110, .05);
      line-height: 1.7;
    }

    /* Contact form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-form .form-title {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--white);
      margin-bottom: .5rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .fg label {
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .fg input,
    .fg textarea,
    .fg select {
      padding: 13px 16px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 0;
      font-family: var(--sans);
      font-size: .92rem;
      font-weight: 200;
      color: var(--white);
      outline: none;
      transition: border-color var(--fast), background var(--fast);
      -webkit-appearance: none;
    }

    .fg input::placeholder,
    .fg textarea::placeholder {
      color: rgba(255, 255, 255, .2);
    }

    .fg input:focus,
    .fg textarea:focus,
    .fg select:focus {
      border-color: var(--gold);
      background: rgba(201, 169, 110, .05);
    }

    .fg select option {
      background: var(--ink-3);
      color: var(--white);
    }

    .fg textarea {
      resize: vertical;
      min-height: 110px;
    }

    .form-note {
      font-size: .78rem;
      color: var(--mist);
      font-weight: 200;
      font-style: italic;
    }

    @media (max-width: 900px) {
      .contact-layout {
        grid-template-columns: 1fr;
        gap: 56px;
      }

      .contact-divider-v {
        display: none;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }

    /* =========================================================
FOOTER
========================================================= */
    #footer {
      background: #060a0d;
      padding: 72px 0 40px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .footer-logo {
      width: 120px;
      height: auto;
      display: block;
      margin-bottom: 1.2rem;
      opacity: 0.9;
    }

    .footer-brand p {
      font-size: .88rem;
      font-weight: 200;
      color: var(--mist);
      line-height: 1.8;
      max-width: 300px;
      margin-bottom: 1.6rem;
    }

    .socials {
      display: flex;
      gap: 10px;
    }

    .soc {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .1);
      font-size: 1.1rem;
      transition: border-color var(--fast), background var(--fast), transform var(--fast);
      color: var(--gold);
    }

    .soc:hover {
      border-color: var(--gold);
      background: var(--gold-dim);
      transform: translateY(-2px);
    }

    .soc svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      display: block;
    }

    .footer-col h4 {
      font-family: var(--serif);
      font-size: .95rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 1.2rem;
      letter-spacing: .05em;
    }

    .footer-col li {
      margin-bottom: .6rem;
    }

    .footer-col li a {
      font-size: .85rem;
      font-weight: 200;
      color: var(--mist);
      transition: color var(--fast);
    }

    .footer-col li a:hover {
      color: var(--gold);
    }

    .f-ci {
      display: flex;
      gap: 10px;
      margin-bottom: .75rem;
      font-size: .84rem;
    }

    .f-ci span {
      color: var(--gold);
      font-size: 1.1rem;
    }

    .f-ci a {
      font-weight: 200;
      color: var(--mist);
      transition: color var(--fast);
    }

    .f-ci a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: .74rem;
      font-weight: 200;
      color: rgba(255, 255, 255, .5);
      letter-spacing: .05em;
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, .3);
      transition: color var(--fast);
    }

    .footer-bottom a:hover {
      color: var(--gold);
    }

    @media (max-width: 768px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* =========================================================
MISC RESPONSIVE
========================================================= */
    @media (max-width: 600px) {

      #intro,
      #amenities,
      #location,
      #nearby,
      #reviews,
      #contact {
        padding: 80px 0;
      }
    }

/* =========================================================
LANGUAGE SWITCHER
========================================================= */
.lang-switcher {
  background: #060a0d;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.lang-switcher-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lang-globe {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
}

.lang-list a {
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--mist);
  padding: 4px 10px;
  border: 1px solid transparent;
  transition: color var(--fast), border-color var(--fast);
}

.lang-list a:hover {
  color: var(--gold);
  border-color: rgba(201,169,110,.3);
}

.lang-list a[aria-current="true"] {
  color: var(--gold);
  border-color: var(--gold);
}
