@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; }
}

/* =====================================================================
   Maria Apartments — "whitewash & shutters"
   The whitewashed house, its brown shutters and the green garden, with a
   muted terracotta kept for the booking buttons and links. Castoro + Be
   Vietnam Pro; Greek letters from Piazzolla + Commissioner (Greek subsets).
   ===================================================================== */
:root {
  --wall: #fbfaf6;
  --lime: #f2ede2;
  --lime-2: #e8e0cf;
  --shutter: #5b3a29;
  --shutter-2: #6e4833;
  --garden: #2f4a33;          /* dark backgrounds (was shutter brown): white 9.8:1, white .6 = 4.7:1 */
  --clay: #945b47;            /* muted terracotta: white text 5.5:1, on --wall 5.2:1 */
  --clay-2: #7a4a39;
  --leaf: #3f6b3a;
  --sea: #2c5f8a;
  --ochre: #c99648;
  --ink: #2a2420;
  --muted: #6b625a;
  --line: #e2d9c8;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(42, 36, 32, .06), 0 14px 30px -16px rgba(42, 36, 32, .28);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --serif: "Castoro", "Piazzolla", Georgia, "Times New Roman", serif;
  --sans: "Be Vietnam Pro", "Commissioner", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 78px;
}

html { scroll-padding-top: calc(var(--header-h) + 12px); }
body { font: 400 1.03rem/1.72 var(--sans); color: var(--ink); background: var(--wall); -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--shutter); line-height: 1.15; text-wrap: balance; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.22rem; }
a { color: var(--clay); 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(--garden); color: #fff; padding: .6rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--sea); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.35rem; border-radius: 8px; font: 600 .98rem/1.1 var(--sans); 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--clay { background: var(--clay); color: #fff; }
.btn--clay:hover { background: var(--clay-2); }
.btn--line { color: var(--shutter); border-color: rgba(91, 58, 41, .4); }
.btn--line:hover { border-color: var(--shutter); background: #fff; }
.btn--cream { background: var(--wall); color: var(--shutter); }
.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(--clay); text-decoration: none; border-bottom: 1.5px solid rgba(148, 91, 71, .3); }
.text-link:hover { border-color: var(--clay); }
.kicker { margin: 0 0 .7rem; font: italic 400 1.08rem/1.3 var(--serif); color: var(--leaf); }
.kicker::before { content: ""; display: inline-block; width: 22px; height: 2px; margin-right: .6rem; vertical-align: middle; background: currentColor; opacity: .7; }
.kicker--light { color: #e9d7b8; }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.2rem); color: var(--muted); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--wall); border-bottom: 1px solid var(--line); transition: box-shadow .3s; }
.site-header.is-stuck { box-shadow: 0 8px 24px -18px rgba(42, 36, 32, .45); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { margin-right: auto; text-decoration: none; }
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wm-name { font: italic 400 2rem/1 var(--serif); color: var(--shutter); }
.wm-sub { font: 600 .66rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--shutter); margin-top: .3rem; }
.nav { display: flex; gap: .3rem; }
.nav a { color: var(--shutter); text-decoration: none; font-weight: 500; padding: .45rem .85rem; border-radius: 6px; }
.nav a:hover { background: var(--lime); }
.nav a[aria-current="page"] { color: var(--shutter); box-shadow: inset 0 -2px 0 var(--shutter); border-radius: 0; }
.nav .nav-book { display: none; }
.lang { display: inline-flex; align-items: center; gap: .35rem; min-height: 44px; padding: 0 .7rem; border: 1.5px solid var(--line); border-radius: 8px; color: var(--shutter); font: 600 .85rem/1 var(--sans); letter-spacing: .06em; text-decoration: none; }
.lang .ico { width: 1rem; height: 1rem; }
.lang:hover { border-color: var(--shutter); background: var(--lime); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 8px; 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(--shutter); 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: 760px) {
  :root { --header-h: 68px; }
  .wm-name { font-size: 1.7rem; }
  .header-inner { gap: .6rem; }
  .wm-sub { white-space: nowrap; }
  :lang(el) .wm-sub { letter-spacing: .1em; }   /* Greek "ΔΙΑΜΕΡΙΣΜΑΤΑ · ΣΚΙΑΘΟΣ" is longer */
  .nav-toggle { display: block; }
  .header-book { display: none; }
  .nav { position: fixed; inset: var(--header-h) 0 0; flex-direction: column; gap: 0; padding: 1rem clamp(20px, 5vw, 40px) 2rem; background: var(--wall); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; overflow-y: auto; }
  .nav a { font: 400 1.7rem/1.2 var(--serif); padding: 1rem .2rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a[aria-current="page"] { box-shadow: none; }
  .nav .nav-book { display: flex; justify-content: center; margin-top: 1.5rem; border: 0; border-radius: 8px; background: var(--clay); color: #fff; font: 600 1.05rem/1 var(--sans); padding: 1.05rem; }
  .is-open .nav { opacity: 1; visibility: visible; }
}
@media (max-width: 380px) {
  .lang .ico { display: none; }
  .wm-sub { letter-spacing: .08em; }
  :lang(el) .wm-sub { letter-spacing: .03em; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(60px, 8vw, 104px); }
.section--tight { padding-top: clamp(36px, 5vw, 56px); }
.section--lime { background: var(--lime); }
.section--shutter { background: var(--garden); color: rgba(255, 255, 255, .84); }
.section--shutter h2, .section--shutter h3 { color: #fff; }
.section--shutter .lede { color: rgba(255, 255, 255, .78); }
.section-head { max-width: 700px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head--center { margin-inline: auto; text-align: center; }
.welcome > *, .stay > *, .extras > *, .why > *, .hero-grid > *, .contact-grid > *, .footer-grid > * { min-width: 0; }

/* ---------- Tiles ---------- */
.tile { display: block; position: relative; width: 100%; height: 100%; padding: 0; border: 0; overflow: hidden; cursor: zoom-in; background: var(--lime-2); 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); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--wall) 0%, var(--lime) 100%); padding: clamp(36px, 6vw, 72px) 0 clamp(48px, 7vw, 84px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); line-height: 1.04; margin-bottom: 1.1rem; }
.hero h1 span { display: block; font-style: italic; color: var(--leaf); font-size: .72em; margin-top: .2em; }
.hero .lede { font-size: clamp(1.15rem, 1.8vw, 1.35rem); color: var(--ink); margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.2rem; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 0; border-top: 1px solid var(--line); padding-top: 1.3rem; }
.hero-facts li { flex: 1 1 0; min-width: 130px; padding-right: 1rem; font-size: .92rem; color: var(--muted); line-height: 1.35; }
.hero-facts li + li { padding-left: 1rem; border-left: 1px solid var(--line); }
.hero-facts strong { display: block; font: 400 1.6rem/1.1 var(--serif); color: var(--shutter); }
.hero-media { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); grid-template-rows: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; height: clamp(380px, 44vw, 560px); }
.hero-media .tile { border-radius: 6px; box-shadow: var(--shadow); }
.hero-main { grid-row: span 2; min-height: 0; }

/* ---------- Welcome ---------- */
.welcome { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 6vw, 80px); align-items: start; }
.welcome-text .lede { color: var(--ink); }

/* ---------- The apartments ---------- */
.stay { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.stay-photos { position: relative; padding-bottom: 18%; }
.stay-main { width: 80%; aspect-ratio: 4 / 3.4; border: 7px solid #fff; border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }
.stay-main .tile { border-radius: 0; }
.stay-second { position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 4 / 3; padding: 7px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.stay-second .tile { border-radius: 9px; }
.stay h2 { margin-bottom: 1.4rem; }
.features { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 1.4rem; }
.feature { display: flex; gap: .85rem; padding: 1.1rem; background: var(--wall); border-radius: var(--radius); border: 1px solid var(--line); }
.feature > .ico { width: 2.4rem; height: 2.4rem; padding: .5rem; border-radius: 50%; background: #fff; color: var(--sea); box-shadow: inset 0 0 0 1px var(--line); }
.feature h3 { font-size: 1.12rem; margin-bottom: .2rem; }
.feature p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.5; }

/* ---------- Extras ---------- */
.extras { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.extras h2 { margin-bottom: .8rem; }
.list-title { font-size: 1.15rem; margin: 1.6rem 0 .8rem; color: var(--leaf); }
.extras-list { list-style: none; display: grid; gap: .55rem; margin-bottom: 1.4rem; }
.extras-list li { display: flex; gap: .8rem; align-items: flex-start; padding: .7rem 0; border-bottom: 1px dashed var(--line); }
.extras-list .ico { color: var(--leaf); margin-top: .15em; }
.extras-photo { margin: 0; }
.extras-photo .tile { aspect-ratio: 4 / 4.6; height: auto; border: 7px solid #fff; border-radius: 8px; box-shadow: var(--shadow); }
.extras-photo figcaption { display: flex; justify-content: center; gap: .5rem; align-items: center; margin-top: .9rem; font: italic 400 1rem/1.3 var(--serif); color: var(--muted); }
.extras-photo figcaption .ico { color: var(--leaf); }

/* ---------- Location ---------- */
.places { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius); overflow: hidden; }
.place { display: grid; grid-template-columns: auto minmax(0, 1fr); grid-template-rows: auto auto; column-gap: 1rem; padding: 1.5rem 1.4rem; background: var(--garden); }
.place .ico { grid-row: span 2; width: 2.6rem; height: 2.6rem; padding: .55rem; border-radius: 50%; background: rgba(233, 215, 184, .14); color: #e9d7b8; align-self: center; }
.place strong { font: 400 1.6rem/1.1 var(--serif); color: #fff; }
.place span { color: rgba(255, 255, 255, .8); font-size: .95rem; }
.popular { margin-top: clamp(28px, 4vw, 44px); text-align: center; }
.popular h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.popular ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; }
.popular li { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 999px; background: rgba(255, 255, 255, .1); color: #fff; font-size: .95rem; }
.popular .ico { color: #e9d7b8; }

/* ---------- Guests love ---------- */
.loves { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.love { position: relative; padding: 1.6rem 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.love-icon { display: inline-grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; background: var(--lime); color: var(--leaf); margin-bottom: 1rem; }
.love-icon .ico { width: 1.5rem; height: 1.5rem; }
.love h3 { margin-bottom: .35rem; }
.love p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.repeat { display: flex; justify-content: center; align-items: center; gap: .6rem; margin: clamp(24px, 3vw, 36px) auto 0; max-width: 720px; text-align: center; font: italic 400 1.15rem/1.45 var(--serif); color: var(--shutter); }
.repeat .ico { color: var(--leaf); flex-shrink: 0; }

/* ---------- Why ---------- */
.why { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.why-photos { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.why-photos .tile { aspect-ratio: 3 / 4; height: auto; }
.why-photos .tile:last-child { margin-top: 18%; }
.why h2 { margin-bottom: 1rem; }
.why-list { list-style: none; display: grid; gap: .7rem; margin-top: 1.2rem; }
.why-list li { display: flex; gap: .8rem; align-items: center; padding: .9rem 1.1rem; background: var(--wall); border-radius: 10px; border-left: 4px solid var(--leaf); }
.why-list .ico { color: var(--leaf); }

/* ---------- CTA ---------- */
.cta { background: var(--lime-2); color: var(--ink); padding-block: clamp(52px, 7vw, 84px); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; flex-wrap: wrap; }
.cta-inner > div { max-width: 700px; }
.cta h2 { color: var(--shutter); margin-bottom: .7rem; }
.cta p { margin: 0; }
.cta .kicker--light { color: var(--leaf); }
.cta .btn--cream { background: var(--clay); color: #fff; }
.cta .btn--cream:hover { background: var(--clay-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--garden); color: rgba(255, 255, 255, .78); padding: clamp(40px, 6vw, 64px) 0 1.5rem; font-size: .96rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 60px); }
.site-footer .wm-name { color: #fff; }
.site-footer .wm-sub { color: #e9d7b8; }
.footer-brand p { margin-top: 1rem; max-width: 360px; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: .45rem; }
.footer-nav a { color: #fff; text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }
.footer-cta p { margin-bottom: 1rem; }
.colophon { margin-top: clamp(28px, 4vw, 44px); padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .88rem; color: rgba(255, 255, 255, .62); }
.site-footer + .lightbox { margin-top: 0; }

/* ---------- Page head ---------- */
.page-head { background: var(--lime); padding: clamp(44px, 7vw, 84px) 0 clamp(36px, 5vw, 60px); }
.page-head h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: .7rem; }
.page-head .lede { max-width: 640px; margin: 0; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: clamp(22px, 3vw, 34px); }
.filter { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1.05rem; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--shutter); font-weight: 500; cursor: pointer; }
.filter small { font-size: .78rem; padding: .05rem .45rem; border-radius: 999px; background: var(--lime); color: var(--muted); }
.filter:hover { border-color: var(--shutter); }
.filter[aria-pressed="true"] { background: var(--garden); border-color: var(--garden); color: #fff; }
.filter[aria-pressed="true"] small { background: rgba(255, 255, 255, .18); color: #fff; }
.gallery { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); grid-auto-rows: clamp(120px, 13vw, 170px); grid-auto-flow: dense; gap: 10px; }
.gallery .tile { border-radius: 10px; }
.gallery .tile.is-portrait { grid-row: span 2; }
.gallery .tile.is-entering { animation: rise .45s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) 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: 18px; box-shadow: var(--shadow); }
.form-card h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 1.3rem; }
.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: .93rem; color: var(--shutter); }
.field em { font-style: normal; color: var(--clay); }
.field small { font-weight: 400; color: var(--muted); }
.field input, .field textarea { font: inherit; font-size: 1rem; width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 8px; background: var(--wall); color: var(--ink); transition: border-color .2s, box-shadow .2s, background-color .2s; }
.field textarea { resize: vertical; min-height: 9rem; }
.field input::placeholder, .field textarea::placeholder { color: #8b8278; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sea); background: #fff; box-shadow: 0 0 0 4px rgba(44, 95, 138, .15); }
.cf-consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; color: var(--muted); line-height: 1.45; }
.cf-consent input { width: 19px; height: 19px; margin: .12rem 0 0; accent-color: var(--shutter); 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(--leaf); }
.cf-status[data-kind="error"] { color: var(--clay-2); }
.cf-status[data-kind="busy"] { color: var(--muted); }
.cf-noscript { color: var(--clay-2); margin-top: 1rem; }
.info { display: grid; gap: 16px; position: sticky; top: calc(var(--header-h) + 20px); }
.info-card { padding: clamp(22px, 3vw, 34px); border-radius: 18px; background: var(--garden); color: rgba(255, 255, 255, .84); }
.info-card h2 { color: #fff; font-size: 1.8rem; margin-bottom: 1rem; }
.info-address { display: flex; gap: .6rem; align-items: flex-start; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.info-address .ico { color: #e9d7b8; margin-top: .2em; }
.info-list { list-style: none; display: grid; gap: .7rem; margin-top: 1rem; }
.info-list li { display: flex; gap: .7rem; align-items: center; }
.info-list .ico { color: #e9d7b8; }
.info-list strong { color: #fff; }
.info-note { padding: 1.4rem 1.5rem; border-radius: 18px; background: var(--lime); }
.info-note h3 { margin-bottom: .7rem; }
.info-note ul { list-style: none; display: grid; gap: .4rem; }
.info-note li { display: flex; gap: .55rem; align-items: center; }
.info-note .ico { color: var(--leaf); }

/* ---------- 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(28, 20, 16, .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, .86); font: italic 400 1.05rem/1.4 var(--serif); 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) {
  .loves { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: clamp(120px, 22vw, 190px); }
}
@media (max-width: 860px) {
  .hero-grid, .welcome, .stay, .extras, .why, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-media { max-width: 520px; width: 100%; margin-inline: auto; }
  .stay-photos, .extras-photo, .why-photos { max-width: 520px; width: 100%; margin-inline: auto; }
  .places { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-brand { grid-column: span 2; }
  .info { position: static; }
}
@media (max-width: 600px) {
  .features, .loves, .places, .cf-row { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 34vw; gap: 8px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-brand { grid-column: auto; }
  .hero-facts li { min-width: 0; font-size: .85rem; }
  .hero-facts strong { font-size: 1.3rem; }
  .hero-actions .btn, .cf-send { flex: 1 1 100%; justify-self: stretch; }
  .cta .btn { width: 100%; }
}
