:root {
    /* Fall-leaning palette */
    --cream: #f5efe4;
    --cream-soft: #faf6ee;
    --paper: #ffffff;
    --ink: #1c1a16;
    --ink-soft: #3a3530;
    --muted: #6f665b;
    --rule: #d9d0bf;

    --forest: #2f4733;     /* deep evergreen */
    --forest-deep: #1f3024;
    --sienna: #b6541f;     /* burnt sienna accent */
    --gold: #b8893b;       /* maple gold */
    --gold-light: #e9c483; /* pastel gold */
    --sky: #6a7a85;

    --accent: #2f4733;
    --accent-deep: #1f3024;
    --accent-2: #b6541f;

    --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

    --maxw: 1240px;
    --gutter: clamp(20px, 4vw, 48px);
  }

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

  .wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

  /* ---------- Sticky header stack (topbar + nav) ---------- */
  .header-stack {
    position: sticky; top: 0; z-index: 50;
  }

  /* ---------- Top contact bar ---------- */
  .topbar {
    background: var(--ink);
    color: #e9e2d3;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .topbar .row {
    display: flex; align-items: center; justify-content: space-between;
    height: 38px; gap: 24px;
  }
  .topbar .meta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
  .topbar .meta span { display: inline-flex; align-items: center; gap: 8px; color: #cfc6b5; }
  .topbar .meta svg { opacity: 0.75; }
  .topbar .social { display: flex; gap: 14px; }
  .topbar .social a { opacity: 0.8; transition: opacity .2s; }
  .topbar .social a:hover { opacity: 1; }
  @media (max-width: 760px) {
    .topbar .row { height: auto; padding-block: 8px; flex-direction: column; gap: 6px; align-items: flex-start; }
    .topbar .meta { gap: 14px; font-size: 11px; }
    .topbar .social { display: none; }
  }

  .social.large a {
    transition: color 0.6s ease, opacity 0.6s ease;
  }

  .social.large a:hover {
    color: var(--sienna);
    opacity: 0.7;
  }

  .social.large svg {
    width: 120px;
    height: 120px;
  }

  @media (max-width: 880px) {
    .social.large svg {
      width: 50px;
      height: 50px;
    }
  }

  /* ---------- Header / Nav ---------- */
  header.site {
    background: rgba(245, 239, 228, 0.96);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--rule);
  }
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    height: 84px;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    line-height: 1;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 auto;
  }
  .brand-text {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1;
    display: block;
  }
  .brand-text small {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500;
  }
  @media (max-width: 760px) {
    .brand-mark { width: 36px; height: 36px; }
    .brand-text { font-size: 18px; }
    .brand-text small { font-size: 9px; letter-spacing: 0.22em; }
  }
  .nav-list {
    display: flex; gap: 28px; align-items: center;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .nav-list.right { justify-content: flex-end; }
  .nav-list a, .nav-list .has-drop < button {
    color: var(--ink-soft);
    padding: 6px 0;
    position: relative;
    transition: color .2s;
  }
  .nav-list a:hover, .nav-list .has-drop:hover > button { color: var(--accent); }
  .has-drop { position: relative; }
  .has-drop > button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    line-height: inherit;
  }
  .has-drop > button::after {
    content: ""; width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 2px;
  }
  .drop {
    position: absolute; top: 100%; left: 50%; transform: translate(-50%, 6px);
    background: var(--paper);
    border: 1px solid var(--rule);
    box-shadow: 0 18px 40px -20px rgba(0,0,0,0.25);
    padding: 10px;
    min-width: 220px;
    opacity: 0; pointer-events: none;
    transition: opacity .18s, transform .18s;
  }
  .has-drop:hover .drop, .has-drop:focus-within .drop {
    opacity: 1; pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .drop a {
    display: block; padding: 10px 12px;
    font-family: var(--serif);
    font-size: 17px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink);
    border-radius: 2px;
  }
  .drop a:hover { background: var(--cream); color: var(--accent); }
  .drop a small {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 500;
  }
  .book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--forest-deep);
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
  }
  .book-btn:hover { background: var(--gold-light); }

  .menu-toggle { display: none; }
  @media (max-width: 980px) {
    .nav { grid-template-columns: 1fr auto 1fr; height: 70px; }
    .nav-list { display: none; }
    .menu-toggle { display: inline-flex; }
    .nav-list.right { display: flex; justify-content: flex-end; }
    .nav-list.right .book-btn { padding: 11px 18px; font-size: 11px; margin-left: 0; }
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: clamp(560px, 88vh, 820px);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--cream-soft);
    isolation: isolate;
  }
  .hero-photo {
    position: absolute; inset: 0;
    z-index: -1;
    overflow: hidden;
  }
  .hero-photo .slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 35s infinite;
    will-change: opacity;
  }
  .hero-photo::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.30), rgba(0,0,0,0.40) 60%, rgba(0,0,0,0.65));
    pointer-events: none;
  }
  .hero-photo picture,
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero-photo .slide:nth-child(1) { animation-delay: 0s; }
  .hero-photo .slide:nth-child(2) { animation-delay: -28s; }
  .hero-photo .slide:nth-child(3) { animation-delay: -21s; }
  .hero-photo .slide:nth-child(4) { animation-delay: -14s; }
  .hero-photo .slide:nth-child(5) { animation-delay: -7s; }
  @keyframes heroFade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    20%  { opacity: 1; }
    24%  { opacity: 0; }
    100% { opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-photo .slide { animation: none; opacity: 0; }
    .hero-photo .slide:nth-child(1) { opacity: 1; }
  }
  /* SVG-stripe placeholder (fallback for fall photo) */
  :root {
    --photo-fall: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%231f3a2a'/><stop offset='0.5' stop-color='%234a6b54'/><stop offset='1' stop-color='%232c4a5a'/></linearGradient><pattern id='p' width='14' height='14' patternUnits='userSpaceOnUse' patternTransform='rotate(35)'><rect width='14' height='14' fill='url(%23g)'/><line x1='0' y1='0' x2='0' y2='14' stroke='%23000' stroke-opacity='0.06' stroke-width='1'/></pattern></defs><rect width='1600' height='900' fill='url(%23p)'/></svg>");
  }
  .hero-banner {
    text-align: center;
    padding: clamp(28px, 5vw, 56px) clamp(28px, 6vw, 72px);
    background: rgba(15, 13, 10, 0.42);
    border: 1px solid rgba(245, 239, 228, 0.25);
    backdrop-filter: blur(2px);
    max-width: 780px;
    margin-inline: var(--gutter);
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: 0.005em;
    margin: 0 0 18px;
  }
  .hero h1 em { font-style: italic; color: #e9c483; }
  .hero p.lede {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(20px, 1.6vw, 24px);
    max-width: 560px;
    margin: 0 auto 28px;
    opacity: 0.92;
    line-height: 1.45;
  }
  .hero-meta {
    display: inline-flex; gap: 22px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.85;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.6; }

  /* Hero variant: split */
  .hero.split { background: var(--cream); color: var(--ink); display: block; min-height: 0; }
  .hero.split .hero-photo { display: none; }
  .hero.split .split-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: clamp(520px, 78vh, 720px);
  }
  .hero.split .split-img {
    position: relative;
    overflow: hidden;
  }
  .hero.split .split-img .slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    animation: heroFade 35s infinite;
  }
  .hero.split .split-img .slide:nth-child(1) { animation-delay: 0s; }
  .hero.split .split-img .slide:nth-child(2) { animation-delay: -28s; }
  .hero.split .split-img .slide:nth-child(3) { animation-delay: -21s; }
  .hero.split .split-img .slide:nth-child(4) { animation-delay: -14s; }
  .hero.split .split-img .slide:nth-child(5) { animation-delay: -7s; }
  .hero.split .split-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: clamp(40px, 6vw, 80px);
    background: var(--cream);
  }
  .hero.split .hero-banner { background: none; border: 0; padding: 0; max-width: 540px; margin: 0; text-align: left; }
  .hero.split h1 { color: var(--ink); }
  .hero.split h1 em { color: var(--sienna); }
  .hero.split p.lede { color: var(--ink-soft); margin-left: 0; margin-right: 0; }
  .hero.split .hero-meta { color: var(--muted); justify-content: flex-start; }
  @media (max-width: 880px) {
    .hero.split .split-grid { grid-template-columns: 1fr; }
    .hero.split .split-img { min-height: 320px; }
  }

  /* ---------- Booking band (3 CTAs) ---------- */
  .booking {
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 28px 0;
    margin-top: -1px;
  }
  .booking .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: stretch;
  }
  .cta {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 10px;
    padding: 18px 28px;
    border-right: 1px solid var(--rule);
    transition: background .25s;
    cursor: pointer;
  }
  .cta:last-child { border-right: 0; }
  .cta:hover { background: var(--cream); }
  .cta .num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--accent-2);
    letter-spacing: 0.04em;
  }
  .cta h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 26px;
    margin: 0;
    line-height: 1.1;
  }
  .cta p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
  }
  .cta .arrow {
    margin-top: auto;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    transition: gap .25s;
  }
  .cta:hover .arrow { gap: 14px; }
  @media (max-width: 880px) {
    .booking .row { grid-template-columns: 1fr; }
    .cta { border-right: 0; border-bottom: 1px solid var(--rule); padding: 22px 24px; }
    .cta:last-child { border-bottom: 0; }
  }

  /* ---------- Section base ---------- */
  section.block { padding: clamp(64px, 9vw, 120px) 0; }
  .eyebrow {
    font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase;
    color: var(--accent-2); font-weight: 600;
    margin-bottom: 14px;
  }
  .display {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.05; letter-spacing: 0.005em;
    margin: 0;
  }
  .display em { font-style: italic; color: var(--accent); }

  /* ---------- About ---------- */
  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
  }
  .about-grid .copy p {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 22px 0 0;
    max-width: 56ch;
  }
  .about-meta {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
  }
  .about-meta .stat .n {
    font-family: var(--serif);
    font-size: 38px;
    line-height: 1;
    color: var(--accent);
  }
  .about-meta .stat .l {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
  }
  .photo-stack { position: relative; aspect-ratio: 4/5; }
  .photo-stack .ph {
    position: absolute; inset: 0;
    background: var(--photo-fall) center/cover no-repeat;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35);
  }
  .photo-stack .ph img,
  .season .s-img img,
  .owner-photo .ph img,
  .room-card .img img,
  .tile .img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .photo-stack .ph.b {
    inset: auto -40px -40px auto;
    width: 55%; height: 55%;
    background:
      linear-gradient(135deg, rgba(0,0,0,0.0), rgba(0,0,0,0.2)),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'><defs><pattern id='s' width='10' height='10' patternUnits='userSpaceOnUse' patternTransform='rotate(45)'><rect width='10' height='10' fill='%23f0e3c8'/><line x1='0' y1='0' x2='0' y2='10' stroke='%23b6541f' stroke-opacity='0.55' stroke-width='1.5'/></pattern></defs><rect width='800' height='800' fill='url(%23s)'/></svg>");
    background-size: cover;
    border: 6px solid var(--cream-soft);
  }
  .photo-stack .label {
    position: absolute; left: 14px; top: 14px;
    background: rgba(0,0,0,0.55);
    color: #f3ead8;
    font-family: ui-monospace, "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 5px 8px;
  }
  @media (max-width: 880px) {
    .about-grid { grid-template-columns: 1fr; }
    .photo-stack { max-width: 460px; margin: 0 auto; }
  }

  /* ---------- Rooms ---------- */
  .rooms-head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
  }
  .rooms-head .display { max-width: 14ch; }
  .rooms-head p { color: var(--muted); max-width: 44ch; margin: 0; }

  .rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .room-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
    background: var(--ink);
  }
  .room-card .img {
    position: absolute; inset: 0;
    background: var(--photo-fall) center/cover no-repeat;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
  }
  .room-card:hover .img { transform: scale(1.06); }
  .room-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.6) 100%);
    transition: background .3s;
  }
  .room-card:hover::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 10%, rgba(0,0,0,0.7) 100%);
  }
  .room-card .meta {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 28px 30px;
    color: var(--cream-soft);
    z-index: 2;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .room-card:hover .meta { transform: translateY(-6px); }
  .room-card .kicker {
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    opacity: 0.85; margin-bottom: 10px;
  }
  .room-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
    margin: 0 0 8px;
    transition: font-size .35s;
  }
  .room-card:hover h3 { font-size: clamp(30px, 3.4vw, 44px); }
  .room-card p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    max-width: 38ch;
  }
  .room-card .cta-line {
    margin-top: 16px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 14px;
    display: inline-flex; gap: 10px;
    font-weight: 600;
  }
  @media (max-width: 760px) {
    .rooms-grid { grid-template-columns: 1fr; }
    .room-card { aspect-ratio: 5/4; }
  }

  /* ---------- Offerings ---------- */
  .offerings { background: var(--forest-deep); color: var(--cream-soft); }
  .offerings .display em { color: #e9c483; }
  .offerings .eyebrow { color: #e9c483; }
  .offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
  }
  .offer {
    border-top: 1px solid rgba(245,239,228,0.18);
    padding-top: 24px;
  }
  .offer .num {
    font-family: var(--serif); font-style: italic;
    font-size: 18px; color: #e9c483;
    letter-spacing: 0.05em;
  }
  .offer h3 {
    font-family: var(--serif); font-weight: 400;
    font-size: 28px;
    margin: 12px 0 10px;
  }
  .offer p {
    color: rgba(245,239,228,0.78);
    font-size: 14px; line-height: 1.6;
    margin: 0 0 16px;
  }
  .offer a {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: #e9c483;
    border-bottom: 1px solid rgba(233,196,131,0.5);
    padding-bottom: 4px;
    transition: color .2s, border-color .2s;
  }
  .offer a:hover { color: #fff; border-color: #fff; }
  @media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; gap: 8px; } .offer { padding: 24px 0; } }

  /* ---------- Seasons ---------- */
  .seasons { background: var(--cream); }
  .seasons-head { display: grid; gap: 8px; margin-bottom: 56px; max-width: 720px; }
  .seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .season {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--cream-soft);
    aspect-ratio: 3/4;
    cursor: pointer;
  }
  .season .s-img {
    position: absolute; inset: 0;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
  }
  .season:hover .s-img { transform: scale(1.06); }
  .season::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.75) 100%);
  }
  .season .s-body {
    position: absolute; inset: auto 0 0 0;
    padding: 22px 22px 24px;
    z-index: 2;
  }
  .season .s-tag {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    opacity: 0.85; margin-bottom: 8px;
  }
  .season h3 {
    font-family: var(--serif); font-weight: 400;
    font-size: 30px; margin: 0 0 8px;
    transition: font-size .35s;
  }
  .season:hover h3 { font-size: 34px; }
  .season p {
    margin: 0; font-size: 13px; line-height: 1.5;
    color: rgba(245,239,228,0.92);
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height .45s, opacity .35s, margin .35s;
  }
  .season:hover p { max-height: 200px; opacity: 1; margin-top: 4px; }
  .s-winter .s-img { background:
    linear-gradient(160deg, #93a4af, #41525e 60%, #1a2128); }
  .s-spring .s-img { background:
    linear-gradient(160deg, #cad9b3, #6a8a4f 60%, #2f4733); }
  .s-summer .s-img { background:
    linear-gradient(160deg, #e9c483, #b8893b 50%, #5d7a4f); }
  .s-fall .s-img { background:
    linear-gradient(160deg, #e08a3a, #b6541f 55%, #703414); }
  @media (max-width: 880px) { .seasons-grid { grid-template-columns: 1fr 1fr; } .season { aspect-ratio: 4/5; } }

  /* ---------- Owner's Note ---------- */
  .owner { background: var(--paper); border-block: 1px solid var(--rule); }
  .owner-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }
  .owner-photo { position: relative; aspect-ratio: 4/5; }
  .owner-photo .ph {
    position: absolute; inset: 0;
    background:
      linear-gradient(160deg, rgba(0,0,0,0.0), rgba(0,0,0,0.15)),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='750' viewBox='0 0 600 750'><defs><pattern id='s' width='10' height='10' patternUnits='userSpaceOnUse' patternTransform='rotate(45)'><rect width='10' height='10' fill='%231f3a2a'/><line x1='0' y1='0' x2='0' y2='10' stroke='%23e9c483' stroke-opacity='0.4' stroke-width='1.2'/></pattern></defs><rect width='600' height='750' fill='url(%23s)'/></svg>") center/cover no-repeat;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35);
  }
  .owner-photo .label {
    position: absolute; left: 14px; top: 14px;
    background: rgba(0,0,0,0.55);
    color: #f3ead8;
    font-family: ui-monospace, monospace;
    font-size: 10px; letter-spacing: 0.1em;
    padding: 5px 8px;
  }
  .owner-copy blockquote {
    margin: 22px 0 22px;
    padding: 0;
    border: 0;
  }
  .owner-copy blockquote p {
    font-family: var(--serif);
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0 0 16px;
    text-wrap: pretty;
    max-width: 60ch;
  }
  .owner-copy cite {
    font-style: normal;
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--accent-2); font-weight: 600;
  }
  @media (max-width: 880px) { .owner-grid { grid-template-columns: 1fr; } .owner-photo { max-width: 460px; margin: 0 auto; aspect-ratio: 4/3; } }

  /* ---------- Amenities ---------- */
  .amenities { background: var(--cream-soft); }
  .amen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid var(--rule);
  }
  .amen {
    padding: 32px 28px 32px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .amen-num {
    font-family: var(--serif); font-style: italic;
    font-size: 18px; color: var(--accent-2);
    margin-bottom: 12px;
  }
  .amen h4 {
    font-family: var(--serif); font-weight: 500;
    font-size: 24px; margin: 0 0 16px;
  }
  .amen ul {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 8px;
    font-size: 14px; color: var(--ink-soft);
  }
  .amen ul li { padding-left: 18px; position: relative; line-height: 1.5; }
  .amen ul li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 8px; height: 1px; background: var(--accent);
  }
  .amen.ac-note { background: var(--ink); color: rgba(245,239,228,0.88); border-color: var(--ink); }
  .amen.ac-note h4 { color: var(--cream-soft); }
  .amen.ac-note .amen-num { color: #e9c483; font-style: normal; font-family: var(--serif); font-size: 22px; }
  .amen.ac-note p { font-size: 14px; line-height: 1.6; margin: 0 0 12px; color: rgba(245,239,228,0.85); }
  .amen.ac-note .amen-foot {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(245,239,228,0.2);
    font-size: 16px;
    color: rgba(245,239,228,0.7);
  }
  @media (max-width: 880px) {
    .amen-grid { grid-template-columns: 1fr; }
    .amen { border-right: 0; }
  }

  /* ---------- Photo bar (horizontal scroll) ---------- */
  .gallery { padding-bottom: clamp(40px, 6vw, 80px); }
  .gallery-head {
    display: flex; align-items: end; justify-content: space-between;
    gap: 24px; margin-bottom: 36px; flex-wrap: wrap;
  }
  .gallery-head a {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent); font-weight: 600;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
  }
  .photo-rail {
    display: flex; gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px var(--gutter) 28px;
    margin-inline: calc(var(--gutter) * -1);
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
  }
  .photo-rail::-webkit-scrollbar { height: 6px; }
  .photo-rail::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
  .photo-rail::-webkit-scrollbar-track { background: var(--rule); }
  .tile {
    position: relative;
    flex: 0 0 auto;
    width: clamp(240px, 28vw, 340px);
    aspect-ratio: 4/5;
    scroll-snap-align: start;
    overflow: hidden;
    background: var(--ink);
    cursor: pointer;
  }
  .tile.wide { aspect-ratio: 4/3; width: clamp(320px, 38vw, 460px); }
  .tile .img {
    position: absolute; inset: 0;
    background: var(--photo-fall) center/cover no-repeat;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
  }
  .tile:hover .img { transform: scale(1.05); }
  .tile .cap {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 18px 20px;
    color: var(--cream-soft);
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: padding .35s, font-size .35s;
  }
  .tile:hover .cap { padding-bottom: 24px; font-size: 14px; letter-spacing: 0.22em; }
  .rail-controls {
    display: flex; gap: 10px; justify-content: flex-end;
    margin-top: 10px;
  }
  .rail-controls button {
    width: 44px; height: 44px;
    border: 1px solid var(--rule);
    color: var(--ink-soft);
    transition: background .2s, color .2s, border-color .2s;
  }
  .rail-controls button:hover { background: var(--accent); color: var(--cream-soft); border-color: var(--accent); }

  /* ---------- Reviews ---------- */
  .reviews { background: var(--cream); }
  .review-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 56px;
  }
  .review {
    padding: 6px 28px;
    border-left: 1px solid var(--rule);
  }
  .review:first-child { border-left: 0; padding-left: 0; }
  .review:last-child { padding-right: 0; }
  .review .stars {
    color: var(--accent-2);
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 14px;
  }
  .review blockquote {
    font-family: var(--serif);
    font-size: 19px; line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 18px;
  }
  .review cite {
    font-style: normal;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
  }
  @media (max-width: 880px) {
    .review-grid { grid-template-columns: 1fr; }
    .review { padding: 24px 0; border-left: 0; border-top: 1px solid var(--rule); }
    .review:first-child { border-top: 0; padding-top: 0; }
  }

  /* ---------- Local ---------- */
  .local-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
  }
  .local {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 22px 22px 24px;
    transition: transform .3s, box-shadow .3s;
  }
  .local:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -28px rgba(0,0,0,0.25); }
  .local .dist {
    font-family: var(--serif);
    font-size: 28px; color: var(--accent);
    line-height: 1;
  }
  .local h4 {
    font-family: var(--serif); font-weight: 500;
    font-size: 20px; margin: 8px 0 6px;
  }
  .local p {
    font-size: 13px; color: var(--muted); margin: 0;
    line-height: 1.5;
  }
  .local .local-link {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--sans);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); font-weight: 600;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 3px;
    transition: color .2s, border-color .2s;
  }
  .local:hover .local-link { color: var(--accent-2); border-color: var(--accent-2); }
  @media (max-width: 880px) { .local-grid { grid-template-columns: 1fr 1fr; } }

  /* ---------- Newsletter ---------- */
  .news {
    position: relative;
    color: var(--cream-soft);
    overflow: hidden;
  }
  .news::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.65)), var(--photo-fall) center/cover no-repeat;
    z-index: 0;
  }
  .news .wrap { position: relative; z-index: 1; text-align: center; }
  .news .display { color: var(--cream-soft); }
  .news .display em { color: #e9c483; }
  .news p { color: rgba(245,239,228,0.85); max-width: 52ch; margin: 16px auto 0; }
  .news form {
    margin-top: 32px;
    display: flex; gap: 0;
    max-width: 520px; margin-inline: auto;
    border: 1px solid rgba(245,239,228,0.4);
    background: rgba(0,0,0,0.3);
  }
  .news input {
    flex: 1; padding: 16px 20px;
    background: transparent; border: 0;
    color: var(--cream-soft);
    font-family: var(--sans); font-size: 14px;
    letter-spacing: 0.04em;
  }
  .news input::placeholder { color: rgba(245,239,228,0.55); }
  .news input:focus { outline: none; }
  .news button[type="submit"] {
    background: var(--cream-soft); color: var(--ink);
    padding: 0 26px;
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600;
    transition: background .2s, color .2s;
  }
  .news button[type="submit"]:hover { background: var(--accent-2); color: var(--cream-soft); }

  /* ---------- Awards strip ---------- */
  .awards {
    background: var(--paper);
    padding: 48px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .awards .row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px; flex-wrap: wrap;
  }
  .awards .label {
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
  }
  .badges {
    display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
  }
  .badge {
    display: flex; align-items: center; gap: 10px;
    color: var(--ink-soft);
  }
  .badge .seal {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--cream);
    display: grid; place-items: center;
    border: 1px solid var(--rule);
    font-family: var(--serif);
    font-size: 11px;
    color: var(--accent);
    text-align: center;
    line-height: 1.05;
    padding: 6px;
    letter-spacing: 0.04em;
  }
  .badge .seal.dark { background: var(--ink); color: #e9c483; border-color: var(--ink); }
  .badge .seal.sienna { background: var(--sienna); color: var(--cream-soft); border-color: var(--sienna); }
  .badge .name {
    font-family: var(--serif);
    font-size: 16px; line-height: 1.1;
  }
  .badge .name small {
    display: block;
    font-family: var(--sans);
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted); margin-top: 4px; font-weight: 600;
  }

  /* ---------- Footer ---------- */
  footer.site {
    background: var(--ink);
    color: rgba(245,239,228,0.78);
    padding: 64px 0 36px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .foot-grid h5 {
    font-family: var(--sans);
    font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
    color: #e9c483; margin: 0 0 18px; font-weight: 600;
  }
  .foot-grid .brand-block .brand { color: var(--cream-soft); text-align: left; }
  .foot-grid .brand-block .brand small { color: rgba(245,239,228,0.55); }
  .foot-grid p { margin: 0 0 10px; font-size: 14px; line-height: 1.6; }
  .foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
  .foot-grid a { transition: color .2s; }
  .foot-grid a:hover { color: var(--cream-soft); }
  .foot-bottom {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(245,239,228,0.12);
    display: flex; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
    font-size: 12px; color: rgba(245,239,228,0.55);
  }
  @media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

  /* hover-text-grow utility (per feedback: smooth scroll-over hover, not flip) */
  .grow-on-hover { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
  .grow-on-hover:hover { transform: scale(1.02); }

  /* leaf icon */
  .leaf {
    display: inline-block;
    width: 14px; height: 14px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M21 3c-9 0-15 5-15 13 0 1 0 2 1 3l-3 3 1 1 3-3c1 1 2 1 3 1 8 0 13-6 13-15 0-1 0-3-3-3zM6 17c0-7 4-12 13-13-1 8-6 13-13 13z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M21 3c-9 0-15 5-15 13 0 1 0 2 1 3l-3 3 1 1 3-3c1 1 2 1 3 1 8 0 13-6 13-15 0-1 0-3-3-3zM6 17c0-7 4-12 13-13-1 8-6 13-13 13z'/></svg>") center/contain no-repeat;
  }


  /* ---------- Mobile menu (hamburger + drawer) ---------- */
  .menu-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border: 1px solid var(--rule);
    background: var(--paper);
    color: var(--ink);
  }
  .menu-toggle svg { display: block; }
  .mobile-drawer {
    position: fixed; inset: 0;
    background: var(--cream-soft);
    z-index: 60;
    transform: translateY(-100%);
    transition: transform .3s ease;
    overflow-y: auto;
    display: flex; flex-direction: column;
  }
  .mobile-drawer.is-open { transform: translateY(0); }
  .mobile-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px var(--gutter);
    border-bottom: 1px solid var(--rule);
  }
  .mobile-drawer-close {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--rule);
    background: var(--paper);
    color: var(--ink);
    font-size: 20px;
  }
  .mobile-drawer nav {
    display: grid;
    padding: 24px var(--gutter);
    gap: 4px;
  }
  .mobile-drawer nav a {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
  }
  .mobile-drawer nav a:last-child { border-bottom: 0; }
  .mobile-drawer nav a small {
    display: block;
    font-family: var(--sans);
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
  }
  .mobile-drawer .drawer-cta {
    margin: 16px var(--gutter) 32px;
    padding: 18px;
    background: var(--accent);
    color: var(--cream-soft);
    text-align: center;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600;
  }
  body.drawer-open { overflow: hidden; }

  /* ---------- Mobile responsive overrides ---------- */
  @media (max-width: 980px) {
    .menu-toggle { display: inline-flex; }
  }
  @media (max-width: 760px) {
    /* Topbar: compact one-line scroll on phones */
    .topbar { font-size: 10px; letter-spacing: 0.04em; }
    .topbar .row {
      flex-direction: row; height: 34px; padding-block: 0;
      overflow-x: auto;
      scrollbar-width: none;
      flex-wrap: nowrap;
      align-items: center;
    }
    .topbar .row::-webkit-scrollbar { display: none; }
    .topbar .meta {
      gap: 16px; flex-wrap: nowrap;
      white-space: nowrap;
    }
    .topbar .meta span { flex-shrink: 0; }

    /* Header: tighter, smaller brand */
    .nav { height: 60px; gap: 10px; grid-template-columns: auto 1fr auto; }
    .brand-mark { width: 32px; height: 32px; }
    .brand-text {
      font-size: 15px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      min-width: 0;
    }
    .brand-text small { display: none; }
    .nav-list.right a:not(.book-btn) { display: none; }
    .nav-list.right .book-btn {
      padding: 9px 14px;
      font-size: 10px;
      letter-spacing: 0.16em;
      margin-left: 0;
    }
    .brand { gap: 10px; justify-content: center; min-width: 0; overflow: hidden; }

    /* Hero */
    .hero { min-height: 70vh; }
    .hero-banner {
      padding: 28px 20px;
      margin-inline: 12px;
    }
    .hero h1 { font-size: 34px; line-height: 1.05; }
    .hero p.lede { font-size: 20px; }
    .hero-eyebrow { font-size: 14px; letter-spacing: 0.28em; }
    .hero-meta { font-size: 16px; letter-spacing: 0.18em; gap: 12px; }

    /* Section padding */
    section.block { padding: 56px 0; }

    /* About stats */
    .about-meta { grid-template-columns: 1fr 1fr; gap: 18px; }
    .about-meta .stat:nth-child(3) { grid-column: 1 / -1; }
    .about-meta .stat .n { font-size: 30px; }

    /* Booking band */
    .cta { padding: 20px 18px; }
    .cta h3 { font-size: 22px; }

    /* Local cards 1 column */
    .local-grid { grid-template-columns: 1fr; }

    /* Awards stack */
    .awards .row { flex-direction: column; align-items: flex-start; gap: 18px; }
    .badges { gap: 18px 24px; }
  }


/* ---------- No-JS mobile navigation (native <details>) ---------- */
.mobile-nav { display: none; position: relative; }
.mobile-nav > summary {
  list-style: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; cursor: pointer; color: var(--ink);
  border: 1px solid var(--rule); background: var(--paper);
}
.mobile-nav > summary::-webkit-details-marker { display: none; }
.mobile-nav > summary::marker { content: ""; }
.mobile-nav > summary svg { display: block; }
.mobile-nav[open] > summary { color: var(--cream-soft); background: var(--accent); border-color: var(--accent); }
.mobile-nav-panel {
  position: absolute; top: calc(100% + 10px); left: 0;
  width: min(86vw, 320px);
  background: var(--paper); border: 1px solid var(--rule);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.4);
  padding: 8px; display: flex; flex-direction: column; z-index: 80;
}
.mobile-nav-panel a {
  padding: 13px 14px; font-family: var(--serif); font-size: 19px; color: var(--ink);
  border-bottom: 1px solid var(--rule); line-height: 1.15;
}
.mobile-nav-panel a:last-child { border-bottom: 0; }
.mobile-nav-panel a small {
  display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-top: 3px; font-weight: 500;
}
.mobile-nav-panel .mobile-nav-cta {
  margin-top: 6px; text-align: center; background: var(--accent); color: var(--cream-soft);
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; border-bottom: 0; padding: 15px;
}
@media (max-width: 980px) {
  .mobile-nav { display: inline-flex; }
}
