/* =====================================================================
   NEREIDES HOTEL — 2026 front page
   Boutique-minimal · warm cream + terracotta · GFS Didot / Inter
   ===================================================================== */

:root{
  --cream:#FBF8F3;
  --sand:#F3ECE1;
  --ink:#2a2320;
  --muted:#6b6259;
  --clay:#c0764e;
  --clay-dk:#a85f3b;
  --gold:#C89B5A;
  --line:#e7ded2;
  --white:#ffffff;
  --serif:'Cormorant Garamond', 'GFS Didot', Georgia, serif;
  --sans:'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --maxw:1200px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--serif); font-weight:500; line-height:1.12; margin:0; text-wrap:balance; }
h1 em,h2 em,h3 em{ font-style:italic; font-weight:400; }
p{ margin:0 0 1em; }
::selection{ background:var(--clay); color:#fff; }

.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 32px; }
.container--narrow{ max-width:760px; }
.center{ text-align:center; }

/* ---------- shared bits ---------- */
.eyebrow{
  font-family:var(--sans); display:inline-flex; align-items:center; gap:14px;
  font-size:11.5px; font-weight:600; letter-spacing:3.5px; text-transform:uppercase;
  color:var(--clay); margin:0 0 18px;
}
.eyebrow::before{ content:""; width:34px; height:1px; background:var(--clay); opacity:.65; }
.center .eyebrow::after{ content:""; width:34px; height:1px; background:var(--clay); opacity:.65; }
.eyebrow--light{ color:#f4ddcf; }
.eyebrow--light::before,.eyebrow--light::after{ background:#f4ddcf; }
.hero .eyebrow::after{ content:""; width:34px; height:1px; background:#f4ddcf; opacity:.65; }
.section__title{ font-size:clamp(34px, 4.4vw, 56px); color:var(--ink); letter-spacing:.3px; }
.rule{ display:block; width:54px; height:2px; background:var(--clay); margin:22px auto 28px; }
.rule--left{ margin-left:0; margin-right:0; }
.lead{ font-size:18px; color:var(--muted); max-width:62ch; margin-inline:auto; }

.section{ padding:clamp(64px, 9vw, 130px) 0; }
.section--sand{ background:var(--sand); }

/* tighter vertical rhythm across the same-tone breakfast → rooms → gallery run */
#amenities{ padding-top:clamp(48px, 6.5vw, 96px); }
#breakfast{ padding-bottom:clamp(44px, 6vw, 84px); }
#rooms{ padding-top:clamp(44px, 6vw, 84px); padding-bottom:clamp(52px, 7vw, 96px); }
#gallery{ padding-top:clamp(52px, 7vw, 96px); }

.link-arrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--clay-dk); margin-top:8px;
}
.link-arrow span{ transition:transform .3s var(--ease); }
.link-arrow:hover span{ transform:translateX(6px); }

/* ---------- buttons ---------- */
.btn{
  display:inline-block; cursor:pointer; border:none;
  font-family:var(--sans); font-size:12.5px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase;
  padding:16px 32px; border-radius:2px;
  transition:background-color .3s var(--ease), color .3s var(--ease),
             transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn--solid{ background:var(--clay); color:#fff; }
.btn--solid:hover{ background:var(--clay-dk); transform:translateY(-2px); box-shadow:0 14px 30px rgba(168,95,59,.32); }
.btn--ghost{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.7); }
.btn--ghost:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.btn--block{ width:100%; text-align:center; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav{
  position:fixed; top:0; left:0; width:100%; z-index:60;
  transition:box-shadow .4s var(--ease), padding .4s var(--ease);
  padding:10px 0;
  background:var(--cream);
  box-shadow:0 1px 0 var(--line);
}
.nav__inner{
  /* wide header, but capped and centered — on big screens the content
     doesn't pin to the corners, it sits in a generous 1620px band */
  max-width:1620px; margin:0 auto; padding:0 clamp(24px, 3vw, 56px);
  display:flex; align-items:center; justify-content:space-between; gap:26px;
}
/* PNG logo lockup — full colour on the solid header */
.brand{ position:relative; display:block; color:var(--ink); flex-shrink:0; }
.brand__img{ display:block; height:58px; width:auto; }
.brand__stars{ color:var(--gold); font-size:7.5px; letter-spacing:2.5px; text-indent:2.5px; }

.nav__links{ display:flex; align-items:center; gap:32px; }
.nav__links a{
  /* quiet, tracked-out Inter caps — same voice as the eyebrows and buttons */
  font-family:var(--sans);
  font-size:15px; font-weight:300; letter-spacing:2.4px; text-transform:uppercase; white-space:nowrap;
  color:var(--ink); transition:color .3s var(--ease); position:relative;
}
.nav__links a:not(.btn):hover{ color:var(--clay); }
.nav__links a:not(.btn)::after{
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:1.5px;
  background:var(--clay); transition:width .3s var(--ease);
}
.nav__links a:not(.btn):hover::after{ width:100%; }
.nav__links a.nav__book{ color:#fff; font-size:12.5px; font-weight:600; letter-spacing:2px; }

/* language switcher — quiet toggle, divided from the menu */
.nav__links a.nav__lang{
  font-family:var(--sans); font-size:12px; font-weight:600; letter-spacing:1.6px;
  color:var(--muted); padding-left:26px; border-left:1px solid var(--line);
}
.nav__links a.nav__lang:hover{ color:var(--clay); }
.nav__links a.nav__lang::after{ display:none; }

/* Greek menu: larger + lighter per design (16/300), tighter tracking/gaps so one row still fits */
html[lang="el"] .nav__links{ gap:20px; }
html[lang="el"] .nav__links a{ font-size:16px; font-weight:300; letter-spacing:1.1px; }
html[lang="el"] .nav__links a.nav__lang{ padding-left:16px; font-size:12px; font-weight:600; }
html[lang="el"] .nav__links a.nav__book{ padding:14px 20px; font-size:12.5px; font-weight:600; letter-spacing:2px; }

/* scrolled state — same solid look, just a touch more compact + a soft drop shadow */
.nav.scrolled{ box-shadow:0 1px 0 var(--line), 0 8px 30px rgba(42,35,32,.06); padding:7px 0; }

/* hamburger */
.nav__toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; z-index:70; }
.nav__toggle span{ width:26px; height:2px; background:var(--ink); transition:transform .3s var(--ease), opacity .3s var(--ease), background-color .3s; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero{ position:relative; height:100vh; min-height:600px; overflow:hidden; color:#fff; }
.hero__slides,.hero__slide{ position:absolute; inset:0; }
.hero__slide{
  background-size:cover; background-position:center;
  opacity:0; transition:opacity 1.6s var(--ease); transform:scale(1.06);
}
.hero__slide.is-active{ opacity:1; animation:heroZoom 8s ease-out forwards; }
@keyframes heroZoom{ from{ transform:scale(1.06);} to{ transform:scale(1.12);} }
.hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(26,21,18,.44) 0%, rgba(26,21,18,.38) 38%, rgba(26,21,18,.66) 100%);
}
.hero__content{
  position:relative; z-index:2; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:0 24px;
}
/* soft vignette right behind the headline — keeps photo edges vivid */
.hero__content::before{
  content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:min(1100px,96vw); height:70%; z-index:-1; pointer-events:none;
  background:radial-gradient(ellipse 50% 50% at center, rgba(26,21,18,.38), rgba(26,21,18,0) 72%);
}
.hero__title{ font-size:clamp(54px, 9.5vw, 118px); font-weight:500; line-height:.98; margin:6px 0 18px; text-shadow:0 2px 30px rgba(0,0,0,.28); }
.hero__tagline{ font-size:clamp(16px,2.2vw,21px); font-weight:300; max-width:30ch; margin:0 0 36px; color:#f6efe8; }
.hero__actions{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }

.hero__dots{ position:absolute; z-index:3; bottom:34px; left:50%; transform:translateX(-50%); display:flex; gap:10px; }
.hero__dots button{ width:9px; height:9px; border-radius:50%; border:none; background:rgba(255,255,255,.5); cursor:pointer; padding:0; transition:background-color .3s, transform .3s; }
.hero__dots button.is-active{ background:#fff; transform:scale(1.25); }

.hero__scroll{ position:absolute; z-index:3; left:50%; bottom:64px; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; color:#fff; opacity:.85; }
.hero__scroll span{ font-size:10px; letter-spacing:3px; text-transform:uppercase; }
.hero__scrolldot{ animation:scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot{ 0%{ transform:translateY(0); opacity:1;} 70%{ transform:translateY(7px); opacity:0;} 100%{ opacity:0; } }
@media (max-width:640px){ .hero__dots{ bottom:84px; } .hero__scroll{ display:none; } }

/* =====================================================================
   WELCOME + STATS
   ===================================================================== */
.welcome .lead{ font-size:19px; line-height:1.8; }
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:64px; border-top:1px solid var(--line); padding-top:48px; }
.stat{ text-align:center; }
.stat__num{ display:block; font-family:var(--serif); font-weight:600; font-size:clamp(38px,5vw,58px); color:var(--clay); }
.stat__label{ font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); }

/* =====================================================================
   AMENITIES
   ===================================================================== */
.amenities__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:56px; }
.amenity{ background:var(--white); padding:46px 34px; border-radius:6px; text-align:center; box-shadow:0 3px 18px rgba(42,35,32,.05); transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.amenity:hover{ transform:translateY(-8px); box-shadow:0 26px 52px rgba(42,35,32,.11); }
.amenity__icon{ display:inline-flex; width:76px; height:76px; align-items:center; justify-content:center; color:var(--clay); margin-bottom:22px; border:1px solid var(--line); border-radius:50%; transition:border-color .35s var(--ease), background-color .35s var(--ease); }
.amenity:hover .amenity__icon{ border-color:var(--clay); background:var(--cream); }
.amenity__icon svg{ width:36px; height:36px; }
.amenity h3{ font-size:25px; margin-bottom:12px; }
.amenity p{ color:var(--muted); font-size:14.5px; margin:0; }

/* =====================================================================
   POOL SHOWCASE (fancy, overlapping card)
   ===================================================================== */
.showcase{ padding:clamp(64px,9vw,130px) 0; overflow:hidden; }
.showcase__inner{ display:grid; grid-template-columns:1.15fr .85fr; align-items:center; }
.showcase__media{ position:relative; }
.showcase__badge{
  position:absolute; top:26px; left:26px; z-index:5; background:var(--clay); color:#fff;
  font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase;
  padding:10px 18px; border-radius:2px; box-shadow:0 10px 24px rgba(168,95,59,.35);
}
.showcase__card{
  position:relative; z-index:6; background:var(--white); margin-left:-100px;
  padding:56px 52px; border-radius:8px; box-shadow:0 34px 80px rgba(42,35,32,.16);
}
.showcase__title{ font-size:clamp(40px,4.8vw,64px); line-height:1; }

/* flipped variant (media right, card left) */
.showcase--flip .showcase__inner{ grid-template-columns:.85fr 1.15fr; }
.showcase--flip .showcase__media{ order:2; }
.showcase--flip .showcase__card{ order:1; margin-left:0; margin-right:-100px; }
.showcase--flip .showcase__badge{ left:auto; right:26px; }

/* ---------- mini slider (inside showcase media) ---------- */
.mslider{
  position:relative; height:600px; overflow:hidden; border-radius:6px;
  box-shadow:0 34px 80px rgba(42,35,32,.20);
}
.mslider__slide{ position:absolute; inset:0; opacity:0; transform:scale(1.045); transition:opacity 1.1s var(--ease), transform 1.4s var(--ease); }
.mslider__slide.is-active{ opacity:1; transform:scale(1); z-index:1; }
.mslider__slide img{ width:100%; height:100%; object-fit:cover; }
.mslider::after{ /* soft gradient for UI legibility */
  content:""; position:absolute; left:0; right:0; bottom:0; height:110px; z-index:2;
  background:linear-gradient(to top, rgba(26,21,18,.5), rgba(26,21,18,0)); pointer-events:none;
}
.mslider__ui{
  position:absolute; z-index:4; left:26px; bottom:20px;
  display:flex; align-items:center; gap:20px; color:#fff;
}
/* keep controls clear of the overlapping card */
.showcase--flip .mslider__ui{ left:auto; right:26px; }
.mslider__count{ font-family:var(--serif); font-size:22px; letter-spacing:1px; display:inline-flex; align-items:baseline; gap:7px; }
.mslider__count i{ font-style:normal; opacity:.55; font-size:15px; }
.mslider__tot{ opacity:.65; font-size:15px; }
.mslider__arrows{ display:inline-flex; gap:10px; }
.mslider__arrow{
  width:46px; height:46px; border-radius:50%; cursor:pointer; font-size:17px; color:#fff;
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.35);
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  transition:background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.mslider__arrow:hover{ background:var(--clay); border-color:var(--clay); transform:translateY(-2px); }
.mslider__bar{ position:absolute; z-index:4; left:0; right:0; bottom:0; height:3px; background:rgba(255,255,255,.22); }
.mslider__progress{ display:block; height:100%; width:0; background:var(--clay); }
.mslider.is-playing .mslider__progress{ animation:msProgress linear forwards; }
@keyframes msProgress{ from{ width:0; } to{ width:100%; } }
.showcase__card p{ color:var(--muted); font-size:16.5px; }
.showcase__tags{ list-style:none; padding:0; margin:6px 0 30px; display:flex; flex-wrap:wrap; gap:10px; }
.showcase__tags li{
  font-size:11.5px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--clay-dk); background:var(--cream); border:1px solid var(--line);
  border-radius:40px; padding:9px 17px;
}

/* =====================================================================
   ROOMS
   ===================================================================== */
.rooms__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:56px; }
.room{ background:var(--white); border:1px solid var(--line); border-radius:4px; overflow:hidden; cursor:pointer; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.room:hover,.room:focus-visible{ transform:translateY(-8px); box-shadow:0 24px 48px rgba(42,35,32,.12); outline:none; }
.room__media{ overflow:hidden; height:250px; position:relative; }
.room__media img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.room:hover .room__media img{ transform:scale(1.07); }
.room__tag{
  position:absolute; left:16px; bottom:14px; z-index:2;
  background:rgba(26,21,18,.55); color:#fff; backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px);
  font-size:11px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  padding:7px 13px; border-radius:30px;
}
.room__body{ padding:26px 26px 30px; }
.room__body h3{ font-size:27px; margin-bottom:8px; }
.room__body p{ color:var(--muted); font-size:14.5px; min-height:44px; }

/* =====================================================================
   ROOM MODAL
   ===================================================================== */
.rmodal{
  position:fixed; inset:0; z-index:80; display:none;
  align-items:center; justify-content:center; padding:28px;
  background:rgba(26,21,18,.6); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
}
.rmodal.open{ display:flex; }
.rmodal__panel{
  position:relative; width:min(1060px,100%); max-height:92vh; overflow:hidden;
  display:grid; grid-template-columns:1.15fr .85fr;
  background:var(--cream); border-radius:10px; box-shadow:0 50px 120px rgba(0,0,0,.4);
  animation:rmIn .35s var(--ease);
}
@keyframes rmIn{ from{ opacity:0; transform:translateY(26px) scale(.985);} to{ opacity:1; transform:none;} }
.rmodal__close{
  position:absolute; top:14px; right:18px; z-index:5;
  background:rgba(26,21,18,.45); color:#fff; border:none; cursor:pointer;
  width:40px; height:40px; border-radius:50%; font-size:24px; line-height:1;
  transition:background-color .25s var(--ease);
}
.rmodal__close:hover{ background:var(--clay); }

/* gallery side */
.rmodal__gallery{ display:flex; flex-direction:column; min-height:0; }
.rmodal__stage{ position:relative; flex:1; min-height:380px; background:#e9e2d6; }
.rmodal__stage img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.rmodal__nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,.4);
  background:rgba(255,255,255,.16); color:#fff; font-size:17px; cursor:pointer;
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  transition:background-color .25s var(--ease), border-color .25s var(--ease);
}
.rmodal__nav:hover{ background:var(--clay); border-color:var(--clay); }
.rmodal__prev{ left:16px; } .rmodal__next{ right:16px; }
.rmodal__count{
  position:absolute; left:18px; bottom:14px; z-index:3; color:#fff;
  font-family:var(--serif); font-size:18px; text-shadow:0 1px 8px rgba(0,0,0,.5);
}
.rmodal__thumbs{ display:flex; gap:6px; padding:8px; background:var(--cream); overflow-x:auto; }
.rmodal__thumbs img{
  width:74px; height:52px; object-fit:cover; border-radius:3px; cursor:pointer;
  opacity:.55; border:2px solid transparent; flex:none;
  transition:opacity .25s var(--ease), border-color .25s var(--ease);
}
.rmodal__thumbs img.is-active,.rmodal__thumbs img:hover{ opacity:1; border-color:var(--clay); }

/* info side */
.rmodal__info{ padding:40px 38px 34px; overflow-y:auto; min-height:0; max-height:92vh; }
.rmodal__title{ font-size:38px; margin-bottom:14px; }
.rmodal__chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.rmodal__chips span{
  font-size:11px; font-weight:600; letter-spacing:1.4px; text-transform:uppercase;
  color:var(--clay-dk); background:var(--white); border:1px solid var(--line);
  border-radius:30px; padding:7px 14px;
}
.rmodal__desc{ color:var(--muted); font-size:15px; line-height:1.8; }
.rmodal__note{
  background:var(--white); border-left:3px solid var(--gold);
  padding:12px 16px; border-radius:0 4px 4px 0;
  font-size:13.5px; color:#5d5348; margin:14px 0 0;
}
.rmodal__subtitle{ font-family:var(--sans); font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--ink); margin:24px 0 12px; }
.rmodal__amenities{ list-style:none; padding:0; margin:0 0 26px; display:grid; grid-template-columns:1fr 1fr; gap:7px 16px; }
.rmodal__amenities li{ font-size:13.5px; color:var(--muted); display:flex; align-items:baseline; gap:8px; }
.rmodal__amenities li::before{ content:"—"; color:var(--clay); flex:none; }

@media (max-width:860px){
  .rmodal{ padding:0; }
  .rmodal__panel{ grid-template-columns:1fr; max-height:100vh; height:100%; border-radius:0;
    overflow-y:auto; -webkit-overflow-scrolling:touch; display:flex; flex-direction:column; }
  /* the panel is a scroll container that stacks photo → thumbnails → info.
     without flex:none the column shrinks each region to fit the viewport,
     which crushes the thumbnail strip (and the title) into a sliver. */
  .rmodal__gallery{ flex:none; }
  .rmodal__stage{ min-height:0; flex:none; height:clamp(230px, 42vh, 300px); }
  .rmodal__thumbs{ flex:none; padding:8px 8px 10px; scroll-padding:8px; }
  .rmodal__info{ flex:none; overflow:visible; padding:26px 22px 40px; }
  .rmodal__title{ font-size:32px; }
  .rmodal__amenities{ grid-template-columns:1fr; }
}

/* =====================================================================
   GALLERY (masonry via CSS columns)
   ===================================================================== */
.gallery__grid{ column-count:3; column-gap:14px; margin-top:52px; }
.gallery__item{ display:block; position:relative; margin:0 0 14px; overflow:hidden; border-radius:3px; cursor:zoom-in; break-inside:avoid; }
.gallery__item img{ width:100%; transition:transform .8s var(--ease), filter .6s var(--ease); }
.gallery__item::after{ content:""; position:absolute; inset:0; background:rgba(192,118,78,0); transition:background .45s var(--ease); }
.gallery__item:hover img{ transform:scale(1.06); }
.gallery__item:hover::after{ background:rgba(192,118,78,.16); }

/* =====================================================================
   LOCATION
   ===================================================================== */
.location__row{ display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(36px,6vw,80px); align-items:center; }
.location__list{ list-style:none; padding:0; margin:8px 0 22px; }
.location__list li{ padding:10px 0; border-bottom:1px solid var(--line); color:var(--muted); font-size:15px; }
.location__map{
  border-radius:8px; overflow:hidden; background:var(--white);
  padding:10px; border:1px solid var(--line);
  box-shadow:0 30px 70px rgba(42,35,32,.14);
}
.location__map iframe{ width:100%; height:520px; border:0; display:block; border-radius:5px; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta{ position:relative; background-size:cover; background-position:center 55%; background-attachment:fixed; color:#fff; text-align:center; padding:clamp(80px,12vw,150px) 0; }
.cta__overlay{ position:absolute; inset:0; background:linear-gradient(to bottom, rgba(26,21,18,.38), rgba(26,21,18,.62)); }
.cta__content{ position:relative; z-index:2; }
.cta__content h2{ font-size:clamp(30px,4.5vw,52px); margin-bottom:14px; }
.cta__content p{ font-size:18px; color:#f1e8e0; margin-bottom:32px; }

/* =====================================================================
   CONTACT
   ===================================================================== */
/* one elevated two-tone card: dark info panel + dominant white form (~64%) */
.contact__row{
  display:grid; grid-template-columns:0.72fr 1.28fr; gap:0; align-items:stretch;
  padding:0; /* card spans the full container width */
  background:var(--white); border-radius:16px; overflow:hidden;
  box-shadow:0 34px 90px -34px rgba(42,35,32,.38), 0 10px 28px rgba(42,35,32,.08);
}
.contact__info{
  display:flex; flex-direction:column;
  background:var(--sand); padding:clamp(38px, 4.5vw, 58px);
}
.contact__info .section__title{ font-size:clamp(30px, 3.2vw, 44px); }
.contact__info .rule{ background:var(--clay); }
.contact__info > p{ color:var(--muted); }
.contact__info .link-arrow{ margin-top:auto; padding-top:24px; color:var(--clay); }
.contact__list{ list-style:none; padding:0; margin:6px 0 24px; }
.contact__list li{ display:flex; gap:16px; align-items:baseline; padding:15px 0; border-bottom:1px solid var(--line); }
.contact__list span{ width:70px; flex:none; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--clay); }
.contact__list a{ color:var(--ink); font-size:17px; transition:color .3s var(--ease); }
.contact__list a:hover{ color:var(--clay); }

/* the card owns the radius/shadow now — the form sits flat inside it */
.contact__form{ background:var(--white); padding:clamp(34px, 4vw, 52px); }
.section--sand .contact__form{ background:var(--white); }
.field{ margin-bottom:18px; }
.field--row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field label{ display:block; font-size:11px; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); margin-bottom:7px; }
.field input,.field textarea,.field select{
  width:100%; padding:13px 14px; font-family:var(--sans); font-size:15px; color:var(--ink);
  background-color:var(--white); border:1px solid var(--line); border-radius:3px; transition:border-color .25s;
}
.section--sand .field input,.section--sand .field textarea,.section--sand .field select{ background-color:var(--cream); }
.contact .field input,.contact .field textarea,.contact .field select{ background-color:var(--cream); }
.field input:focus,.field textarea:focus,.field select:focus{ outline:none; border-color:var(--clay); }
.field textarea{ resize:vertical; }
/* custom-styled dropdown (native arrow removed, clay chevron drawn in) */
.field select{
  -webkit-appearance:none; -moz-appearance:none; appearance:none; cursor:pointer;
  padding-right:40px; line-height:1.2;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c0764e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 15px center;
}

/* ---- custom date fields + calendar popover ---- */
.field-date{ position:relative; }
.field-date > input{ cursor:pointer; padding-right:44px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c0764e' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4.5' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18M8 2.5v4M16 2.5v4'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; }
.field-date > input::placeholder{ color:var(--muted); opacity:.85; }

.dp{ position:absolute; top:100%; left:0; margin-top:8px; z-index:40; width:302px; max-width:88vw;
  background:var(--white); border:1px solid var(--line); border-radius:12px; padding:16px 16px 14px;
  box-shadow:0 24px 54px -22px rgba(42,35,32,.34), 0 6px 18px rgba(42,35,32,.06);
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease); }
.dp.open{ opacity:1; visibility:visible; transform:none; }
.field-date--end .dp{ left:auto; right:0; }
.dp__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.dp__my{ font-family:var(--serif); font-size:21px; color:var(--ink); letter-spacing:.3px; }
.dp__nav{ width:34px; height:34px; border:1px solid var(--line); border-radius:50%; background:var(--white);
  color:var(--ink); font-size:17px; line-height:1; cursor:pointer; display:flex; align-items:center;
  justify-content:center; transition:background-color .2s, border-color .2s, color .2s; }
.dp__nav:hover{ background:var(--sand); border-color:var(--clay); color:var(--clay-dk); }
.dp__nav[disabled]{ opacity:.3; cursor:default; pointer-events:none; }
.dp__grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
.dp__wd{ text-align:center; font-size:10px; letter-spacing:.6px; text-transform:uppercase;
  color:var(--muted); padding:2px 0 8px; font-weight:600; }
.dp__day{ aspect-ratio:1/1; border:none; background:none; border-radius:50%; padding:0;
  font-family:var(--sans); font-size:13.5px; color:var(--ink); cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:background-color .18s, color .18s; }
.dp__day.is-blank{ pointer-events:none; }
.dp__day:hover:not([disabled]):not(.is-selected){ background:var(--sand); }
.dp__day[disabled]{ color:#cfc6ba; cursor:default; }
.dp__day.is-today{ box-shadow:inset 0 0 0 1.5px var(--gold); }
.dp__day.is-selected{ background:var(--clay); color:#fff; box-shadow:none; }
.dp__day.is-selected:hover{ background:var(--clay-dk); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer{ background:var(--ink); color:#cabfb4; padding:72px 0 28px; }
.footer__grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:40px; }
.footer__brand{ display:flex; flex-direction:column; align-items:flex-start; }
.footer__crest{ width:250px; height:auto; margin-bottom:10px; }
.footer__crest--knockout{ filter:brightness(0) invert(1); opacity:.92; }
.footer__brand p{ margin-top:18px; font-size:14px; width:250px; max-width:100%; text-align:center; }
.footer__col h4, .footer__funding h4{ font-family:var(--sans); font-size:12px; letter-spacing:2px; text-transform:uppercase; color:#fff; margin:0 0 18px; }
.footer__col a{ display:block; font-size:14px; padding:6px 0; color:#cabfb4; transition:color .25s; }
.footer__col a:hover{ color:var(--clay); }
.footer__funding img{ background:#fff; padding:8px; border-radius:3px; max-width:200px; }
.footer__funding small{ display:block; margin-top:10px; font-size:11px; color:#8c8175; line-height:1.5; }
.footer__approval{ margin-top:16px; padding-top:14px; border-top:1px solid rgba(255,255,255,.08); }
.footer__bar{ display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-top:54px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); font-size:12px; color:#8c8175; }
.footer__credit{ color:var(--clay); text-decoration:none; transition:color .25s; }
.footer__credit:hover{ color:#d68e66; text-decoration:underline; }
.footer__credit:visited{ color:var(--clay); }

/* =====================================================================
   LIGHTBOX
   ===================================================================== */
.lightbox{ position:fixed; inset:0; z-index:90; background:rgba(26,21,18,.94); display:none; align-items:center; justify-content:center; }
.lightbox.open{ display:flex; }
.lightbox__img{ max-width:88vw; max-height:84vh; border-radius:3px; box-shadow:0 30px 80px rgba(0,0,0,.5); }
.lightbox__close{ position:absolute; top:22px; right:30px; background:none; border:none; color:#fff; font-size:40px; line-height:1; cursor:pointer; opacity:.85; }
.lightbox__nav{ position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.12); border:none; color:#fff; width:54px; height:54px; border-radius:50%; font-size:30px; cursor:pointer; transition:background-color .25s; }
.lightbox__nav:hover{ background:rgba(255,255,255,.25); }
.lightbox__prev{ left:24px; }
.lightbox__next{ right:24px; }

/* =====================================================================
   FORM CONFIRMATION DIALOG  (+ spam honeypot)
   ===================================================================== */
.hp{ position:absolute !important; left:-9999px !important; width:1px; height:1px; opacity:0; overflow:hidden; }
.formmsg{ position:fixed; inset:0; z-index:120; display:flex; align-items:center; justify-content:center;
  padding:24px; background:rgba(26,21,18,.55); -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px);
  opacity:0; visibility:hidden; transition:opacity .3s var(--ease), visibility .3s var(--ease); }
.formmsg.open{ opacity:1; visibility:visible; }
.formmsg__card{ position:relative; width:min(440px,100%); background:var(--white); border-radius:12px;
  padding:46px 40px 40px; text-align:center; box-shadow:0 40px 90px -30px rgba(26,21,18,.55);
  transform:translateY(14px) scale(.97); transition:transform .38s var(--ease); }
.formmsg.open .formmsg__card{ transform:none; }
.formmsg__icon{ display:inline-flex; align-items:center; justify-content:center; width:68px; height:68px;
  border-radius:50%; background:rgba(192,118,78,.13); color:var(--clay); margin-bottom:22px; }
.formmsg__icon svg{ width:31px; height:31px; }
.formmsg--error .formmsg__icon{ background:rgba(168,60,45,.13); color:#a83c2d; }
.formmsg__title{ font-size:clamp(26px,3vw,32px); line-height:1.1; margin:0 0 10px; }
.formmsg__text{ color:var(--muted); font-size:15.5px; line-height:1.6; margin:0 0 28px; }
.formmsg__close{ position:absolute; top:12px; right:16px; background:none; border:none; font-size:28px;
  line-height:1; color:var(--muted); cursor:pointer; transition:color .25s; }
.formmsg__close:hover{ color:var(--ink); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero__slide.is-active{ animation:none; }
  html{ scroll-behavior:auto; }
}

/* ---- screenshot/QA mode (?shot): full-page capture only ---- */
.shot{ scroll-behavior:auto; }
.shot .hero{ height:720px; min-height:0; }
.shot .reveal{ opacity:1 !important; transform:none !important; }
.shot .cta{ background-attachment:scroll; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width:980px){
  .amenities__grid{ grid-template-columns:repeat(2,1fr); }
  .rooms__grid{ grid-template-columns:repeat(2,1fr); }
  .gallery__grid{ column-count:2; }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:36px; }
  .showcase__card{ margin-left:-64px; padding:44px 38px; }
  .showcase--flip .showcase__card{ margin-left:0; margin-right:-64px; }
  .mslider{ height:520px; }
}
/* one-row nav can't fit the full menu below ~1340px (especially in Greek) —
   switch to the hamburger overlay early, for both languages */
@media (max-width:1340px){
  .nav__toggle{ display:flex; }
  .nav__links{
    position:fixed; inset:0; flex-direction:column; justify-content:center; gap:26px;
    background:var(--cream); transform:translateX(100%); transition:transform .4s var(--ease);
  }
  .nav__links.open{ transform:translateX(0); }
  .nav__links a,
  html[lang="el"] .nav__links a{ color:var(--ink); font-size:17px; letter-spacing:1.8px; }
  .nav.scrolled .nav__links a{ color:var(--ink); }
  /* keep the book button's label white in the overlay — the el ink rule above
     (0,2,2) was out-specifying the base white rule for Greek only */
  .nav__book,
  html[lang="el"] .nav__links a.nav__book{ margin-top:8px; padding:16px 32px; color:#fff; }
  /* overlay menu: language switcher becomes a plain item */
  .nav__links a.nav__lang,
  html[lang="el"] .nav__links a.nav__lang{
    border-left:none; padding-left:0; margin-top:4px; font-size:13.5px; letter-spacing:2px;
  }
  /* hamburger morphs into a close ✕ while the overlay is open */
  .nav__toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}
/* touch devices can't do background-attachment:fixed (iOS/Android render it
   zoomed or frozen) — parallax stays a desktop-only treat */
@media (hover:none), (pointer:coarse){
  .cta{ background-attachment:scroll; }
}
@media (max-width:760px){
  .showcase__inner{ grid-template-columns:1fr; }
  .showcase--flip .showcase__inner{ grid-template-columns:1fr; }
  .showcase--flip .showcase__media{ order:0; }
  .showcase--flip .showcase__card{ order:1; }
  .mslider{ height:400px; }
  .showcase__card,.showcase--flip .showcase__card{ margin:-48px 16px 0; padding:38px 28px; }
  /* the card overlaps the media's bottom 48px — lift the slider controls
     clear of it, and drop the progress bar it buries */
  .mslider__ui,
  .showcase--flip .mslider__ui{ bottom:64px; }
  .mslider__bar{ display:none; }

  .location__row,.contact__row{ grid-template-columns:1fr; }
  .location__map iframe{ height:380px; }
  .stats{ grid-template-columns:repeat(2,1fr); gap:36px 16px; }

  /* stable hero height on phones — 100vh jumps when the URL bar collapses */
  @supports (height:100svh){
    .hero{ height:100svh; }
  }
  /* iOS auto-zooms the page when focusing controls set below 16px */
  .field input,.field textarea,.field select{ font-size:16px; }
}
@media (max-width:640px){
  .amenities__grid,.rooms__grid{ grid-template-columns:1fr; }
  .field--row{ grid-template-columns:1fr; }

  /* single-column amenity cards don't need the tall vertical padding */
  .amenity{ padding:32px 30px; }
  .amenity__icon{ margin-bottom:18px; }

  /* contact: 20px breathing room lives on the section; the card spans the
     rest of the width (its own .container padding removed) */
  #contact.contact{ padding-left:20px; padding-right:20px; }
  .contact .contact__row{ padding-left:0; padding-right:0; }

  /* mobile lightbox: bigger photo, solid thumb-reach arrows below it */
  .lightbox__img{ max-width:calc(100vw - 20px); max-height:76vh; }
  .lightbox__nav{
    top:auto; bottom:26px; transform:none;
    width:46px; height:46px; font-size:24px; background:rgba(255,255,255,.18);
  }
  .lightbox__prev{ left:calc(50% - 58px); }
  .lightbox__next{ right:calc(50% - 58px); }
}
@media (max-width:480px){
  .container{ padding:0 22px; }
  /* larger logo — the header grows with it (mobile only) */
  .brand__img{ height:46px; }

  /* CTA line reads better a touch smaller on a phone */
  .cta__content p{ font-size:15px; }

  /* footer: everything stacked and centred */
  .footer__grid{ grid-template-columns:1fr; text-align:center; justify-items:center; }
  .footer__brand{ align-items:center; }
  .footer__funding img{ margin-left:auto; margin-right:auto; }
  .footer__bar{ flex-direction:column; align-items:center; gap:6px; text-align:center; }

  /* hero: quiet one-line eyebrow (no dashes), one-line title,
     stacked equal-width buttons */
  .hero .eyebrow::before,.hero .eyebrow::after{ display:none; }
  .hero__title{ font-size:clamp(46px, 13.5vw, 54px); }
  .hero__actions{
    flex-direction:column; align-items:stretch; gap:12px;
    width:min(320px, 100%); margin-inline:auto;
  }

  /* the floating card loses its side insets on true phones — flush with the
     container grid, which frees the width the long Greek labels need */
  .showcase__card,.showcase--flip .showcase__card{ margin:-48px 0 0; padding:34px 22px 36px; }

  /* long Greek labels: full-width buttons, measured to hold one line at 360px+ */
  .showcase__card .btn,.contact__form .btn{
    display:block; width:100%; text-align:center;
    letter-spacing:1.2px; padding-left:16px; padding-right:16px;
  }
  .contact__form .btn{ font-size:11.5px; letter-spacing:.8px; }
  .contact__form{ padding:30px 22px 34px; }

  /* gallery: two-column masonry — one column made the page endless */
  .gallery__grid{ column-count:2; column-gap:10px; }
  .gallery__item{ margin-bottom:10px; }
}
