:root {
  --bg: #0b120f;
  --bg-soft: #111915;
  --bg-deep: #16211b;
  --surface: #f8f2e8;
  --surface-soft: #efe3d1;
  --surface-card: rgba(255,255,255,.76);
  --text: #162119;
  --text-soft: #4b574e;
  --text-light: #fbf7f1;
  --gold: #b88946;
  --gold-strong: #d8b277;
  --line: rgba(184,137,70,.2);
  --line-light: rgba(255,255,255,.1);
  --shadow-xl: 0 34px 90px rgba(7,12,9,.28);
  --shadow-lg: 0 22px 56px rgba(8,12,10,.14);
  --shadow-sm: 0 12px 26px rgba(8,12,10,.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184,137,70,.06), transparent 25%),
    linear-gradient(180deg, #f8f4ed 0%, #f5ede0 100%);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
main { overflow: clip; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.narrow { width: min(calc(100% - 32px), 860px); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(8,12,10,.84), rgba(8,12,10,.6));
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  transition: .28s ease;
}
.site-header.scrolled {
  background: rgba(8,12,10,.94);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
.header-inner {
  min-height: 84px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-light);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a, .mobile-menu a {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 600;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-strong), transparent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-strong); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; background: transparent; color: white; border: 0; font-size: 1.55rem; }
.mobile-menu {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(8,12,10,.96);
}
.mobile-menu a { display: block; padding: 12px 0; }
.mobile-menu.open { display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 24px; border-radius: 999px;
  font-size: .96rem; font-weight: 800; letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
  border: 1px solid transparent; cursor: pointer;
}
.btn::after { content: '↗'; font-size: .9em; transition: transform .25s ease; }
.btn:hover::after { transform: translate(2px, -2px); }
.btn-primary {
  color: #22170e;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 14px 34px rgba(184,137,70,.26);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(184,137,70,.3); }
.btn-secondary {
  color: var(--text-light);
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  color: var(--gold-strong);
  border-color: rgba(216,178,119,.44);
  background: rgba(255,255,255,.07);
}
.btn-light {
  color: var(--text);
  border-color: rgba(22,33,25,.08);
  background: rgba(255,255,255,.78);
}
.btn-light:hover { transform: translateY(-2px); }

.hero {
  position: relative; min-height: 94svh; display: grid; place-items: center; overflow: hidden;
}
.hero-video, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; transform: scale(1.03); filter: saturate(.86) contrast(1.03); }
.hero-overlay {
  background:
    radial-gradient(circle at top right, rgba(184,137,70,.2), transparent 28%),
    linear-gradient(180deg, rgba(8,11,10,.24), rgba(8,11,10,.86));
}
.hero::after {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 180px;
  background: linear-gradient(180deg, transparent, rgba(8,11,10,.76));
}
.hero-content { position: relative; z-index: 2; color: var(--text-light); padding: 116px 0 64px; }
.hero-topline { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 18px; }
.hero-chip {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 14px;
  border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86); font-size: .83rem; font-weight: 700;
}
.eyebrow {
  display: inline-block; margin-bottom: 12px; color: var(--gold-strong);
  text-transform: uppercase; letter-spacing: .24em; font-size: .72rem; font-weight: 800;
}
h1, h2, h3, h4 {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  line-height: .98; letter-spacing: -.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.25rem, 7.2vw, 6.4rem); max-width: 10.6ch; }
h2 { font-size: clamp(2.35rem, 4.8vw, 4.15rem); max-width: 13ch; }
h3 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 16px; }
.hero-content p { max-width: 660px; color: rgba(255,255,255,.86); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-facts, .stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.hero-fact, .stat-card {
  padding: 18px 20px; border-radius: 22px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.hero-fact strong, .stat-card strong { display: block; margin-bottom: 4px; }
.hero-fact span, .stat-card span { color: rgba(255,255,255,.72); font-size: .92rem; }

.page-hero {
  position: relative; overflow: hidden;
  padding: 132px 0 70px;
  color: var(--text-light);
  background: linear-gradient(180deg, #161f1a, #0e1411);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(184,137,70,.14), transparent 28%);
}
.page-hero p { max-width: 760px; color: rgba(255,255,255,.8); }
.page-hero-actions { position: relative; z-index: 1; }

.section { padding: 104px 0; }
.section-light { background: transparent; }
.section-dark {
  background: radial-gradient(circle at top, rgba(184,137,70,.12), transparent 28%), linear-gradient(180deg, #16211b, #0b120f);
  color: var(--text-light);
}
.section-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; }
.section-head p { max-width: 760px; opacity: .84; }
.two-col, .booking-layout, .contact-layout, .event-layout, .story-layout, .gallery-lead {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center;
}
.card, .soft-card, .info-card, .dish-card, .menu-block, .review-card, .story-card, .event-card, .gallery-card, .contact-card, .booking-form, .feature-panel {
  position: relative;
  border-radius: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.56));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.section-dark .dish-card, .section-dark .feature-panel, .section-dark .event-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(184,137,70,.1));
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.visual-panel, .quote-panel, .concierge-card {
  min-height: 380px;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--text-light);
  box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(184,137,70,.12), rgba(10,14,11,.96)), radial-gradient(circle at top left, rgba(216,178,119,.35), transparent 42%), #17221c;
}
.quote-panel { min-height: 320px; }
.visual-panel::before, .quote-panel::before, .concierge-card::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.badge-round {
  position: absolute; top: 24px; right: 24px;
  width: 82px; height: 82px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  color: var(--gold-strong); font-weight: 800; letter-spacing: .04em;
}

.dish-grid, .menu-grid, .reviews-grid, .story-grid, .event-grid, .contact-grid, .gallery-grid, .feature-grid {
  display: grid; gap: 20px;
}
.dish-grid { grid-template-columns: repeat(3, 1fr); }
.menu-grid { grid-template-columns: repeat(2, 1fr); }
.reviews-grid { grid-template-columns: 1.1fr 1fr 1fr 1fr; }
.story-grid { grid-template-columns: repeat(3, 1fr); }
.event-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid {
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: 196px;
}
.feature-grid { grid-template-columns: repeat(2, 1fr); }
.dish-card, .review-card, .story-card, .event-card, .contact-card, .gallery-card, .menu-block, .info-card, .feature-panel { transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.dish-card:hover, .review-card:hover, .story-card:hover, .event-card:hover, .contact-card:hover, .gallery-card:hover, .menu-block:hover, .info-card:hover, .feature-panel:hover {
  transform: translateY(-4px); border-color: rgba(184,137,70,.34); box-shadow: var(--shadow-lg);
}
.gallery-card {
  overflow: hidden;
  color: white;
  background: radial-gradient(circle at top left, rgba(216,178,119,.32), transparent 34%), linear-gradient(145deg, #163126, #3a2a17 72%);
}
.gallery-card::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.48));
}
.gallery-card span { position: absolute; left: 20px; bottom: 18px; z-index: 1; font-weight: 800; }
.gallery-card.tall { grid-row: span 2; }
.gallery-card.wide { grid-column: span 2; }
.rating-card {
  padding: 30px; border-radius: 32px;
  background: linear-gradient(180deg, rgba(184,137,70,.2), rgba(255,255,255,.78));
  border: 1px solid rgba(184,137,70,.28);
  box-shadow: var(--shadow-sm);
}
.rating-card h2 { max-width: none; font-size: clamp(3rem, 5vw, 4.8rem); }
.review-card span { color: var(--gold); font-weight: 800; font-size: .92rem; }
.menu-list { margin: 0; padding-left: 18px; }
.menu-list li { margin-bottom: 8px; }
.menu-note { margin-top: 14px; color: var(--text-soft); font-size: .93rem; }

.hours-grid, .contact-points, .form-grid {
  display: grid; gap: 16px;
}
.hours-grid { grid-template-columns: repeat(2, 1fr); }
.contact-points { grid-template-columns: repeat(2, 1fr); }
.form-grid { grid-template-columns: 1fr 1fr; margin-top: 20px; }
.booking-form {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74));
  box-shadow: var(--shadow-xl);
}
.form-intro { color: var(--text-soft); max-width: 48ch; margin-top: -4px; }
label span { display: block; font-weight: 700; margin-bottom: 8px; font-size: .94rem; }
input, textarea, select {
  width: 100%; min-height: 54px; border-radius: 18px; border: 1px solid rgba(22,33,25,.1);
  padding: 14px 16px; font: inherit; background: rgba(255,253,249,.92);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: rgba(184,137,70,.48); box-shadow: 0 0 0 5px rgba(184,137,70,.1); transform: translateY(-1px);
}
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1 / -1; }
.concierge-card { min-height: 280px; margin-bottom: 18px; background: linear-gradient(180deg, rgba(10,14,11,.42), rgba(10,14,11,.96)), radial-gradient(circle at bottom right, rgba(184,137,70,.28), transparent 34%), #101512; }

.map-shell, .video-shell {
  min-height: 520px; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(0,0,0,.06);
}
.map-shell iframe, .video-shell video { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.video-shell { position: relative; }
.video-shell::after {
  content: 'Conte D’Rei'; position: absolute; left: 26px; bottom: 22px; color: rgba(255,255,255,.92); font-family: 'Cormorant Garamond', serif; font-size: 2rem;
}

.final-cta {
  position: relative; color: var(--text-light);
  background: radial-gradient(circle at top left, rgba(184,137,70,.18), transparent 28%), linear-gradient(135deg, #131b16, #0b120f);
}
.final-cta::before { content: ''; position: absolute; inset: 0; border-top: 1px solid rgba(255,255,255,.05); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 1; }

.site-footer {
  background: #0a100d; color: rgba(255,255,255,.78); padding: 56px 0 18px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; }
.site-footer h4 { color: white; font-size: 1.3rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--gold-strong); }
.footer-bottom {
  margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 18px; font-size: .92rem;
}
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  background: linear-gradient(135deg, #1fbf61, #12a652); color: white;
  padding: 15px 20px; border-radius: 999px; font-weight: 800;
  box-shadow: 0 18px 40px rgba(0,0,0,.28); transition: transform .24s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); }

.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .main-nav, .header-inner .btn { display: none; }
  .menu-toggle { display: block; }
  .two-col, .booking-layout, .contact-layout, .event-layout, .story-layout, .gallery-lead, .dish-grid, .menu-grid, .reviews-grid, .story-grid, .event-grid, .contact-grid, .gallery-grid, .feature-grid, .hero-facts, .stats-strip, .hours-grid, .contact-points, .footer-grid { grid-template-columns: 1fr; }
  .gallery-card.tall, .gallery-card.wide { grid-row: auto; grid-column: auto; }
  .final-cta-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero, .section { padding: 84px 0; }
  .map-shell, .map-shell iframe, .video-shell, .video-shell video { min-height: 380px; }
}
@media (max-width: 640px) {
  .form-grid, .contact-points { grid-template-columns: 1fr; }
  .hero { min-height: 88svh; }
  .header-inner { min-height: 76px; }
  .brand { font-size: 1.8rem; }
  .hero-content { padding: 102px 0 48px; }
  .floating-whatsapp { left: 16px; right: 16px; text-align: center; }
  .hero-chip { width: 100%; justify-content: center; }
}
