/* ==========================================================================
   Gilchrist Great Grates — site stylesheet
   Palette: ink navy / oyster shell / brushed steel / brass
   ========================================================================== */

:root {
  --ink: #17242f;
  --ink-soft: #24384a;
  --shell: #f7f3ea;
  --shell-deep: #efe8da;
  --steel: #8b9aa6;
  --steel-light: #c6d0d8;
  --brass: #b07d3f;
  --brass-deep: #93662f;
  --sea: #2e5d6b;
  --white: #ffffff;
  --text: #2b3742;
  --text-muted: #5c6b78;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(23, 36, 47, 0.08), 0 4px 14px rgba(23, 36, 47, 0.06);
  --shadow-md: 0 2px 6px rgba(23, 36, 47, 0.1), 0 12px 32px rgba(23, 36, 47, 0.12);

  --container: 1080px;
}

/* ---- Reset-lite ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--shell);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.35rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
a { color: var(--sea); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brass-deep); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.4rem;
}

/* ---- Header / nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 234, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 36, 47, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--ink);
}
.brand svg { width: 40px; height: 40px; flex-shrink: 0; }
.brand-icon { height: 75px; width: auto; flex-shrink: 0; }
.brand-text { line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.42rem;
  display: block;
}
.brand-tag {
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: block;
}
.site-nav ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--brass);
  transition: right 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(46, 93, 107, 0.16), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(176, 125, 63, 0.12), transparent 60%),
    var(--ink);
  color: var(--shell);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 1.4rem 5.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.hero h1 { color: var(--white); margin-bottom: 0.4em; }
.hero .accent { color: var(--brass); font-style: italic; }
.hero-lede {
  font-size: 1.15rem;
  color: var(--steel-light);
  max-width: 34em;
  margin-bottom: 1.8em;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid rgba(176, 125, 63, 0.45);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.4rem;
}
.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35)); }
.hero-carousel {
  position: relative;
  aspect-ratio: 734 / 436;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.hero-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-carousel img.is-active { opacity: 1; }
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(23, 36, 47, 0.55);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hero-carousel-arrow svg { width: 20px; height: 20px; }
.hero-carousel-arrow:hover { background: rgba(23, 36, 47, 0.8); }
.hero-carousel-prev { left: 12px; }
.hero-carousel-next { right: 12px; }
@media (prefers-reduced-motion: reduce) {
  .hero-carousel img { transition: none; }
}
/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.7rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brass);
  color: var(--white);
}
.btn-primary:hover { background: var(--brass-deep); color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--shell);
  border: 1px solid rgba(247, 243, 234, 0.4);
}
.btn-ghost:hover { border-color: var(--shell); color: var(--white); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink);
  color: var(--shell);
}
.btn-dark:hover { background: var(--ink-soft); color: var(--white); transform: translateY(-2px); }
.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---- Sections ---- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--ink); color: var(--steel-light); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 0.7rem;
}
.section-dark .kicker { color: var(--brass); }
.section-intro { max-width: 42em; }
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Page banner (interior pages) ---- */
.page-banner {
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(46, 93, 107, 0.18), transparent 60%),
    var(--ink);
  color: var(--steel-light);
  padding: 3.4rem 0 3.2rem;
}
.page-banner h1 { color: var(--white); margin-bottom: 0.25em; font-size: clamp(2.1rem, 4.5vw, 3rem); }
.page-banner p { max-width: 40em; margin-bottom: 0; font-size: 1.08rem; }

/* ---- Feature grid (About) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23, 36, 47, 0.05);
}
.section-alt .feature-card { background: var(--shell); }
.feature-card h3 { margin-top: 0.9rem; font-size: 1.15rem; }
.feature-card p { margin-bottom: 0; font-size: 0.96rem; color: var(--text-muted); }
.feature-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(176, 125, 63, 0.12);
  color: var(--brass-deep);
}
.feature-icon svg { width: 24px; height: 24px; }

/* ---- Split layout ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
}
.split-art {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23, 36, 47, 0.05);
}
.section-alt .split-art { background: var(--shell); }
.split-art svg { width: 85%; margin: 0 auto; }

/* ---- Numbered steps ---- */
.steps { list-style: none; margin: 1.6rem 0 0; padding: 0; counter-reset: step; }
.steps li {
  position: relative;
  padding: 0 0 1.4rem 3.2rem;
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0.05em;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass);
  font-family: var(--font-display);
  font-weight: 600;
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.02rem; top: 2.5rem; bottom: 0.3rem;
  width: 2px;
  background: rgba(23, 36, 47, 0.12);
}
.steps strong { color: var(--ink); }

/* ---- Video embeds ---- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2rem;
}
.video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #0c141b;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---- Model cards ---- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.6rem;
  align-items: stretch;
}
.model-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23, 36, 47, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.model-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.model-art {
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(46, 93, 107, 0.14), transparent 70%),
    var(--ink);
  padding: 2rem 1.6rem;
  display: grid;
  place-items: center;
  min-height: 220px;
}
.model-art svg { width: 78%; height: auto; max-height: 190px; }
.model-art--photo { padding: 1.2rem; overflow: hidden; }
.model-art--photo img { width: 100%; height: 220px; object-fit: cover; display: block; border-radius: var(--radius-sm); }
.model-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.model-name { font-size: 1.3rem; margin-bottom: 0.15em; }
.model-dims {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.model-desc { color: var(--text-muted); font-size: 0.97rem; flex: 1; }
.model-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(23, 36, 47, 0.09);
}
.model-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
}
.model-price small { font-size: 0.68rem; font-family: var(--font-body); font-weight: 500; color: var(--text-muted); letter-spacing: 0.03em; }
.model-tagline-bar {
  margin-top: 2.6rem;
  background: var(--ink);
  color: var(--shell);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
}
.model-tagline-bar svg { width: 30px; height: 30px; flex-shrink: 0; color: var(--brass); }
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-deep);
  background: rgba(176, 125, 63, 0.13);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.7rem;
  align-self: flex-start;
}

/* ---- Recipes ---- */
.recipe-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23, 36, 47, 0.05);
  padding: 2.2rem 2.2rem 2rem;
  margin-top: 2rem;
}
.recipe-card h3 { font-size: 1.5rem; }
.recipe-icon {
  filter: drop-shadow(0 4px 9px rgba(23, 36, 47, 0.22));
}
/* Stuffies: badge tucked in the top-right corner, inside the card */
.recipe-icon--corner {
  position: absolute;
  top: 1.1rem;
  right: 2rem;
  width: 120px;
  height: 120px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 6px 14px rgba(23, 36, 47, 0.2));
}
.recipe-card--stuffies .recipe-meta,
.recipe-card--stuffies > h3,
.recipe-card--stuffies > p { padding-right: 152px; }
/* Swamper Feller: floated beside the intro text, which wraps around it */
.recipe-intro { display: flow-root; }
.recipe-icon--float {
  float: right;
  width: 120px;
  height: 120px;
  margin: -0.3rem 0 0.5rem 1.6rem;
  transform: rotate(3deg);
  filter: drop-shadow(0 5px 12px rgba(23, 36, 47, 0.2));
}
/* Pecorino Mayo: resting in the whitespace beside the short columns */
.recipe-icon--seam {
  position: absolute;
  right: 2.4rem;
  bottom: 1.9rem;
  width: 120px;
  height: 120px;
  transform: rotate(-3deg);
  filter: drop-shadow(0 7px 16px rgba(23, 36, 47, 0.2));
}
.recipe-card--sauce .recipe-cols { margin-right: 158px; }
.recipe-meta {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 0.4rem;
  display: block;
  font-weight: 600;
}
.recipe-cols {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.2rem;
  margin-top: 1.2rem;
}
.recipe-cols h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.ingredients { list-style: none; margin: 0; padding: 0; font-size: 0.95rem; }
.ingredients li {
  padding: 0.42rem 0 0.42rem 1.35rem;
  position: relative;
  border-bottom: 1px dashed rgba(23, 36, 47, 0.1);
}
.ingredients li:last-child { border-bottom: none; }
.ingredients li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass);
}
.method { margin: 0; padding-left: 1.2rem; font-size: 0.98rem; }
.method li { margin-bottom: 0.75rem; }

/* ---- Tips ---- */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.tip-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.4rem;
}
.tip-card h3 { font-size: 1.1rem; color: var(--brass); }
.tip-card p { color: var(--steel-light); font-size: 0.96rem; margin-bottom: 0; }

/* ---- Callout ---- */
.callout {
  background: linear-gradient(120deg, rgba(176, 125, 63, 0.1), rgba(46, 93, 107, 0.08));
  border-left: 4px solid var(--brass);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.6rem;
  margin-top: 2rem;
  font-size: 1rem;
}
.callout strong { color: var(--ink); }
.callout p:last-child { margin-bottom: 0; }

/* ---- Contact / purchase ---- */
.purchase-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.6rem;
  align-items: start;
}
.contact-panel {
  background: var(--ink);
  color: var(--steel-light);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  position: sticky;
  top: 90px;
}
.contact-panel h2 { color: var(--white); font-size: 1.6rem; }
.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-top: 1.4rem;
}
.contact-item svg { width: 22px; height: 22px; color: var(--brass); flex-shrink: 0; margin-top: 0.2rem; }
.contact-item a { color: var(--shell); font-weight: 600; text-decoration: none; font-size: 1.08rem; }
.contact-item a:hover { color: var(--brass); }
.contact-item .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.1rem;
}
.contact-divider { border: none; border-top: 1px solid rgba(247, 243, 234, 0.14); margin: 1.8rem 0; }
.contact-panel .small-note { font-size: 0.88rem; color: var(--steel); margin-bottom: 0; }

/* ---- Form ---- */
.order-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23, 36, 47, 0.06);
  padding: 2.2rem 2.2rem 2.4rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.3rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--shell);
  border: 1px solid rgba(23, 36, 47, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 125, 63, 0.18);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-footer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.form-note { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.form-status {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(46, 107, 78, 0.1);
  border: 1px solid rgba(46, 107, 78, 0.3);
  color: #23573f;
}
.form-status.error {
  display: block;
  background: rgba(163, 62, 44, 0.08);
  border: 1px solid rgba(163, 62, 44, 0.3);
  color: #86331f;
}
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---- CTA band ---- */
.cta-band {
  background: var(--ink);
  color: var(--steel-light);
  text-align: center;
  padding: 4rem 1.4rem;
}
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 36em; margin: 0 auto 1.8em; }

/* ---- Footer ---- */
.site-footer {
  background: #0e1820;
  color: var(--steel);
  padding: 2.8rem 0 2.2rem;
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.site-footer .brand { color: var(--shell); }
.site-footer .brand-tag { color: var(--brass); }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a { color: var(--steel-light); text-decoration: none; }
.footer-nav a:hover { color: var(--brass); }
.footer-contact { text-align: right; }
.footer-contact a { color: var(--steel-light); text-decoration: none; }
.footer-contact a:hover { color: var(--brass); }
.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .model-card { transition: none; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 3.4rem 1.4rem 4rem; gap: 2.4rem; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .feature-grid, .model-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .split, .recipe-cols, .video-grid, .tips-grid, .purchase-layout { grid-template-columns: 1fr; }
  .split { gap: 2rem; }
  .contact-panel { position: static; }
  .footer-contact { text-align: left; }
  /* Pecorino icon: columns go single-column here, so move it up to a corner badge */
  .recipe-card--sauce .recipe-cols { margin-right: 0; }
  .recipe-icon--seam { bottom: auto; top: 1.1rem; width: 100px; height: 100px; }
  .recipe-card--sauce .recipe-meta,
  .recipe-card--sauce > h3,
  .recipe-card--sauce > p { padding-right: 128px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--shell);
    border-bottom: 1px solid rgba(23, 36, 47, 0.1);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 0.6rem 0; }
  .site-nav a {
    display: block;
    padding: 0.85rem 1.6rem;
    font-size: 1.05rem;
  }
  .site-nav a::after { display: none; }
  .site-nav a[aria-current="page"] { color: var(--brass-deep); }
  .section { padding: 3.2rem 0; }
  .recipe-card, .order-form { padding: 1.6rem 1.3rem; }
  /* Shrink recipe icons so they don't crowd narrow cards */
  .recipe-icon--corner { width: 80px; height: 80px; top: 0.6rem; right: 1.1rem; }
  .recipe-card--stuffies .recipe-meta,
  .recipe-card--stuffies > h3,
  .recipe-card--stuffies > p { padding-right: 96px; }
  .recipe-icon--float { width: 80px; height: 80px; margin-left: 1rem; }
  .recipe-icon--seam { width: 80px; height: 80px; top: 1.2rem; right: 1.1rem; }
  .recipe-card--sauce .recipe-meta,
  .recipe-card--sauce > h3,
  .recipe-card--sauce > p { padding-right: 96px; }
  .form-grid { grid-template-columns: 1fr; }
}
