/* ===========================================================
   Ellàda Restaurant & Hotel — design system
   Aegean blue · whitewashed white · warm gold
   =========================================================== */
:root {
  --blue:        #0b5d8a;
  --blue-deep:   #073a57;
  --blue-bright: #1789c4;
  --gold:        #c9a24b;
  --gold-soft:   #e0c989;
  --ink:         #1c2530;
  --muted:       #5a6b7b;
  --line:        #e7ecf1;
  --bg:          #ffffff;
  --bg-soft:     #f5f8fb;
  --bg-blue:     #f0f6fb;
  --white:       #ffffff;
  --shadow-sm:   0 2px 10px rgba(16, 49, 73, .06);
  --shadow-md:   0 12px 38px rgba(16, 49, 73, .12);
  --shadow-lg:   0 28px 70px rgba(16, 49, 73, .20);
  --radius:      18px;
  --radius-sm:   12px;
  --maxw:        1180px;
  --serif:       "Cormorant Garamond", Georgia, serif;
  --sans:        "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; letter-spacing: -.01em; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  padding: .9rem 1.7rem; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap; line-height: 1;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), #b58a32); color: #fff; box-shadow: 0 10px 26px rgba(201,162,75,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201,162,75,.45); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { transform: translateY(-2px); background: var(--blue-deep); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none !important; }

/* ---------- section headings ---------- */
.eyebrow {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); color: var(--blue-deep); }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.pad { padding: clamp(4rem, 8vw, 7rem) 0; }
.bg-soft { background: var(--bg-soft); }

/* ===========================================================
   NAVBAR
   =========================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(20px, 5vw, 48px);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.scrolled { background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); padding: .7rem clamp(20px,5vw,48px); backdrop-filter: blur(10px); }
.brand { display: flex; align-items: center; gap: .7rem; color: #fff; transition: color .35s; }
.nav.scrolled .brand { color: var(--blue-deep); }
.brand .mark {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.35rem;
  background: linear-gradient(135deg, var(--gold), #b58a32); color: #fff;
  box-shadow: 0 6px 16px rgba(201,162,75,.4);
}
.brand .name { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: 1; }
.brand .sub  { display: block; font-family: var(--sans); font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; opacity: .75; margin-top: 2px; }
/* Wordmark logo. The PNG is black on transparent: invert to white over the
   dark hero/unscrolled nav, and show it black once the nav turns white. */
.brand .logo { height: 38px; width: auto; display: block; filter: brightness(0) invert(1); transition: filter .35s; }
.nav.scrolled .brand .logo { filter: none; }
.brand .logo + .sub { margin-top: 4px; }
.brand-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: #fff; font-weight: 500; font-size: .95rem; position: relative; transition: color .3s; }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .3s; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.1rem; }
.lang { display: flex; gap: 2px; border-radius: 100px; padding: 3px; background: rgba(255,255,255,.2); }
.nav.scrolled .lang { background: var(--bg-soft); }
.lang button {
  border: none; background: transparent; cursor: pointer; color: #fff; font-weight: 700; font-size: .78rem;
  padding: .35rem .7rem; border-radius: 100px; transition: all .25s; letter-spacing: .03em;
}
.nav.scrolled .lang button { color: var(--muted); }
.lang button.active { background: #fff; color: var(--blue-deep); box-shadow: var(--shadow-sm); }
.nav.scrolled .lang button.active { background: var(--blue); color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .3s; }
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ===========================================================
   HERO
   =========================================================== */
/* padding-bottom clears the booking bar, which overlaps the hero by 54px */
.hero { position: relative; min-height: 70svh; padding-bottom: 90px; display: flex; align-items: center; color: #fff; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 20s ease-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.16); } }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(7,58,87,.82) 0%, rgba(7,58,87,.45) 45%, rgba(11,93,138,.25) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 720px; padding-top: 5rem; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { font-size: clamp(2.15rem, 4.9vw, 4rem); line-height: 1.06; text-shadow: 0 4px 30px rgba(0,0,0,.3); }
.hero p { font-size: clamp(1rem, 1.6vw, 1.15rem); margin: 1.3rem 0 2rem; max-width: 520px; opacity: .94; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; opacity: .8; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint .dot { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.7); border-radius: 100px; position: relative; }
.scroll-hint .dot::after { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:4px; height:7px; background:#fff; border-radius:4px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0; transform:translate(-50%,0);} 40%{opacity:1;} 80%{opacity:0; transform:translate(-50%,12px);} }

/* ===========================================================
   BOOKING WIDGET
   =========================================================== */
.booking-bar { position: relative; z-index: 30; margin-top: -54px; }
.booking-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.6rem; display: grid; gap: 1rem;
  grid-template-columns: 1.2fr 1.2fr .9fr .9fr auto; align-items: end;
}
.booking-card .field { display: flex; flex-direction: column; gap: .35rem; }
.booking-card label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.booking-card input, .booking-card select {
  font-family: var(--sans); font-size: 1rem; padding: .8rem .9rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg-soft); color: var(--ink); transition: border .2s, box-shadow .2s;
}
.booking-card input:focus, .booking-card select:focus { outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(23,137,196,.15); background: #fff; }
.booking-msg { grid-column: 1/-1; color: #c0392b; font-size: .9rem; font-weight: 500; display: none; }
.booking-msg.show { display: block; }

/* ===========================================================
   ROOMS
   =========================================================== */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 2rem; }
.room-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; border: 1px solid var(--line);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.room-card:hover .room-media img { transform: scale(1.07); }
.room-price { position: absolute; bottom: 12px; right: 12px; background: rgba(7,58,87,.92); color: #fff; padding: .45rem .8rem; border-radius: 100px; font-size: .85rem; font-weight: 600; backdrop-filter: blur(4px); }
.room-price b { font-size: 1.05rem; color: var(--gold-soft); }
.room-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.55rem; color: var(--blue-deep); }
.room-num { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.room-desc { color: var(--muted); font-size: .94rem; margin: .6rem 0 1rem; flex: 1; }
.room-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: .85rem; color: var(--ink); padding-top: 1rem; margin-bottom: 1.1rem; border-top: 1px solid var(--line); }
/* room photo carousel (shown when a room has more than one photo) */
.gal { position: absolute; inset: 0; }
.gal img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .45s ease; }
.gal img.on { opacity: 1; }
.gal-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 32px; height: 32px;
           border: none; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--blue-deep);
           font-size: 1.2rem; line-height: 1; cursor: pointer; opacity: 0; transition: opacity .25s, background .2s; }
.gal-nav.prev { left: 10px; } .gal-nav.next { right: 10px; }
.gal-nav:hover { background: #fff; }
.room-card:hover .gal-nav, .gal-nav:focus-visible { opacity: 1; }
.gal-dots { position: absolute; bottom: 10px; left: 12px; z-index: 3; display: flex; gap: 5px; }
.gal-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; transition: background .2s, transform .2s; }
.gal-dots i.on { background: #fff; transform: scale(1.35); }
@media (hover: none) { .gal-nav { opacity: 1; } }

/* payment choice in the booking form */
.pay-opts { display: flex; flex-direction: column; gap: .55rem; }
.pay-opt { display: flex; align-items: flex-start; gap: .7rem; border: 1.5px solid var(--line);
           border-radius: var(--radius-sm); padding: .8rem .95rem; cursor: pointer; background: var(--bg-soft); transition: background .2s, border-color .2s; }
.pay-opt:hover { background: var(--bg-blue); }
.pay-opt.on { border-color: var(--blue); background: var(--bg-blue); }
.pay-opt input { margin-top: .25rem; accent-color: var(--blue); }
.pay-opt b { display: block; font-size: .95rem; }
.pay-opt small { display: block; color: var(--muted); font-size: .84rem; margin-top: .15rem; line-height: 1.5; }
.pay-note { background: var(--bg-blue); border-radius: var(--radius-sm); padding: .85rem 1rem; font-size: .9rem; color: var(--ink); }

.room-amens { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.1rem; }
.room-amen { display: inline-flex; align-items: center; gap: .3rem; font-size: .75rem; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); padding: .28rem .6rem; border-radius: 100px; }
.room-amen svg { color: var(--blue); flex: none; }
.room-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.room-meta svg { color: var(--blue-bright); }

/* ===========================================================
   RESTAURANT
   =========================================================== */
.resto { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.resto-media { position: relative; }
.resto-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.resto-media .badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--blue-deep); color: #fff;
  padding: 1.3rem 1.6rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); max-width: 220px;
}
.resto-media .badge .k { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-soft); }
.resto-media .badge .v { font-size: .82rem; opacity: .85; }
.resto-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--blue-deep); }
.resto-text > p { color: var(--muted); margin: 1.2rem 0 1.8rem; font-size: 1.05rem; }
.buffet-box { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; border-radius: var(--radius); padding: 1.6rem 1.8rem; margin-bottom: 1.8rem; }
.buffet-box h4 { font-size: 1.4rem; color: var(--gold-soft); }
.buffet-box .row { display: flex; justify-content: space-between; align-items: center; margin-top: .6rem; font-size: .95rem; opacity: .95; }
.buffet-box .price { font-family: var(--serif); font-size: 1.6rem; color: #fff; }
.hours-list { list-style: none; margin-bottom: 1.8rem; }
.hours-list li { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours-list li span:first-child { font-weight: 600; }
.hours-list li.closed span:last-child { color: #c0392b; font-weight: 600; }
.hours-list .day-t { color: var(--muted); }

/* ===========================================================
   AMENITIES
   =========================================================== */
.amen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.4rem; }
.amen-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; transition: transform .3s, box-shadow .3s, border-color .3s; }
.amen-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.amen-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-blue); color: var(--blue); margin-bottom: 1rem; }
.amen-card h4 { font-size: 1.25rem; color: var(--blue-deep); }
.amen-card p { color: var(--muted); font-size: .9rem; margin-top: .35rem; }

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery-grid a { overflow: hidden; border-radius: var(--radius-sm); position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid a:hover img { transform: scale(1.1); }
.gallery-grid .big { grid-column: span 2; grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ===========================================================
   LOCATION
   =========================================================== */
.loc { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: stretch; }
.loc-info { background: linear-gradient(150deg, var(--blue-deep), var(--blue)); color: #fff; border-radius: var(--radius); padding: clamp(2rem,4vw,3rem); display: flex; flex-direction: column; justify-content: center; }
.loc-info .eyebrow { color: var(--gold-soft); }
.loc-info h2 { font-size: clamp(1.9rem,3.5vw,2.7rem); }
.loc-info p { opacity: .9; margin: 1rem 0 1.8rem; }
.loc-detail { display: flex; gap: .9rem; align-items: flex-start; padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.18); }
.loc-detail svg { flex: none; color: var(--gold-soft); margin-top: 2px; }
.loc-detail .l { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; opacity: .7; }
.loc-detail .v { font-size: 1.05rem; font-weight: 500; }
.loc-detail a.v:hover { color: var(--gold-soft); }
.loc-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.loc-map iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

/* ===========================================================
   CTA STRIP
   =========================================================== */
.cta-strip { position: relative; color: #fff; text-align: center; overflow: hidden; }
.cta-strip .cta-bg { position: absolute; inset: 0; }
.cta-strip .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-strip .cta-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(rgba(7,58,87,.86), rgba(7,58,87,.86)); }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; padding: clamp(4rem,8vw,6.5rem) 24px; }
.cta-inner h2 { font-size: clamp(2.2rem,4.5vw,3.3rem); }
.cta-inner p { opacity: .92; margin: 1rem 0 2rem; font-size: 1.1rem; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--ink); color: #c4cdd6; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer h5 { color: #fff; font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer a:hover { color: var(--gold-soft); }
.footer .small { font-size: .9rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: #8b97a3; }
.socials { display: flex; gap: .8rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s, transform .3s; }
.socials a:hover { background: var(--gold); transform: translateY(-3px); }

/* ===========================================================
   MODAL
   =========================================================== */
/* Opening the modal locks scrolling on <body>, so the overlay itself has to be
   the scroll container — otherwise anything taller than the screen is simply
   unreachable. */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(7,30,46,.6); backdrop-filter: blur(6px); display: none; justify-content: center; padding: 20px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.modal-overlay.open { display: flex; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: var(--radius); width: 100%; max-width: 560px;
  /* margin:auto centres the card, and unlike align-items:center it keeps the
     top edge reachable once the card is taller than the overlay — centred
     overflow otherwise spills equally off both ends with no way to scroll back. */
  margin: auto;
  /* vh is the viewport with the browser chrome HIDDEN, so on a phone showing
     its address bar a 92vh card is taller than the screen and loses its head
     and foot. svh is the small viewport — what is actually visible. */
  max-height: calc(100vh - 40px);
  max-height: calc(100svh - 40px);
  /* Head pinned, body scrolls: the title and the × stay put however long the
     form gets, so there is always a visible way out. Scrolling the whole card
     instead would carry the close button off the top of a phone screen. */
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow-lg); animation: pop .3s cubic-bezier(.18,.9,.32,1.2);
}
.modal-head { flex: 0 0 auto; }
.modal-body { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 600px) {
  .modal-overlay { padding: 12px; }
  .modal { max-height: calc(100vh - 24px); max-height: calc(100svh - 24px); }
}
@keyframes pop { from { transform: translateY(20px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head { padding: 1.6rem 1.8rem; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { font-size: 1.7rem; color: var(--blue-deep); }
.modal-close { background: var(--bg-soft); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; color: var(--muted); transition: background .25s, color .25s; }
.modal-close:hover { background: #f0d6d6; color: #c0392b; }
.modal-body { padding: 1.6rem 1.8rem 2rem; }
.summary-card { background: var(--bg-blue); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem; margin-bottom: 1.5rem; }
.summary-card .room-line { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; }
.summary-card .room-line .nm { font-family: var(--serif); font-size: 1.3rem; color: var(--blue-deep); }
.summary-row { display: flex; justify-content: space-between; font-size: .92rem; padding: .35rem 0; color: var(--muted); }
.summary-total { display: flex; justify-content: space-between; align-items: center; border-top: 1.5px solid var(--line); margin-top: .6rem; padding-top: .8rem; }
.summary-total .lbl { font-weight: 600; color: var(--ink); }
.summary-total .amt { font-family: var(--serif); font-size: 1.8rem; color: var(--blue-deep); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1/-1; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-size: .78rem; font-weight: 600; color: var(--muted); }
.form-field input, .form-field textarea {
  font-family: var(--sans); font-size: .98rem; padding: .8rem .9rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg-soft); transition: border .2s, box-shadow .2s; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(23,137,196,.15); background: #fff; }
.form-err { color: #c0392b; font-size: .9rem; margin-top: 1rem; display: none; }
.form-err.show { display: block; }

/* availability results inside modal */
.avail-list { display: flex; flex-direction: column; gap: 1rem; }
.avail-row { display: flex; gap: 1rem; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .8rem; transition: border-color .25s, box-shadow .25s; }
.avail-row:hover { border-color: var(--blue-bright); box-shadow: var(--shadow-sm); }
.avail-row img { width: 92px; height: 70px; object-fit: cover; border-radius: 10px; flex: none; }
.avail-row .info { flex: 1; }
.avail-row .info .nm { font-family: var(--serif); font-size: 1.2rem; color: var(--blue-deep); line-height: 1.1; }
.avail-row .info .mt { font-size: .82rem; color: var(--muted); }
.avail-row .pr { text-align: right; }
.avail-row .pr .p { font-weight: 700; color: var(--blue-deep); }
.avail-row .pr .s { font-size: .75rem; color: var(--muted); }
.success-box { text-align: center; padding: 1rem 0; }
.success-box .check { width: 78px; height: 78px; border-radius: 50%; background: #e8f6ee; color: #1e9e54; display: grid; place-items: center; margin: 0 auto 1.4rem; }
.success-box h3 { font-size: 1.9rem; color: var(--blue-deep); }
.success-box p { color: var(--muted); margin-top: .8rem; }
.code-pill { display: inline-block; font-family: var(--serif); font-size: 1.8rem; letter-spacing: .1em; color: var(--blue-deep); background: var(--bg-blue); border: 2px dashed var(--gold); border-radius: var(--radius-sm); padding: .7rem 1.6rem; margin: 1.2rem 0; }

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
/* Progressive enhancement: content is visible by default. Only when JS is
   active (html.js) do we hide-then-reveal on scroll, so a JS/observer failure
   can never leave the page blank. */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .booking-card { grid-template-columns: 1fr 1fr; }
  .booking-card .field.search { grid-column: 1/-1; }
  .resto, .loc { grid-template-columns: 1fr; }
  .resto-media { order: -1; }
  .resto-media .badge { left: auto; right: 12px; bottom: -20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid .big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 760px) {
  .nav-links, .nav-right .lang, .nav-right .btn-gold { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 1.4rem 24px; gap: 1.2rem; box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { color: var(--ink); }
  .nav.open .nav-links a::after { display: none; }
  .booking-card { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
