@import url("fonts.css");

/* ============================================================
   Plumbing only. Nothing here is a design decision — no colour,
   no typeface, no layout. Each site writes its own visual system
   on top; this file only carries the things that must be right
   on every site and are invisible when they are.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* A sideways-scrollable page drags position:fixed elements out of view on
     phones. Clip rather than scroll. (clip, not hidden: hidden would make html
     a scroll container and break scroll-padding and sticky.) */
  overflow-x: clip;
}

body { margin: 0; }
/* Lock scrolling on the ROOT, not on body. html already has overflow-x:clip,
   so overflow:hidden on body turns body into its own scroll container — a
   position:sticky header then sticks to body and is thrown off-screen (with
   its close button) when the menu opens after scrolling. site.js puts
   .is-locked on <html> directly; a :has() selector was tried first and its
   style invalidation visibly lagged behind the menu opening. */
html.is-locked { overflow: hidden; }
/* [hidden] must win. A rule like `.gallery-more { display:flex }` outranks the
   browser's own `[hidden] { display:none }`, which left an empty "Show 0 more"
   button on screen whenever a gallery had nothing further to reveal. */
[hidden] { display: none !important; }

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }
/* A <button> inherits the user agent's grey `buttonface` unless something says
   otherwise. An outline/ghost button that sets only border-color and color then
   renders as light-grey with (often white) text on it — invisible. Reset here;
   any variant that wants a fill sets one and wins on specificity. */
button { background: transparent; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Reveal-on-scroll. The JS failsafe shows everything if the observer
   never runs, so content can never be stranded invisible. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease, ease), transform .7s var(--ease, ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media print {
  .site-header, .lightbox, .skip-link, .gallery-more, .filters, .map-consent, .callbar { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #555; }
}

/* =====================================================================
   Azalea Studios — "olive grove & timber ceiling"
   Cream pages for the lily logo, azalea orange, olive green and the warm
   timber of the studios' wooden roofs. Alegreya + Source Sans 3 (Greek).
   ===================================================================== */
:root {
  --cream: #fdfaf3;
  --sand: #f5eddd;
  --petal: #fbe6d2;
  --azalea: #b04e17;
  --azalea-2: #933f10;
  --apricot: #f0a35e;
  --olive: #4a560d;
  --olive-2: #6b7a15;
  --leaf: #859702;
  --olive-deep: #37410b;
  --timber: #7a4a26;
  --timber-2: #9a6436;
  --ink: #2b2a22;
  --muted: #666253;
  --line: #e6dcc7;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(43, 42, 34, .06), 0 16px 34px -18px rgba(43, 42, 34, .32);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --display: "Alegreya", Georgia, "Times New Roman", serif;
  --text: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 82px;
}

html { scroll-padding-top: calc(var(--header-h) + 14px); }
body { font: 400 1.08rem/1.7 var(--text); color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; color: var(--olive-deep); line-height: 1.12; text-wrap: balance; }
h2 { font-size: clamp(1.95rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }
a { color: var(--azalea); text-underline-offset: .2em; }
p { text-wrap: pretty; }
strong { font-weight: 600; }
.wrap { width: min(1180px, 100% - 2 * clamp(20px, 4vw, 40px)); margin-inline: auto; }
.narrow { max-width: 780px; }
.ico { width: 1.25em; height: 1.25em; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--olive); color: #fff; padding: .6rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--olive-2); outline-offset: 3px; }

/* ---------- Timber beams band ---------- */
.beams { height: 16px; background:
  linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 40%, rgba(0, 0, 0, .12)),
  repeating-linear-gradient(90deg, var(--timber) 0 44px, #6a3f1f 44px 47px, var(--timber-2) 47px 88px, #6a3f1f 88px 91px); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.4rem; border-radius: 999px; font: 600 1rem/1.1 var(--text); text-decoration: none; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; transition: background-color .2s, color .2s, border-color .2s, transform .2s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn .ico { width: 1.1em; height: 1.1em; }
.btn--azalea { background: var(--azalea); color: #fff; }
.btn--azalea:hover { background: var(--azalea-2); }
.btn--olive { background: var(--olive); color: #fff; }
.btn--olive:hover { background: var(--olive-deep); }
.btn--line { color: var(--olive-deep); border-color: rgba(55, 65, 11, .35); }
.btn--line:hover { border-color: var(--olive-deep); background: #fff; }
.btn--cream { background: var(--cream); color: var(--olive-deep); }
.btn--cream:hover { background: #fff; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }
.text-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--azalea); text-decoration: none; border-bottom: 1.5px solid rgba(176, 78, 23, .3); }
.text-link:hover { border-color: var(--azalea); }
.kicker { display: flex; align-items: center; gap: .55rem; margin: 0 0 .7rem; font: 600 .8rem/1.3 var(--text); letter-spacing: .14em; text-transform: uppercase; color: var(--olive-2); }
.kicker .ico { color: var(--apricot); width: 1.3em; height: 1.3em; }
.kicker--light { color: #dfe8a6; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--muted); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--cream); border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.site-header.is-stuck { box-shadow: 0 10px 26px -20px rgba(43, 42, 34, .5); }
.header-inner { display: flex; align-items: center; gap: 1.2rem; height: var(--header-h); }
.brand { margin-right: auto; display: block; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: .15rem; }
.nav a { color: var(--olive-deep); text-decoration: none; font-weight: 600; font-size: .98rem; padding: .45rem .75rem; border-radius: 999px; }
.nav a:hover { background: var(--sand); }
.nav a[aria-current="page"] { background: var(--petal); color: var(--azalea-2); }
.nav .nav-book { display: none; }
.lang { display: inline-flex; align-items: center; gap: .35rem; padding: .4rem .7rem; border: 1.5px solid var(--line); border-radius: 999px; color: var(--olive-deep); text-decoration: none; font-weight: 700; font-size: .85rem; letter-spacing: .06em; }
.lang:hover { border-color: var(--olive-2); }
.lang .ico { width: 1em; height: 1em; color: var(--olive-2); }
.header-book { padding: .7rem 1.15rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 50%; position: relative; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { position: absolute; left: 50%; width: 18px; height: 2px; margin-left: -9px; background: var(--olive-deep); border-radius: 2px; transition: transform .3s var(--ease), background-color .2s; }
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; left: 0; margin: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.is-open .nav-toggle span { background: transparent; }
.is-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.is-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 1060px) { .nav a { padding: .45rem .5rem; font-size: .93rem; } .header-inner { gap: .8rem; } .brand img { height: 42px; } }
@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .brand img { height: 40px; }
  .nav-toggle { display: block; }
  .header-book { display: none; }
  .nav { position: fixed; inset: var(--header-h) 0 0; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem clamp(20px, 5vw, 40px) 2rem; background: var(--cream); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; overflow-y: auto; }
  .nav a { font: 700 1.6rem/1.2 var(--display); padding: .95rem .2rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a[aria-current="page"] { background: none; color: var(--azalea); }
  .nav .nav-book { display: flex; justify-content: center; margin-top: 1.5rem; border: 0; border-radius: 999px; background: var(--azalea); color: #fff; font: 600 1.05rem/1 var(--text); padding: 1.05rem; }
  .is-open .nav { opacity: 1; visibility: visible; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(60px, 8vw, 104px); }
.section--tight { padding-top: clamp(36px, 5vw, 56px); }
.section--sand { background: var(--sand); }
.section--olive { background: var(--olive); color: rgba(255, 255, 255, .86); }
.section--olive h2, .section--olive h3 { color: #fff; }
.section--olive .lede { color: rgba(255, 255, 255, .8); }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.intro-grid > *, .contact-grid > *, .footer-grid > *, .history-layout > *, .house-intro > * { min-width: 0; }

/* ---------- Tiles ---------- */
.tile { display: block; position: relative; width: 100%; height: 100%; padding: 0; border: 0; overflow: hidden; cursor: zoom-in; background: var(--sand); border-radius: var(--radius); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.04); }

/* ---------- Page head ---------- */
.page-head { background: radial-gradient(90% 120% at 100% 0%, var(--petal), transparent 60%), var(--sand); padding: clamp(44px, 7vw, 88px) 0 clamp(40px, 6vw, 70px); position: relative; overflow: hidden; }
.page-head::after { content: ""; position: absolute; right: -40px; bottom: -60px; width: 260px; height: 260px; opacity: .14; background: radial-gradient(circle at 50% 50%, var(--leaf) 0 18%, transparent 19%), conic-gradient(from 20deg, var(--apricot) 0 12%, transparent 12% 20%, var(--apricot) 20% 32%, transparent 32% 40%, var(--apricot) 40% 52%, transparent 52% 60%, var(--apricot) 60% 72%, transparent 72% 80%, var(--apricot) 80% 92%, transparent 92%); border-radius: 50%; pointer-events: none; }
.page-head h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); margin-bottom: .7rem; max-width: 18ch; }
.page-head .lede { max-width: 680px; margin: 0; }
.page-head .wrap { position: relative; z-index: 1; }
.page-head--photo { padding: clamp(60px, 9vw, 120px) 0 clamp(56px, 8vw, 104px); }
.page-head--photo::after { display: none; }
.page-head--photo h1, .page-head--photo .lede { max-width: 560px; }
.page-head-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; }
.page-head-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-head-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--sand) 0%, rgba(245, 237, 221, .8) 20%, rgba(245, 237, 221, 0) 55%); }
@media (max-width: 760px) {
  .page-head--photo { padding-top: 0; }
  .page-head-photo { position: relative; width: 100%; height: 56vw; margin-bottom: -1.5rem; }
  .page-head-photo::after { background: linear-gradient(0deg, var(--sand) 0%, rgba(245, 237, 221, 0) 45%); }
}

/* ---------- Home: hero (photo slideshow) ---------- */
.hero { position: relative; min-height: min(84svh, 760px); display: flex; align-items: flex-end; color: #fff; background: var(--olive-deep); overflow: hidden; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.is-active { opacity: 1; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(30, 36, 6, .86) 0%, rgba(30, 36, 6, .42) 42%, rgba(30, 36, 6, .02) 72%), linear-gradient(90deg, rgba(30, 36, 6, .5), transparent 55%); }
.hero-inner { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem 3rem; flex-wrap: wrap; padding: clamp(110px, 16vw, 200px) 0 clamp(40px, 6vw, 72px); }
.hero-text { max-width: 640px; }
.hero .kicker--light { color: #eef3c6; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.02; margin-bottom: .8rem; text-shadow: 0 2px 28px rgba(0, 0, 0, .3); }
.hero h1 span { display: block; font-style: italic; font-weight: 500; color: #fcd2ab; font-size: .58em; margin-top: .35em; }
.hero-lede { font-size: clamp(1.15rem, 1.8vw, 1.35rem); color: rgba(255, 255, 255, .92); margin-bottom: 1.6rem; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.btn--glass { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--glass:hover { background: rgba(255, 255, 255, .26); }
.hero-chip { display: flex; gap: .7rem; align-items: center; max-width: 300px; margin: 0; padding: .9rem 1.1rem; background: var(--cream); color: var(--ink); border-radius: 14px; box-shadow: var(--shadow); font-size: .95rem; line-height: 1.35; }
.hero-chip .ico { width: 2.3rem; height: 2.3rem; padding: .45rem; border-radius: 50%; background: var(--petal); color: var(--azalea); }
.hero-chip strong { display: block; color: var(--olive-deep); font-family: var(--display); font-size: 1.1rem; }
.hero-dots { position: absolute; z-index: 3; top: clamp(18px, 3vw, 32px); right: clamp(20px, 4vw, 40px); display: flex; gap: .5rem; }
.hero-dots button { width: 11px; height: 11px; padding: 0; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .85); cursor: pointer; }
.hero-dots button[aria-current="true"] { background: var(--apricot); border-color: var(--apricot); }

/* ---------- Home: intro ---------- */
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.intro-grid h2 { margin-bottom: 1rem; }
.intro-photo { position: relative; padding: 0 0 14% 12%; }
.intro-photo .tile { aspect-ratio: 4 / 3; height: auto; box-shadow: var(--shadow); }
.intro-photo::before { content: ""; position: absolute; left: 0; bottom: 0; width: 70%; height: 70%; border-radius: var(--radius); background: repeating-linear-gradient(90deg, var(--timber) 0 22px, var(--timber-2) 22px 44px); opacity: .9; }
.intro-photo .tile { position: relative; }
.values { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.values li { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .9rem; border-radius: 999px; background: var(--sand); color: var(--olive-deep); font-weight: 600; font-size: .95rem; }
.values .ico { color: var(--olive-2); }

/* ---------- Home: getting here ---------- */
.travel { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.travel li { padding: 1.6rem 1.5rem; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.travel .ico { width: 2.6rem; height: 2.6rem; padding: .55rem; border-radius: 50%; background: var(--petal); color: var(--azalea); margin-bottom: .9rem; }
.travel h3 { margin-bottom: .4rem; }
.travel p { margin: 0; color: var(--muted); }
.travel-note { max-width: 760px; margin: clamp(24px, 3vw, 36px) auto 0; text-align: center; font: italic 500 1.2rem/1.5 var(--display); color: var(--olive-deep); }

/* ---------- Home: early booking offer ---------- */
.offer { position: relative; overflow: hidden; background: var(--olive-deep); color: rgba(255, 255, 255, .88); padding-block: clamp(56px, 8vw, 96px); }
.offer::before { content: ""; position: absolute; inset: 0; background: url("../img/photos/traditional-wooden-tools.webp") center / cover no-repeat; opacity: .28; }
.offer::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(40, 47, 8, .95) 30%, rgba(40, 47, 8, .55)); }
.offer-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; flex-wrap: wrap; }
.offer h2 { color: #fff; }
.offer p { margin: .6rem 0 0; font-size: 1.15rem; max-width: 560px; }

/* ---------- Home: explore cards ---------- */
.cards { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card { display: flex; flex-direction: column; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border-top: 4px solid var(--apricot); }
.card-media { aspect-ratio: 4 / 3; }
.card-media .tile { border-radius: 0; }
.card-body { display: flex; flex-direction: column; gap: .5rem; padding: 1.4rem 1.4rem 1.6rem; flex: 1; }
.card-body p { margin: 0; color: var(--muted); flex: 1; }
.card-body .text-link { align-self: flex-start; margin-top: .5rem; }

/* ---------- Contact strip ---------- */
.reach { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.reach > * { display: flex; gap: .9rem; align-items: center; padding: 1.2rem 1.3rem; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); text-decoration: none; color: var(--ink); min-width: 0; }
.reach .ico { width: 2.4rem; height: 2.4rem; padding: .5rem; border-radius: 50%; background: var(--sand); color: var(--olive); }
.reach strong { display: block; color: var(--olive-deep); }
.reach span span, .reach a { overflow-wrap: anywhere; }

/* ---------- Rooms ---------- */
.amenities { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.amenities li { display: flex; gap: .8rem; align-items: flex-start; padding: 1rem 1.1rem; background: #fff; border-radius: 14px; border: 1px solid var(--line); line-height: 1.35; }
.amenities .ico { width: 2.3rem; height: 2.3rem; padding: .45rem; border-radius: 50%; background: var(--petal); color: var(--azalea); }
.amenities strong { display: block; color: var(--olive-deep); }
.amenities small { display: block; color: var(--muted); font-size: .9rem; margin-top: .15rem; }
.room-type + .room-type { margin-top: clamp(48px, 7vw, 80px); }
.room-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.room-head p { margin: .3rem 0 0; color: var(--muted); }
.photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(130px, 15vw, 200px); grid-auto-flow: dense; gap: 12px; }
.photo-grid .tile.is-lead { grid-column: span 2; grid-row: span 2; }
.photo-grid .tile.is-portrait { grid-row: span 2; }
.photo-grid .tile.is-wide { grid-column: span 2; }

/* ---------- Azalea House ---------- */
.house-intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(28px, 5vw, 64px); align-items: center; margin-bottom: clamp(32px, 5vw, 52px); }
.house-facts { list-style: none; display: grid; gap: .6rem; }
.house-facts li { display: flex; gap: .7rem; align-items: center; padding: .85rem 1.1rem; background: #fff; border-radius: 12px; border-left: 4px solid var(--apricot); font-weight: 600; color: var(--olive-deep); }
.house-facts .ico { color: var(--olive-2); }

/* ---------- History ---------- */
.history-layout { display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.toc { position: sticky; top: calc(var(--header-h) + 20px); padding: 1rem; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.toc h2 { font-size: 1.1rem; margin: .2rem .5rem .6rem; }
.toc ol { list-style: none; counter-reset: t; display: grid; gap: .1rem; }
.toc a { display: flex; gap: .55rem; padding: .4rem .5rem; border-radius: 8px; color: var(--ink); text-decoration: none; font-size: .95rem; line-height: 1.3; }
.toc a::before { counter-increment: t; content: counter(t, decimal-leading-zero); font: 700 .78rem/1.6 var(--text); color: var(--apricot); }
.toc a:hover { background: var(--sand); }
.h-section { padding-bottom: clamp(28px, 4vw, 40px); margin-bottom: clamp(28px, 4vw, 40px); border-bottom: 1px solid var(--line); }
.h-section:last-child { border-bottom: 0; }
.h-section h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-bottom: .9rem; }
.h-section p { color: #3d3b31; }
.h-section > p:first-of-type::first-letter { float: left; font: 700 3.2em/.8 var(--display); color: var(--azalea); margin: .08em .1em 0 0; }
.h-figure { float: right; width: min(300px, 42%); margin: .3rem 0 1rem 1.6rem; }
.h-figure .tile { height: auto; border-radius: 12px; box-shadow: var(--shadow); }
.h-figure .tile img { height: auto; }
.h-figure figcaption { margin-top: .5rem; font: italic 500 .98rem/1.35 var(--display); color: var(--muted); text-align: center; }
.h-section::after { content: ""; display: table; clear: both; }
.festivals { list-style: none; display: grid; gap: .6rem; margin: 1rem 0; }
.festivals li { display: flex; gap: 1rem; padding: .8rem 1rem; background: #fff; border-radius: 12px; border: 1px solid var(--line); }
.festivals strong { flex: 0 0 7.5rem; color: var(--azalea); font-family: var(--display); font-size: 1.05rem; }
.museum { display: flex; gap: .7rem; align-items: center; padding: 1rem 1.2rem; border-radius: 12px; background: var(--sand); }
.museum .ico { color: var(--olive-2); }

/* ---------- CTA ---------- */
.cta { background: var(--azalea); color: rgba(255, 255, 255, .9); padding-block: clamp(48px, 7vw, 80px); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; flex-wrap: wrap; }
.cta h2 { color: #fff; margin-bottom: .5rem; }
.cta p { margin: 0; max-width: 560px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 32px); align-items: start; }
.form-card { padding: clamp(24px, 4vw, 42px); background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.form-card h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.form-card > p { color: var(--muted); margin-bottom: 1.4rem; }
.cf { display: grid; gap: 1.05rem; }
.cf-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.05rem; }
.field { display: grid; gap: .35rem; }
.field > span { font-weight: 600; font-size: .95rem; color: var(--olive-deep); }
.field em { font-style: normal; color: var(--azalea); }
.field input, .field textarea { font: inherit; font-size: 1rem; width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s, background-color .2s; }
.field textarea { resize: vertical; min-height: 9rem; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--olive-2); background: #fff; box-shadow: 0 0 0 4px rgba(107, 122, 21, .18); }
.cf-consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .95rem; color: var(--muted); line-height: 1.45; }
.cf-consent input { width: 19px; height: 19px; margin: .15rem 0 0; accent-color: var(--olive); flex-shrink: 0; }
.cf-hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { min-height: 65px; }
.cf-send { justify-self: start; padding-inline: 2rem; }
.cf-status { min-height: 1.5em; margin: 0; font-weight: 600; }
.cf-status[data-kind="ok"] { color: var(--olive); }
.cf-status[data-kind="error"] { color: var(--azalea-2); }
.cf-status[data-kind="busy"] { color: var(--muted); }
.cf-noscript { color: var(--azalea-2); margin-top: 1rem; }
.info-card { padding: clamp(22px, 3.5vw, 36px); border-radius: 20px; background: var(--olive); color: rgba(255, 255, 255, .86); }
.info-card h2 { color: #fff; font-size: 1.9rem; margin-bottom: .3rem; }
.info-card .addr { margin-bottom: 1.2rem; }
.info-rows { display: grid; gap: .15rem; }
.info-row { display: flex; gap: .8rem; align-items: center; padding: .55rem 0; border-top: 1px solid rgba(255, 255, 255, .14); color: #fff; text-decoration: none; min-width: 0; }
.info-row .ico { width: 2.1rem; height: 2.1rem; padding: .45rem; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #f6c89b; }
.info-row small { display: block; color: rgba(255, 255, 255, .7); font-size: .85rem; line-height: 1.2; }
.info-row b { font-weight: 600; overflow-wrap: anywhere; }
a.info-row:hover b { text-decoration: underline; }
.info-row a { color: #fff; font-weight: 600; }
.map-frame { position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; background: linear-gradient(135deg, var(--olive), var(--olive-deep)); box-shadow: var(--shadow); margin-top: clamp(20px, 3vw, 32px); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; padding: 2rem; text-align: center; color: rgba(255, 255, 255, .86); }
.map-consent > .ico { width: 2.8rem; height: 2.8rem; color: #f6c89b; }
.map-consent p { margin: 0; }
.map-consent a { color: #f6c89b; }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-deep); color: rgba(255, 255, 255, .78); padding: clamp(40px, 6vw, 64px) 0 1.5rem; font-size: .98rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .7fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 60px); }
.footer-logo { display: inline-block; padding: .7rem 1rem; background: var(--cream); border-radius: 14px; }
.footer-logo img { height: 44px; width: auto; }
.footer-brand p { margin-top: 1rem; max-width: 360px; }
.site-footer h2 { font: 700 .8rem/1.3 var(--text); letter-spacing: .14em; text-transform: uppercase; color: #dfe8a6; margin-bottom: .9rem; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: .4rem; }
.footer-nav a { color: #fff; text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }
.footer-contact { display: grid; gap: .5rem; }
.footer-contact p, .footer-contact a { display: flex; gap: .6rem; align-items: flex-start; margin: 0; color: #fff; text-decoration: none; overflow-wrap: anywhere; }
.footer-contact .ico { color: #f6c89b; margin-top: .2em; }
.footer-contact a:hover span { text-decoration: underline; }
.colophon { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: clamp(28px, 4vw, 44px); padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .9rem; color: rgba(255, 255, 255, .62); }
.colophon a { color: rgba(255, 255, 255, .82); }

/* ---------- Prose ---------- */
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 2rem 0 .6rem; }
.prose h2:first-child { margin-top: 0; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; background: rgba(30, 28, 18, .95); opacity: 0; transition: opacity .26s; }
.lightbox.is-open { display: block; }
.lightbox.is-visible { opacity: 1; }
.lb-stage { position: absolute; inset: 0; display: grid; place-items: center; padding: 60px 72px 72px; }
.lb-figure { margin: 0; display: grid; justify-items: center; gap: .8rem; max-width: 100%; max-height: 100%; }
.lb-img { max-width: min(1300px, 100%); max-height: calc(100vh - 170px); width: auto; height: auto; border-radius: 8px; object-fit: contain; transition: opacity .25s; }
.lb-img.is-loading { opacity: .35; }
.lb-caption { color: rgba(255, 255, 255, .88); font: italic 500 1.1rem/1.4 var(--display); text-align: center; }
.lb-counter { position: absolute; top: 20px; left: 24px; margin: 0; color: rgba(255, 255, 255, .7); font-size: .9rem; }
.lb-btn { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); display: grid; place-items: center; cursor: pointer; color: #fff; background: rgba(255, 255, 255, .06); }
.lb-btn:hover { background: rgba(255, 255, 255, .18); }
.lb-btn svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lb-btn[disabled] { opacity: .3; }
.lb-prev { left: 14px; top: 50%; margin-top: -24px; }
.lb-next { right: 14px; top: 50%; margin-top: -24px; }
.lb-close { top: 12px; right: 14px; }
@media (max-width: 700px) { .lb-stage { padding: 60px 8px 96px; } .lb-prev, .lb-next { top: auto; bottom: 20px; margin: 0; } .lb-prev { left: calc(50% - 60px); } .lb-next { right: calc(50% - 60px); } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .amenities { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards, .reach, .travel { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .cards > :last-child:nth-child(odd), .travel > :last-child:nth-child(odd), .reach > :last-child:nth-child(odd) { grid-column: span 2; }
  /* 2 columns, not 3: the lead / wide / portrait spans are planned to fill 4 or 2 columns exactly */
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(140px, 26vw, 240px); }
  .history-layout { grid-template-columns: minmax(0, 1fr); }
  .toc { position: static; }
  .toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .intro-grid, .contact-grid, .house-intro { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .amenities { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .amenities li { flex-direction: column; gap: .5rem; }
  .cards, .reach, .travel, .cf-row, .toc ol { grid-template-columns: minmax(0, 1fr); }
  .cards > :last-child:nth-child(odd), .travel > :last-child:nth-child(odd), .reach > :last-child:nth-child(odd) { grid-column: auto; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 36vw; gap: 8px; }
  .h-figure { float: none; width: 100%; margin: 0 0 1rem; }
  .festivals li { flex-direction: column; gap: .2rem; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-brand { grid-column: auto; }
  .hero-actions .btn, .cf-send { flex: 1 1 100%; justify-self: stretch; }
  .cta .btn, .offer .btn { width: 100%; }
}
