/* =========================================================
   SCALLABIS HOUSE — "NIGHT COURTYARD"
   Boutique stay · Santarém
   ========================================================= */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

:root{
  --ink:#12140f;
  --ink-2:#1b1f15;
  --olive:#5b6b4f;
  --olive-deep:#333d29;
  --cream:#f6f2e7;
  --parchment:#efe9d8;
  --text-dark:#2b2b22;
  --text-muted:#6b6a5c;
  --text-light:#f2ede0;
  --text-light-muted:#c9c6b8;
  --gold:#c6a15b;
  --gold-soft:#e4cd97;
  --line:rgba(198,161,91,0.35);
  --display:'Cormorant Garamond', serif;
  --body:'Inter', sans-serif;
  --container:1240px;
  --ease:.5s cubic-bezier(.22,.61,.36,1);
}

body{
  font-family:var(--body);
  background:var(--cream);
  color:var(--text-dark);
  line-height:1.65;
  overflow-x:hidden;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
}

img{ width:100%; display:block; object-fit:cover; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button, input, textarea{ font-family:inherit; }
h1,h2,h3{ font-family:var(--display); font-weight:500; line-height:1.1; letter-spacing:.2px; }
::selection{ background:var(--gold); color:var(--ink); }

.wrap{ width:min(var(--container),90%); margin:auto; }
.wrap-narrow{ width:min(640px,90%); margin:auto; text-align:center; }

/* =========================
   LOADER
========================= */
.loader{
  position:fixed; inset:0; background:var(--ink); z-index:9999;
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
.loader-mark{ display:flex; align-items:center; gap:18px; }
.loader-line{ width:40px; height:1px; background:var(--gold); display:block; animation:loaderLine 1.4s ease infinite; }
.loader-word{ font-family:var(--display); color:var(--gold-soft); letter-spacing:6px; font-size:16px; }
@keyframes loaderLine{ 0%,100%{ width:20px; opacity:.4;} 50%{ width:48px; opacity:1;} }

/* =========================
   HEADER
========================= */
.site-header{
  position:fixed; top:0; left:0; width:100%; z-index:200;
  padding:30px 0; transition:padding .4s ease, background .4s ease, box-shadow .4s ease;
}
.site-header.scrolled{
  padding:16px 0; background:rgba(18,20,15,0.92); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.header-inner{
  width:min(var(--container),92%); margin:auto;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:20px;
}
.nav-left, .nav-right{ display:flex; gap:34px; align-items:center; }
.nav-right{ justify-content:flex-end; }
.header-actions{ display:flex; align-items:center; gap:22px; justify-self:end; }
.nav-left a, .nav-right a{
  font-size:12px; text-transform:uppercase; letter-spacing:2px; color:var(--text-light);
  position:relative; padding-bottom:4px;
}
.nav-left a::after, .nav-right a:not(.nav-cta)::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--gold);
  transition:width .3s ease;
}
.nav-left a:hover::after, .nav-right a:not(.nav-cta):hover::after{ width:100%; }
.nav-cta{
  border:1px solid var(--gold); padding:10px 20px; letter-spacing:2px; text-transform:uppercase; font-size:11px;
  color:var(--gold-soft); transition:.3s ease;
}
.nav-cta:hover{ background:var(--gold); color:var(--ink); }

.brand{ justify-self:center; text-align:center; line-height:1; }
.brand-word{ font-family:var(--display); font-size:22px; letter-spacing:3px; color:var(--text-light); text-transform:uppercase; }
.brand-word em{ font-style:italic; color:var(--gold-soft); text-transform:none; letter-spacing:1px; margin-left:2px; }

.menu-toggle{ display:none; background:none; border:0; padding:0; width:44px; height:44px; cursor:pointer; z-index:210; }
.menu-toggle span{ display:block; width:24px; height:1px; background:var(--text-light); margin:6px 0; transition:.3s; }
.menu-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity:0; }
.menu-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-nav{
  position:fixed; inset:0; background:var(--ink); z-index:150;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:34px;
  transform:translateY(-100%); visibility:hidden;
  transition:transform .5s var(--ease), visibility .5s ease;
}
.mobile-nav.active{ transform:translateY(0); visibility:visible; }
.mobile-nav a{ font-family:var(--display); font-size:26px; color:var(--text-light); }
.mobile-nav a:hover{ color:var(--gold-soft); }
/* nunca mostrar o menu móvel em ecrãs grandes */
@media(min-width:901px){ .mobile-nav{ display:none !important; } }

/* =========================
   LANGUAGE SWITCHER
========================= */
.lang-switch{ position:relative; z-index:220; }
.lang-btn{
  width:44px; height:44px; flex:none; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background:transparent; border:1px solid rgba(255,255,255,.5); color:var(--text-light);
  font-family:var(--body); font-size:11px; font-weight:500; letter-spacing:1px;
  cursor:pointer; transition:border-color .3s ease, color .3s ease, background .3s ease;
}
.lang-btn:hover{ border-color:var(--gold); color:var(--gold-soft); }
.lang-switch.open .lang-btn{ background:var(--gold); border-color:var(--gold); color:var(--ink); }
#header.scrolled .lang-btn{ color:var(--ink); border-color:var(--line); }
#header.scrolled .lang-btn:hover{ border-color:var(--gold); color:var(--gold); }

.lang-menu{
  position:absolute; top:calc(100% + 14px); right:0; min-width:190px;
  background:var(--cream); border-radius:20px; padding:14px 8px;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index:60; box-shadow:0 26px 60px rgba(20,22,15,.28);
}
.lang-switch.open .lang-menu{ opacity:1; visibility:visible; transform:none; }
.lang-menu button{
  display:block; width:100%; text-align:left; background:none; border:0; cursor:pointer;
  padding:11px 18px; border-radius:12px; font-family:var(--display); font-size:18px;
  color:var(--text-dark); font-weight:400; transition:background .2s ease, color .2s ease;
}
.lang-menu button:hover{ background:rgba(51,61,41,.06); }
.lang-menu button.active{ color:var(--olive-deep); font-weight:600; }

/* =========================
   EYEBROW / TYPE HELPERS
========================= */
.eyebrow{
  font-size:11px; letter-spacing:5px; text-transform:uppercase; color:var(--gold);
  display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:26px;
}
.eyebrow span{ width:26px; height:1px; background:var(--gold); display:inline-block; }
.eyebrow-left{ justify-content:flex-start; }

h2{ font-size:clamp(36px,4.4vw,58px); margin-bottom:26px; }
.lede{ font-size:18px; color:var(--text-muted); max-width:560px; font-weight:300; }
.lede.center{ margin:0 auto 10px; text-align:center; max-width:560px; }
p{ font-size:15.5px; color:var(--text-muted); font-weight:300; }

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:16px 36px; font-size:11px; letter-spacing:2.5px; text-transform:uppercase;
  transition:.35s ease; border:1px solid transparent; cursor:pointer;
}
.btn-gold{ background:var(--gold); color:var(--ink); }
.btn-gold:hover{ background:var(--gold-soft); }
.btn-line{ border-color:rgba(255,255,255,.5); color:var(--text-light); }
.btn-line:hover{ border-color:var(--gold); color:var(--gold-soft); }
.btn-wide{ width:100%; padding:18px; }

/* =========================
   HERO
========================= */
.hero{
  position:relative; height:100vh; min-height:760px; display:flex; align-items:center; justify-content:center;
  overflow:hidden; text-align:center;
}
.hero-media{ position:absolute; inset:0; z-index:-2; }
.hero-media img{ width:100%; height:100%; object-fit:cover; transform:scale(1.08); animation:heroZoom 16s ease-out forwards; }
@keyframes heroZoom{ to{ transform:scale(1); } }
.hero-veil{
  position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(10,12,8,.55) 0%, rgba(10,12,8,.35) 35%, rgba(10,12,8,.78) 100%);
}
.hero-content{ max-width:760px; padding:0 24px; animation:fadeUp 1.3s var(--ease) both; }
.hero .eyebrow{ color:var(--gold-soft); }
.hero h1{
  font-size:clamp(64px,10vw,128px); color:var(--text-light); letter-spacing:1px; margin-bottom:28px;
}
.hero h1 em{ font-style:italic; color:var(--gold-soft); font-weight:400; }
.hero-lede{ color:var(--text-light-muted); font-size:19px; max-width:560px; margin:0 auto 44px; }
.hero-actions{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.hero-scroll{ position:absolute; bottom:36px; left:50%; transform:translateX(-50%); }
.hero-scroll-line{ display:block; width:1px; height:60px; background:linear-gradient(var(--gold),transparent); animation:scrollPulse 2s ease infinite; }
@keyframes scrollPulse{ 0%{ opacity:.2; } 50%{ opacity:1; } 100%{ opacity:.2; } }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(30px);} to{ opacity:1; transform:translateY(0);} }

/* =========================
   LIT DIVIDER — signature motif
========================= */
.lit-divider{
  position:relative; height:1px; background:var(--line);
  width:min(var(--container),90%); margin:0 auto;
}
.lit-divider span{ position:absolute; top:-1px; height:3px; width:3px; border-radius:50%; background:var(--gold); }
.lit-divider span:first-child{ left:18%; }
.lit-divider span:last-child{ right:18%; }
.lit-divider i{
  position:absolute; left:50%; top:50%; width:9px; height:9px; border-radius:50%;
  background:var(--gold-soft); transform:translate(-50%,-50%);
  box-shadow:0 0 22px 6px rgba(198,161,91,.55);
  animation:litPulse 5.5s ease-in-out infinite; animation-delay:-2.3s;
}
@keyframes litPulse{
  0%,100%{ box-shadow:0 0 22px 6px rgba(198,161,91,.55); opacity:1; }
  50%{ box-shadow:0 0 30px 9px rgba(198,161,91,.8); opacity:.88; }
}
.lit-divider.dark{ background:rgba(198,161,91,.22); }

/* =========================
   PANELS
========================= */
.panel{ padding:130px 0; }
.panel-cream{ background:var(--cream); }
.panel-ink{ background:var(--ink); color:var(--text-light); }
.panel-ink h2, .panel-ink h3{ color:var(--text-light); }
.panel-ink p{ color:var(--text-light-muted); }
.panel-ink .eyebrow{ color:var(--gold); }

.section-head{ text-align:center; max-width:720px; margin:0 auto 70px; }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; }
.two-col.reverse{ grid-template-columns:.9fr 1.1fr; }
.two-col.reverse .col-media{ order:2; }
.two-col.reverse .col-text{ order:1; }

.col-media{ overflow:hidden; }
.col-media.tall{ height:640px; }
.col-media img{ height:100%; transition:transform 1s var(--ease); }
.col-media:hover img{ transform:scale(1.04); }

.trait-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:50px; padding-top:40px; border-top:1px solid rgba(0,0,0,.08); }
.trait-row h3{ font-size:20px; margin-bottom:8px; color:var(--olive-deep); }
.trait-row p{ font-size:13.5px; }

.addr-block{ margin:36px 0 30px; }
.addr-block h3{ font-size:15px; text-transform:uppercase; letter-spacing:2px; margin-bottom:10px; color:var(--olive); }
.distance-row{ display:flex; gap:40px; flex-wrap:wrap; }
.distance-row strong{ display:block; font-family:var(--display); font-size:28px; color:var(--olive-deep); }
.distance-row em{ display:block; font-style:normal; font-size:13px; letter-spacing:.3px; color:var(--gold); margin:2px 0 5px; }
.distance-row span{ font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); }
.map-media{ height:420px; }
.map-media iframe{ width:100%; height:100%; border:0; filter:grayscale(.15); }

/* =========================
   POOL BAND
========================= */
.pool-band{ position:relative; min-height:760px; display:flex; align-items:center; overflow:hidden; }
.pool-media{ position:absolute; inset:0; }
.pool-media img{ height:100%; }
.pool-media::after{ content:""; position:absolute; inset:0; background:linear-gradient(100deg, rgba(10,12,8,.82) 28%, rgba(10,12,8,.15) 78%); }
.pool-panel{ position:relative; z-index:2; width:min(var(--container),90%); margin:auto; max-width:520px; }
.pool-panel .eyebrow{ color:var(--gold-soft); }
.pool-panel h2{ color:var(--text-light); }
.pool-panel p{ color:var(--text-light-muted); margin-bottom:36px; }

/* =========================
   ROOMS
========================= */
.room-list{ display:flex; flex-direction:column; gap:2px; }
.room-row{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center;
  padding:56px 0; border-bottom:1px solid rgba(255,255,255,.08);
}
.room-row:first-child{ border-top:1px solid rgba(255,255,255,.08); }
.room-row.reverse .room-media{ order:2; }
.room-row.reverse .room-info{ order:1; }
.room-media{ height:440px; overflow:hidden; }
.room-media img{ height:100%; transition:transform .8s var(--ease); }
.room-row:hover .room-media img{ transform:scale(1.04); }
.room-no{ font-family:var(--display); font-style:italic; color:var(--gold); font-size:15px; letter-spacing:2px; }
.room-info h3{ font-size:34px; margin:12px 0 18px; }
.room-info p{ max-width:480px; margin-bottom:22px; }
.room-tags{ display:flex; flex-wrap:wrap; gap:10px; }
.room-tags li{
  font-size:11px; letter-spacing:1px; text-transform:uppercase; color:var(--gold-soft);
  border:1px solid var(--line); padding:8px 14px;
}

/* =========================
   SPACES
========================= */
.space-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.space-tile{ position:relative; height:460px; overflow:hidden; cursor:pointer; }
.space-tile img{ height:100%; transition:transform .7s var(--ease); }
.space-tile:hover img{ transform:scale(1.06); }
.space-caption{
  position:absolute; inset:auto 0 0 0; padding:30px;
  background:linear-gradient(transparent, rgba(0,0,0,.72)); color:#fff;
}
.space-caption h3{ color:#fff; font-size:22px; margin-bottom:4px; }
.space-caption p{ color:rgba(255,255,255,.75); font-size:13px; }

/* =========================
   GALLERY
========================= */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:220px; gap:16px; }
.g-item{ overflow:hidden; cursor:pointer; position:relative; }
.g-item img{ height:100%; transition:transform .7s var(--ease), filter .5s ease; filter:saturate(.92); }
.g-item::after{ content:"+"; position:absolute; inset:0; display:grid; place-items:center; font-family:var(--display); font-size:34px; color:#fff; background:rgba(10,12,8,0); opacity:0; transition:.45s ease; }
.g-item:hover img{ transform:scale(1.05); filter:saturate(1.1); }
.g-item:hover::after{ background:rgba(10,12,8,.32); opacity:1; }
.g-large{ grid-column:span 2; grid-row:span 2; }

/* =========================
   RESERVA
========================= */
.reserva{ text-align:center; }
.booking-form{
  text-align:left; margin:56px auto 0; background:var(--ink-2); border:1px solid rgba(198,161,91,.18);
  padding:56px; max-width:760px;
}
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:22px; }
.form-group label{
  display:block; margin-bottom:10px; font-size:11px; text-transform:uppercase; letter-spacing:2px; color:var(--gold-soft);
}
.form-group input, .form-group textarea{
  width:100%; padding:15px 16px; background:transparent; border:1px solid rgba(255,255,255,.18);
  color:var(--text-light); outline:none; transition:border-color .3s ease; font-size:14px;
}
.form-group input::placeholder, .form-group textarea::placeholder{ color:rgba(242,237,224,.35); }
.form-group input:focus, .form-group textarea:focus{ border-color:var(--gold); }
.form-group input[type="date"]{ color-scheme:dark; }
.booking-form .form-group:last-of-type{ margin-top:22px; margin-bottom:30px; }
.form-note{ margin-top:18px; font-size:13px; color:var(--gold-soft); min-height:1.2em; text-align:center; }
.whatsapp-link{
  display:inline-block; margin-top:26px; font-size:13px; letter-spacing:1px; color:var(--gold-soft);
  border-bottom:1px solid var(--line); padding-bottom:3px; transition:.3s ease;
}
.whatsapp-link:hover{ color:var(--gold-soft); border-color:var(--gold); }

/* =========================
   FOOTER
========================= */
.site-footer{ background:#0c0e09; color:var(--text-light); padding-top:90px; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 0.9fr 0.9fr 1fr; gap:48px; padding-bottom:70px; }
.footer-brand .brand-word{ font-size:26px; }
.footer-brand p{ color:var(--text-light-muted); font-size:13px; margin-top:16px; }
.footer-col h3{ font-family:var(--body); font-size:12px; text-transform:uppercase; letter-spacing:2px; color:var(--gold); margin-bottom:22px; }
.footer-col a{ display:block; margin-bottom:12px; color:var(--text-light-muted); font-size:14px; transition:.3s; }
.footer-col a:hover{ color:var(--gold-soft); }
.footer-col p{ color:var(--text-light-muted); font-size:14px; margin-bottom:10px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); padding:24px 0; text-align:center; }
.footer-bottom p{ font-size:12px; color:var(--text-light-muted); }

/* =========================
   LIGHTBOX
========================= */
.lightbox{
  position:fixed; inset:0; z-index:5000; background:rgba(10,12,8,.94);
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .4s ease, visibility .4s ease;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lb-stage{ max-width:min(1080px,92vw); max-height:84vh; display:flex; flex-direction:column; align-items:center; gap:16px; }
.lb-stage img{ width:auto; max-width:100%; max-height:78vh; object-fit:contain; box-shadow:0 30px 80px rgba(0,0,0,.5); }
.lb-stage figcaption{ color:var(--text-light-muted); font-family:var(--display); font-style:italic; font-size:17px; }
.lb-close{ position:absolute; top:22px; right:30px; background:none; border:0; color:var(--text-light); font-size:34px; line-height:1; cursor:pointer; opacity:.8; transition:.3s; }
.lb-close:hover{ opacity:1; transform:rotate(90deg); color:var(--gold-soft); }
.lb-nav{ position:absolute; top:50%; transform:translateY(-50%); background:none; border:0; color:var(--text-light); font-size:40px; width:60px; height:60px; cursor:pointer; opacity:.6; transition:.3s; }
.lb-nav:hover{ opacity:1; color:var(--gold-soft); }
.lb-prev{ left:2vw; }
.lb-next{ right:2vw; }
.lb-counter{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); color:var(--text-light-muted); font-size:12px; letter-spacing:3px; }

/* =========================
   REVEAL
========================= */
.reveal{ opacity:0; transform:translateY(36px); transition:opacity .9s ease, transform .9s ease; }
.reveal.active{ opacity:1; transform:none; }

/* entradas coreografadas: grupos de cartões chegam em cascata, não todos de uma vez */
.trait-row > div.reveal:nth-child(1){ transition-delay:0s; }
.trait-row > div.reveal:nth-child(2){ transition-delay:.09s; }
.trait-row > div.reveal:nth-child(3){ transition-delay:.18s; }

.space-grid .space-tile.reveal:nth-child(1){ transition-delay:0s; }
.space-grid .space-tile.reveal:nth-child(2){ transition-delay:.08s; }
.space-grid .space-tile.reveal:nth-child(3){ transition-delay:.16s; }
.space-grid .space-tile.reveal:nth-child(4){ transition-delay:.24s; }

.gallery-grid .g-item.reveal:nth-child(1){ transition-delay:0s; }
.gallery-grid .g-item.reveal:nth-child(2){ transition-delay:.05s; }
.gallery-grid .g-item.reveal:nth-child(3){ transition-delay:.1s; }
.gallery-grid .g-item.reveal:nth-child(4){ transition-delay:.15s; }
.gallery-grid .g-item.reveal:nth-child(5){ transition-delay:.2s; }

/* .city-card tem a sua própria transição de fundo (hover); redeclara tudo junto
   para o atraso do stagger nunca "vazar" para a resposta ao hover */
.city-grid .city-card.reveal:nth-child(1){ transition:opacity .9s ease, transform .9s ease, background .4s ease; }
.city-grid .city-card.reveal:nth-child(2){ transition:opacity .9s ease .06s, transform .9s ease .06s, background .4s ease; }
.city-grid .city-card.reveal:nth-child(3){ transition:opacity .9s ease .12s, transform .9s ease .12s, background .4s ease; }
.city-grid .city-card.reveal:nth-child(4){ transition:opacity .9s ease .18s, transform .9s ease .18s, background .4s ease; }
.city-grid .city-card.reveal:nth-child(5){ transition:opacity .9s ease .24s, transform .9s ease .24s, background .4s ease; }
.city-grid .city-card.reveal:nth-child(6){ transition:opacity .9s ease .3s, transform .9s ease .3s, background .4s ease; }

/* =========================
   A CIDADE
========================= */
.city-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(198,161,91,.2); border:1px solid rgba(198,161,91,.2); }
.city-card{ background:var(--ink); padding:42px 34px; transition:background .4s ease; }
.city-card:hover{ background:var(--ink-2); }
.city-no{ font-family:var(--display); font-style:italic; font-size:15px; letter-spacing:2px; color:var(--gold); }
.city-card h3{ font-size:26px; margin:10px 0 12px; color:var(--text-light); }
.city-card p{ font-size:14px; color:var(--text-light-muted); }

/* =========================
   CALENDAR (check-in / check-out)
========================= */
.form-dates{ position:relative; grid-column:1 / -1; }
.date-fields{ display:flex; align-items:stretch; gap:14px; }
.date-btn{
  flex:1; text-align:left; background:transparent; border:1px solid rgba(255,255,255,.18);
  padding:12px 16px; color:var(--text-light); cursor:pointer; transition:border-color .3s ease;
  display:flex; flex-direction:column; gap:4px;
}
.date-btn:hover, .date-btn.active{ border-color:var(--gold); }
.date-btn-label{ font-size:10px; text-transform:uppercase; letter-spacing:2px; color:var(--gold-soft); }
.date-btn-val{ font-size:15px; }
.date-arrow{ align-self:center; color:var(--gold); font-size:18px; }

.calendar{
  position:absolute; z-index:30; top:calc(100% + 10px); left:0;
  width:min(340px,100%); background:#181c12; border:1px solid rgba(198,161,91,.3);
  padding:20px; box-shadow:0 30px 60px rgba(0,0,0,.5);
}
.calendar[hidden]{ display:none; }
.cal-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.cal-title{ font-family:var(--display); font-size:20px; color:var(--text-light); }
.cal-nav{ background:none; border:1px solid rgba(198,161,91,.3); color:var(--gold-soft); width:32px; height:32px; cursor:pointer; font-size:18px; line-height:1; transition:.3s; }
.cal-nav:hover{ background:var(--gold); color:var(--ink); }
.cal-weekdays{ display:grid; grid-template-columns:repeat(7,1fr); gap:2px; margin-bottom:6px; }
.cal-weekdays span{ text-align:center; font-size:10px; letter-spacing:.5px; text-transform:uppercase; color:var(--text-light-muted); padding:4px 0; }
.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:2px; }
.cal-day{ aspect-ratio:1; display:grid; place-items:center; font-size:13px; color:var(--text-light); background:transparent; border:0; cursor:pointer; transition:background .2s ease, color .2s ease; }
.cal-day:hover:not(:disabled):not(.empty){ background:rgba(198,161,91,.22); }
.cal-day:disabled{ color:rgba(242,237,224,.22); cursor:default; }
.cal-day.empty{ cursor:default; }
.cal-day.in-range{ background:rgba(198,161,91,.16); }
.cal-day.selected{ background:var(--gold); color:var(--ink); font-weight:500; }
.cal-day.today{ outline:1px solid rgba(198,161,91,.5); outline-offset:-3px; }
.cal-foot{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:14px; padding-top:12px; border-top:1px solid rgba(255,255,255,.1); }
.cal-hint{ font-size:12px; color:var(--gold-soft); }
.cal-clear{ background:none; border:0; color:var(--text-light-muted); font-size:11px; text-transform:uppercase; letter-spacing:1px; cursor:pointer; }
.cal-clear:hover{ color:var(--gold-soft); }

/* =========================
   RESERVAS
========================= */
.booking-row{
  display:flex; align-items:center; justify-content:center; gap:70px;
  margin-top:56px; flex-wrap:wrap;
}
.booking-buttons{ display:flex; flex-direction:column; gap:18px; }
.booking-btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:300px; padding:20px 30px;
  background:var(--ink); border:1px solid var(--gold);
  color:var(--gold-soft); font-size:12px; letter-spacing:2px; text-transform:uppercase;
  transition:background .3s ease, color .3s ease, transform .3s ease;
}
.booking-btn:hover{ background:var(--gold); color:var(--ink); transform:translateY(-3px); }

.booking-contact{ display:flex; flex-direction:column; gap:10px; text-align:left; }
.booking-contact-label{ font-size:14px; color:var(--text-muted); max-width:220px; }
.booking-contact-email{
  font-family:var(--display); font-size:21px; color:var(--olive-deep);
  border-bottom:1px solid var(--line); padding-bottom:3px; align-self:flex-start;
  transition:color .3s ease, border-color .3s ease;
}
.booking-contact-email:hover{ color:var(--gold); border-color:var(--gold); }

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1100px){
  .two-col{ gap:50px; }
  .space-grid{ gap:20px; }
  .city-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:36px 48px; }
}
@media(max-width:900px){
  .nav-left, .nav-right{ display:none; }
  .header-inner{ display:flex; justify-content:space-between; }
  .header-actions{ gap:14px; }
  .menu-toggle{ display:flex; flex-direction:column; align-items:center; justify-content:center; }
  .brand{ justify-self:auto; }
  .brand-word{ font-size:18px; letter-spacing:2px; }
  .lang-menu{ right:-6px; }

  .panel{ padding:90px 0; }
  .two-col, .two-col.reverse{ grid-template-columns:1fr; gap:40px; }
  .two-col.reverse .col-media, .two-col.reverse .col-text{ order:0; }
  .col-media.tall{ height:420px; }

  .trait-row{ grid-template-columns:1fr; gap:24px; }
  .room-row, .room-row.reverse{ grid-template-columns:1fr; gap:26px; padding:40px 0; }
  .room-row.reverse .room-media, .room-row.reverse .room-info{ order:0; }
  .room-media{ height:320px; }
  .space-grid{ grid-template-columns:1fr; }
  .space-tile{ height:340px; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:200px; }
  .g-large{ grid-column:span 2; grid-row:span 1; }

  .form-grid{ grid-template-columns:1fr; }
  .booking-form{ padding:34px 22px; }
  .footer-grid{ grid-template-columns:1fr; gap:40px; }

  .booking-row{ flex-direction:column; gap:36px; }
  .booking-contact{ align-items:center; text-align:center; }
  .booking-contact-email{ align-self:center; }
}
@media(max-width:560px){
  .hero h1{ font-size:58px; }
  .hero-actions{ flex-direction:column; width:100%; }
  .hero-actions .btn{ width:100%; }
  .booking-btn{ min-width:0; width:100%; }
  .gallery-grid{ grid-template-columns:1fr; }
  .g-large{ grid-column:auto; }
  .distance-row{ gap:24px; }
  .city-grid{ grid-template-columns:1fr; }
  .calendar{ width:100%; }
  .lb-prev{ left:6px; } .lb-next{ right:6px; }
  .lb-nav{ width:46px; height:46px; font-size:30px; }
}

/* =========================
   ACCESSIBILITY
========================= */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold); outline-offset:3px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal{ opacity:1; transform:none; }
}
