/* Eppinettos — brand styles */
:root {
  --red: #D4441E;
  --red-dark: #A83515;
  --cream: #F7F0E8;
  --cream-dark: #EDE3D6;
  --ink: #1A0E08;
  --muted: #7A6555;
  --white: #FFFFFF;
  --radius: 6px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 68, 30, 0.12);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 13px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,68,30,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,68,30,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 span { color: var(--red); }
.hero-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  border: 2px solid var(--cream-dark);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(26, 14, 8, 0.15);
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(26, 14, 8, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.hero-badge-text strong { display: block; font-size: 18px; }
.hero-badge-text span { font-size: 13px; color: var(--muted); }

/* ─── Page sections ────────────────────────────────── */
.page-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-overline {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ─── Menu cards ───────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(212, 68, 30, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 14, 8, 0.1);
}
.menu-card-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.menu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.menu-card-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
}
.menu-tag {
  font-size: 12px;
  font-weight: 600;
  background: var(--cream);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── Location / Map ──────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.location-info {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(212, 68, 30, 0.1);
}
.location-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.location-info-item:last-child { border-bottom: none; }
.location-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.location-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.location-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 68, 30, 0.1);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Delivery Form ────────────────────────────────── */
.delivery-section {
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
}
.delivery-form {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: left;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(212, 68, 30, 0.15);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-success {
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--ink);
  display: none;
}
.form-success.show { display: block; }
.form-error {
  background: #fef2f2;
  border: 2px solid #ef4444;
  border-radius: var(--radius);
  padding: 16px;
  color: #dc2626;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}
.form-error.show { display: block; }

/* ─── Footer ────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(247, 240, 232, 0.6);
  padding: 40px;
  text-align: center;
  font-size: 14px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 12px;
}
.footer a { color: var(--red); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 80px 20px 60px; }
  .hero-image { order: -1; }
  .page-section { padding: 60px 20px; }
  .location-grid { grid-template-columns: 1fr; }
  .delivery-section { padding: 40px 24px; }
}