:root {
  --bg: #fbf7f1;
  --surface: #fffdf9;
  --surface-alt: #f2e7d7;
  --text: #2d241f;
  --muted: #6a5a50;
  --line: #e3d6c4;
  --accent: #8d5b3c;
  --accent-dark: #6f452c;
  --shadow: 0 18px 40px rgba(45, 36, 31, 0.08);
  --radius: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.narrow {
  width: min(calc(100% - 2rem), 760px);
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(251, 247, 241, 0.86);
  border-bottom: 1px solid rgba(141, 91, 60, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.text-link:hover {
  color: var(--accent-dark);
}

.hero,
.page-hero {
  padding: 5rem 0 3rem;
}

.small-hero {
  padding-bottom: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.05;
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.25rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

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

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-card,
.menu-card,
.form-wrapper {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
}

.image-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(141, 91, 60, 0.1), rgba(141, 91, 60, 0.03)),
    var(--surface-alt);
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 2rem 0 4.5rem;
}

.alt-bg {
  background: rgba(141, 91, 60, 0.05);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.menu-card {
  padding: 1.4rem;
}

.price {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

/* Staples sub-sections */
.staples-category {
  margin-top: 2rem;
}

.staples-category h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--accent-dark);
}

.staples-category ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.8;
}

.staples-category p {
  margin: 0.25rem 0 0;
}

/* Social icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: color 0.15s ease, transform 0.15s ease;
}

.social-icon:hover {
  color: var(--accent-dark);
  transform: translateY(-1px);
}

/* Footer */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-layout {
  align-items: start;
}

.form-wrapper {
  padding: 1.5rem;
  border-radius: 22px;
  overflow: hidden;
  background: white;
  border: 1px solid #e8dfd4;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  max-width: 820px;
  margin: 0 auto;
}

.form-wrapper iframe {
  width: 100%;
  border: none;
}

iframe {
  border-radius: 18px;
  background: white;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .footer-row,
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .image-placeholder {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .hero,
  .page-hero {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  .button,
  .nav-links {
    width: 100%;
  }

  .hero-actions,
  .contact-links {
    flex-direction: column;
  }
}
