:root {
  --bg: #fcfaf8;
  --surface: #ffffff;
  --surface-alt: #f3ece7;
  --surface-dark: #3f2d26;
  --text: #1f1a17;
  --text-soft: #5f544d;
  --text-inverse: #f8f5f2;
  --border: #dfd4cd;
  --accent: #8b5e4a;
  --accent-strong: #6f4636;
  --shadow: 0 12px 30px rgba(45, 28, 19, 0.10);
  --radius: 18px;
  --container: 1120px;
}

html.dark {
  --bg: #171311;
  --surface: #211a17;
  --surface-alt: #2a221f;
  --surface-dark: #0f0c0b;
  --text: #f5efea;
  --text-soft: #c9bbb2;
  --text-inverse: #f8f5f2;
  --border: #493c35;
  --accent: #c3907b;
  --accent-strong: #ddb19f;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.30);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background: var(--surface-dark);
  color: var(--text-inverse);
}

.site-header {
  top: 0;
  border-bottom: 1px solid var(--border);
}

.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__text strong {
  font-size: 1.05rem;
}

.brand__text small {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-nav a,
.theme-toggle,
.menu-toggle {
  color: var(--text-soft);
}

.site-nav a:hover,
.theme-toggle:hover,
.menu-toggle:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  font-weight: 700;
}

.button--primary {
  background: var(--accent);
  color: #fff;
}

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

.button--secondary {
  border-color: var(--accent);
  color: var(--accent);
}

.button--secondary:hover {
  background: var(--accent);
  color: #fff;
}

.theme-toggle,
.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.hero__grid,
.two-column,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero {
  padding-top: 4rem;
}

.hero__grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero__content h1,
.section-heading h2,
.two-column h2,
.site-footer h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  margin: 0;
}

.hero__lead,
.section-heading p,
.menu-card p,
.step-card p,
.product-card p,
.two-column p,
.site-footer p {
  color: var(--text-soft);
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
}

.hero__media img,
.rounded-image {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading--light p,
.section-heading--light h2 {
  color: var(--text-inverse);
}

.menu-group + .menu-group {
  margin-top: 2.5rem;
}

.menu-group h3 {
  margin-bottom: 1rem;
}

.card-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.menu-card,
.step-card,
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.product-card {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  color: var(--text-inverse);
  border-color: color-mix(in srgb, #ffffff 20%, transparent);
}

.product-card p {
  color: rgba(255,255,255,0.78);
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card__number {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.two-column {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.site-footer {
    
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

@media (max-width: 960px) {
  .hero__grid,
  .two-column,
  .footer-grid,
  .steps-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .header-bar {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .header-actions .button {
    display: none;
  }

  .hero__grid,
  .two-column,
  .footer-grid,
  .steps-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }
}
