:root {
  --bg: #f5efe6;
  --bg-deep: #e6d5be;
  --card: rgba(255, 252, 247, 0.88);
  --text: #2f241d;
  --muted: #6b5a4d;
  --line: rgba(87, 63, 45, 0.14);
  --accent: #a33f2f;
  --accent-dark: #7f2d22;
  --shadow: 0 24px 70px rgba(61, 41, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.65), transparent 35%),
    linear-gradient(135deg, var(--bg) 0%, #f0e3d1 45%, var(--bg-deep) 100%);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero-shell,
.menu-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.hero-card,
.panel,
.menu-header,
.menu-section {
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 56px;
}

.maintenance-card {
  min-height: calc(100vh - 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel,
.menu-header,
.menu-section {
  margin-top: 24px;
  padding: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.7rem;
}

.intro,
.menu-header p,
.menu-item p,
.panel p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.intro {
  max-width: 720px;
  margin: 20px 0 0;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.action-button,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.action-button:hover,
.back-link:hover {
  transform: translateY(-2px);
}

.action-button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff8f2;
}

.action-button.primary:hover {
  background: var(--accent-dark);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(163, 63, 47, 0.08);
  border: 1px solid rgba(163, 63, 47, 0.16);
}

.menu-body {
  background:
    radial-gradient(circle at top right, rgba(163, 63, 47, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f2ea 0%, #ecdfcd 100%);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-heading span {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-item strong {
  white-space: nowrap;
  font-size: 1rem;
}

.back-link {
  margin-top: 20px;
  width: fit-content;
}

@media (max-width: 720px) {
  .hero-card,
  .panel,
  .menu-header,
  .menu-section {
    padding: 24px;
    border-radius: 22px;
  }

  .action-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .menu-item,
  .section-heading {
    flex-direction: column;
  }
}
