:root {
    /* palette */
    --navy:        #25356D;
    --navy-deep:   #1B274F;
    --navy-soft:   #4E5C8A;
    --navy-tint:   #C8CCDB;
    --navy-fog:    #E6E6E8;
    --graphite:    #5E605F;
    --graphite-2:  #878887;
    --silver:      #D7D7D7;
    --cream:       #F1F1EE;
    --snow:        #FFFFFF;

    --accent:      var(--navy);
    --ink:         #1B274F;
    --ink-soft:    var(--graphite);
    --bg-cream:    var(--cream);

    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans:  "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

    --container: 1280px;
    --pad-x: clamp(20px, 4vw, 64px);

    --hdr-h: 88px;
    --hdr-h-scrolled: 64px;
    --ease: cubic-bezier(.2, .7, .2, 1);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html, body {
    margin: 0;
    padding: 0;
    background: var(--snow);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  .wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }

  /* ── Typography ─────────────────────────────────────────────── */
  .eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--graphite-2);
    margin: 0 0 18px;
    font-weight: 500;
  }
  .eyebrow.on-dark { color: rgba(255,255,255,0.7); }

  .h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.04;
    letter-spacing: -0.012em;
    color: var(--ink);
    margin: 0 0 24px;
    text-wrap: balance;
  }
  .h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
  .h2.on-dark { color: var(--snow); }
  .h2.on-dark em { color: var(--navy-tint); }

  .lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0 0 28px;
    max-width: 52ch;
    text-wrap: pretty;
  }
  .lead.on-dark { color: rgba(255,255,255,0.82); }

  .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 8px 0;
    border-bottom: 1px solid currentColor;
    transition: gap .25s var(--ease);
  }
  .link-arrow.sm { font-size: 11px; letter-spacing: 0.16em; }
  .link-arrow:hover { gap: 14px; }
  .link-arrow span { transition: transform .25s var(--ease); }
  .link-arrow:hover span { transform: translateX(2px); }

  /* ── Buttons ───────────────────────────────────────────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 46px;
    padding: 0 22px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid transparent;
    white-space: nowrap;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  }
  .btn-primary { background: var(--accent); color: #fff; }
  .btn-primary:hover { background: var(--navy-deep); }
  .btn-primary.is-dark { background: var(--navy-deep); }
  .btn-primary.on-dark { background: var(--snow); color: var(--navy-deep); }
  .btn-primary.on-dark:hover { background: var(--navy-tint); color: var(--navy-deep); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: rgba(27,39,79,0.18); }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.4); }
  .btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
  .btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
  .btn-outline:hover { background: var(--accent); color: #fff; }

  /* ═══════════════════════════════════════════════════════════
     HEADER
     ═══════════════════════════════════════════════════════════ */
  .hdr {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--hdr-h);
    background: transparent;
    transition: background .35s var(--ease), height .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    border-bottom: 1px solid transparent;
  }
  .hdr-on-top-solid .hdr {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: rgba(27,39,79,0.06);
  }
  .hdr.is-scrolled {
    height: var(--hdr-h-scrolled);
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(18px) saturate(140%);
    border-bottom-color: rgba(27,39,79,0.08);
    box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
  }
  .hdr-inner {
    height: 100%;
    width: 100%;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
  }
  .hdr-brand { display: flex; align-items: center; }
  .site-logo { height: 44px; width: auto; display: block; transition: height .35s var(--ease), filter .35s var(--ease); filter: brightness(0) invert(1); }
  .hdr.is-scrolled .site-logo { height: 36px; filter: none; }
  .hdr-on-top-solid .hdr .site-logo { filter: none; }
  .mob .site-logo { filter: none; }
  .site-logo-ft { height: 60px; margin-bottom: 20px; filter: none; }

  /* Brand color states (header), JSX used inline colors; static uses CSS */
  .hdr .brand-mark { fill: #FFFFFF; transition: fill .35s var(--ease); }
  .hdr .brand-name { color: #FFFFFF; }
  .hdr .brand-sub-left { color: rgba(255,255,255,0.85); }
  .hdr .brand-sub-right { color: #FFFFFF; font-weight: 600; }
  .hdr .brand-sep { background: #FFFFFF; }
  .hdr.is-scrolled .brand-mark { fill: #25356D; }
  .hdr.is-scrolled .brand-name { color: #5E605F; }
  .hdr.is-scrolled .brand-sub-left { color: #5E605F; }
  .hdr.is-scrolled .brand-sub-right { color: #25356D; }
  .hdr.is-scrolled .brand-sep { background: #25356D; }
  .hdr-on-top-solid .hdr .brand-mark { fill: #25356D; }
  .hdr-on-top-solid .hdr .brand-name { color: #5E605F; }
  .hdr-on-top-solid .hdr .brand-sub-left { color: #5E605F; }
  .hdr-on-top-solid .hdr .brand-sub-right { color: #25356D; }
  .hdr-on-top-solid .hdr .brand-sep { background: #25356D; }

  /* Brand mark */
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand-text { line-height: 1; }
  .brand-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: color .35s var(--ease), font-size .35s var(--ease);
  }
  .hdr.is-scrolled .brand-name { font-size: 19px; }
  .brand-sub {
    display: flex; align-items: center; gap: 7px;
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    margin-top: 4px; font-weight: 500;
  }
  .brand-sep { width: 1px; height: 9px; display: inline-block; opacity: 0.6; }

  .hdr-nav {
    display: flex; gap: 20px; justify-content: center;
  }
  .hdr-nav a {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color .25s var(--ease);
  }
  .hdr-nav a::after {
    content: ""; position: absolute; left: 50%; right: 50%; bottom: 2px;
    height: 1px; background: currentColor;
    transition: left .25s var(--ease), right .25s var(--ease);
  }
  .hdr-nav a:hover::after { left: 0; right: 0; }
  .hdr.is-scrolled .hdr-nav a { color: var(--ink); }
  .hdr-on-top-solid .hdr .hdr-nav a { color: var(--ink); }

  .hdr-actions { display: flex; align-items: center; gap: 10px; }
  .hdr .btn-ghost {
    color: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,0.4);
    height: 38px; padding: 0 14px; font-size: 11px;
  }
  .hdr.is-scrolled .btn-ghost { color: var(--ink); border-color: rgba(27,39,79,0.2); }
  .hdr-on-top-solid .hdr .btn-ghost { color: var(--ink); border-color: rgba(27,39,79,0.2); }
  .hdr .btn-primary { height: 38px; padding: 0 18px; font-size: 11px; background: var(--accent); }
  .hdr.is-scrolled .btn-primary { background: var(--accent); }

  /* Burger */
  .hdr-burger {
    display: none;
    width: 38px; height: 38px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    padding: 0; position: relative;
  }
  .hdr-burger span {
    display: block; position: absolute; left: 10px; right: 10px;
    height: 1px; background: #fff;
  }
  .hdr-burger span:nth-child(1) { top: 13px; }
  .hdr-burger span:nth-child(2) { top: 18px; }
  .hdr-burger span:nth-child(3) { top: 23px; }
  .hdr.is-scrolled .hdr-burger { border-color: rgba(27,39,79,0.2); }
  .hdr.is-scrolled .hdr-burger span { background: var(--ink); }

  /* Mobile menu, sits ABOVE the header so its own close button is reachable */
  .mob {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    background-color: #F1F1EE; /* hard fallback in case --cream is overridden */
    transform: translateY(-100%);
    transition: transform .45s var(--ease);
    z-index: 200;
    padding: 28px var(--pad-x) 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .mob.is-open { transform: translateY(0); }
  .mob-top {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 32px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(27,39,79,0.08);
  }
  .mob-close {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid rgba(27,39,79,0.2);
    border-radius: 50%;
    color: var(--ink);
    padding: 0;
    display: grid; place-items: center;
    transition: background .2s var(--ease), border-color .2s var(--ease);
  }
  .mob-close:hover { background: rgba(27,39,79,0.06); border-color: var(--ink); }
  .mob-close svg { display: block; }
  .mob-nav { display: flex; flex-direction: column; gap: 4px; }
  .mob-nav a {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid rgba(27,39,79,0.08);
    display: flex; align-items: center; justify-content: space-between;
  }
  .mob-nav a::after {
    content: "→";
    font-family: var(--sans);
    font-size: 18px;
    color: var(--graphite-2);
    transition: transform .2s var(--ease), color .2s var(--ease);
  }
  .mob-nav a:hover::after { color: var(--accent); transform: translateX(4px); }
  .mob-cta {
    margin-top: 32px;
    background: var(--accent);
    color: #fff !important;
    text-align: center;
    border-radius: 2px;
    padding: 18px !important;
    font-family: var(--sans) !important;
    font-size: 13px !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-bottom: 0 !important;
    justify-content: center !important;
  }
  .mob-cta::after { display: none; }
  .mob-foot {
    margin-top: auto;
    padding-top: 40px;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .mob-foot a { color: var(--ink); border-bottom: 1px solid currentColor; }

  /* ═══════════════════════════════════════════════════════════
     HERO
     ═══════════════════════════════════════════════════════════ */
  .hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: calc(var(--hdr-h) + 40px) var(--pad-x) 200px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--navy-deep);
    transform: scale(1.05);
    animation: hero-zoom 24s ease-out forwards;
  }
  @keyframes hero-zoom {
    from { transform: scale(1.12); }
    to { transform: scale(1.02); }
  }
  .hero-veil {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(27,39,79,0.55) 0%, rgba(27,39,79,0.05) 40%, rgba(27,39,79,0.0) 60%, rgba(27,39,79,0.7) 100%);
  }
  .hero-inner {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    z-index: 2;
  }
  .hero-center .hero-inner { text-align: center; }
  .hero-center .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-center .hero-actions { justify-content: center; }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
    font-weight: 500;
  }
  .hero-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(56px, 9vw, 128px);
    line-height: 0.96;
    letter-spacing: -0.022em;
    margin: 0 0 28px;
    text-wrap: balance;
  }
  .hero-title em { font-style: italic; font-weight: 400; color: var(--navy-tint); }
  .hero-lead {
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0 0 36px;
    max-width: 48ch;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  /* Booking widget pinned at hero bottom */
  .hero-booking {
    position: absolute;
    bottom: 40px;
    left: var(--pad-x);
    right: var(--pad-x);
    z-index: 3;
    max-width: var(--container);
    margin: 0 auto;
  }
  .hero-scroll {
    position: absolute;
    bottom: 200px;
    right: var(--pad-x);
    color: rgba(255,255,255,0.65);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    z-index: 2;
  }
  .hero-scroll-line {
    width: 1px; height: 60px; background: rgba(255,255,255,0.4);
    position: relative; overflow: hidden;
  }
  .hero-scroll-line::after {
    content: ""; position: absolute; top: -40px; left: 0; right: 0;
    height: 40px; background: rgba(255,255,255,0.9);
    animation: scroll-pulse 2.4s var(--ease) infinite;
  }
  @keyframes scroll-pulse {
    0% { top: -40px; } 100% { top: 100%; }
  }

  /* Booking form */
  .bk {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-radius: 3px;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1.2fr auto;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27,39,79,0.28);
    border: 1px solid rgba(255,255,255,0.7);
  }
  .bk-field {
    display: flex; flex-direction: column;
    padding: 14px 20px;
    border-right: 1px solid rgba(27,39,79,0.08);
    transition: background .2s var(--ease);
  }
  .bk-field:hover { background: rgba(37,53,109,0.04); }
  .bk-field span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--graphite-2);
    font-weight: 500;
    margin-bottom: 4px;
  }
  .bk-field input,
  .bk-field select {
    border: 0; background: transparent; padding: 0;
    font: 500 14px var(--sans); color: var(--ink);
    outline: none; appearance: none;
    cursor: pointer;
  }
  .bk-submit {
    background: var(--accent); color: #fff;
    border: 0; padding: 0 28px;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500;
    display: flex; align-items: center; gap: 10px;
    transition: background .25s var(--ease);
  }
  .bk-submit:hover { background: var(--navy-deep); }

  .bk.is-compact {
    box-shadow: 0 10px 30px rgba(27,39,79,0.15);
  }

  /* ═══════════════════════════════════════════════════════════
     WELCOME
     ═══════════════════════════════════════════════════════════ */
  .welcome { padding: 140px 0 120px; background: var(--snow); }
  .welcome-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
  }
  .welcome-img { position: relative; }
  .ph {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    background-color: var(--navy-fog);
    border-radius: 2px;
  }
  .welcome-badge {
    position: absolute;
    right: -32px; bottom: 32px;
    background: var(--cream);
    padding: 22px 28px;
    border-radius: 2px;
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.3;
    color: var(--ink);
    box-shadow: 0 20px 50px rgba(27,39,79,0.12);
    max-width: 220px;
  }
  .welcome-badge .stars {
    color: var(--accent);
    letter-spacing: 0.15em;
    font-size: 12px;
    margin-bottom: 8px;
    font-family: var(--sans);
  }
  .welcome-badge .stars span {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    padding: 1px 5px;
    border-radius: 2px;
    margin-left: 4px;
    vertical-align: 2px;
    letter-spacing: 0.1em;
  }

  .welcome-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(27,39,79,0.1);
  }
  .welcome-stats > div { display: flex; flex-direction: column; gap: 4px; }
  .welcome-stats b {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 38px;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.01em;
  }
  .welcome-stats b i { font-size: 0.55em; font-style: normal; opacity: 0.7; }
  .welcome-stats span {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
  }

  /* ═══════════════════════════════════════════════════════════
     SECTION HEAD (shared)
     ═══════════════════════════════════════════════════════════ */
  .section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
    margin-bottom: 32px;
  }
  .section-head .h2 { margin-bottom: 0; }
  .section-head .eyebrow { margin-bottom: 14px; }

  .section-intro {
    max-width: 62ch;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0 0 56px;
    text-wrap: pretty;
  }

  /* ═══════════════════════════════════════════════════════════
     WELLNESS  (primary section, editorial + tile grid)
     ═══════════════════════════════════════════════════════════ */
  .wellness {
    padding: 140px 0 120px;
    background: var(--bg-cream);
  }
  .wellness-head { margin-bottom: 48px; }
  .wellness-lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    margin-bottom: 80px;
  }
  .wellness-lead-img .ph { aspect-ratio: 4 / 5; }
  .wellness-lead-img .ph.tall { aspect-ratio: 4 / 5; }
  .wellness-lead-text .lead { margin-bottom: 24px; }
  .wellness-lead-text .ed-list { margin-bottom: 32px; }

  .wellness-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .w-tile {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 4 / 5;
    cursor: pointer;
  }
  .w-tile .ph {
    height: 100%; aspect-ratio: auto;
    transition: transform .9s var(--ease);
  }
  .w-tile:hover .ph { transform: scale(1.06); }
  .w-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(27,39,79,0) 40%, rgba(27,39,79,0.85) 100%);
  }
  .w-tile-cap {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    color: #fff;
    z-index: 2;
  }
  .w-tile-cap h4 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 4px;
    line-height: 1.1;
  }
  .w-tile-cap span {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
  }

  /* ═══════════════════════════════════════════════════════════
     ROOMS
     ═══════════════════════════════════════════════════════════ */
  .rooms {
    padding: 120px 0;
    background: var(--snow);
  }
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .room {
    background: var(--snow);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  }
  .room:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(27,39,79,0.12); }
  .room-img { position: relative; overflow: hidden; }
  .room-img .ph {
    aspect-ratio: 4 / 3;
    border-radius: 0;
    transition: transform .9s var(--ease);
  }
  .room:hover .room-img .ph { transform: scale(1.04); }
  .room-meta {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(8px);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex; gap: 8px;
  }
  .room-body { padding: 28px 30px 32px; }
  .room-name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 26px;
    line-height: 1.1;
    margin: 0 0 10px;
    color: var(--ink);
  }
  .room-desc {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 20px;
  }

  /* ═══════════════════════════════════════════════════════════
     EDITORIAL (Spa / Dining)
     ═══════════════════════════════════════════════════════════ */
  .ed { padding: 120px 0; background: var(--snow); }
  .ed-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
  }
  .ed.is-reverse .ed-grid > .ed-img { order: 2; }
  .ed-img .ph { aspect-ratio: 5 / 4; }
  .ed-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    border-top: 1px solid rgba(27,39,79,0.1);
  }
  .ed-list li {
    display: flex; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(27,39,79,0.1);
    font-size: 15px;
    color: var(--ink);
  }
  .ed-list li span {
    color: var(--accent);
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1;
  }

  /* ═══════════════════════════════════════════════════════════
     REGION
     ═══════════════════════════════════════════════════════════ */
  .region { padding: 120px 0; background: var(--snow); }
  .region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .region-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
  }
  .region-card .ph {
    height: 100%; aspect-ratio: auto;
    transition: transform .9s var(--ease);
  }
  .region-card:hover .ph { transform: scale(1.06); }
  .region-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(27,39,79,0) 30%, rgba(27,39,79,0.85) 100%);
  }
  .region-cap {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    color: #fff;
    z-index: 2;
  }
  .region-cap h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 4px;
    line-height: 1.1;
  }
  .region-cap span {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
  }

  /* ═══════════════════════════════════════════════════════════
     CTA
     ═══════════════════════════════════════════════════════════ */
  .cta {
    position: relative;
    padding: 160px 0;
    color: #fff;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-color: var(--navy-deep);
  }
  .cta-veil {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(27,39,79,0.92) 0%, rgba(37,53,109,0.78) 100%);
  }
  .cta-inner {
    position: relative; z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-inner .eyebrow { margin-bottom: 18px; }
  .cta-inner .lead { margin-left: auto; margin-right: auto; margin-bottom: 40px; }
  .cta .bk { margin-top: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.35); }

  /* ═══════════════════════════════════════════════════════════
     FOOTER
     ═══════════════════════════════════════════════════════════ */
  .ft {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.78);
  }
  .ft-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding: 100px 0 60px;
  }
  .ft-brand { font-size: 14px; line-height: 1.7; }
  .ft-brand .brand { margin-bottom: 28px; }
  .ft-brand .brand-name { color: #fff; }
  .ft-brand .brand-sub { color: rgba(255,255,255,0.7); }
  .ft-brand .brand-sep { background: rgba(255,255,255,0.4); }
  .ft-brand p { margin: 0 0 14px; }
  .ft-brand a:hover { color: #fff; border-bottom: 1px solid currentColor; }

  .ft h4 {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    margin: 0 0 22px;
  }
  .ft ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .ft a { font-size: 14px; color: rgba(255,255,255,0.85); transition: color .2s var(--ease); }
  .ft a:hover { color: #fff; }
  .ft-news { font-size: 14px; line-height: 1.6; margin: 0 0 18px; }
  .ft-form {
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: border-color .2s var(--ease);
  }
  .ft-form:focus-within { border-color: #fff; }
  .ft-form input {
    flex: 1; background: transparent; border: 0; padding: 12px 0;
    color: #fff; font-size: 14px; outline: none;
    font-family: var(--sans);
  }
  .ft-form input::placeholder { color: rgba(255,255,255,0.5); }
  .ft-form button {
    background: transparent; border: 0; color: #fff;
    font-size: 18px; padding: 8px 10px;
  }
  .ft-base {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
  }
  .ft-base-inner {
    display: flex; justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
  }
  .ft-base-links { display: flex; gap: 24px; }
  .ft-base-links a:hover { color: #fff; }

  /* ═══════════════════════════════════════════════════════════
     RESPONSIVE
     ═══════════════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .hdr-nav { display: none; }
    .hdr .btn-ghost, .hdr .btn-primary { display: none; }
    .hdr-burger { display: block; }
    .hdr-inner { grid-template-columns: auto 1fr; }
    .hdr-actions { justify-self: end; }

    .welcome-grid { grid-template-columns: 1fr; }
    .welcome-badge { right: 20px; bottom: 20px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .wellness-lead-grid { grid-template-columns: 1fr; }
    .wellness-tiles { grid-template-columns: repeat(2, 1fr); }
    .ed-grid { grid-template-columns: 1fr; }
    .ed.is-reverse .ed-grid > .ed-img { order: 0; }
    .region-grid { grid-template-columns: repeat(2, 1fr); }
    .ft-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 1025px) {
    .mob { display: none !important; }
  }
  @media (max-width: 720px) {
    :root { --hdr-h: 70px; --hdr-h-scrolled: 56px; }
    .hero { padding-bottom: 280px; }
    .hero-scroll { display: none; }
    .bk {
      grid-template-columns: 1fr 1fr;
    }
    .bk-submit { grid-column: 1 / -1; padding: 16px; justify-content: center; }
    .hero-booking { left: 16px; right: 16px; bottom: 24px; }

    .welcome { padding: 80px 0; }
    .welcome-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .welcome-badge { display: none; }

    .wellness, .rooms, .ed, .region { padding: 80px 0; }
    .wellness-lead-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
    .wellness-tiles { grid-template-columns: 1fr 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .region-grid { grid-template-columns: 1fr 1fr; }
    .section-head { grid-template-columns: 1fr; gap: 16px; }
    .section-head .link-arrow { justify-self: start; }
    .section-intro { margin-bottom: 32px; font-size: 15px; }

    .cta { padding: 100px 0; }

    .ft-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 40px; }
    .ft-base-inner { flex-direction: column; gap: 14px; }
  }


/* ═══════════════════════════════════════════════════════════════════
   SUBPAGE STYLES (added for multi-page site)
   ═══════════════════════════════════════════════════════════════════ */

.page-hero {
  position: relative;
  padding-top: calc(var(--hdr-h) + 90px);
  padding-bottom: 100px;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,39,79,0.55) 0%, rgba(27,39,79,0.35) 50%, rgba(27,39,79,0.75) 100%);
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
}
.page-hero .eyebrow {
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.page-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0 0 24px;
  text-wrap: balance;
  color: #fff;
}
.page-title em { font-style: italic; font-weight: 400; color: var(--navy-tint); }
.page-hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}

/* Breadcrumb */
.crumbs {
  position: relative;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs a { color: rgba(255,255,255,0.7); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: color .2s var(--ease), border-color .2s var(--ease); }
.crumbs a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }
.crumbs span.sep { opacity: 0.4; }

/* Page main content */
.page-main {
  padding: 100px 0 120px;
  background: var(--snow);
}
.page-main.is-cream { background: var(--bg-cream); }

.prose {
  max-width: 72ch;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 56px 0 18px;
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.prose h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 36px 0 12px;
  color: var(--ink);
}
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.prose p.lead {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.prose ul, .prose ol {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  padding-left: 0;
  margin: 0 0 24px;
  list-style: none;
}
.prose ul li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid rgba(27,39,79,0.08);
}
.prose ul li::before {
  content: "→";
  position: absolute;
  left: 0; top: 12px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
}
.prose ol { counter-reset: x; padding-left: 0; }
.prose ol li {
  position: relative;
  padding: 12px 0 12px 40px;
  border-bottom: 1px solid rgba(27,39,79,0.08);
  counter-increment: x;
}
.prose ol li::before {
  content: counter(x, decimal-leading-zero);
  position: absolute; left: 0; top: 14px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}
.prose a { color: var(--accent); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.prose a:hover { background: rgba(37,53,109,0.06); }
.prose blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--bg-cream);
}
.prose hr {
  border: 0;
  border-top: 1px solid rgba(27,39,79,0.12);
  margin: 56px 0;
}
.prose img, .prose .ph {
  border-radius: 2px;
  margin: 32px 0;
}
.prose figure { margin: 32px 0; }
.prose figure figcaption {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* Two-column layout for content + sidebar */
.page-2col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.page-2col .prose { max-width: none; }
.page-side {
  position: sticky;
  top: calc(var(--hdr-h-scrolled) + 32px);
  padding: 28px 30px;
  background: var(--bg-cream);
  border-radius: 2px;
}
.page-side h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--ink);
}
.page-side p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 12px; }
.page-side ul { list-style: none; padding: 0; margin: 0 0 18px; font-size: 14px; }
.page-side ul li { padding: 6px 0; border-bottom: 1px solid rgba(27,39,79,0.08); display: flex; justify-content: space-between; gap: 12px; color: var(--ink); }
.page-side ul li b { color: var(--accent); font-weight: 500; }

/* Featured image strip on subpages */
.page-feature {
  margin: 56px 0;
}
.page-feature .ph {
  aspect-ratio: 16 / 9;
}
.page-feature figcaption {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* Three-column card grid (used on Restaurant, Region etc.) */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.cards-3 .card {
  background: var(--snow);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(27,39,79,0.08);
  display: flex;
  flex-direction: column;
}
.cards-3 .card .ph { aspect-ratio: 4 / 3; }
.cards-3 .card-body { padding: 24px 26px; }
.cards-3 .card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--ink);
}
.cards-3 .card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery .gi {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
  transition: transform .35s var(--ease);
  cursor: pointer;
}
.gallery .gi:hover { transform: scale(1.02); }
.gallery .gi.tall { aspect-ratio: 3 / 4; grid-row: span 2; }
.gallery .gi.wide { grid-column: span 2; }

/* Contact / Info table */
.info-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 32px 0 48px;
}
.info-block h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 14px;
}
.info-block p, .info-block address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 12px;
}
.info-block a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* Hours table */
.hours {
  margin: 24px 0 32px;
  border-top: 1px solid rgba(27,39,79,0.12);
}
.hours .row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(27,39,79,0.08);
  font-size: 15px;
}
.hours .row .day { color: var(--ink); font-weight: 500; }
.hours .row .time { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours .row.closed .time { color: var(--graphite-2); }

/* Language button styling */
.btn-lang { font-variant: tabular-nums; min-width: 44px; justify-content: center; }
.btn-lang.is-active { opacity: 0.45; cursor: default; pointer-events: none; }
.hdr-actions .btn-lang + .btn-lang { margin-left: -4px; }
.mob-lang {
  font-family: var(--sans) !important;
  font-size: 15px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft) !important;
  border-bottom: 1px solid rgba(27,39,79,0.08) !important;
}
.mob-lang::after { content: "↗"; }
.mob-lang.is-active { opacity: 0.4; cursor: default; pointer-events: none; }
.mob-lang.is-active::after { content: ""; }

/* Skip-link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  z-index: 999;
  font-size: 13px;
}
.skip-link:focus { left: 16px; top: 16px; }

@media (max-width: 1024px) {
  .page-2col { grid-template-columns: 1fr; }
  .page-side { position: static; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .gi.wide { grid-column: span 1; }
  .gallery .gi.tall { grid-row: span 1; aspect-ratio: 4 / 3; }
}
@media (max-width: 720px) {
  .page-hero { padding-top: calc(var(--hdr-h) + 60px); padding-bottom: 70px; }
  .page-main { padding: 64px 0 80px; }
  .cards-3 { grid-template-columns: 1fr; }
  .info-table { grid-template-columns: 1fr; gap: 24px; }
}
