* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  overflow-x: hidden;
}

body::before {
  display: none;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 0;
}

section {
  padding: 108px 0;
  position: relative;
}

section:nth-of-type(even) {
  background: #fff8f1;
}

section .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

section h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 3.2vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

section p.lead,
.hero-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: #d28a45;
  box-shadow: 0 20px 40px rgba(210, 138, 69, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 24px 48px rgba(210, 138, 69, 0.36);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border);
}

.hero-stats,
.menu-grid {
  display: grid;
}

.stat-card,
.feature-card,
.menu-item,
.contact-info,
.contact-form,
.about-panel .panel {
  border: 1px solid var(--border);
  background: rgba(255, 250, 244, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
