@import url("fonts.css?v=32789871");

/* ============================================================
   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; }
}

/* ============================================================
   Noera Hotel — the client's own design, rebuilt.

   Every number below was measured off noera.gr in the browser, at 1024 and
   1600 wide, not estimated from a screenshot:

     container   max-width 1425, 90px inner padding  (logo lands at x=170 @1600)
     header      110px, solid white, logo 238x80
     nav         Ubuntu Mono 18px/400 #555          <- not the body face
     big heading 3vw (47.55px @1600, 30.27px @1024), 600, #000
     body copy   Ubuntu Sans; section paragraphs 1.1vw
     radii       0 everywhere, EXCEPT the three home cards' photos (15px),
                 the rooms-page cards (20px) and the pills (20px)
     pills       #efefef, 9px/17.5px, 14px
     hero mark   ~46.5vw, no pixel cap

   Two numbers are clamped rather than copied, and only because the original
   rule is a bare vw that falls apart on a laptop: the section paragraph would
   be 11px at 1024 wide. Both it and the body base get a 15px floor.
   ============================================================ */

:root {
  --ink: #444444;          /* h3/h5 headings, closing lines */
  --black: #000000;        /* the big section headings */
  --body: #676767;         /* running text */
  --accent: #a39383;       /* the logo's taupe; the room-page eyebrow */
  --accent-deep: #8a7a6a;  /* the same, dark enough for a link on white */
  --sand: #e2d6c9;         /* the three cards */
  --grey-pill: #efefef;
  --paper: #ffffff;
  --paper-2: #f6f3ef;
  --dark: #252525;         /* footer, round arrow badges */
  --line: #e7e1da;
  --text: "Ubuntu Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Ubuntu Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --display: var(--text);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 110px;
  --gutter: clamp(1.25rem, 5.6vw, 90px);
}

body { background: var(--paper); color: var(--body); font: 400 15px/26px var(--text); }
.wrap { width: min(1425px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
a { color: var(--accent-deep); text-underline-offset: .2em; }
.ico { width: 1.2rem; height: 1.2rem; flex: none; }
.ico-sm { width: 1rem; height: 1rem; }
:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: 3px; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 200; padding: .8rem 1.3rem; background: #fff; color: var(--ink); font-weight: 600; }
.skip-link:focus { top: 1rem; }

/* ---------- Type scale, as measured ---------- */
.display { font: 600 clamp(30px, 3vw, 48px)/1.1 var(--display); color: var(--black); }
.page-title { font: 400 clamp(30px, 3.4vw, 54px)/1.15 var(--display); color: var(--ink); }
.d3 { font: 600 clamp(22px, 1.8vw, 28.5px)/1.3 var(--display); color: var(--ink); }
.h-sm { font: 600 18px/32px var(--display); color: var(--ink); margin-top: 1.9rem; }
.lede, .split-text > p:not(.eyebrow), .prose p { font-size: clamp(15px, 1.1vw, 17.5px); line-height: 1.7; }
.lede { max-width: 48rem; margin-top: 1.1rem; }
.note { margin-top: 2.5rem; font-size: 14px; font-style: italic; color: #8b8b8b; }
/* The home eyebrow is plain 16/600 charcoal; the room pages use the taupe. */
.eyebrow { margin: 0 0 .5rem; font: 600 16px/26px var(--text); color: var(--ink); }
.eyebrow-accent { color: var(--accent); }

/* ---------- Links and buttons ---------- */
/* "View our Rooms" and "Get Directions …" are text with a round arrow badge,
   not filled buttons. */
.link-arrow { display: inline-flex; align-items: center; gap: 1rem; min-height: 44px; font: 400 14px/1.4 var(--text); color: var(--body); text-decoration: none; }
.link-arrow .ico { width: 36px; height: 36px; padding: 10px; border-radius: 50%; background: var(--dark); color: #fff; transition: transform .2s var(--ease), background-color .2s; }
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover .ico { background: var(--accent-deep); transform: translateX(3px); }
.btn { display: inline-flex; align-items: center; gap: .7rem; min-height: 44px; padding: .7rem 1.6rem; border: 0; border-radius: 20px; background: var(--dark); color: #fff; font: 400 14px/1.2 var(--text); text-decoration: none; cursor: pointer; transition: background-color .2s; }
.btn:hover { background: var(--accent-deep); color: #fff; }
.round { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); cursor: pointer; transition: background-color .2s, opacity .2s; }
.round:hover { background: var(--paper-2); }
.round:disabled { opacity: .3; cursor: default; }
.round svg { width: 1.1rem; height: 1.1rem; }
[data-gal-prev] svg { transform: rotate(90deg); }
[data-gal-next] svg { transform: rotate(-90deg); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: #fff; transition: box-shadow .3s; }
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line); }
.header-inner { display: flex; align-items: center; gap: 1rem 2rem; min-height: var(--header-h); width: min(1425px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.brand { flex: none; }
.brand img { width: 238px; height: 80px; object-fit: contain; object-position: left center; }
.nav { margin-left: auto; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 0; }
.nav-list a { display: inline-flex; align-items: center; gap: .45rem; min-height: 44px; padding: 0 .85rem; color: #555; text-decoration: none; font: 400 18px/1 var(--mono); white-space: nowrap; }
.nav-list a:hover { color: var(--accent-deep); }
.nav-list a[aria-current="page"] { color: var(--accent-deep); }
.ig-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Utilities sit apart from the page links: a hairline, then the language switch and Instagram. */
.nav { display: flex; align-items: center; }
.nav-util { display: flex; align-items: center; gap: .9rem; margin-left: .85rem; padding-left: 1.2rem; border-left: 1px solid var(--line); }
.lang-switch { display: inline-flex; gap: 2px; margin: 0; padding: 3px; border-radius: 20px; background: var(--grey-pill); }
.lang-opt { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; min-height: 32px; padding: 0 .7rem; border-radius: 17px; color: #555; text-decoration: none; font: 400 14px/1 var(--mono); letter-spacing: .04em; }
a.lang-opt:hover { color: var(--accent-deep); }
.lang-opt.is-current { background: #fff; color: var(--black); box-shadow: 0 1px 2px rgba(0, 0, 0, .08); }
.lang-name { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.nav-ig { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; width: 44px; height: 44px; color: #555; text-decoration: none; font: 400 18px/1 var(--mono); }
.nav-ig:hover { color: var(--accent-deep); }
/* Between the phone menu and a full desktop the six items only just fit: tighten, don't wrap. */
@media (max-width: 72rem) {
  .nav-list a { padding: 0 .55rem; font-size: 16px; }
  .nav-util { gap: .5rem; margin-left: .5rem; padding-left: .8rem; }
}

.nav-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after { display: block; width: 17px; 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 { display: block; height: calc(100svh - var(--header-h)); min-height: 30rem; background: var(--paper-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Mark and scroll cue are one centred stack, 25px apart, at both breakpoints:
   1600 -> mark 753 wide, cue 49x49 25px under it;  375 -> mark 169, same 25px gap. */
.hero-mark { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 25px; padding: 0 var(--gutter); pointer-events: none; }
.hero-mark img { width: min(46.5vw, 892px); height: auto; }
/* Straight out of their theme CSS. What you see at rest is NOT the SVG: the SVG path carries
   stroke-dasharray/-dashoffset 120, so it is hidden until hover, when it draws itself. The
   resting mouse is a 2px border at 50% white, and the little line inside it is a 2x6 pill,
   also at 50% white, sliding top to bottom on trackBallSlide. The whole thing nudges. */
.hero-next { position: relative; pointer-events: auto; display: block; width: 49px; height: 49px; animation: nudge 2.4s cubic-bezier(.25, .46, .45, .94) infinite; }
.hero-next::after { content: ""; position: absolute; top: 0; left: 50%; width: 30px; height: 45px; margin-left: -15px; border: 2px solid rgba(255, 255, 255, .5); border-radius: 30px; }
.hero-next::before { content: ""; position: absolute; z-index: 1; top: 22px; left: 50%; margin-left: -1px; width: 2px; height: 6px; border-radius: 10px; background: rgba(255, 255, 255, .5); animation: trackBallSlide 2.4s cubic-bezier(0, 0, .725, 1) infinite; }
.hero-next .scroll-icon { position: absolute; z-index: 2; top: 0; left: 50%; margin-left: -15px; width: 30px; height: 45px; fill: none; stroke: #fff; stroke-width: 2; stroke-miterlimit: 10; stroke-dasharray: 120; stroke-dashoffset: 120; }
.hero-next:hover .scroll-icon, .hero-next:focus-visible .scroll-icon { stroke-dashoffset: 0; animation: scrollIconDraw .55s cubic-bezier(.5, .1, .07, 1); }
.hero-next:focus-visible { outline-color: #fff; }
/* Their nudgeMouse, trackBallSlide and roll-over, keyframe for keyframe.
   base.css stops all three under prefers-reduced-motion. */
@keyframes nudge { 0% { transform: translateY(0); } 45% { transform: translateY(8px); } 65%, 100% { transform: translateY(0); } }
@keyframes trackBallSlide {
  0% { opacity: 1; transform: scaleY(1) translateY(-10px); }
  45% { opacity: 0; transform: scaleY(.5) translateY(13px); }
  46% { opacity: 0; transform: scaleY(1) translateY(-10px); }
  65%, 100% { opacity: 1; transform: scaleY(1) translateY(-10px); }
}
@keyframes scrollIconDraw { 0% { stroke-dashoffset: 120; } 100% { stroke-dashoffset: 0; } }

/* ---------- Split sections with the stepped photo pair ---------- */
/* Measured at 1585 wide: the row is FULL-BLEED and the big photo runs off the
   viewport edge (right on the welcome row, left on the features row).
     text      x 127 -> 666      =  8% -> 42%
     big photo x 949 -> 1587     = 60% -> 100%, 637x923
     small     x 793 -> 1110     = 50% ->  70%, 317x558, dropped 43% of the big height
   The features row mirrors it, but its small photo sits higher (19.5%, not 43%). */
.split { display: grid; grid-template-columns: 8fr 34fr 8fr 50fr; align-items: center; }
.split-text { grid-column: 2; }
.split .pair { grid-column: 4; }
.split-rev { grid-template-columns: 50fr 8fr 34fr 8fr; }
.split-rev .pair { grid-column: 1; }
.split-rev .split-text { grid-column: 3; }
.split-text .display, .split-text .d3 { margin-bottom: 1.1rem; }
.prose p + p { margin-top: 1rem; }
.pair { position: relative; }
/* `.pair figure { margin: 0 }` outranks `.pair-big { margin-left: auto }` and pins the big
   photo to the left of its column, so both carry the same specificity here. */
.pair figure { overflow: hidden; background: var(--paper-2); }
.pair img { width: 100%; height: 100%; object-fit: cover; }
.pair .pair-big { width: 80%; margin: 0 0 0 auto; aspect-ratio: 637 / 923; }
.pair .pair-small { position: absolute; left: 0; top: 43%; width: 40%; margin: 0; aspect-ratio: 317 / 558; }
.pair-flip .pair-big { margin: 0 auto 0 0; }
.pair-flip .pair-small { left: auto; right: 0; top: 19.5%; }

.pills { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0; }
.pills li { padding: 9px 17.5px; border-radius: 20px; background: var(--grey-pill); color: var(--body); font-size: 14px; line-height: 14px; }

/* ---------- The sister-hotel band ---------- */
.sister { padding: clamp(3rem, 7vw, 5rem) 0; text-align: center; }
.sister-h { max-width: 44rem; margin-inline: auto; font: 600 22px/34px var(--display); color: var(--ink); }
.sister-logos { list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(2rem, 9vw, 7rem); margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.sister-logos img { width: 300px; height: 180px; object-fit: contain; }

/* ---------- The three cards: their sticky horizontal section ---------- */
/* From the theme CSS + nectar-sticky-media-sections.js: the wrapper is 3 x 85vw tall with 5px
   side margins; the track is position:sticky at top:20vh and is translated left, linearly, as
   the page scrolls through the wrapper. Each card is 85vw x (60vh - 10px), 15px radius, 5px gap;
   text block 404/1347 wide at 56px in, photo 40% wide (538/1347) at 15px radius. No heading, no
   buttons. Under 1000px (their "mobile mode") the cards simply stack. */
.hcards { position: relative; height: calc(3 * 85vw); margin: 0 5px; }
.hcards-track { position: sticky; top: 20vh; display: flex; gap: 5px; width: max-content; will-change: transform; }
.card { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(2rem, 5vw, 5.5rem); width: 85vw; height: calc(60vh - 10px); padding: clamp(18px, 2.4vw, 40px) clamp(18px, 2.4vw, 40px) clamp(18px, 2.4vw, 40px) clamp(28px, 4vw, 72px); border-radius: 15px; overflow: hidden; background: var(--sand); }
.card-text { max-width: 30rem; }
.card-num { display: flex; align-items: center; gap: .6rem; margin: 0 0 clamp(1.2rem, 2.4vh, 2rem); padding-bottom: .9rem; border-bottom: 1px solid rgba(68, 60, 50, .22); font: 400 15px/1 var(--mono); letter-spacing: .08em; color: #65574a; }
.card-num span { color: var(--black); }
.card-text h2 { font: 600 clamp(30px, 3vw, 48px)/1.1 var(--display); color: var(--black); margin-bottom: clamp(.8rem, 1.6vh, 1.2rem); }
.card-text p:not(.card-num) { font: 400 clamp(16px, 1.15vw, 19px)/1.7 var(--text); color: #4f4840; }
.card-photo { margin: 0; width: 100%; height: 100%; border-radius: 15px; overflow: hidden; background: rgba(255, 255, 255, .3); }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 62.49rem), (prefers-reduced-motion: reduce) {
  .hcards { height: auto; margin: 0 var(--gutter); padding: clamp(2rem, 6vw, 4rem) 0; }
  .hcards-track { position: static; flex-direction: column; width: auto; gap: 1rem; transform: none !important; }
  .card { width: auto; height: auto; grid-template-columns: 1fr; gap: 1.25rem; padding: clamp(1.25rem, 4vw, 2rem); }
  .card-text { max-width: none; }
  .card-text h2 { font-size: 28px; line-height: 1.2; }
  .card-photo { height: auto; aspect-ratio: 3 / 2; }
}

/* ---------- Closing line, with their content trail ---------- */
.closing { position: relative; min-height: 572px; padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 6.5rem); text-align: center; }
.closing h2 { max-width: 44rem; margin-inline: auto; font: 600 34px/44px var(--display); color: var(--ink); }
.closing-rest { max-width: 46rem; margin: .5rem auto 0; font: 600 18px/32px var(--display); color: var(--ink); }
/* nectar-content-trail: absolute over the section (bottom 10%), words spawned by noera.js. */
.trail { position: absolute; inset: 0 0 10% 0; z-index: 10; overflow-x: clip; pointer-events: none; }
.trail span { position: absolute; top: 0; left: 0; opacity: 0; padding: .6em .8em; border-radius: 23px; font: 400 14px/1 var(--text); color: #000; background: var(--bg); white-space: nowrap; transform-origin: center; will-change: transform, opacity; }

/* ---------- Page heads ---------- */
.page-head { padding: clamp(2.5rem, 5vw, 4rem) 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1rem; font-size: 14px; color: #8b8b8b; }
.crumbs li + li::before { content: "·"; margin-right: .35rem; }
.crumbs a { color: #8b8b8b; }

/* ---------- Rooms ---------- */
/* Their cards set the text straight on the photo (dark on Aeria, white on Gaia), which did not
   read. The text now sits in a frosted band floating along the bottom of the photo, dark on both,
   with the round arrow as the only "see the room" cue (the words stay for screen readers). */
.room-cards { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 21px; }
.room-card { --inset: clamp(.75rem, 1.4vw, 1.1rem); position: relative; display: block; border-radius: 20px; overflow: hidden; isolation: isolate; text-decoration: none; background: var(--paper-2); color: var(--black); }
.room-card img { width: 100%; height: 100%; aspect-ratio: 693 / 552; object-fit: cover; transition: transform .8s var(--ease); }
.room-card:hover img { transform: scale(1.03); }
.room-card-text {
  position: absolute; left: var(--inset); right: var(--inset); bottom: var(--inset);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; column-gap: 1.25rem; row-gap: .15rem;
  padding: clamp(.9rem, 1.3vw, 1.15rem) clamp(1rem, 1.3vw, 1.15rem) clamp(.9rem, 1.3vw, 1.15rem) clamp(1.1rem, 1.7vw, 1.5rem);
  border-radius: 16px; border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 18px 40px -18px rgba(0, 0, 0, .45);
  transition: background-color .3s var(--ease);
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .room-card-text { background: rgba(255, 255, 255, .6); -webkit-backdrop-filter: blur(22px) saturate(1.7); backdrop-filter: blur(22px) saturate(1.7); }
  .room-card:hover .room-card-text { background: rgba(255, 255, 255, .72); }
}
.room-card-h { grid-column: 1; font: 600 clamp(20px, 1.6vw, 26px)/1.25 var(--display); }
.room-card-text > span:nth-child(2) { grid-column: 1; font-size: 15px; line-height: 22px; color: #3a3a3a; }
.room-card-more { grid-column: 2; grid-row: 1 / span 2; display: grid; }
.room-card-more .ico { width: 44px; height: 44px; padding: 13px; border-radius: 50%; background: var(--dark); transition: transform .2s var(--ease); }
.room-card-more .ico path { stroke: #fff; }
.room-card:hover .room-card-more .ico { transform: translateX(3px); }

/* ---------- Room page ---------- */
/* Their hero is the photo under a veil, with the room name very large in white
   (126.8px at 1600 = 7.9vw), a 1px x 50px white rule, then the lede, all centred. */
.room-hero { position: relative; height: clamp(26rem, 50vw, 50rem); background: var(--paper-2); }
.room-hero > img { width: 100%; height: 100%; object-fit: cover; }
.room-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(10, 10, 10, .34) 0%, rgba(38, 33, 29, .66) 100%); }
.room-hero-text { position: absolute; inset: 0; z-index: 1; display: grid; align-content: center; justify-items: center; gap: 1.4rem; padding: var(--header-h) var(--gutter) 0; text-align: center; }
.room-hero-text h1 { font: 400 clamp(2.6rem, 7.9vw, 127px)/1.1 var(--display); color: #fff; }
.room-hero-text .rule { display: block; width: 1px; height: 50px; background: #fff; }
.room-hero-text p { max-width: 38rem; font-size: clamp(15px, 1.1vw, 17.5px); line-height: 1.7; color: #fff; }
/* Below the hero: text left, the room photo large on the right (the old page gave it the right
   half, 580 wide at 1600), with the text centred against it. */
.room-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.room-intro .crumbs { margin-bottom: 1.6rem; }
.room-intro .display { margin-bottom: 1.4rem; }
.room-lead { max-width: 36rem; font-size: clamp(16px, 1.2vw, 19px); line-height: 1.7; color: #555; }
.room-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2.25rem); margin-top: clamp(2rem, 3.5vw, 2.75rem); }
.room-notes > div { padding-top: 1.1rem; border-top: 1px solid var(--accent); }
.room-notes h3 { margin-bottom: .45rem; font: 600 18px/1.4 var(--display); color: var(--ink); }
.room-notes p { font-size: 15px; line-height: 1.7; }
.room-side { margin: 0; overflow: hidden; border-radius: 20px; aspect-ratio: 4 / 5; background: var(--paper-2); }
.room-side img { width: 100%; height: 100%; object-fit: cover; }

/* In the room: quiet cards on the paper tint, no shadow. Column counts are chosen per room so
   the last row is always full (Aeria 10 = 5 x 2, Gaia 12 = 4 x 3). */
.feature-grid { list-style: none; display: grid; grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); gap: clamp(.6rem, 1vw, .9rem); margin-top: 2rem; }
.feat-10 { --cols: 5; }
.feat-12 { --cols: 4; }
.feature-grid li { display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; padding: clamp(1.1rem, 1.5vw, 1.4rem); border-radius: 18px; background: var(--paper-2); }
.feature-grid .ico { width: 42px; height: 42px; padding: 11px; border-radius: 13px; background: #fff; color: var(--accent-deep); }
.feature-grid h3 { font: 600 16px/1.35 var(--display); color: var(--ink); }
.feature-grid p { margin-top: .25rem; font-size: 14px; line-height: 1.55; }

/* ---------- Photo row (their gallery runs sideways; square corners) ---------- */
.gallery-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.cards-nav { display: flex; gap: .6rem; margin: 0; }
.photo-row { list-style: none; display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter); padding: 0 var(--gutter); }
/* No scrollbar: the two round buttons are the affordance. */
.cards, .photo-row { scrollbar-width: none; -ms-overflow-style: none; }
.cards::-webkit-scrollbar, .photo-row::-webkit-scrollbar { width: 0; height: 0; display: none; }
.photo-row > li { flex: 0 0 min(750px, 80vw); scroll-snap-align: start; }
.tile { display: block; width: 100%; padding: 0; border: 0; overflow: hidden; cursor: zoom-in; background: var(--paper-2); }
.tile img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover img { transform: scale(1.03); }

.lightbox { position: fixed; inset: 0; z-index: 300; display: none; background: rgba(28, 26, 24, .97); opacity: 0; transition: opacity .26s; }
.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; transition: opacity .2s; }
.lb-img.is-loading { opacity: .3; }
.lb-caption { font-size: 14px; color: #ddd5cc; text-align: center; max-width: 46rem; }
.lb-counter { position: absolute; left: 1.4rem; top: 1.4rem; margin: 0; font: 400 14px/1 var(--mono); letter-spacing: .1em; color: #ddd5cc; }
.lb-btn { position: absolute; display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .45); background: rgba(0, 0, 0, .35); color: #fff; cursor: pointer; }
.lb-btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.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; }

/* ---------- Location: the map comes first, full width, 600 tall ---------- */
.map-frame { position: relative; height: 600px; overflow: hidden; background: var(--paper-2); }
.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: .9rem; padding: 1.5rem; text-align: center; }
.map-consent p { max-width: 26rem; margin: 0; }
/* The three ways in are iOS-style cards on the logo's sand: left-aligned, the icon in a white
   rounded square, and the directions link as a full-width button pinned to the foot of each card
   so the three line up whatever the length of the text. */
.ways { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.9rem, 1.6vw, 1.4rem); margin-top: clamp(2rem, 4vw, 3rem); }
.way {
  display: flex; flex-direction: column; align-items: flex-start; gap: .55rem;
  padding: clamp(1.4rem, 2vw, 1.9rem); border-radius: 26px;
  background: linear-gradient(180deg, #e8ded3 0%, var(--sand) 100%); color: #4a4540;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 1px 2px rgba(60, 45, 30, .06), 0 22px 44px -28px rgba(60, 45, 30, .45);
}
.way .way-ico { margin: 0 0 .5rem; }
.way-ico .ico { width: 52px; height: 52px; padding: 14px; border-radius: 15px; background: #fff; color: var(--accent-deep); box-shadow: 0 6px 16px -8px rgba(60, 45, 30, .35); }
.way h2 { font: 600 20px/1.3 var(--display); color: var(--black); }
.way p { margin: 0; font-size: 15px; line-height: 24px; }
.way p + p { margin-top: .35rem; }
.way p:last-child { width: 100%; margin-top: auto; padding-top: 1.1rem; }
.way .link-arrow {
  display: flex; justify-content: space-between; width: 100%; min-height: 56px; padding: .55rem .55rem .55rem 1.1rem;
  border-radius: 18px; background: rgba(255, 255, 255, .62); color: var(--ink); font-size: 14px; line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8); transition: background-color .2s var(--ease);
}
.way .link-arrow:hover { background: rgba(255, 255, 255, .9); color: var(--black); }
.way .link-arrow .ico { flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #aba49c; padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 3.5rem); padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer-address { font-style: normal; line-height: 26px; }
.footer-map { margin-top: .8rem; }
.footer-links a, .footer-links li, .footer-map a { display: inline-flex; align-items: center; gap: .55rem; }
.footer-links .ico, .footer-map .ico { color: var(--accent); }
.footer-brand p { max-width: 22rem; }
.footer-brand { display: grid; gap: 1rem; justify-items: start; }
.footer-brand img { width: 56px; height: 56px; }
.footer-h { font: 400 14px/1.3 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: .9rem; }
.footer-links { list-style: none; display: grid; gap: .45rem; }
.site-footer a { color: #d7d0c7; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer :focus-visible { outline-color: #fff; }
.colophon { display: grid; gap: .3rem; justify-items: center; text-align: center; padding-top: 1.75rem; font-size: 13px; color: #8d8880; }
.colophon p { margin: 0; }

/* ---------- Narrower ---------- */
@media (max-width: 62rem) {
  .split, .split-rev { grid-template-columns: var(--gutter) 1fr var(--gutter); row-gap: clamp(2rem, 6vw, 3.5rem); }
  .split-text, .split-rev .split-text { grid-column: 2; grid-row: 1; }
  .split .pair, .split-rev .pair { grid-column: 1 / -1; grid-row: 2; }
  .pair-big { width: 88%; }
  .pair-small { width: 44%; }
  .feat-10, .feat-12 { --cols: 2; }
  .room-intro { grid-template-columns: 1fr; }
  .room-side { max-width: 40rem; aspect-ratio: 4 / 3; }
  .ways { grid-template-columns: 1fr; max-width: 40rem; }  /* three cards in two columns leave one alone */
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* The full bar needs about 1000px in Greek, so the menu button takes over below that. The
   header itself only drops to its measured 74px phone size below 56rem. */
@media (max-width: 62.49rem) {
  .nav-toggle { display: grid; margin-left: auto; }
  .nav { position: fixed; inset: var(--header-h) 0 0; margin: 0; background: #fff; padding: 1.5rem var(--gutter) 3rem; overflow-y: auto; transform: translateX(100%); visibility: hidden; transition: transform .3s var(--ease), visibility .3s; }
  .site-header.is-open .nav { transform: none; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a { min-height: 56px; font-size: 20px; padding: 0; }
  .nav { display: block; }
  .nav-util { flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin: 2rem 0 0; padding: 0; border: 0; }
  .lang-opt { min-height: 44px; padding: 0 1.1rem; border-radius: 20px; font-size: 16px; letter-spacing: 0; }
  .lang-code { display: none; }
  .lang-name { position: static; width: auto; height: auto; overflow: visible; clip: auto; }
  .nav-ig { width: auto; font-size: 20px; }
  .ig-label { position: static; width: auto; height: auto; overflow: visible; clip: auto; }
}

@media (max-width: 56rem) {
  :root { --header-h: 74px; }
  .brand img { width: 149px; height: 50px; }
}

@media (max-width: 46rem) {
  .room-cards, .ways { grid-template-columns: 1fr; }
  .room-notes { grid-template-columns: 1fr; }
  .room-card img { aspect-ratio: 4 / 5; }
  .room-card-more .ico { width: 40px; height: 40px; padding: 11px; }
  .footer-grid { grid-template-columns: 1fr; }
  .room-hero-text { gap: 1rem; }
  .room-hero-text .rule { height: 32px; }
  .lb-stage { inset: 4rem 1rem 3.5rem; }
  .pair { padding-bottom: 3.5rem; }
  .map-frame { height: 380px; }
  .closing h2 { font-size: 26px; line-height: 36px; }
}

@media (max-width: 22rem) {
  .feat-10, .feat-12 { --cols: 1; }
}
