/* =====================================================================
   SHALOM CITY HOTEL — Home
   Architecture réelle : façade blanche, grilles noires en fer forgé.
   Palette : blanc craie + noir fer + accents or & marron très mesurés.
   ===================================================================== */

:root {
  --ivory: #F4F1EA;
  --ivory-2: #EAE4D6;
  --offwhite: #FBFAF6;
  --chalk: #FFFFFC;
  --iron: #1A1A1A;
  --iron-2: #2A2A28;
  --iron-soft: #4A4A47;
  --gold: #B89231;
  --gold-deep: #8E6E1E;
  --gold-soft: #D4B760;
  --brown: #2C1A0E;
  --brown-2: #4A2F1E;
  --brown-soft: #6B4A33;
  --line: rgba(26, 26, 26, 0.14);
  --line-strong: rgba(26, 26, 26, 0.36);
  --whatsapp: #25D366;

  --serif: "Playfair Display", "EB Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --easing: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--iron);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

/* ───────── Type system ───────── */

.kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--iron-soft);
}

.kicker .num {
  color: var(--iron);
  font-variant-numeric: tabular-nums;
  margin-right: 14px;
  position: relative;
  padding-right: 14px;
}
.kicker .num::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 10px;
  background: var(--iron);
  opacity: .35;
}

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
}
.h-section em {
  font-style: italic;
  color: var(--iron);
  position: relative;
}

.lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--iron-soft);
  max-width: 52ch;
}

/* ───────── Layout primitives ───────── */

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .wrap { padding: 0 22px; }
}

section { position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
  padding-bottom: 56px;
}
.section-head .lede { margin-top: 14px; }

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ───────── Motif (grilles fer forgé) ───────── */

.motif {
  height: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='32' viewBox='0 0 64 32'><g fill='none' stroke='%231A1A1A' stroke-width='1.2'><path d='M0 16 L32 0 L64 16 L32 32 Z'/><path d='M32 0 L32 32 M0 16 L64 16'/><circle cx='32' cy='16' r='2' fill='%231A1A1A' stroke='none'/></g></svg>");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 64px 32px;
  opacity: 0.85;
}

/* ───────── Buttons ───────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border: 1px solid var(--iron);
  background: var(--iron);
  color: var(--chalk);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s var(--easing);
}
.btn:hover { background: transparent; color: var(--iron); }

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--iron);
}
.btn--gold:hover { background: var(--iron); color: var(--chalk); border-color: var(--iron); }

.btn--ghost {
  background: transparent;
  color: var(--iron);
  border: 1px solid var(--iron);
}
.btn--ghost:hover { background: var(--iron); color: var(--chalk); }

.btn .arr {
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .35s var(--easing);
}
.btn .arr::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arr { width: 30px; }

.lnk {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--iron);
  border-bottom: 1px solid var(--iron);
  padding-bottom: 6px;
  font-weight: 500;
  transition: color .25s var(--easing), border-color .25s, padding .25s;
}
.lnk:hover { color: var(--gold-deep); border-color: var(--gold-deep); padding-bottom: 8px; }

/* ───────── NAV ───────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition: background .4s var(--easing), padding .35s var(--easing), border-color .4s, color .4s;
  border-bottom: 1px solid transparent;
  color: var(--chalk);
}
.nav.is-scrolled {
  background: rgba(255, 255, 252, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 40px;
  border-bottom-color: var(--iron);
  color: var(--iron);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  justify-self: start;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  opacity: .85;
  transition: opacity .25s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: -2px; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--easing);
}
.nav-links a:hover::after { transform: scaleX(1); }

.brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand .brand-mark {
  font-size: 13px;
  letter-spacing: 0.4em;
  margin-bottom: 4px;
  font-family: var(--sans);
  text-transform: uppercase;
  font-weight: 500;
  opacity: .85;
}
.brand .brand-name { font-style: italic; font-weight: 500; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

.lang-toggle {
  display: flex;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid currentColor;
  overflow: hidden;
  opacity: .85;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 8px 12px;
  font-weight: 500;
  letter-spacing: inherit;
}
.lang-toggle button.active { background: var(--iron); color: var(--chalk); }

.nav-cta {
  background: var(--iron);
  color: var(--chalk);
  padding: 12px 22px;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--gold); color: var(--iron); }

.nav-burger {
  display: none;
  width: 28px; height: 28px;
  background: transparent; border: 0;
  position: relative;
}
.nav-burger span {
  position: absolute; left: 4px; right: 4px;
  height: 1px; background: currentColor;
  transition: transform .3s var(--easing), top .3s var(--easing);
}
.nav-burger span:nth-child(1) { top: 9px; }
.nav-burger span:nth-child(2) { top: 18px; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { top: 13px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { top: 13px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto 1fr; padding: 16px 22px; }
  .nav-links {
    position: fixed;
    top: 57px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--chalk);
    border-bottom: 1px solid var(--iron);
    padding: 0;
    color: var(--iron);
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform .4s var(--easing), visibility 0s linear .4s;
    z-index: 99;
  }
  .nav-links.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform .4s var(--easing), visibility 0s linear 0s;
  }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 18px 22px; opacity: 1; }
  .nav-links a::after { display: none; }
  .nav-burger { display: block; justify-self: start; }
  .lang-toggle { display: none; }
  .nav.is-scrolled { padding: 12px 22px; }
}

/* ───────── HERO ───────── */

.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 100vh;
  background: var(--ivory);
  color: var(--iron);
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F8F5EE 0%, #ECE5D4 100%);
}

.room-img img,
.dining-img img,
.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slides .hero-img {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slides .hero-img.is-active { opacity: 1; }
.hero-slides .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .5s ease, transform .5s ease;
}
.hero-dot.is-active {
  background: #fff;
  transform: scale(1.4);
}

/* Fallback motif visible when image hasn't been added yet */
.hero-media::before,
.room-img::before,
.dining-img::before,
.about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(26,26,26,0.08) 28px 29px),
    repeating-linear-gradient(-45deg, transparent 0 28px, rgba(26,26,26,0.08) 28px 29px);
  z-index: 0;
  pointer-events: none;
}
/* Hide fallback when image is actually loaded */
.hero-media:has(img.is-loaded)::before,
.room-img:has(img.is-loaded)::before,
.dining-img:has(img.is-loaded)::before,
.about-img:has(img.is-loaded)::before { display: none; }

.hero-media-overlay {
  position: absolute;
  inset: 0;
  padding: 140px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(26,26,26,0.35) 0%, rgba(26,26,26,0) 30%, rgba(26,26,26,0.55) 100%);
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.hero-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  align-self: flex-start;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(26,26,26,.35);
  backdrop-filter: blur(6px);
}

.hero-media-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hero-media-meta strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  margin-bottom: 6px;
}

.scroll-cue {
  position: absolute;
  left: 60px; bottom: 60px;
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, #fff 40%, #fff);
  overflow: hidden;
  z-index: 3;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: -2px; top: 0;
  width: 5px; height: 30px;
  background: #fff;
  animation: scrollCue 2.2s infinite var(--easing);
}
@keyframes scrollCue {
  0% { transform: translateY(-30px); opacity: 0; }
  20%, 70% { opacity: 1; }
  100% { transform: translateY(80px); opacity: 0; }
}

.hero-panel {
  background: var(--chalk);
  color: var(--iron);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 56px 40px;
  position: relative;
  border-left: 1px solid var(--iron);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--iron-soft);
  margin-bottom: 20px;
}
.hero-eyebrow .star {
  color: var(--iron);
  letter-spacing: 0.4em;
  font-size: 10px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 400;
}
.hero h1 .line2 {
  display: block;
  font-style: italic;
  color: var(--iron);
  position: relative;
}
.hero h1 .line2::after {
  content: "";
  display: inline-block;
  width: 80px; height: 1px;
  background: var(--iron);
  vertical-align: middle;
  margin-left: 18px;
  margin-bottom: 10px;
}
.hero h1 .line3 { display: block; }

.hero-sub {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 36ch;
  color: var(--iron-soft);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--iron);
}
.hero-meta div { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--iron-soft); }
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--iron);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}

/* Booking widget */
.booking {
  margin-top: 36px;
  background: var(--ivory);
  border: 1px solid var(--iron);
  padding: 20px 20px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  position: relative;
}
.booking::before {
  content: "";
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border: 1px solid var(--iron);
  pointer-events: none;
  opacity: .25;
}
.booking-tag {
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--iron);
  font-weight: 600;
}
.booking-field { display: flex; flex-direction: column; gap: 4px; }
.booking-field label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--iron-soft);
  font-weight: 500;
}
.booking-field input, .booking-field select {
  border: 0;
  background: transparent;
  font: inherit;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--iron);
  padding: 4px 0 6px;
  border-bottom: 1px solid var(--iron);
  outline: none;
}
.booking-field input:focus, .booking-field select:focus {
  border-bottom-color: var(--gold-deep);
}
.booking-submit {
  grid-column: 1 / -1;
  background: var(--iron);
  color: var(--chalk);
  border: 0;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  transition: background .3s, color .3s;
}
.booking-submit:hover { background: var(--gold); color: var(--iron); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 55vh; }
  .hero-media-overlay { padding: 80px 24px 32px; }
  .scroll-cue { display: none; }
  .hero-panel { padding: 48px 24px 40px; border-left: 0; border-top: 1px solid var(--iron); }
  .hero h1 { font-size: clamp(34px, 9vw, 60px); }
  .hero-sub { max-width: 100%; font-size: 15px; }
  .booking { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-media { min-height: 50vh; }
  .hero-media-overlay { padding: 64px 20px 24px; }
  .hero h1 { font-size: clamp(30px, 10vw, 48px); line-height: 1.02; }
  .hero h1 .line2::after { width: 40px; margin-left: 10px; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-sub { margin-top: 18px; font-size: 14px; }
  .hero-meta { margin-top: 24px; padding-top: 18px; gap: 8px; }
  .hero-meta strong { font-size: 18px; }
  .booking { grid-template-columns: 1fr; gap: 10px 0; }
  .hero-panel { padding: 36px 20px 32px; }
  .hero-tag { font-size: 9px; padding: 6px 10px; }
  .hero-media-meta { font-size: 10px; }
  .hero-media-meta strong { font-size: 17px; }
}

/* ───────── INTRO ───────── */

.intro {
  padding: 140px 0 110px;
  background: var(--chalk);
  border-top: 1px solid var(--iron);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.intro-meta {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.intro-meta .pill {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 8px 14px;
  border: 1px solid var(--iron);
  font-weight: 500;
}
.intro-meta .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brown-2);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 22ch;
  line-height: 1.4;
}
.intro-body p {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--brown);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.intro-body p em {
  color: var(--iron);
  font-style: italic;
  border-bottom: 2px solid var(--iron);
  padding-bottom: 2px;
}
.intro-body .body-detail {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown-2);
  margin-top: 36px;
  max-width: 56ch;
}

@media (max-width: 900px) {
  .intro { padding: 80px 0 60px; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-meta { position: static; }
  .intro-body p { font-size: 22px; }
}

/* ───────── ROOMS ───────── */

.rooms {
  padding: 120px 0;
  background: var(--ivory);
  border-top: 1px solid var(--iron);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px 32px;
  margin-top: 8px;
}
.room { display: flex; flex-direction: column; }

.room--a { grid-column: span 7; }
.room--b { grid-column: span 5; margin-top: 80px; }
.room--c { grid-column: span 5; }
.room--d { grid-column: span 7; margin-top: 60px; }

.room-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #FBFAF6 0%, #ECE5D4 100%);
  border: 1px solid var(--iron);
  overflow: hidden;
  margin-bottom: 22px;
}
.room--a .room-img, .room--d .room-img { aspect-ratio: 16/10; }

.room-img .ph-tag {
  position: absolute;
  top: 18px; left: 20px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--iron);
  background: var(--chalk);
  padding: 6px 10px;
  border: 1px solid var(--iron);
}
.room-img .ph-num {
  position: absolute;
  bottom: 18px; right: 20px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.room-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iron-soft);
}

.room h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.room h3 em { font-style: italic; color: var(--iron); }

.room-desc {
  font-size: 14.5px;
  color: var(--iron-soft);
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 48ch;
}

.room-amen {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-amen li {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--iron);
  color: var(--iron);
}

.room-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--iron);
  margin-top: auto;
}
.room-price {
  font-family: var(--serif);
  font-size: 24px;
}
.room-price em { font-style: italic; color: var(--iron); }
.room-price .per {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iron-soft);
  margin-left: 8px;
}

@media (max-width: 900px) {
  .rooms { padding: 70px 0; }
  .room--a, .room--b, .room--c, .room--d {
    grid-column: span 12;
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .room-price { font-size: 18px; }
  .room-price .per { white-space: nowrap; }
}

/* ───────── OFFER ───────── */

.offer {
  padding: 100px 0;
  background: var(--iron);
  color: var(--chalk);
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23FFFFFF' stroke-width='.6' opacity='.20'><path d='M0 40 L40 0 L80 40 L40 80 Z'/><path d='M40 0 L40 80 M0 40 L80 40'/><circle cx='40' cy='40' r='1.5' fill='%23FFFFFF' stroke='none'/></g></svg>");
  background-size: 80px 80px;
  opacity: .55;
  pointer-events: none;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.offer-tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.offer h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.offer h2 em { font-style: italic; color: var(--gold); }
.offer p {
  color: rgba(255,255,255, 0.78);
  max-width: 44ch;
  margin: 0 0 32px;
}
.offer-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.offer-price .now {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  color: var(--gold);
}
.offer-price .was {
  text-decoration: line-through;
  color: rgba(255,255,255,.4);
  font-size: 18px;
}
.offer-price .save {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--iron);
  padding: 5px 10px;
  font-weight: 600;
  margin-left: 6px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cd-cell {
  text-align: center;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 24px 8px 18px;
  background: rgba(255,255,255,0.04);
}
.cd-num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--chalk);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.cd-lbl {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .offer-grid { grid-template-columns: 1fr; gap: 40px; }
  .offer { padding: 60px 0; }
}

/* ───────── DINING ───────── */

.dining {
  padding: 130px 0;
  background: var(--chalk);
  border-top: 1px solid var(--iron);
}
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.dining-img {
  aspect-ratio: 4 / 5;
  position: relative;
  border: 1px solid var(--iron);
  background: linear-gradient(180deg, #FBFAF6, #E5DEC8);
  overflow: hidden;
}
.dining-img .ph-tag {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--iron);
  background: var(--chalk);
  padding: 6px 10px;
  border: 1px solid var(--iron);
}
.dining-img .ph-num {
  position: absolute;
  bottom: 24px; right: 24px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  color: rgba(255,255,255,.85);
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
  line-height: 1;
}
.dining-body h2 { font-style: italic; }

.menu-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--iron);
}
.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu-item .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--iron);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}
.menu-item .name {
  font-family: var(--serif);
  font-size: 19px;
}
.menu-item .desc {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--iron-soft);
  margin-top: 4px;
}
.menu-item .price {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  white-space: nowrap;
}

.hours {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--iron-soft);
}
.hours strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--iron);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .dining { padding: 70px 0; }
  .dining-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ───────── SERVICES ───────── */

.services {
  padding: 130px 0;
  background: var(--ivory);
  border-top: 1px solid var(--iron);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--iron);
  border-left: 1px solid var(--iron);
}
.svc {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--iron);
  border-bottom: 1px solid var(--iron);
  position: relative;
  transition: background .35s;
}
.svc:hover { background: var(--chalk); }
.svc-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--iron);
  font-size: 14px;
  margin-bottom: 28px;
  font-variant-numeric: tabular-nums;
}
.svc-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  color: var(--iron);
}
.svc-icon svg { width: 100%; height: 100%; }
.svc h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
}
.svc p {
  font-size: 13.5px;
  color: var(--iron-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .services { padding: 70px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ───────── SECURITY ───────── */

.security {
  padding: 90px 0;
  background: var(--chalk);
  border-top: 1px solid var(--iron);
}
.security-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}
.security-head h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.security-head p {
  margin: 0;
  font-size: 14px;
  color: var(--iron-soft);
  max-width: 50ch;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--iron);
  border: 1px solid var(--iron);
}
.sec-cell {
  background: var(--chalk);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sec-icon {
  width: 28px;
  height: 28px;
  color: var(--iron);
}
.sec-icon svg { width: 100%; height: 100%; }
.sec-cell h5 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  margin: 0;
}
.sec-cell p {
  font-size: 12.5px;
  color: var(--iron-soft);
  line-height: 1.55;
  margin: 0;
}
.security-caption {
  margin-top: 42px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--iron-soft);
}
.security-caption::before, .security-caption::after {
  content: "—";
  color: var(--iron);
  margin: 0 14px;
  font-style: normal;
}

@media (max-width: 900px) {
  .security-head { grid-template-columns: 1fr; gap: 20px; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ───────── REVIEWS ───────── */

.reviews {
  padding: 120px 0;
  background: var(--iron);
  color: var(--chalk);
}
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}
.reviews-head h2 { color: var(--chalk); margin: 0; }
.reviews-head h2 em { color: var(--gold); }
.score { text-align: right; }
.score .stars { color: var(--gold); letter-spacing: 0.2em; font-size: 14px; }
.score .num {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  color: var(--chalk);
  display: block;
  line-height: 1;
  margin: 6px 0;
}
.score .lbl {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review .stars { color: var(--gold); font-size: 12px; letter-spacing: 0.18em; }
.review blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  color: var(--chalk);
  flex: 1;
}
.review blockquote::before { content: "“ "; color: var(--gold); font-size: 28px; vertical-align: -6px; }
.review blockquote::after { content: " ”"; color: var(--gold); font-size: 28px; vertical-align: -6px; }
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.review-meta strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
  color: var(--chalk);
}
.review-meta .src { color: var(--gold); }

@media (max-width: 900px) {
  .reviews { padding: 70px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { grid-template-columns: 1fr; }
  .score { text-align: left; }
}

/* ───────── ABOUT ───────── */

.about {
  padding: 130px 0;
  background: var(--ivory);
  border-top: 1px solid var(--iron);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  aspect-ratio: 5/6;
  position: relative;
  border: 1px solid var(--iron);
  background: linear-gradient(180deg, #FBFAF6, #E5DEC8);
  overflow: hidden;
}
.about-img .ph-tag {
  position: absolute; top: 24px; left: 24px;
  z-index: 2;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--iron); background: var(--chalk); padding: 6px 10px; border: 1px solid var(--iron);
}
.about-img .ph-meta {
  position: absolute; bottom: 24px; left: 24px;
  z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.about-body h2 em { font-style: italic; color: var(--iron); }
.about-body p { color: var(--iron-soft); font-size: 15.5px; line-height: 1.75; max-width: 56ch; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 32px;
  padding: 28px 0;
  border-top: 1px solid var(--iron);
  border-bottom: 1px solid var(--iron);
}
.facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--iron);
  font-style: italic;
  font-weight: 400;
}
.facts span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--iron-soft);
  display: block;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .about { padding: 70px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ───────── CONTACT ───────── */

.contact {
  padding: 130px 0 100px;
  background: var(--chalk);
  border-top: 1px solid var(--iron);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block { display: flex; flex-direction: column; gap: 6px; }
.contact-block .lbl { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--iron); font-weight: 500; }
.contact-block .val { font-family: var(--serif); font-size: 22px; }
.contact-block .val a { border-bottom: 1px solid var(--iron); transition: border-color .3s; }
.contact-block .val a:hover { border-bottom-color: var(--gold-deep); }
.contact-block .sub { font-size: 13px; color: var(--iron-soft); }

.map-wrap {
  position: relative;
  border: 1px solid var(--iron);
  overflow: hidden;
}
#hotel-map { width: 100%; height: 320px; }
.map-tag {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--iron); background: var(--chalk); padding: 6px 10px; border: 1px solid var(--iron);
  z-index: 1000; pointer-events: none;
}

/* Leaflet custom markers */
.lf-hotel, .lf-poi {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--chalk);
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.lf-hotel { background: var(--iron); width: 36px !important; height: 36px !important; }
.lf-hotel span { font-family: var(--serif); font-style: italic; color: var(--chalk); font-size: 15px; line-height: 1; }
.lf-poi { background: var(--gold); width: 28px !important; height: 28px !important; }
.lf-poi span { font-family: var(--sans); font-weight: 600; color: var(--chalk); font-size: 11px; line-height: 1; }

/* POI table */
.poi-list { margin-top: 16px; }
.poi-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.poi-table thead th {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px;
  font-weight: 500; color: var(--iron-soft);
  padding: 0 8px 10px 0; border-bottom: 1px solid var(--line); text-align: left;
}
.poi-table tbody td { padding: 10px 8px 10px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.poi-table tbody tr:last-child td { border-bottom: none; }
.poi-table td:first-child { font-family: var(--serif); font-style: italic; color: var(--iron-soft); width: 20px; }

.form-feedback { margin-top: 12px; font-size: 13px; color: var(--iron-soft); min-height: 18px; }
.form-row { display: flex; gap: 20px; }
.form-row > * { flex: 1; }
.field { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; }
.field label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--iron-soft); font-weight: 500; }
.field input, .field textarea, .field select {
  border: 0;
  border-bottom: 1px solid var(--iron);
  background: transparent;
  font: inherit;
  padding: 8px 0;
  font-size: 16px;
  color: var(--iron);
  outline: none;
  font-family: var(--serif);
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--gold-deep); }
.field textarea { min-height: 90px; resize: vertical; }

@media (max-width: 900px) {
  .contact { padding: 70px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { flex-direction: column; gap: 0; }
}

/* ───────── FOOTER ───────── */

.footer {
  background: var(--iron);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.footer-brand .brand { color: var(--chalk); align-items: flex-start; }
.footer-brand p {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.7;
  max-width: 32ch;
}
.footer h6 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--chalk);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 13.5px; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s;
}
.footer-social a:hover { background: var(--chalk); color: var(--iron); border-color: var(--chalk); }
.footer-social svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ───────── WHATSAPP FAB ───────── */

.wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wa-tip {
  background: var(--iron);
  color: var(--chalk);
  padding: 12px 18px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  border: 1px solid var(--iron);
  font-family: var(--serif);
  font-style: italic;
}
.wa:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  border: 0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform .3s var(--easing), box-shadow .3s;
}
.wa-btn:hover { transform: translateY(-2px) scale(1.04); }
.wa-btn svg { width: 30px; height: 30px; }

@media (max-width: 768px) {
  .wa-tip { display: none; }
  .wa-btn { width: 56px; height: 56px; }
  .wa-btn svg { width: 28px; height: 28px; }
}

/* ───────── COOKIE BANNER ───────── */

.cookie {
  position: fixed;
  left: 24px; bottom: 24px;
  z-index: 80;
  max-width: 420px;
  background: var(--chalk);
  border: 1px solid var(--iron);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(44,26,14,0.18);
  transform: translateY(140%);
  transition: transform .5s var(--easing);
}
.cookie.is-visible { transform: translateY(0); }
.cookie h6 {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
}
.cookie p { margin: 0; font-size: 13px; color: var(--iron-soft); line-height: 1.55; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { flex: 1; padding: 12px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.cookie-actions .accept { background: var(--iron); color: var(--chalk); border: 0; }
.cookie-actions .decline { background: transparent; color: var(--iron); border: 1px solid var(--iron); }

@media (max-width: 600px) {
  .cookie { left: 12px; right: 12px; bottom: 90px; max-width: none; }
}

/* ───────── MOBILE EXTRA (≤ 480px) ───────── */

@media (max-width: 480px) {
  /* Offer section */
  .offer-price .now { font-size: 32px; }
  .countdown { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cd-num { font-size: 36px; }

  /* Section heads */
  .section-head { padding-bottom: 32px; }
  .h-section { font-size: clamp(28px, 8vw, 40px); }

  /* Intro */
  .intro { padding: 60px 0 48px; }
  .intro-body p { font-size: 20px; }

  /* Rooms */
  .rooms { padding: 56px 0; }
  .room h3 { font-size: 26px; }

  /* Services — 1 column on very small */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc { padding: 24px 18px 20px; }
  .svc h4 { font-size: 18px; }

  /* Security */
  .security-grid { grid-template-columns: 1fr 1fr; }
  .security-head { margin-bottom: 32px; }
  .security-head h3 { font-size: 26px; }

  /* Reviews */
  .reviews { padding: 56px 0; }
  .review blockquote { font-size: 16px; }

  /* About */
  .about { padding: 56px 0; }
  .facts strong { font-size: 28px; }

  /* Contact */
  .contact { padding: 56px 0 48px; }
  .contact-block .val { font-size: 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 56px 0 24px; }

  /* Menu items */
  .menu-item { gap: 12px; }
  .menu-item .name { font-size: 16px; }

  /* Nav CTA — smaller on tiny screens */
  .nav-cta { padding: 10px 14px; font-size: 10px; }
  .brand { font-size: 18px; }
  .brand .brand-mark { font-size: 11px; }
}

/* ───────── REVEAL ANIM ───────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--easing), transform .9s var(--easing);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .scroll-cue::after, .map-pin { animation: none; }
}
