/* -----------------------------------------------------------------------------
   Design system — brand palette: maroon #551C1A, warm orange #D5802B, cream #F8F7F2
----------------------------------------------------------------------------- */
:root {
  --background: oklch(0.97 0.005 80);
  --foreground: oklch(0.28 0.08 25);
  --card: oklch(0.99 0.003 80);
  --card-foreground: oklch(0.28 0.08 25);
  --primary: oklch(0.32 0.09 25);
  --primary-foreground: oklch(0.97 0.005 80);
  --primary-glow: oklch(0.65 0.16 50);
  --secondary: oklch(0.94 0.012 80);
  --muted-foreground: oklch(0.45 0.04 30);
  --accent: oklch(0.65 0.16 50);
  --accent-foreground: oklch(0.97 0.005 80);
  --border: oklch(0.88 0.015 60);
  --gold: oklch(0.65 0.16 50);
  --ink: oklch(0.22 0.06 25);

  --gradient-hero: linear-gradient(135deg, oklch(0.22 0.06 25 / 0.9), oklch(0.32 0.09 25 / 0.7));
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --shadow-elegant: 0 20px 60px -20px oklch(0.32 0.09 25 / 0.4);
  --shadow-soft: 0 8px 30px -10px oklch(0.22 0.06 25 / 0.18);

  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius: 0.625rem;
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid var(--border);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Layout primitives */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 80rem; /* ~1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.star {
  color: var(--gold);
  fill: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
}

.btn-glass {
  background-color: oklch(0.99 0.003 80 / 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid oklch(0.99 0.003 80 / 0.4);
  color: var(--card);
}

.btn-glass:hover {
  background-color: oklch(0.99 0.003 80 / 0.25);
  transform: none;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-elegant);
}

.btn-self-start {
  align-self: flex-start;
}

/* Header */
.site-header {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.logo {
  height: 6rem;
  width: 6rem;
  object-fit: contain;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-inner {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero-content {
  max-width: 36rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: oklch(0.99 0.003 80 / 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid oklch(0.99 0.003 80 / 0.3);
  color: var(--card);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--card);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  display: block;
  font-size: 1.875rem;
  font-weight: 300;
  margin-top: 0.75rem;
  color: oklch(0.99 0.003 80 / 0.9);
}

.hero-lede {
  font-size: 1.125rem;
  color: oklch(0.99 0.003 80 / 0.85);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-inner {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 2.25rem;
  }
}

/* Info strip */
.info-strip {
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  height: 3rem;
  width: 3rem;
  border-radius: 9999px;
  background: var(--gradient-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-foreground);
}

.info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.info-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Sections */
.menu-section,
.about-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .menu-section,
  .about-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.about-section {
  background-color: var(--secondary);
}

.section-heading {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3.5rem auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-lede {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.dish-card {
  background-color: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-4px);
}

.dish-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.05);
}

.dish-body {
  padding: 1.5rem;
}

.dish-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.dish-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.menu-cta {
  text-align: center;
  margin-top: 3rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.prose {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.prose strong {
  color: var(--foreground);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature-icon {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 9999px;
  background: var(--gradient-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.feature-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-image-wrap {
  position: relative;
}

.about-image {
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--card);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .about-badge {
    display: flex;
  }
}

.about-badge-title {
  font-weight: 700;
  color: var(--foreground);
}

.about-badge-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  margin-top: auto;
}

.site-footer .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-card {
  background-color: oklch(0.97 0.005 80 / 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid oklch(0.97 0.005 80 / 0.15);
  border-radius: 1rem;
  padding: 1.75rem;
}

.footer-card-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--primary-foreground);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: oklch(0.97 0.005 80 / 0.9);
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-list li:nth-child(2) {
  align-items: center;
}

.footer-icon {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--accent-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-link {
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-text {
  color: oklch(0.97 0.005 80 / 0.9);
  margin-bottom: 1.5rem;
  flex: 1;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .app-buttons {
    flex-direction: row;
  }
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background-color: var(--primary-foreground);
  color: var(--primary);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.app-btn:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.app-btn-text {
  text-align: left;
  line-height: 1.1;
}

.app-btn-small {
  font-size: 0.625rem;
  opacity: 0.75;
}

.app-btn-big {
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid oklch(0.97 0.005 80 / 0.2);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: oklch(0.97 0.005 80 / 0.75);
}

.footer-bottom-link {
  font-weight: 500;
  color: var(--accent);
}

.footer-bottom-link:hover {
  text-decoration: underline;
}
