
  :root {
    color-scheme: light;
    --ink:   #221b15;
    --moss:  #4b3b2d;
    --bone:  #f1ebe0;
    --paper: #f7f2e9;
    --stone: #6f6456;
    --stone-light: #bcae9c;
    --gold:  #bb8a4a;
    --line:  rgba(22, 33, 28, 0.14);
    --line-light: rgba(241, 235, 223, 0.18);

    --display: "Fraunces", Georgia, "Times New Roman", serif;
    --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --pad: clamp(1.25rem, 5vw, 5rem);
    --maxw: 1240px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bone);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: var(--gold); color: var(--ink); }

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

  .eyebrow {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
  }

  .rule {
    width: 44px; height: 1px;
    background: var(--gold);
    border: 0;
  }

  /* ---------- PHOTO PLATES (replace these with <img>) ---------- */
  .plate {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background:
      linear-gradient(135deg, var(--moss) 0%, var(--ink) 100%);
    overflow: hidden;
  }
  .plate::after {
    /* soft label so you can see what goes where; harmless if you swap in <img> */
    content: attr(data-label);
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1.1rem;
    font-family: var(--sans);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(241, 235, 223, 0.62);
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
  }
  img.plate::after { content: none; }

  /* ============================ NAV ============================ */
  header.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem var(--pad);
    mix-blend-mode: difference;
    color: #fff;
  }
  .nav .mark {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .nav a.book {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
  }

  /* ============================ HERO ============================ */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    color: var(--bone);
    overflow: hidden;
  }
  .hero .plate {
    position: absolute;
    inset: 0;
    animation: drift 26s ease-in-out infinite alternate;
  }
  .hero .plate::after { font-size: 0.72rem; padding: 1.4rem var(--pad); }
  @keyframes drift {
    from { transform: scale(1.06); }
    to   { transform: scale(1.16); }
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,17,14,0.72) 0%, rgba(11,17,14,0.12) 45%, rgba(11,17,14,0.28) 100%);
    z-index: 1;
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 var(--pad) clamp(2.5rem, 7vh, 5rem);
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .hero .place {
    display: flex; align-items: center; gap: 0.9rem;
    margin-bottom: 1.4rem;
  }
  .hero .place .eyebrow { color: var(--bone); opacity: 0.85; }
  .hero h1 {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(3rem, 11vw, 8.5rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
  }
  .hero .lede {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 2.4vw, 1.5rem);
    max-width: 34ch;
    margin-top: 1.6rem;
    color: rgba(241, 235, 223, 0.9);
  }
  .scroll-cue {
    position: absolute;
    right: var(--pad); bottom: clamp(2.5rem, 7vh, 5rem);
    z-index: 2;
    font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
    writing-mode: vertical-rl;
    color: rgba(241,235,223,0.7);
    display: flex; align-items: center; gap: 0.8rem;
  }
  .scroll-cue::after {
    content: ""; width: 1px; height: 46px; background: rgba(241,235,223,0.5);
  }

  /* ========================== INDEX ========================== */
  .index {
    background: var(--ink);
    color: var(--bone);
    padding: 1.6rem var(--pad);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2.6rem;
    justify-content: center;
    border-bottom: 1px solid var(--line-light);
  }
  .index a {
    display: flex; align-items: baseline; gap: 0.7rem;
    font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--stone-light);
    transition: color 0.3s ease;
  }
  .index a:hover { color: var(--gold); }
  .index a .num {
    font-family: var(--display); font-style: italic;
    font-size: 0.95rem; color: var(--gold); letter-spacing: 0;
  }

  /* ========================= SECTIONS ========================= */
  section { padding: clamp(4.5rem, 11vh, 9rem) var(--pad); }
  .wrap { max-width: var(--maxw); margin: 0 auto; }

  .sec-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.6rem; }
  .sec-head .num {
    font-family: var(--display); font-style: italic; font-weight: 400;
    color: var(--gold); font-size: 1.1rem;
  }
  .sec-head .eyebrow { color: var(--stone); }

  /* Intro / editorial statement */
  .statement { max-width: 20ch; }
  .statement p {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1.7rem, 4.6vw, 3.1rem);
    line-height: 1.16;
    letter-spacing: -0.01em;
  }
  .statement em { font-style: italic; color: var(--gold); }
  .intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
  }
  .intro-grid .body p { color: var(--stone); max-width: 46ch; }
  .intro-grid .body p + p { margin-top: 1.1rem; }

  /* ========================== GALLERY ========================== */
  .gallery { background: var(--paper); }
  .plates {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(0.75rem, 1.6vw, 1.4rem);
  }
  .plates .cell { position: relative; }
  .plates .media { position: relative; overflow: hidden; }
  .plates .media .plate {
    width: 100%; height: 100%; display: block; object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.16,1,0.3,1);
  }
  .plates .cell:hover .media .plate { transform: scale(1.05); }
  .g-a { grid-column: span 4; } .g-a .media { aspect-ratio: 16 / 10; }
  .g-b { grid-column: span 2; } .g-b .media { aspect-ratio: 4 / 5; }
  .g-c { grid-column: span 3; } .g-c .media { aspect-ratio: 4 / 5; }
  .g-d { grid-column: span 3; } .g-d .media { aspect-ratio: 4 / 5; }
  .g-e { grid-column: span 4; } .g-e .media { aspect-ratio: 16 / 10; }
  .g-f { grid-column: span 2; } .g-f .media { aspect-ratio: 4 / 5; }
  .g-g { grid-column: span 4; } .g-g .media { aspect-ratio: 16 / 10; }
  .g-h { grid-column: span 2; } .g-h .media { aspect-ratio: 4 / 5; }
  .g-i { grid-column: span 6; } .g-i .media { aspect-ratio: 16 / 9; }
  .cap {
    margin-top: 0.7rem;
    font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--stone);
    display: flex; gap: 0.6rem;
  }
  .cap .n { font-family: var(--display); font-style: italic; color: var(--gold); }

  /* =========================== STAY =========================== */
  .stay { background: var(--ink); color: var(--bone); }
  .stay .sec-head .eyebrow { color: var(--stone-light); }
  .facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
  }
  .fact {
    padding: 2.2rem 0;
    border-bottom: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .fact:first-child { padding-left: 0; }
  .fact .v {
    font-family: var(--display); font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1;
  }
  .fact .k {
    margin-top: 0.6rem;
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--stone-light);
  }
  .amenities {
    margin-top: 3rem;
    columns: 2;
    column-gap: 4rem;
    max-width: 780px;
  }
  .amenities li {
    list-style: none;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-light);
    break-inside: avoid;
    display: flex; align-items: center; gap: 0.9rem;
    color: rgba(241,235,223,0.88);
    font-size: 0.98rem;
  }
  .amenities li::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold); flex: none;
  }

  /* ========================= SETTING ========================= */
  .setting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 3vw, 2.4rem);
    align-items: stretch;
  }
  .setting-copy { display: flex; flex-direction: column; justify-content: center; padding-right: clamp(0,4vw,3rem); }
  .setting-copy h3 {
    font-family: var(--display); font-weight: 300;
    font-size: clamp(1.6rem, 4vw, 2.5rem); line-height: 1.1;
    margin: 0.4rem 0 1.2rem;
  }
  .setting-copy p { color: var(--stone); max-width: 42ch; }
  .setting-copy p + p { margin-top: 1rem; }
  .setting-plate { aspect-ratio: 3 / 4; width: 100%; height: auto; display: block; object-fit: cover; }

  /* ========================= INQUIRE ========================= */
  /* =========================== BOOK =========================== */
  .book { background: var(--paper); }
  .book-head { margin-bottom: clamp(2rem, 5vw, 3rem); }
  .book-head h2 {
    font-family: var(--display); font-weight: 300;
    font-size: clamp(2rem, 5.5vw, 3.4rem); line-height: 1.05; margin-bottom: 1rem;
  }
  .book-head p { color: var(--stone); max-width: 48ch; }
  .book-widget {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: clamp(1.5rem, 4vw, 3rem);
    min-height: 240px;
    display: flex; align-items: center; justify-content: center;
  }
  .book-placeholder { text-align: center; max-width: 48ch; }
  .book-placeholder .eyebrow { color: var(--gold); display: block; margin-bottom: 1rem; }
  .book-placeholder p { color: var(--stone); margin-bottom: 1.8rem; }
  .book-cta {
    display: inline-block; background: var(--gold); color: var(--ink);
    font-family: var(--sans); font-weight: 600;
    font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
    border-radius: 999px; padding: 1rem 2.2rem;
    transition: transform .3s ease, background .3s ease;
  }
  .book-cta:hover { transform: translateY(-2px); background: #c39c62; }

  .inquire { background: var(--moss); color: var(--bone); text-align: center; }
  .inquire .eyebrow { color: var(--gold); }
  .inquire h2 {
    font-family: var(--display); font-weight: 300;
    font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1.05;
    margin: 1rem auto 1.4rem;
    max-width: 16ch;
  }
  .inquire p.sub { color: rgba(241,235,223,0.82); max-width: 44ch; margin: 0 auto 2.6rem; }

  form.inq {
    max-width: 640px; margin: 0 auto; text-align: left;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
  }
  form.inq .full { grid-column: 1 / -1; }
  form.inq label {
    display: block;
    font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(241,235,223,0.7); margin-bottom: 0.5rem;
  }
  form.inq input, form.inq textarea {
    width: 100%;
    background: transparent;
    border: 0; border-bottom: 1px solid rgba(241,235,223,0.32);
    color: var(--bone);
    font-family: var(--sans); font-size: 1rem;
    padding: 0.5rem 0;
    transition: border-color 0.3s ease;
  }
  form.inq input:focus, form.inq textarea:focus {
    outline: none; border-color: var(--gold);
  }
  form.inq textarea { resize: vertical; min-height: 70px; }
  .btn {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 0.6rem;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--sans); font-weight: 600;
    font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
    border: 0; border-radius: 999px;
    padding: 1rem 2.4rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  .btn:hover { transform: translateY(-2px); background: #c39c62; }
  .alt-link {
    grid-column: 1 / -1;
    margin-top: 0.4rem;
    font-size: 0.85rem; color: rgba(241,235,223,0.8);
  }
  .alt-link a { border-bottom: 1px solid var(--gold); padding-bottom: 2px; color: var(--bone); }

  /* ========================== FOOTER ========================== */
  footer {
    background: var(--ink); color: var(--stone-light);
    padding: clamp(3rem,7vh,5rem) var(--pad) 2.4rem;
  }
  .foot-top {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 2rem;
    border-bottom: 1px solid var(--line-light);
    padding-bottom: 2.4rem;
  }
  .foot-top .mark {
    font-family: var(--display); font-weight: 300;
    font-size: clamp(2rem, 6vw, 3.4rem); color: var(--bone); line-height: 1;
  }
  .foot-contact { text-align: right; font-size: 0.9rem; line-height: 1.9; }
  .foot-contact a:hover { color: var(--gold); }
  .foot-bottom {
    margin-top: 1.6rem;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
    font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  }

  /* ========================= REVEALS ========================= */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s ease, transform 1s cubic-bezier(0.16,1,0.3,1); }
  .reveal.in { opacity: 1; transform: none; }

  /* ======================= RESPONSIVE ======================= */
  @media (max-width: 860px) {
    .intro-grid { grid-template-columns: 1fr; }
    .statement { max-width: none; }
    .plates { grid-template-columns: repeat(2, 1fr); }
    .g-a, .g-b, .g-c, .g-d, .g-e, .g-f, .g-g, .g-h { grid-column: span 1; }
    .g-i { grid-column: 1 / -1; }
    .plates .media { aspect-ratio: 4/5; }
    .g-i .media { aspect-ratio: 16 / 9; }
    .facts { grid-template-columns: repeat(2, 1fr); }
    .fact:nth-child(2) { border-right: 0; padding-right: 0; }
    .fact:nth-child(4) { border-right: 0; padding-right: 0; }
    .fact:nth-child(3) { padding-left: 0; }
    .setting-grid { grid-template-columns: 1fr; }
    form.inq { grid-template-columns: 1fr; }
    .amenities { columns: 1; }
    .foot-top, .foot-contact { text-align: left; }
    .foot-contact { text-align: left; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .plates .cell:hover .media .plate { transform: none; }
  }

  /* ===================== MULTI-PAGE NAV ===================== */
  header.nav {
    mix-blend-mode: normal;
    color: var(--bone);
    gap: 1rem;
    transition: background .3s ease, color .3s ease, padding .3s ease;
  }
  header.nav .mark { color: inherit; }
  .nav-menu { display: flex; align-items: center; gap: clamp(0.9rem, 2.4vw, 2.1rem); }
  .nav-menu a {
    font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: inherit; opacity: 0.88;
    padding-bottom: 3px; border-bottom: 1px solid transparent;
    transition: opacity .2s ease, border-color .2s ease;
  }
  .nav-menu a:hover { opacity: 1; }
  .nav-menu a.active { opacity: 1; border-bottom-color: currentColor; }
  .nav-menu a.nav-book { color: var(--gold); opacity: 1; font-weight: 600; }
  header.nav.scrolled {
    background: var(--bone); color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding-top: 0.85rem; padding-bottom: 0.85rem;
  }
  .foot-bottom a:hover { color: var(--gold); }
  .page-cta { text-align: center; }
  @media (max-width: 600px) {
    header.nav { flex-direction: column; gap: 0.5rem; padding: 0.75rem var(--pad); }
    header.nav .mark { font-size: 1.05rem; }
    .nav-menu { gap: 1rem; }
    .nav-menu a { font-size: 0.62rem; letter-spacing: 0.14em; }
  }
