
:root {
  --red:#c62828;
  --blue:#173b7a;
  --cream:#fff8ee;
  --ink:#161616;
  --muted:#666;
  --white:#fff;
  --line:#e6ded2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin:0;
  font-family: 'Montserrat', Arial, sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
}
a { color:inherit; text-decoration:none; }
.container { width:min(1120px, 92%); margin:auto; }

.hero {
  min-height: 78vh;
  color:var(--white);
  background:
    linear-gradient(120deg, rgba(15,20,35,.94), rgba(23,59,122,.82)),
    radial-gradient(circle at 75% 25%, rgba(198,40,40,.8), transparent 42%);
  display:flex;
  flex-direction:column;
}
.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
}
.brand { font-weight:800; letter-spacing:.06em; }
.nav-links { display:flex; gap:24px; font-weight:600; font-size:.95rem; }

.hero-content {
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:70px 0 100px;
  max-width:1120px;
}
.eyebrow {
  font-weight:800;
  letter-spacing:.16em;
  font-size:.78rem;
  color:#ffd5d5;
  margin:0 0 12px;
}
.eyebrow.dark { color:var(--red); }

h1,h2,h3 { line-height:1.15; margin-top:0; }
h1 {
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(3rem, 8vw, 6.5rem);
  max-width:900px;
  margin-bottom:20px;
}
h2 { font-size:clamp(2rem, 4vw, 3.2rem); margin-bottom:16px; }
h3 { font-size:1.25rem; }

.hero-copy {
  max-width:680px;
  font-size:1.08rem;
  color:#e9edf7;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:18px; }
.btn {
  display:inline-block;
  padding:14px 22px;
  border-radius:10px;
  font-weight:800;
  transition:.2s ease;
}
.btn:hover { transform:translateY(-2px); }
.btn.primary { background:var(--red); color:var(--white); }
.btn.secondary { border:1px solid rgba(255,255,255,.5); color:var(--white); }
.btn.full { width:100%; text-align:center; margin-top:20px; }

.section { padding:80px 0; }
.section-heading { max-width:760px; margin-bottom:35px; }
.section-heading p:last-child { color:var(--muted); }

.menu-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card {
  background:var(--white);
  border:1px solid var(--line);
  border-radius:18px;
  padding:26px;
  box-shadow:0 8px 28px rgba(0,0,0,.05);
  position:relative;
}
.card p { color:var(--muted); margin-bottom:0; }
.price {
  position:absolute;
  top:20px; right:20px;
  font-weight:800;
  color:var(--red);
}
.card h3 { padding-right:55px; }

.order-section { background:var(--blue); color:var(--white); }
.order-grid {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
  align-items:start;
}
.order-section p { color:#e2e7f2; }
.notice {
  margin-top:22px;
  padding:16px 18px;
  border-left:4px solid #ffcf5a;
  background:rgba(255,255,255,.08);
  border-radius:8px;
}
.order-card {
  background:var(--white);
  color:var(--ink);
  padding:28px;
  border-radius:18px;
}
.order-card ol { padding-left:20px; }
.order-card li { margin-bottom:10px; }

.about {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}
.small { color:var(--muted); font-size:.92rem; }

.social-section {
  background:#111;
  color:var(--white);
}
.socials {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.socials a {
  border:1px solid #444;
  padding:12px 16px;
  border-radius:999px;
}
.socials a:hover { border-color:#888; }

footer { background:#080808; color:#aaa; padding:25px 0; font-size:.9rem; }
.footer { display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }

@media (max-width: 800px) {
  .nav-links { display:none; }
  .menu-grid { grid-template-columns:1fr; }
  .order-grid, .about { grid-template-columns:1fr; }
  .section { padding:60px 0; }
  h1 { font-size:clamp(2.8rem, 14vw, 4.8rem); }
}
