:root {
  --red: #c41e3a;
  --red-dark: #8b1124;
  --gold: #d4a017;
  --gold-light: #f0c53d;
  --green: #0d7c3f;
  --green-light: #1a9e54;
  --teal: #0e5e52;
  --ink: #1a1817;
  --cream: #fdf8f0;
  --sand: #f5e6d0;
  --coral: #e8614c;
  --white: #ffffff;
  --muted: #5c5348;
  --shadow-sm: 0 4px 20px rgba(0,0,0,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.14);
  --shadow-red: 0 20px 50px rgba(196,30,58,.25);
  --radius: 22px;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 5% 10%, rgba(196,30,58,.08), transparent 40%),
    radial-gradient(ellipse at 95% 20%, rgba(13,124,63,.1), transparent 35%),
    radial-gradient(ellipse at 50% 80%, rgba(212,160,23,.06), transparent 40%),
    linear-gradient(180deg, #fef9f2 0%, #fdf5ea 35%, #fdf8f0 70%, #fef9f2 100%);
  line-height: 1.65;
  background-attachment: fixed;
}

h1, h2, h3, .serif {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); color: var(--red-dark); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); margin-bottom: 16px; color: #1a1817; }
h3 { font-size: 1.35rem; color: var(--ink); }
p { margin-bottom: 16px; color: var(--muted); font-size: 1.02rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

/* ── NAV ── */
.topbar {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(253,248,240,.9);
  border-bottom: 2px solid rgba(196,30,58,.12);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 54px; height: 54px; object-fit: contain; border-radius: 14px; border: 2px solid var(--gold); }
.brand-tag strong { display: block; font-size: 1rem; color: var(--red); }
.brand-tag span { font-size: .78rem; color: var(--muted); }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.nav-links a { padding: 8px 16px; border-radius: 8px; font-weight: 600; font-size: .9rem; color: #3a3228; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { background: rgba(196,30,58,.1); color: var(--red); }
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; padding: 4px 8px; color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; border: none; cursor: pointer;
  transition: all .22s; font-size: .95rem;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--red), #e04a5a); color: var(--white); box-shadow: 0 12px 28px rgba(196,30,58,.35); }
.btn-secondary { background: linear-gradient(135deg, var(--green), var(--green-light)); color: var(--white); box-shadow: 0 12px 28px rgba(13,124,63,.25); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a1817; box-shadow: 0 12px 28px rgba(212,160,23,.3); }
.btn-outline { background: var(--white); border: 2px solid rgba(26,24,23,.12); color: var(--ink); }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; padding: 80px 0 50px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 999px;
  background: rgba(212,160,23,.12); color: var(--red-dark);
  border: 1.5px solid rgba(212,160,23,.25);
  font-weight: 700; font-size: .85rem; letter-spacing: .04em;
}
.hero h1 { line-height: 1.08; margin-bottom: 18px; }
.hero .lead { font-size: 1.15rem; color: #4a3f34; max-width: 600px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-visual {
  position: relative; min-height: 520px; border-radius: 34px; overflow: hidden;
  box-shadow: var(--shadow-red);
  border: 3px solid rgba(255,255,255,.5);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ── SECTION HEADINGS ── */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .badge {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(212,160,23,.15), rgba(196,30,58,.08));
  color: var(--red-dark); font-weight: 700; font-size: .8rem; letter-spacing: .08em; margin-bottom: 16px;
}
.section-head .badge-green {
  background: linear-gradient(135deg, rgba(13,124,63,.12), rgba(26,158,84,.08));
  color: var(--green);
}

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.card {
  background: var(--white); border-radius: 24px; padding: 28px;
  border: 1.5px solid rgba(26,24,23,.06);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { width: 100%; height: 220px; object-fit: cover; border-radius: 18px; margin-bottom: 16px; }
.card-icon {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.card-icon-red { background: linear-gradient(135deg, rgba(196,30,58,.15), rgba(232,97,76,.15)); color: var(--red); }
.card-icon-green { background: linear-gradient(135deg, rgba(13,124,63,.15), rgba(26,158,84,.1)); color: var(--green); }
.card-icon-gold { background: linear-gradient(135deg, rgba(212,160,23,.2), rgba(240,197,61,.15)); color: var(--gold); }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.panel {
  background: var(--white); border-radius: 28px; padding: 32px;
  border: 1.5px solid rgba(26,24,23,.06);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}
.panel-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }

/* ── FEATURE LIST ── */
.feature-list { display: grid; gap: 16px; margin-top: 20px; }
.feature { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: start; font-size: .95rem; color: #3a3228; }
.feature-icon { color: var(--green); font-weight: 900; font-size: 1.1rem; }

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.gallery-item { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s; border: 3px solid transparent; }
.gallery-item:hover { transform: scale(1.03); border-color: var(--gold); }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }

/* ── TESTIMONIALS ── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.testimonial-card {
  background: var(--white); border-radius: 24px; padding: 28px;
  border: 1.5px solid rgba(26,24,23,.06);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before { content: "\201C"; position: absolute; top: 8px; right: 20px; font-size: 5rem; color: rgba(196,30,58,.08); font-family: Georgia, serif; line-height: 1; }
.testimonial-card .stars { color: var(--gold); margin-bottom: 10px; font-size: 1.15rem; }
.testimonial-card .body { font-style: italic; color: #4a3f34; margin-bottom: 14px; line-height: 1.6; }
.testimonial-card .author { font-weight: 700; color: var(--red-dark); }

/* ── MENU ── */
.menu-section { margin-bottom: 48px; }
.menu-section h3 { color: var(--red); margin-bottom: 18px; font-size: 1.7rem; padding-bottom: 10px; border-bottom: 3px solid var(--gold); display: inline-block; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 8px 32px; }
.menu-item { padding: 12px 0; border-bottom: 1px dotted rgba(212,160,23,.25); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.menu-item .name { font-weight: 700; font-size: 1rem; }
.menu-item .price { color: var(--red); font-weight: 800; white-space: nowrap; font-size: 1rem; }
.menu-item .desc { font-size: .85rem; color: var(--muted); margin-top: 4px; width: 100%; }

/* ── SUB-PAGE HERO ── */
.sub-hero { padding: 70px 0 40px; text-align: center; position: relative; }
.sub-hero::before {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; max-width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), transparent);
}
.sub-hero h1 { margin-bottom: 14px; }
.sub-hero .lead { max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

/* ── CONTACT FORM ── */
.form-card {
  background: var(--white); border-radius: 28px; padding: 36px;
  border: 1.5px solid rgba(26,24,23,.06);
  box-shadow: var(--shadow); max-width: 680px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.form-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--red), var(--gold), var(--green)); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .9rem; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border-radius: 14px;
  border: 2px solid rgba(26,24,23,.1); font-size: .95rem; background: #fdf9f2; font-family: inherit;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1817' fill='none' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 36px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red), var(--coral));
  border-radius: 32px; padding: 50px 40px; text-align: center;
  color: white; margin: 50px 0; box-shadow: var(--shadow-red);
}
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); }
.cta-banner .btn { margin-top: 20px; }

/* ── STATS BAR ── */
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.stat-card {
  background: var(--white); border-radius: 20px; padding: 24px; text-align: center;
  border: 1.5px solid rgba(26,24,23,.06); box-shadow: var(--shadow-sm);
}
.stat-number { font-size: 2.4rem; font-weight: 900; background: linear-gradient(135deg, var(--red), var(--coral)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .9rem; color: var(--muted); margin-top: 4px; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, #1a1817, #2a2018, #1a1817);
  color: rgba(255,255,255,.7); padding: 60px 0 32px; margin-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-grid h4 { color: white; margin-bottom: 14px; font-size: 1.05rem; }
.footer-grid a, .footer-grid p { font-size: .92rem; color: rgba(255,255,255,.55); display: block; margin-bottom: 8px; transition: color .2s; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; text-align: center; font-size: .85rem; color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left:0; right:0; background: var(--cream); flex-direction: column; padding: 20px; border-bottom: 2px solid var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,.15); }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .hero-grid, .split, .form-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
