/* Well Cottage — base styles, shared chrome (header/footer) & reusable components. */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink);
}

/* Prose in EB Garamond (Regular 400 — its lightest cut; sans UI stays in Jost) */
p { font-family: var(--font-display); font-weight: 400; font-size: 1.18rem; line-height: 1.78; }

a { color: var(--sage-deep); text-decoration: none; }
p a { color: var(--sage-deep); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--stone-deep); transition: text-decoration-color 0.3s var(--ease); }
p a:hover { text-decoration-color: var(--sage); }

::selection { background: var(--sage); color: var(--white); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); }
.section.alt { background: var(--paper-2); }
.measure { max-width: var(--maxw-text); }
.center { text-align: center; margin-inline: auto; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-block;
  margin-bottom: 1.1rem;
}
.eyebrow.on-dark { color: #E9D9C6; }

.lead { font-size: var(--fs-lead); line-height: 1.65; color: var(--ink-soft); font-weight: 300; }

h2.section-title { font-size: var(--fs-h2); }
h2.section-title + .lead { margin-top: 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.95em 1.9em; border-radius: var(--radius);
  cursor: pointer; border: 1px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-deep); color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.textlink {
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.5em;
  border-bottom: 1px solid var(--clay); padding-bottom: 4px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.textlink:hover { gap: 0.85em; color: var(--clay-deep); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header.solid { background: var(--paper); box-shadow: 0 1px 0 rgba(42,38,32,0.08); }

.brand { display: inline-flex; flex-direction: column; align-items: stretch; line-height: 1; text-decoration: none; flex-shrink: 0; }
.brand b { font-family: var(--font-display); font-size: 1.72rem; font-weight: 500; color: var(--ink); letter-spacing: 0; white-space: nowrap; }
.brand span { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 5px; text-align: justify; text-align-last: justify; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: clamp(0.8rem, 1.4vw, 1.6rem); }
.nav a.navlink {
  font-family: var(--font-sans); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink);
  position: relative; padding-block: 4px; white-space: nowrap;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--clay); transition: width 0.35s var(--ease);
}
.nav a.navlink:hover::after, .nav a.navlink[aria-current="page"]::after { width: 100%; }

/* On desktop: 3-column grid keeps nav perfectly centred with equal guardrails
   on both sides — brand (1fr left), nav (auto centre), controls (1fr right).
   The 1fr columns absorb all the extra space equally, so brand and controls
   track the viewport at the same rate as the nav gaps and can never overlap. */
@media (min-width: 1101px) {
  .site-header .wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    max-width: none;
  }
  .brand { justify-self: start; }
  .nav {
    justify-content: center;
    gap: clamp(0.8rem, 1vw, 1.2rem);
  }
  .header-right {
    justify-content: flex-end;
  }
}

/* Transparent-over-hero state */
.site-header:not(.solid) .brand b,
.site-header:not(.solid) .nav a.navlink { color: var(--white); }
.site-header:not(.solid) .brand span { color: rgba(255,255,255,0.8); }
.site-header:not(.solid) .nav a.navlink::after { background: var(--white); }

.nav-cta.btn { padding: 0.7em 1.4em; }

/* right-side header controls */
.header-right { display: flex; align-items: center; gap: 0.4rem; }
.theme-toggle { position: relative; z-index: 121; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); transition: background 0.3s var(--ease), color 0.4s var(--ease); }
.theme-toggle:hover { background: rgba(120,110,90,0.14); }
.theme-toggle svg { width: 19px; height: 19px; }
#themeToggle { width: 30px; height: 30px; }
#themeToggle svg { width: 15px; height: 15px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
.site-header:not(.solid) .theme-toggle { color: var(--white); }
.site-header:not(.solid) .nav-cta.btn-primary { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.6); color: var(--white); backdrop-filter: blur(4px); }
.site-header:not(.solid) .nav-cta.btn-primary:hover { background: var(--white); color: var(--ink); }

.nav-footer { display: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s; }
.nav-toggle span:nth-child(1){ top: 0; } .nav-toggle span:nth-child(2){ top: 10px; } .nav-toggle span:nth-child(3){ top: 20px; }
.site-header:not(.solid) .nav-toggle span { background: var(--white); }

@media (max-width: 1100px) {
  .nav-toggle { display: block; z-index: 120; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: flex-start; align-items: center; gap: 0.6rem;
    padding: 5.5rem 1.5rem 3rem; overflow-y: auto;
    background: var(--paper); transform: translateX(100%); transition: transform 0.45s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav a.navlink { color: var(--ink) !important; font-size: 1.15rem; }
  .nav a.navlink::after { background: var(--clay) !important; }
  .header-only { display: none !important; }
  .nav-footer {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    margin-top: 0; padding-top: 0.4rem; border-top: 1px solid var(--rule);
    width: 100%;
  }
  .nav-footer-book { padding: 0.7em 1.4em; justify-content: center; }
  .nav-footer-ig {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--rule);
    color: var(--ink); transition: background 0.3s var(--ease);
  }
  .nav-footer-ig:hover { background: rgba(120,110,90,0.12); }
  .nav-footer-ig svg { width: 19px; height: 19px; }
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header .nav-toggle span { background: var(--ink) !important; }
  body.menu-open .site-header #themeToggleMobile { color: var(--ink) !important; }
  .nav-toggle.active span { background: var(--ink); }
  .nav-toggle.active span:nth-child(1){ transform: translateY(10px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2){ opacity: 0; }
  .nav-toggle.active span:nth-child(3){ transform: translateY(-10px) rotate(-45deg); }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--band-bg); color: #D9D2C6; padding-block: clamp(3.5rem, 6vw, 5.5rem) 2.5rem; }
.site-footer a { color: #D9D2C6; transition: color 0.3s var(--ease); }
.site-footer a:hover { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-grid h3 { color: var(--white); font-size: 0.78rem; font-family: var(--font-sans); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 500; }
.footer-brand b { font-family: var(--font-display); font-size: 1.8rem; color: var(--white); display: block; margin-bottom: 0.6rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.95rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-ig { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; color: #D9D2C6; margin-top: 1.1rem; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); }
.footer-ig:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.55); }
.footer-ig svg { width: 19px; height: 19px; }
@media (max-width: 700px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Focus indicators (keyboard a11y) ---------- */
:where(a, button, [role="button"], input, select, textarea, summary, [tabindex]):focus { outline: none; }
:where(a, button, [role="button"], input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent, var(--sage-deep, #6B7A4F));
  outline-offset: 3px;
  border-radius: 3px;
}
.site-header:not(.solid) :focus-visible { outline-color: #fff; }
.btn:focus-visible { outline-offset: 4px; }

/* Skip-to-main link, revealed only on keyboard focus */
.skip-link {
  position: absolute; left: 8px; top: 8px;
  padding: 0.6rem 1rem; background: var(--ink, #1a1a1a); color: #fff;
  border-radius: 4px; font-family: var(--font-sans); font-size: 0.9rem;
  text-decoration: none; z-index: 200;
  transform: translateY(-150%); transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: 0.1s; }
.reveal[data-delay="2"]{ transition-delay: 0.2s; }
.reveal[data-delay="3"]{ transition-delay: 0.3s; }

/* Editorial image reveals — each image fades + slides in, then its photo
   settles from a soft zoom as it scrolls into view (clipped by the rounded
   media frame). Detail-row figures stagger in one after another. */
.ed-media.reveal img { transform: scale(1.06); transition: transform 1.3s var(--ease); }
.ed-media.reveal.in img { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ed-media.reveal img { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Reusable: feature cards ---------- */
.card-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; } }

.card { position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .card-img { aspect-ratio: 4/5; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card .card-body { padding: 1.4rem 1.5rem 1.7rem; }
.card .card-body h3 { font-size: var(--fs-h3); margin-bottom: 0.4rem; }
.card .card-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* Overlay card (image with text over) */
.tile { position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg); min-height: 340px; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,14,0.72) 0%, rgba(20,18,14,0.12) 55%, transparent 100%); }
.tile .tile-text { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1.6rem 1.8rem; color: var(--white); }
.tile .tile-text h3 { color: var(--white); font-size: var(--fs-h3); }
.tile .tile-text p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 0.2rem; }

/* ---------- Reviews (native, on-brand) ---------- */
.review-summary { display: flex; align-items: center; justify-content: center; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.4rem; }
.review-summary .stars { color: var(--clay); letter-spacing: 2px; font-size: 1.15rem; line-height: 1; }
.review-summary .score { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.review-summary .count { color: var(--muted); font-size: 0.95rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); margin-top: 3rem; text-align: left; align-items: stretch; }
.review-card.is-hidden { display: none; }
@media (max-width: 920px){ .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .review-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--surface); border: 1px solid var(--stone); border-radius: var(--radius-lg); padding: 1.6rem 1.7rem 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.9rem; height: 100%; }
.review-card .stars { color: var(--clay); letter-spacing: 2px; font-size: 0.9rem; line-height: 1; }
.review-card blockquote { margin: 0; font-family: var(--font-display); font-size: 1.12rem; line-height: 1.62; color: var(--ink-soft);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5; line-clamp: 5; overflow: hidden; }
.review-card.is-expanded blockquote { -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
.review-more { display: none; align-self: flex-start; background: none; border: 0; padding: 0; margin-top: -0.3rem; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay-deep); }
.review-more:hover { color: var(--clay); }

/* ---------- Shared sub-page sections ---------- */
.page-hero { position: relative; height: 100svh; min-height: 600px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero .hero-media { position: absolute; inset: 0; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,14,0.74) 0%, rgba(20,18,14,0.1) 50%, rgba(20,18,14,0.25) 100%); }
.page-hero .hero-content { position: relative; z-index: 3; color: var(--white); padding-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.page-hero h1 { color: var(--white); font-size: var(--fs-h1); max-width: 18ch; }
.page-hero .lead { color: rgba(255,255,255,0.92); max-width: 50ch; margin-top: 1rem; }
.crumb { font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 1.1rem; }
.crumb a { color: rgba(255,255,255,0.85); } .crumb a:hover { color: #fff; }

.facts { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); margin-top: 3rem; padding-top: 2.6rem; border-top: 1px solid var(--stone-deep); }
.fact { text-align: center; } .fact b { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.4rem); color: var(--sage-deep); line-height: 1; }
.fact span { display: block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.55rem; }

.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.6rem; }
.head-row .lead { max-width: 40ch; }
@media (max-width: 760px){ .head-row { flex-direction: column; align-items: flex-start; gap: 1rem; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split .split-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-md); }
.split .split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } .split.flip-mobile > *:first-child { order: 2; } }

.cta-band { background: var(--band-bg); color: #E5DECF; text-align: center; }
.cta-band h2 { color: var(--white); font-size: var(--fs-h1); }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 46ch; margin: 1.1rem auto 2rem; font-weight: 300; }
@media (max-width: 540px) { .cta-band .btn { width: 100%; justify-content: center; } }


/* ---------- Area directory: place cards ---------- */
.place-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
@media (max-width: 900px){ .place-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .place-grid { grid-template-columns: 1fr; } }
.place-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--stone); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.place-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.place-card .pc-img { aspect-ratio: 3/2; overflow: hidden; background: var(--sage-tint); }
.place-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.7s var(--ease), transform 0.8s var(--ease); }
.place-card:hover .pc-img img { transform: scale(1.05); }
.place-card.is-hidden { display: none; }
.place-card .pc-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.place-card h3 { font-size: 1.3rem; }
.place-card .pc-meta { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay-deep); }
.place-card .pc-blurb { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.place-card .pc-link { margin-top: auto; font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-deep); padding-top: 0.5rem; }
.place-group + .place-group { margin-top: clamp(2.5rem, 5vw, 4rem); }
.place-group.is-hidden { display: none; }
.filter-chips { display: flex; flex-wrap: nowrap; position: sticky; top: var(--header-h); z-index: 50; background: var(--paper); margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); border-bottom: 1px solid var(--stone); margin-bottom: 2.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
/* Anchor landing buffer for sticky filter bar — keeps section headings clear of the chips bar on all pages */
.place-group, .ev-month { scroll-margin-top: calc(var(--header-h) + 64px); }
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chips.reveal { transform: none; }
.chip { display: inline-block; padding: 0.8rem 0.9rem; font-family: var(--font-sans); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; flex-shrink: 0; cursor: pointer; transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.chip:hover { color: var(--ink); }
.chip.is-active { color: var(--ink); border-bottom-color: var(--clay); }

/* ---------- Cottage room nav ---------- */
.room-nav { position: sticky; top: var(--header-h); z-index: 90; background: var(--paper); border-bottom: 1px solid var(--stone); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.room-nav::-webkit-scrollbar { display: none; }
.room-nav-inner { display: flex; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.room-pill { display: inline-block; padding: 0.8rem 0.9rem; font-family: var(--font-sans); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; flex-shrink: 0; transition: color 0.2s var(--ease), border-color 0.2s var(--ease); }
.room-pill:hover { color: var(--ink); }
.room-pill.is-active { color: var(--ink); border-bottom-color: var(--clay); }

/* Desktop: centre sticky sub-navs */
@media (min-width: 1101px) {
  .room-nav-inner { justify-content: center; }
  .filter-chips { justify-content: center; }
}

/* Mobile: taller tap targets, scroll both navs */
@media (max-width: 768px) {
  .room-pill, .chip { padding: 1.1rem 0.85rem; }
}
.place-group .group-title { font-size: var(--fs-h3); margin-bottom: 1.4rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--stone-deep); }


/* ---------- Editorial layout: ed-split / detail-row / room-facts ---------- */
/* Shared by room pages, garden, and any editorial content pages. */
.ed-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 4.5vw, 4.5rem); align-items: center; }
.ed-split.flip { grid-template-columns: 1fr 1.05fr; }
.ed-split.flip .ed-media { order: 2; }
.ed-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--shadow-md); background: var(--stone); }
.ed-media.tall { aspect-ratio: 4/5; }
.ed-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ed-text .eyebrow { display: inline-block; }
.ed-text h2 { margin-top: 1rem; }
.ed-text p { color: var(--muted); margin-top: 1.2rem; line-height: 1.7; }
.ed-text p:first-of-type { color: var(--ink); font-size: var(--fs-lead); font-weight: 300; }
@media (max-width: 820px) { .ed-split, .ed-split.flip { grid-template-columns: 1fr; gap: 2rem; } .ed-split.flip .ed-media { order: 0; } .ed-media, .ed-media.tall { aspect-ratio: 4/3; } }

.detail-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.6rem, 1.6vw, 1.2rem); margin-top: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.detail-row.two { grid-template-columns: repeat(2, 1fr); }
.detail-row figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--shadow-sm); background: var(--stone); }
.detail-row figure.tall { aspect-ratio: 4/5; }
.detail-row img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) { .detail-row, .detail-row.two { grid-template-columns: 1fr 1fr; } }

.room-facts ul { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 2rem; }
.room-facts li { padding-left: 1.4rem; position: relative; color: var(--muted); line-height: 1.5; }
.room-facts li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 0.7rem; height: 1px; background: var(--accent); }
@media (max-width: 600px) { .room-facts ul { grid-template-columns: 1fr; } }

.review-card .who { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; padding-top: 0.5rem; }
.review-card .avatar { position: relative; width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: var(--sage-tint); display: flex; align-items: center; justify-content: center; }
.review-card .avatar i { font-family: var(--font-display); font-style: normal; font-size: 1.05rem; color: var(--sage-deep); }
.review-card .avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.review-card .who-meta { display: flex; flex-direction: column; line-height: 1.25; }
.review-card .who-meta b { font-family: var(--font-sans); font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.review-card .src { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
