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

/* Hotel Marina — "Stop 15, Kolios" (2026-09-23, replaces "Bento").
   A bright, photo-led garden hotel run by three sisters, right on bus stop 15. Daylight photographs
   lead (the red-pergola balconies over the pool and the olive trees); the night photos are gathered
   into one dark evening band. Ivory and warm near-black, with the logo's taupe and sand used only as
   fine accents: hairlines, labels, the stop marker. Square buttons, square-ish photos.
   One family, STIX Two Text (with Greek), for headings and text; labels in spaced capitals. */
:root {
  --ivory: #f8f5ef;
  --paper: #fffdf9;
  --sand: #ece4d6;          /* the logo's sand, lightened for grounds */
  --sand-d: #c2b59b;        /* the logo's sand, as drawn */
  --taupe: #7b6e60;         /* the logo's taupe: labels, rules, the stop marker */
  --taupe-d: #62574b;       /* taupe dark enough for small text on ivory */
  --ink: #211d19;
  --body: #463f38;
  --muted: #6c645b;
  --line: #e2d9ca;
  --night: #1d1a17;
  --serif: "STIX Two Text", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 5.25rem;
  --wrap: min(1320px, 100% - 2 * clamp(1rem, 4vw, 3rem));
  --r: 4px;
  --f-ink: #211d19; --f-muted: #5d564f; --f-bg: #fffdf9; --f-border: #b9ae9b; --f-accent: #211d19; --f-accent-d: #62574b; --f-radius: 4px;
}

html { scroll-padding-top: calc(var(--header-h) + 1rem); }
body { margin: 0; background: var(--ivory); color: var(--body); font: 400 1.125rem/1.62 var(--serif); font-kerning: normal; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration-color: var(--sand-d); text-underline-offset: .2em; text-decoration-thickness: 1px; }
a:hover { color: var(--taupe-d); text-decoration-color: currentColor; }
h1, h2, h3 { margin: 0; color: var(--ink); font-weight: 500; }
p { margin: 0; }
.wrap { width: var(--wrap); margin-inline: auto; }
.ico { width: 1.2rem; height: 1.2rem; flex: none; }
:focus-visible { outline: 2px solid var(--taupe); outline-offset: 3px; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 200; padding: .8rem 1.2rem; background: var(--ink); color: #fff; text-decoration: none; }
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- Type ---------- */
.label { display: block; margin: 0 0 .9rem; font: 500 .8rem/1.2 var(--serif); letter-spacing: .2em; text-transform: uppercase; color: var(--taupe-d); }
.label::before { content: ""; display: inline-block; width: 1.8rem; height: 1px; margin-right: .7rem; vertical-align: middle; background: currentColor; }
.h1 { font: 500 clamp(2.5rem, 1.6rem + 3.4vw, 4.6rem)/1.02 var(--serif); letter-spacing: -.012em; }
.h2 { font: 500 clamp(2rem, 1.45rem + 2vw, 3.3rem)/1.05 var(--serif); letter-spacing: -.01em; }
.h3 { font: 500 clamp(1.45rem, 1.2rem + .7vw, 1.85rem)/1.15 var(--serif); }
.lede { font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem); line-height: 1.55; color: var(--body); }
.muted { color: var(--muted); }
em, .it { font-style: italic; }

/* ---------- Buttons: square, crisp ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 50px; padding: .7rem 1.45rem; border: 1px solid var(--ink); border-radius: var(--r); background: var(--ink); color: #fff; font: 500 .82rem/1 var(--serif); letter-spacing: .16em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background-color .2s, color .2s, border-color .2s; }
.btn:hover { background: var(--taupe-d); border-color: var(--taupe-d); color: #fff; }
.btn .ico { width: 1rem; height: 1rem; }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-light { background: #fff; border-color: #fff; color: var(--ink); }
.btn-light:hover { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .6); color: #fff; }
.btn-ghost:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn-sm { min-height: 44px; padding: .55rem 1.1rem; }
.row { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; }
.more { display: inline-flex; align-items: center; gap: .55rem; font: 500 .82rem/1 var(--serif); letter-spacing: .16em; text-transform: uppercase; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--sand-d); padding-bottom: .45rem; }
.more .ico { width: 1rem; height: 1rem; transition: transform .2s var(--ease); }
.more:hover .ico { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(248, 245, 239, .96); border-bottom: 1px solid transparent; transition: border-color .3s; }
.site-header.is-stuck { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 1rem 2rem; min-height: var(--header-h); width: var(--wrap); margin-inline: auto; }
.brand { flex: none; display: block; }
.brand img { width: clamp(140px, 11vw, 168px); height: auto; }
.nav { margin-left: auto; }
.nav ul { list-style: none; display: flex; gap: .2rem; margin: 0; padding: 0; }
.nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 .8rem; color: var(--ink); text-decoration: none; font: 500 .84rem/1 var(--serif); letter-spacing: .15em; text-transform: uppercase; background-image: linear-gradient(var(--taupe), var(--taupe)); background-size: 0 1px; background-repeat: no-repeat; background-position: .8rem calc(100% - .7rem); transition: background-size .25s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { background-size: calc(100% - 1.6rem) 1px; color: var(--ink); }
.header-tools { display: flex; align-items: center; gap: .6rem; }
.lang { display: inline-grid; place-items: center; min-width: 44px; min-height: 44px; color: var(--ink); text-decoration: none; font: 500 .9rem/1 var(--serif); letter-spacing: .08em; border: 1px solid var(--line); border-radius: var(--r); }
.lang:hover { border-color: var(--ink); color: var(--ink); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: var(--r); background: transparent; cursor: pointer; }
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after { display: block; width: 18px; height: 1.5px; margin: auto; background: var(--ink); transition: transform .25s var(--ease), background-color .2s; }
.nav-toggle .bars { position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }
.site-header.is-open .nav-toggle .bars { background: transparent; }
.site-header.is-open .nav-toggle .bars::before { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .nav-toggle .bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Home: hero ---------- */
.hero { position: relative; }
.hero-photo { margin: 0; height: min(86vh, 860px); min-height: 26rem; background: var(--sand); overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%; }
.hero-card { position: relative; z-index: 2; width: var(--wrap); margin: clamp(-15rem, -18vw, -9rem) auto 0; }
.hero-card-in { width: min(40rem, 100%); padding: clamp(1.8rem, 3.2vw, 3rem) clamp(1.5rem, 3.4vw, 3.2rem) clamp(1.8rem, 3vw, 2.6rem); background: var(--ivory); border-top: 3px solid var(--taupe); }
.hero-card .h1 { margin-bottom: 1.1rem; }
.hero-card .lede { margin-bottom: 1.6rem; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin: 1.6rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid var(--line); font-size: 1rem; color: var(--body); }
.hero-facts li { display: inline-flex; align-items: center; gap: .5rem; }
.hero-facts .ico { width: 1.1rem; height: 1.1rem; color: var(--taupe); }

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.sec-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.2rem 2rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head .h2 { max-width: 20ch; }

/* Welcome: the sisters */
.welcome { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.names { font: italic 400 clamp(2.2rem, 1.5rem + 2.6vw, 3.8rem)/1.08 var(--serif); color: var(--ink); margin-bottom: 1.4rem; }
.names span { color: var(--taupe); }
.welcome .lede { max-width: 34rem; margin-bottom: 2.2rem; }
.incl { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2rem; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.incl li { display: flex; align-items: center; gap: .7rem; padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
.incl .ico { color: var(--taupe); }
.welcome-photo { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r); }
.welcome-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 45% 50%; }

/* Signature: "From stop 15" — the road with the hotel on stop 15 */
.stop { background: var(--sand); }
.stop .sec-head { margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.route { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) minmax(0, 1fr); gap: 0 clamp(1rem, 3vw, 2.5rem); align-items: start; margin: 0; padding: 0; list-style: none; }
.route::before { content: ""; position: absolute; left: 0; right: 0; top: 2.9rem; height: 2px; background: repeating-linear-gradient(90deg, var(--taupe) 0 14px, transparent 14px 22px); }
.route li { position: relative; padding-top: 4.4rem; }
.route li::before { content: ""; position: absolute; left: 0; top: 2.45rem; width: 1rem; height: 1rem; border-radius: 50%; background: var(--sand); border: 2px solid var(--taupe); }
.route .r-when { display: block; margin-bottom: .35rem; font: 500 .78rem/1.2 var(--serif); letter-spacing: .18em; text-transform: uppercase; color: var(--taupe-d); }
.route .r-big { display: block; font: 500 clamp(2rem, 1.5rem + 1.6vw, 2.9rem)/1 var(--serif); color: var(--ink); margin-bottom: .45rem; }
.route .r-where { display: block; font-size: 1.02rem; line-height: 1.45; color: var(--body); max-width: 22ch; }
.route .r-stop { padding-top: 0; text-align: center; }
.route .r-stop::before { display: none; }
.stop-sign { display: grid; place-items: center; width: 5.8rem; height: 5.8rem; margin: 0 auto 1rem; border-radius: 50%; background: var(--ink); color: #fff; box-shadow: 0 0 0 6px var(--sand), 0 0 0 7px var(--taupe); }
.stop-sign b { display: block; font: 500 2.4rem/1 var(--serif); }
.stop-sign small { display: block; margin-top: -.9rem; font: 500 .62rem/1 var(--serif); letter-spacing: .22em; text-transform: uppercase; color: var(--sand-d); }
.route .r-stop .r-where { margin-inline: auto; font-style: italic; }
.stop-extra { display: flex; flex-wrap: wrap; gap: .6rem 2rem; margin-top: clamp(2.4rem, 5vw, 3.6rem); padding-top: 1.4rem; border-top: 1px solid rgba(123, 110, 96, .35); }
.stop-extra p { display: inline-flex; align-items: center; gap: .6rem; font-size: 1.02rem; }
.stop-extra .ico { color: var(--taupe); }

/* Rooms: two big choices */
.rooms-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, .72fr); gap: clamp(1.2rem, 2.4vw, 2.2rem); align-items: start; }
.room-card { display: block; color: inherit; text-decoration: none; }
.room-card figure { margin: 0 0 1.3rem; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r); background: var(--sand); }
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
a.room-card:hover img { transform: scale(1.03); }
.room-card .r-for { display: block; margin-bottom: .4rem; font: 500 .78rem/1.2 var(--serif); letter-spacing: .18em; text-transform: uppercase; color: var(--taupe-d); }
.room-card .h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: .55rem; }
.room-card .h3 .ico { width: 1.1rem; height: 1.1rem; color: var(--taupe); transition: transform .2s var(--ease); }
a.room-card:hover .h3 .ico { transform: translateX(4px); }
.room-card p { font-size: 1.05rem; max-width: 34ch; }
.every { padding: 1.6rem 1.6rem 1.8rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.every h3 { font: italic 400 1.5rem/1.2 var(--serif); margin-bottom: .9rem; }
.every ul { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.every li { display: flex; align-items: flex-start; gap: .6rem; padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; line-height: 1.4; }
.every .ico { width: 1rem; height: 1rem; margin-top: .2rem; color: var(--taupe); }

/* By day: gardens and pool */
.day { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); grid-template-rows: auto 1fr; gap: clamp(1.2rem, 2.4vw, 2.2rem) clamp(1.5rem, 4vw, 4rem); }
.day-big { grid-row: 1 / 3; margin: 0; aspect-ratio: 5 / 4; overflow: hidden; border-radius: var(--r); }
.day-big img, .day-small img { width: 100%; height: 100%; object-fit: cover; }
.day-text { align-self: end; }
.day-text .h2 { margin-bottom: 1.1rem; }
.day-text > p { margin-bottom: 1.6rem; }
.day-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.day-list li { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.day-list strong { display: block; font-weight: 500; color: var(--ink); }
.day-list span { font-size: 1rem; color: var(--muted); }
.day-small { margin: 0; aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--r); align-self: end; }

/* Evenings: the one dark band */
.evening { background: var(--night); color: #d9d1c4; }
.evening-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 38rem; }
.evening-photo { margin: 0; position: relative; overflow: hidden; }
.evening-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.evening-text { padding: clamp(3rem, 7vw, 6.5rem) max(clamp(1.5rem, 5vw, 5rem), calc((100vw - 1320px) / 2)) clamp(3rem, 7vw, 6.5rem) clamp(2rem, 5vw, 5rem); }
.evening .label { color: var(--sand-d); }
.evening .h2 { color: #fff; margin-bottom: 1.8rem; max-width: 16ch; }
.eve-list { list-style: none; margin: 0 0 2.2rem; padding: 0; border-top: 1px solid rgba(255, 255, 255, .16); }
.eve-list li { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .2rem 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.eve-list .ico { grid-row: span 2; width: 1.3rem; height: 1.3rem; margin-top: .25rem; color: var(--sand-d); }
.eve-list strong { font-weight: 500; font-size: 1.2rem; color: #fff; }
.eve-list span { font-size: 1rem; line-height: 1.5; }
.esurio-word { font: 500 1.5rem/1 var(--serif); letter-spacing: .02em; color: #fff; }
.evening a:not(.btn) { color: #fff; }

/* A look around: a full 3 x 2 grid */
.look { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.6rem, 1.2vw, 1rem); }
.look .tile { aspect-ratio: 4 / 3; }

/* Skiathos Town + reviews */
.pair { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.pair-photo { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--r); }
.pair-photo img { width: 100%; height: 100%; object-fit: cover; }
.pair .h2 { margin-bottom: 1rem; }
.pair p + p, .pair p + .row { margin-top: 1.4rem; }
.ta-line { display: flex; align-items: center; gap: .7rem; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: 1rem; }
.ta-line .ico { color: var(--taupe); }

/* Booking band — light, with a fine taupe rule */
.book { padding-block: clamp(3.5rem, 7vw, 6rem); background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.book img.mono { width: 64px; height: 64px; margin: 0 auto 1.4rem; }
.book .h2 { margin-bottom: .8rem; }
.book p { max-width: 34rem; margin: 0 auto 1.8rem; }
.book .row { justify-content: center; }

/* ---------- Inner pages ---------- */
.phead { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(1.5rem, 4vw, 4.5rem); align-items: end; width: var(--wrap); margin: clamp(1.5rem, 3vw, 2.5rem) auto 0; }
.phead-text { padding-bottom: clamp(.5rem, 2vw, 1.5rem); }
.phead .crumbs { margin-bottom: 1.6rem; }
.phead .h1 { margin-bottom: 1.2rem; }
.phead .lede { max-width: 32rem; }
.phead .row { margin-top: 1.8rem; }
.phead-photo { margin: 0; aspect-ratio: 16 / 11; overflow: hidden; border-radius: var(--r); background: var(--sand); }
.phead-photo img { width: 100%; height: 100%; object-fit: cover; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem; margin: 0; padding: 0; font: 500 .78rem/1.4 var(--serif); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: .35rem; color: var(--sand-d); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }

.two { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); }
.prose p + p { margin-top: 1.1rem; }
.quote { margin-top: 1.6rem; padding-left: 1.2rem; border-left: 2px solid var(--taupe); font: italic 400 1.45rem/1.35 var(--serif); color: var(--ink); }
.points { list-style: none; margin: 1.6rem 0 0; padding: 0; border-top: 1px solid var(--line); }
.points li { display: flex; align-items: center; gap: .8rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.points .ico { color: var(--taupe); }

.notes { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(1.5rem, 3vw, 3rem); margin: 0; padding: 0; counter-reset: n; }
.notes li { padding-top: 1.2rem; border-top: 2px solid var(--ink); counter-increment: n; }
.notes li::before { content: "0" counter(n); display: block; margin-bottom: .8rem; font: 500 .8rem/1 var(--serif); letter-spacing: .2em; color: var(--taupe-d); }
.notes h2 { font: 500 1.5rem/1.2 var(--serif); margin-bottom: .6rem; }
.bus-note { display: flex; align-items: center; gap: 1rem; margin-top: clamp(2.4rem, 5vw, 3.6rem); padding: 1.3rem 1.5rem; background: var(--sand); border-radius: var(--r); }
.bus-note .stop-mini { flex: none; display: grid; place-items: center; width: 3.2rem; height: 3.2rem; border-radius: 50%; background: var(--ink); color: #fff; font: 500 1.3rem/1 var(--serif); }
.bus-note strong { font-weight: 500; color: var(--ink); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.form-card { padding: clamp(1.5rem, 3vw, 2.6rem); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.form-card .h3 { margin-bottom: .5rem; }
.form-intro { margin-bottom: 1.4rem; font-size: 1rem; color: var(--muted); }
.side-card { padding-top: 1.4rem; border-top: 2px solid var(--ink); }
.side-card + .side-card { margin-top: 2.4rem; }
.side-card .h3 { margin-bottom: .8rem; }
.dl { margin: 1rem 0 0; }
.dl div { display: flex; flex-wrap: wrap; gap: .2rem 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.dl dt { min-width: 7rem; font: 500 .78rem/1.8 var(--serif); letter-spacing: .16em; text-transform: uppercase; color: var(--taupe-d); }
.dl dd { margin: 0; }
.socials { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.2rem; }
.socials a { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-size: 1rem; }
.socials .ico { color: var(--taupe); }

/* ---------- Galleries: natural proportions in balanced columns ---------- */
.gallery-grid { columns: 3 17rem; column-gap: clamp(.6rem, 1.2vw, 1rem); }
.gallery-grid .tile { break-inside: avoid; margin-bottom: clamp(.6rem, 1.2vw, 1rem); }
.gallery-grid .tile.is-entering { animation: tile-in .45s var(--ease) both; }
@keyframes tile-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tile { position: relative; display: block; width: 100%; padding: 0; border: 0; border-radius: var(--r); overflow: hidden; background: var(--sand); cursor: zoom-in; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tile:hover img { transform: scale(1.03); }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.filter { min-height: 44px; padding: .5rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r); background: transparent; color: var(--ink); font: 500 .8rem/1 var(--serif); letter-spacing: .15em; text-transform: uppercase; cursor: pointer; }
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; background: rgba(24, 21, 18, .96); opacity: 0; transition: opacity .25s; }
.lightbox.is-open { display: block; }
.lightbox.is-visible { opacity: 1; }
.lb-stage { position: absolute; inset: 4.5rem 4.5rem 4rem; display: grid; place-items: center; }
.lb-figure { margin: 0; display: grid; justify-items: center; gap: .8rem; max-height: 100%; }
.lb-img { max-width: 100%; max-height: calc(100vh - 11rem); width: auto; height: auto; border-radius: var(--r); transition: opacity .2s; }
.lb-img.is-loading { opacity: .3; }
.lb-caption { font-size: 1rem; color: #e9e3d9; text-align: center; }
.lb-counter { position: absolute; left: 1.4rem; top: 1.4rem; margin: 0; font: 500 .85rem/1 var(--serif); letter-spacing: .14em; color: #cfc6b8; }
.lb-btn { position: absolute; display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .35); background: transparent; color: #fff; cursor: pointer; }
.lb-btn:hover { background: #fff; color: var(--ink); }
.lb-btn:focus-visible { outline-color: #fff; }
.lb-btn svg { width: 1.3rem; height: 1.3rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lb-btn:disabled { display: none; }
.lb-prev { left: 1rem; top: 50%; margin-top: -1.5rem; }
.lb-next { right: 1rem; top: 50%; margin-top: -1.5rem; }
.lb-close { right: 1rem; top: 1rem; }

/* ---------- Footer: light, like the rest ---------- */
.site-footer { padding: clamp(3.5rem, 7vw, 5.5rem) 0 1.6rem; background: var(--sand); color: var(--body); font-size: 1.02rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 2rem clamp(1.5rem, 4vw, 3.5rem); padding-bottom: 2.6rem; }
.footer-brand img { width: 150px; height: auto; margin-bottom: 1rem; }
.footer-h { margin: 0 0 .9rem; font: 500 .78rem/1.2 var(--serif); letter-spacing: .18em; text-transform: uppercase; color: var(--taupe-d); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li + li { margin-top: .35rem; }
.footer-links a, .site-footer p a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.site-footer p + p { margin-top: .9rem; }
.footer-social { display: flex; flex-direction: column; gap: .4rem; }
.footer-social a { display: inline-flex; align-items: center; gap: .5rem; }
.footer-social .ico { color: var(--taupe); }
.colophon { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .4rem 1.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(123, 110, 96, .35); font-size: .92rem; color: var(--muted); }
.colophon a { color: var(--muted); }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .rooms-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .every { grid-column: 1 / -1; }
  .every ul { columns: 2 14rem; column-gap: 2rem; }
  .every li { break-inside: avoid; }
}
@media (max-width: 1060px) {
  :root { --header-h: 4.5rem; }
  .nav-toggle { display: grid; place-items: center; }
  .header-tools { margin-left: auto; }
  .nav { position: absolute; left: 0; right: 0; top: 100%; height: calc(100dvh - var(--header-h)); display: none; margin: 0; padding: 1rem max(1rem, calc((100vw - 1320px) / 2)) 3rem; background: var(--ivory); border-top: 1px solid var(--line); overflow-y: auto; }
  .site-header.is-open .nav { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav a { width: 100%; min-height: 3.6rem; padding: 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); background-image: none; }
  .nav a[aria-current="page"] { color: var(--taupe-d); }
  .route { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem clamp(1rem, 3vw, 2.5rem); }
  .route::before { display: none; }
  .route li { padding: 1.2rem 0 0 1.6rem; border-left: 2px dashed var(--taupe); }
  .route li::before { left: -.6rem; top: 1.25rem; }
  .route .r-stop { grid-column: 1 / -1; order: -1; display: flex; align-items: center; gap: 1.2rem; padding: 0; border: 0; text-align: left; }
  .stop-sign { margin: 0; }
  .route .r-stop .r-where { margin: 0; }
  .welcome, .day, .pair, .two, .contact-grid, .phead { grid-template-columns: minmax(0, 1fr); }
  .welcome-photo { aspect-ratio: 4 / 3; order: -1; }
  .day-big { grid-row: auto; }
  .evening-in { grid-template-columns: minmax(0, 1fr); }
  .evening-photo { aspect-ratio: 16 / 10; }
  .evening-text { padding: clamp(2.5rem, 7vw, 4rem) max(1rem, calc((100vw - 1320px) / 2)); padding-inline: clamp(1rem, 4vw, 3rem); }
  .notes { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .phead-photo { order: -1; }
}
@media (max-width: 720px) {
  body { font-size: 1.06rem; }
  .header-inner { gap: .5rem; }
  .brand img { width: 112px; }
  .header-tools { gap: .35rem; }
  .lang { min-width: 40px; }
  .header-tools .btn { min-height: 44px; padding: .45rem .7rem; font-size: .74rem; letter-spacing: .08em; }
  .header-tools .btn .ico { display: none; }
  .nav-toggle { width: 44px; height: 44px; }
  .hero-photo { height: 62vh; min-height: 20rem; }
  .hero-card { margin-top: -4rem; }
  .hero-card-in { padding: 1.6rem 1.25rem 1.5rem; }
  .incl { grid-template-columns: minmax(0, 1fr); }
  .rooms-grid { grid-template-columns: minmax(0, 1fr); }
  .look { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .lb-stage { inset: 4rem .5rem 5rem; }
  .lb-prev, .lb-next { top: auto; bottom: 1rem; margin: 0; }
  .lb-prev { left: calc(50% - 3.6rem); }
  .lb-next { right: calc(50% - 3.6rem); }
}

/* ---------- Form (shared by the hospitality sites; themed by --f-* set in each site's CSS) ---------- */
.site-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); gap: 1.2rem; align-items: end; }
.form-row-tight { grid-template-columns: repeat(auto-fit, minmax(min(100%, 5.5rem), 1fr)); gap: .9rem; }
.field { display: grid; gap: .35rem; align-content: start; min-width: 0; }
.field label { font-weight: 600; }
.req { color: var(--f-accent); }
.hint { margin: 0; font-size: .92rem; color: var(--f-muted); }
.field input:not([type="checkbox"]), .field textarea, .field select { width: 100%; min-height: 3.1rem; padding: .7rem .9rem; font: inherit; font-size: 1.0625rem; color: var(--f-ink); background: var(--f-bg); border: 2px solid var(--f-border); border-radius: var(--f-radius); }
.field select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 1.25rem) 55%, calc(100% - .9rem) 55%; background-size: .35rem .35rem; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 9rem; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--f-ink); }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: 3px solid var(--f-accent); outline-offset: 2px; box-shadow: none; border-color: var(--f-ink); background-color: #fff; }
.field [aria-invalid="true"] { border-color: #b3261e; }
.field-error { display: flex; gap: .45rem; align-items: center; margin: .1rem 0 0; font-size: .95rem; font-weight: 600; color: #b3261e; }
.field-error .ico { width: 1.1rem; height: 1.1rem; }
.field-check { grid-template-columns: auto minmax(0, 1fr); column-gap: .75rem; align-items: start; }
.field-check input { width: 1.35rem; height: 1.35rem; margin-top: .2rem; accent-color: var(--f-accent); }
.field-check label { font-weight: 400; font-size: .98rem; }
.field-check .field-error { grid-column: 1 / -1; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 0; font-size: .92rem; color: var(--f-muted); }
.btn-submit { justify-self: start; background: var(--f-accent); color: #fff; }
.btn-submit:hover { background: var(--f-accent-d); color: #fff; }
.btn-submit:disabled { opacity: .65; cursor: progress; }
.form-status { margin: 0; font-weight: 600; }
.form-status:empty { display: none; }
.form-status[data-kind="ok"] { color: #1f6b3a; }
.form-status[data-kind="error"] { color: #b3261e; }
