/* ═══════════════════════════════════════════════════════════
   Holiday Villa – Hail | Brand Design System
   Source: Holiday Villa Brand Expression Guidelines
   Colors: #0D4E98 · #FDFBF5 · #338962 · #E72429
   Typeface: Tajawal
   ═══════════════════════════════════════════════════════════ */

:root {
  --hv-blue: #0D4E98;
  --hv-off-white: #FDFBF5;
  --hv-green: #338962;
  --hv-red: #E72429;

  --color-bg: var(--hv-off-white);
  --color-surface: #FFFFFF;
  --color-text: #243548;
  --color-text-muted: #5A7088;
  --color-text-soft: #8A9BB0;
  --color-heading: var(--hv-blue);
  --color-border: rgba(13, 78, 152, 0.12);
  --color-border-strong: rgba(13, 78, 152, 0.22);

  --font: 'Tajawal', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 28px rgba(13, 78, 152, 0.08);
  --shadow-card: 0 4px 20px rgba(13, 78, 152, 0.06);
  --section-y: clamp(64px, 8vw, 112px);
  --logo-clear: clamp(16px, 3vw, 28px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: rgba(13, 78, 152, 0.18); color: var(--hv-blue); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--hv-off-white); }
::-webkit-scrollbar-thumb { background: var(--hv-blue); border-radius: 8px; }

.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 24px); }
.center { text-align: center; }

/* ── Pattern helpers (from brand guidelines) ── */
.pattern-light,
.section-pattern-light { position: relative; isolation: isolate; }
.pattern-light::before,
.section-pattern-light::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background: url('pattern-light.jpg') repeat;
  background-size: 420px auto;
}
.pattern-blue,
.section-blue { position: relative; isolation: isolate; background: var(--hv-blue); color: var(--hv-off-white); }
.pattern-blue::before,
.section-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background: url('pattern-blue.jpg') repeat;
  background-size: 420px auto;
}
.pattern-light > *,
.section-pattern-light > *,
.pattern-blue > *,
.section-blue > * { position: relative; z-index: 1; }

/* ── Typography ── */
.gold-text { color: var(--hv-blue); background: none; -webkit-text-fill-color: unset; animation: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--hv-green);
  text-transform: uppercase;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--hv-green);
  opacity: 0.55;
}

.sec-title {
  font-size: clamp(1.75rem, 4.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-heading);
  margin-block: 12px 10px;
}
.section-blue .sec-title,
.section-blue .gold-text { color: var(--hv-off-white); }

.sec-sub {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 300;
  max-width: 620px;
  margin-inline: auto;
}
.section-blue .sec-sub { color: rgba(253, 251, 245, 0.88); }

section {
  position: relative;
  padding-block: var(--section-y);
  scroll-margin-top: 20px;
}

.divider {
  height: 1px;
  border: 0;
  background: var(--color-border);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 500;
  font-size: 1.02rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-gold {
  background: var(--hv-blue);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-gold::after { display: none; }
.btn-gold:hover { background: #0b437f; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--hv-blue);
  border: 1.5px solid var(--hv-blue);
}
.btn-ghost:hover { background: rgba(13, 78, 152, 0.06); }
.section-blue .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.65); }
.section-blue .btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-wide { width: 100%; }
.btn .ico { width: 20px; height: 20px; flex: none; }

#progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  background: var(--hv-blue);
}

/* ── Topbar (accent: green dot ~5%) ── */
.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  background: var(--hv-blue);
  color: var(--hv-off-white);
  text-align: center;
}
.topbar .flagdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hv-green);
  flex: none;
}
.topbar b { font-weight: 700; }

/* ── Saudi Riyal symbol ── */
.sar {
  display: inline-block;
  width: 0.85em;
  height: 0.95em;
  vertical-align: -0.12em;
  margin-inline: 0.05em;
  background-color: currentColor;
  -webkit-mask: url('sar-symbol.svg') center / contain no-repeat;
  mask: url('sar-symbol.svg') center / contain no-repeat;
}
.price-row .sar { width: 1.15em; height: 1.25em; vertical-align: -0.18em; }
.sticky-price .sar { width: 0.9em; height: 1em; }

/* ── Site header + logo clear space ── */
.site-header {
  padding-block: var(--logo-clear);
  background: var(--hv-off-white);
  border-bottom: 1px solid var(--color-border);
  overflow: visible;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.brand-logo {
  width: min(420px, 90vw);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.lang-switch {
  position: absolute;
  inset-inline-start: 0;
  display: flex;
  gap: 4px;
}
.lang-btn {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.lang-btn.active {
  background: var(--hv-blue);
  color: #fff;
  border-color: var(--hv-blue);
}
.lang-btn:hover:not(.active) { border-color: var(--hv-blue); color: var(--hv-blue); }

/* ── Hero ── */
.hero {
  padding-block: clamp(24px, 4vw, 40px) clamp(48px, 7vw, 72px);
  background: var(--hv-off-white);
}
.hero-banner {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: clamp(20px, 4vw, 28px);
  aspect-ratio: 16 / 7;
  max-height: 380px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-grid {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  align-items: start;
}
.hero-copy { order: 1; }
.hero-visual { order: 2; }
.hero-offer { order: 3; }
.hero-facts { order: 4; }

.hero-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-nat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  border: 1px solid rgba(51, 137, 98, 0.35);
  color: var(--hv-green);
  font-size: 0.84rem;
  font-weight: 500;
}
.sa-flag {
  width: 22px;
  height: 15px;
  flex: none;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

h1.hero-title {
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hv-blue);
  margin-block: 16px 8px;
  text-shadow: none;
}
.hero-title small {
  display: block;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  font-weight: 500;
  color: var(--color-text);
  margin-top: 8px;
}
.hero-lead {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-block: 12px 0;
  text-shadow: none;
}

/* Price card */
.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 28px);
  box-shadow: var(--shadow-card);
}
.price-card::before { display: none; }
.price-row { display: flex; align-items: flex-end; gap: 10px; justify-content: center; }
.price-num {
  font-size: clamp(3.2rem, 12vw, 5.5rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--hv-blue);
  filter: none;
}
.price-cur { font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 700; color: var(--hv-blue); padding-bottom: 8px; }
.price-per { text-align: center; color: var(--color-text-muted); font-weight: 500; font-size: 0.98rem; margin-top: 8px; }

.price-plus {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(13, 78, 152, 0.05);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: none;
}
.price-plus .ico { width: 26px; height: 26px; flex: none; color: var(--hv-blue); margin-top: 2px; }
.price-plus p { font-weight: 500; font-size: 0.96rem; line-height: 1.55; color: var(--color-text); }
.price-plus b { color: var(--hv-blue); font-weight: 700; }
.price-plus small { display: block; font-size: 0.82rem; font-weight: 400; color: var(--color-text-muted); margin-top: 4px; }

.kids-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(51, 137, 98, 0.07);
  border: 1px solid rgba(51, 137, 98, 0.2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--hv-green);
}
.kids-note svg { width: 17px; height: 17px; flex: none; margin-top: 3px; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.chip .ico { width: 15px; height: 15px; color: var(--hv-blue); }
.chip.hot {
  background: rgba(231, 36, 41, 0.06);
  border-color: rgba(231, 36, 41, 0.35);
  color: var(--hv-red);
}
.chip.hot .ico { color: var(--hv-red); }

.countdown { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.cd-box {
  min-width: 68px;
  padding: 10px 8px;
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.cd-box b { display: block; font-size: 1.45rem; font-weight: 700; color: var(--hv-blue); font-variant-numeric: tabular-nums; }
.cd-box span { font-size: 0.72rem; color: var(--color-text-soft); font-weight: 500; }
.cd-live {
  min-width: auto;
  padding: 14px 24px;
  border-color: rgba(51, 137, 98, 0.35);
  background: rgba(51, 137, 98, 0.08);
}
.cd-live b { font-size: 1.02rem; color: var(--hv-green); font-weight: 700; }

/* ── Ticker ── */
.ticker {
  border-block: 1px solid rgba(255,255,255,0.12);
  background: var(--hv-blue);
  overflow: hidden;
  padding-block: 14px;
}
.ticker-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-inline: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(253, 251, 245, 0.92);
  white-space: nowrap;
}
.ticker-track span::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hv-green);
  flex: none;
  opacity: 0.85;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ── Cards & stats ── */
.cards { display: grid; gap: 18px; margin-top: 44px; }
.card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, transform 0.25s;
}
.card::before { display: none; }
.card:hover { transform: translateY(-3px); border-color: var(--color-border-strong); }
.card-ico {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  background: rgba(13, 78, 152, 0.07);
  border: 1px solid var(--color-border);
  color: var(--hv-blue);
}
.card-ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; font-weight: 700; color: var(--hv-blue); margin-bottom: 8px; }
.card p { color: var(--color-text-muted); font-size: 0.96rem; font-weight: 300; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 44px;
}
.stat {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 14px;
  text-align: center;
}
.stat b { display: block; font-size: clamp(1.6rem, 4.5vw, 2.2rem); font-weight: 700; color: var(--hv-blue); }
.stat span { font-size: 0.84rem; color: var(--color-text-muted); font-weight: 500; }

/* ── Menu ── */
#menu { background: var(--hv-off-white); }
.menu-grid { display: grid; gap: 14px; margin-top: 16px; grid-template-columns: repeat(2, 1fr); }
.dish {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 0.3s;
}
.dish img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: none; }
.dish::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 78, 152, 0.82) 0%, transparent 55%);
}
.dish figcaption { position: absolute; bottom: 0; right: 0; left: 0; z-index: 2; padding: 16px 18px; color: #fff; }
.dish figcaption b { display: block; font-size: 1.05rem; font-weight: 700; }
.dish figcaption i { display: block; font-style: normal; font-size: 0.82rem; font-weight: 400; opacity: 0.9; }
.dish:hover { transform: translateY(-3px); }
.dish:hover img { transform: scale(1.04); }

.dish-feature {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 40px;
  aspect-ratio: 16/10;
  border: 1px solid var(--color-border);
}
.dish-feature img { width: 100%; height: 100%; object-fit: cover; }
.dish-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 78, 152, 0.85) 0%, transparent 55%);
}
.dish-feature figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: clamp(18px, 3vw, 28px);
  color: #fff;
  text-align: right;
}
.dish-feature figcaption b { display: block; font-size: clamp(1.15rem, 3vw, 1.6rem); font-weight: 700; }
.dish-feature figcaption i { font-style: normal; font-weight: 400; font-size: 0.92rem; opacity: 0.92; }

.menu-note {
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  background: rgba(13, 78, 152, 0.05);
  border: 1px solid var(--color-border);
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--hv-blue);
}

/* ── Draw section (blue + pattern) ── */
.draw-wrap { display: grid; gap: 32px; margin-top: 44px; align-items: start; }
.section-blue .eyebrow { color: rgba(253, 251, 245, 0.85); }
.section-blue .eyebrow::before,
.section-blue .eyebrow::after { background: rgba(253, 251, 245, 0.45); }

.prize {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.prize-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: rgba(255,255,255,0.12);
}
.prize-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.prize > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.prize::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 47, 92, 0.88) 0%, transparent 55%);
}
.prize-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--hv-off-white);
  color: var(--hv-blue);
}
.prize-body { position: absolute; bottom: 0; right: 0; left: 0; z-index: 2; padding: 22px; color: #fff; }
.prize-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.prize-body p { font-size: 0.9rem; font-weight: 300; opacity: 0.92; }

.steps { display: grid; gap: 12px; }
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s;
}
.step:hover { background: rgba(255, 255, 255, 0.12); transform: none; }
.step-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--hv-blue);
  background: var(--hv-off-white);
}
.step h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 3px; color: #fff; }
.step p { color: rgba(253, 251, 245, 0.85); font-size: 0.92rem; font-weight: 300; }
.draw-fine { margin-top: 18px; font-size: 0.86rem; color: rgba(253, 251, 245, 0.75); display: flex; gap: 8px; align-items: flex-start; }
.draw-fine .ico { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--hv-off-white); }

/* ── Venue ── */
.venue { display: grid; gap: 12px; margin-top: 40px; grid-template-columns: repeat(2, 1fr); }
.vitem {
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color 0.25s;
}
.vitem:hover { border-color: var(--color-border-strong); background: var(--color-surface); }
.vitem svg { width: 24px; height: 24px; color: var(--hv-blue); margin-bottom: 8px; }
.vitem b { display: block; font-size: 0.96rem; font-weight: 700; color: var(--hv-blue); margin-bottom: 2px; }
.vitem span { font-size: 0.84rem; color: var(--color-text-muted); font-weight: 300; }

/* ── Booking form ── */
.book::before { display: none; }
.book { background: var(--hv-off-white); }

.form-note {
  margin-top: 9px;
  font-size: 0.85rem;
  color: var(--color-text-soft);
  font-weight: 500;
}
.form-optional { color: var(--color-text-soft); font-weight: 400; }
.noscript-note { margin-top: 20px; color: var(--hv-blue); font-weight: 500; }
.cta-block { margin-top: 38px; }
.venue-feature { margin-top: 36px; }
.venue-cta { margin-top: 32px; }
.foot-tagline { margin-top: 10px; color: rgba(253, 251, 245, 0.75); font-weight: 300; }
.form-card {
  max-width: 640px;
  margin: 36px auto 0;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.form-card::before { display: none; }
.fgroup { margin-bottom: 16px; }
.fgroup label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--hv-blue); margin-bottom: 7px; }
.fgroup label i { font-style: normal; font-weight: 400; color: var(--color-text-muted); }
.fgroup input,
.fgroup textarea,
.fgroup select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--hv-off-white);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-weight: 400;
}
.fgroup input::placeholder,
.fgroup textarea::placeholder { color: var(--color-text-soft); }
.fgroup input:focus,
.fgroup textarea:focus,
.fgroup select:focus {
  outline: 0;
  border-color: var(--hv-blue);
  box-shadow: 0 0 0 3px rgba(13, 78, 152, 0.12);
}
.fgroup textarea { resize: vertical; min-height: 84px; }
.fgroup input[type=date] { color-scheme: light; }
.frow { display: grid; gap: 16px; }

.stepper { display: flex; align-items: center; gap: 8px; }
.stepper button {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: rgba(13, 78, 152, 0.07);
  border: 1px solid var(--color-border);
  color: var(--hv-blue);
  font-size: 1.4rem;
  font-weight: 700;
  transition: background 0.2s;
}
.stepper button:hover { background: rgba(13, 78, 152, 0.12); }
.stepper input { text-align: center; font-weight: 700; font-size: 1.1rem; }

.err { display: none; color: var(--hv-red); font-size: 0.84rem; font-weight: 500; margin-top: 6px; }
.fgroup.bad input { border-color: var(--hv-red); }
.fgroup.bad .err { display: block; }

.form-fine { margin-top: 14px; text-align: center; font-size: 0.84rem; color: var(--color-text-soft); font-weight: 300; }
.or { display: flex; align-items: center; gap: 12px; margin-block: 18px; color: var(--color-text-soft); font-size: 0.84rem; font-weight: 500; }
.or::before, .or::after { content: ''; flex: 1; height: 1px; background: var(--color-border); }

.success { display: none; text-align: center; padding-block: 16px; }
.success.on { display: block; }
.tick {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(51, 137, 98, 0.1);
  border: 1px solid rgba(51, 137, 98, 0.3);
}
.tick svg { width: 36px; height: 36px; color: var(--hv-green); }
.tick svg path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw 0.6s 0.2s forwards ease-out; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success h3 { font-size: 1.5rem; font-weight: 700; color: var(--hv-blue); margin-bottom: 8px; }
.success p { color: var(--color-text-muted); max-width: 420px; margin: 0 auto 18px; font-weight: 300; }
.ref-box {
  display: inline-block;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: rgba(13, 78, 152, 0.05);
  border: 1px dashed var(--color-border-strong);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 20px !important;
}
.ref-box b { color: var(--hv-blue); font-weight: 700; }

/* ── Terms & FAQ ── */
.terms { background: var(--color-surface); }
.terms ul { list-style: none; max-width: 760px; margin: 32px auto 0; display: grid; gap: 10px; }
.terms li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--hv-off-white);
  border: 1px solid var(--color-border);
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--color-text);
}
.terms li svg { width: 16px; height: 16px; flex: none; margin-top: 5px; color: var(--hv-blue); }

.faq { max-width: 780px; margin: 36px auto 0; display: grid; gap: 10px; }
.q {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.q.open { border-color: var(--color-border-strong); }
.q > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: right;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hv-blue);
}
.q > button:hover { color: var(--hv-blue); }
.q .plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  position: relative;
  background: rgba(13, 78, 152, 0.07);
  border: 1px solid var(--color-border);
  transition: 0.25s;
}
.q .plus::before,
.q .plus::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: var(--hv-blue);
  border-radius: 1px;
}
.q .plus::before { width: 10px; height: 2px; }
.q .plus::after { width: 2px; height: 10px; }
.q.open .plus { background: var(--hv-blue); rotate: 45deg; }
.q.open .plus::before,
.q.open .plus::after { background: #fff; }
.q .a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.q .a p { padding: 0 20px 18px; color: var(--color-text-muted); font-size: 0.94rem; font-weight: 300; }

/* ── Footer ── */
footer {
  position: relative;
  padding-block: 56px 100px;
  background: var(--hv-blue);
  color: var(--hv-off-white);
  border-top: none;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background: url('pattern-blue.jpg') repeat;
  background-size: 420px auto;
}
footer .wrap { position: relative; z-index: 1; }
.foot-grid { display: grid; gap: 28px; text-align: center; }
.foot-logo-wrap {
  display: inline-block;
  padding: 14px 22px;
  background: var(--hv-off-white);
  border-radius: var(--radius-md);
  margin-inline: auto;
}
.foot-logo-img {
  height: 52px;
  width: auto;
  max-width: min(320px, 80vw);
  object-fit: contain;
}
.foot-grid h5 { font-size: 0.8rem; font-weight: 700; color: rgba(253, 251, 245, 0.85); letter-spacing: 0.08em; margin-bottom: 10px; }
.foot-grid p,
.foot-grid a { color: rgba(253, 251, 245, 0.78); font-size: 0.94rem; font-weight: 300; display: block; margin-bottom: 5px; }
.foot-grid a:hover { color: #fff; }

.foot-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}
.foot-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--hv-off-white);
  transition: background 0.2s;
}
.foot-social a:hover { background: rgba(255,255,255,0.2); color: #fff; }
.foot-social svg { width: 18px; height: 18px; }

.form-night-hint {
  margin-top: 7px;
  font-size: 0.82rem;
  color: var(--color-text-soft);
  font-weight: 400;
}
.copy {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: rgba(253, 251, 245, 0.65);
  font-size: 0.84rem;
  font-weight: 300;
}

/* ── Sticky bar & WhatsApp ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--hv-blue);
  border-top: 1px solid rgba(255,255,255,0.12);
  transform: translateY(130%);
  transition: transform 0.4s ease;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  backdrop-filter: none;
}
.sticky-bar.show { transform: none; }
.sticky-price { flex: none; line-height: 1.2; color: #fff; }
.sticky-price b { display: block; font-size: 1.2rem; font-weight: 700; }
.sticky-price span { font-size: 0.72rem; opacity: 0.85; font-weight: 400; }
.sticky-bar .btn { flex: 1; padding: 14px 16px; font-size: 0.98rem; background: var(--hv-off-white); color: var(--hv-blue); }
.sticky-bar .btn:hover { background: #fff; }

.wa-float {
  position: fixed;
  bottom: 88px;
  left: 18px;
  z-index: 8999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hv-green);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.05); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }
.wa-float::after { display: none; }

/* ── Contact sheet ── */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(13, 78, 152, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  backdrop-filter: none;
}
.sheet.on { opacity: 1; visibility: visible; }
.sheet-card {
  width: 100%;
  max-width: 420px;
  padding: 24px 20px;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transform: translateY(16px);
  transition: transform 0.3s ease;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}
.sheet.on .sheet-card { transform: none; }
.sheet-card h4 { font-size: 1.15rem; font-weight: 700; text-align: center; color: var(--hv-blue); }
.sheet-card > p { text-align: center; color: var(--color-text-muted); font-size: 0.88rem; margin-top: 4px; margin-bottom: 16px; font-weight: 300; }
.sheet-opts { display: grid; gap: 10px; }
.sheet-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: var(--hv-off-white);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s;
}
.sheet-opt:hover { border-color: var(--hv-blue); transform: none; }
.sheet-opt .badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  flex: none;
  display: grid;
  place-items: center;
  background: var(--hv-green);
  color: #fff;
}
.sheet-opt.call .badge { background: var(--hv-blue); }
.sheet-opt b { display: block; font-size: 0.98rem; font-weight: 700; color: var(--hv-blue); }
.sheet-opt span { display: block; font-size: 0.82rem; color: var(--color-text-muted); font-weight: 400; }
.sheet-close {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: rgba(13, 78, 152, 0.07);
  color: var(--color-text-muted);
  font-weight: 500;
}
.sheet-close:hover { color: var(--hv-blue); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (min-width: 700px) {
  .frow { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .dish-feature { aspect-ratio: 21/8; }
  .venue { grid-template-columns: repeat(4, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, 1fr); text-align: right; }
  .wa-float { bottom: 24px; }
  .sheet { align-items: center; }
  .sheet-card { padding-bottom: 24px; }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      'copy visual'
      'facts offer';
    column-gap: 48px;
    row-gap: 28px;
  }
  .hero-copy { grid-area: copy; }
  .hero-visual { grid-area: visual; aspect-ratio: 5/4; display: block; }
  .hero-banner { display: none; }
  .hero-facts { grid-area: facts; }
  .hero-offer { grid-area: offer; }
  .draw-wrap { grid-template-columns: 0.95fr 1.05fr; gap: 40px; }
  .sticky-bar {
    right: auto;
    left: 50%;
    bottom: 20px;
    translate: -50% 0;
    width: min(580px, 92vw);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 10px 10px 22px;
  }
  footer { padding-block: 64px; }
}

@media (min-width: 1024px) {
  .foot-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}

@media (max-width: 699px) {
  .wa-float { display: none; }
  .topbar { font-size: 0.78rem; padding: 9px 12px; line-height: 1.55; }
  .hero-visual { display: none; }
  .lang-switch { position: static; margin-bottom: 12px; justify-content: center; width: 100%; }
  .site-header .wrap { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
