/* ---------- Tokens ---------- */
:root {
  --espresso: #2b2118;
  --espresso-deep: #201811;
  --burgundy: #7d1d20;
  --burgundy-deep: #5e1517;
  --yolk: #d99a2b;
  --cream: #f1e7d2;
  --cream-soft: #ebe0c4;
  --paper: #f6efde;
  --off-white: #e8ddc6;
  --ink: #2b2118;
  --ink-soft: #5c5140;
  --line: #d6c7a3;

  --font-marker: "Caveat Brush", "Marker Felt", cursive;
  --font-display: "Young Serif", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1120px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}
section[id] { scroll-margin-top: 5rem; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: var(--burgundy);
  margin: 0 0 1rem;
}
.eyebrow.light { color: var(--off-white); }
.eyebrow.gold { color: var(--yolk); }
.center { text-align: center; }
.sub { color: var(--ink-soft); margin-bottom: 0; }
.sub.light { color: rgba(241, 231, 210, 0.68); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
}
.btn-primary:hover { background: var(--burgundy-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--pad);
  background: rgba(241, 231, 210, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-wordmark {
  font-family: var(--font-marker);
  font-size: 1.9rem;
  color: var(--burgundy);
  letter-spacing: 0.01em;
}
.brand-tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav a {
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--burgundy); text-decoration: none; }
.nav-cta {
  border: 1px solid var(--burgundy);
  color: var(--burgundy) !important;
  padding: 0.5rem 1rem;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--burgundy);
  color: var(--cream) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  padding: 0.5rem 0.9rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(43, 33, 24, 0.62) 0%, rgba(32, 24, 17, 0.82) 100%),
    radial-gradient(ellipse at 75% 25%, rgba(125, 29, 32, 0.25), transparent 55%),
    url("images/IMG_7064.jpg") center / cover no-repeat;
  background-color: var(--espresso);
  padding: clamp(4.5rem, 12vw, 8.5rem) var(--pad) clamp(5rem, 13vw, 9rem);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--burgundy);
  color: var(--cream);
  padding: 1.4rem 2.6rem 1.1rem;
  margin: 0 auto 2rem;
  transform: rotate(-2deg);
  border-radius: 56% 44% 52% 48% / 48% 54% 46% 52%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.hero-wordmark {
  font-family: var(--font-marker);
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 1;
  color: var(--cream);
}
.hero-tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.66rem;
  margin-top: 0.5rem;
  color: rgba(241, 231, 210, 0.88);
}
.lede {
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  max-width: 38rem;
  margin: 0 auto 2.2rem;
  color: rgba(241, 231, 210, 0.8);
}
.hero .btn-primary {
  background: var(--cream);
  color: var(--espresso);
}
.hero .btn-primary:hover {
  background: var(--paper);
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-inner.narrow { max-width: 640px; }

.section-about    { background: var(--paper); }
.section-dinners  { background: var(--cream); }
.section-lessons  { background: var(--paper); }
.section-how      { background: var(--cream); }
.section-faq      { background: var(--paper); }
.section-inquire  { background: var(--cream); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col.reverse .two-col-image { order: -1; }
.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text em, .two-col-text i {
  font-style: italic;
  color: var(--burgundy);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.feature-list li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  border-bottom: 1px dashed var(--line);
  position: relative;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.feature-list li::before {
  content: "+";
  position: absolute;
  left: 0.2rem;
  top: 0.5rem;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 1rem;
}

/* ---------- Images ---------- */
.img-tall {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ---------- The Shapes (dark flour-board section) ---------- */
.section-shapes {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(217, 154, 43, 0.06), transparent 50%),
    var(--espresso);
  color: var(--off-white);
}
.section-shapes h2 { color: var(--cream); }
.shapes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem 1.2rem;
  margin-top: 2.8rem;
}
.shape {
  margin: 0;
}
.shape img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
.shape figcaption {
  font-family: var(--font-marker);
  font-size: 1.35rem;
  color: var(--cream);
  margin-top: 0.55rem;
  text-align: center;
  transform: rotate(-1.2deg);
}
.shape:nth-child(even) figcaption { transform: rotate(1.2deg); }

@media (prefers-reduced-motion: no-preference) {
  .shape img { transition: transform 0.35s ease; }
  .shape:hover img { transform: scale(1.02); }
  .btn { transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s; }
  .btn:hover { transform: translateY(-1px); }
}

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}
.how-step {
  padding: 2rem 1.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.how-num {
  display: block;
  font-family: var(--font-marker);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
  transform: rotate(-2deg);
}
.how-step h3 { margin-bottom: 0.4em; }
.how-step p {
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 2.2rem; }
.faq-item {
  border-bottom: 1px dashed var(--line);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-marker);
  font-size: 1.5rem;
  color: var(--burgundy);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 1.2rem;
  font-size: 0.97rem;
  max-width: 56ch;
}

/* ---------- Form ---------- */
.inquiry-form {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
.field { display: grid; gap: 0.4rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.8rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}
.inquiry-form .btn { justify-self: start; margin-top: 0.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--off-white);
  padding: 3.5rem var(--pad);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-marker);
  font-size: 2.4rem;
  color: var(--cream);
  margin: 0;
  line-height: 1;
}
.footer-tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--yolk);
  margin: 0.5rem 0 1.2rem;
}
.footer-meta {
  margin: 0.25rem 0;
  color: rgba(241, 231, 210, 0.72);
  font-size: 0.92rem;
}
.footer-meta a { color: rgba(241, 231, 210, 0.9); }
.footer-copy {
  margin-top: 1.8rem;
  font-size: 0.72rem;
  color: rgba(241, 231, 210, 0.38);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .two-col.reverse .two-col-image { order: 0; }
  .shapes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .field-row { grid-template-columns: 1fr; }

  .nav-toggle { display: inline-block; }
  .site-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad);
  }
  .site-nav.open ul { display: flex; }
  .site-nav ul li { width: 100%; }
  .site-nav ul a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px dashed var(--line);
  }
  .site-nav ul li:last-child a { border-bottom: none; }
  .nav-cta { border: none; padding: 0.85rem 0; }
}
