:root {
  --primary: #1f2327;
  --secondary: #b95c2d;
  --accent: #b87333;
  --text: #24303a;
  --muted: #626c77;
  --surface: #f8f1e7;
  --surface-alt: #ffffff;
  --surface-soft: #f3f5f7;
  --border: #d9dee4;
  --border-strong: rgba(31, 35, 39, 0.14);
  --white: #ffffff;
  --sage: #7f9361;
  --body-font: "Public Sans", system-ui, sans-serif;
  --heading-font: "Lora", Georgia, serif;
  --container-width: 1180px;
  --section-space: 4.25rem;
  --shadow-soft: 0 14px 36px rgba(26, 31, 35, 0.08);
  --shadow-hover: 0 18px 42px rgba(26, 31, 35, 0.12);
  --radius-shell: 22px;
  --radius-card: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  line-height: 1.68;
  background:
    radial-gradient(70rem 36rem at 10% -8%, rgba(184, 115, 51, 0.08), transparent 56%),
    radial-gradient(42rem 24rem at 100% 0, rgba(31, 35, 39, 0.04), transparent 52%),
    linear-gradient(180deg, #f8f1e7 0, #fcfbf9 28%, #ffffff 100%);
  background-repeat: no-repeat;
}
a { color: var(--secondary); text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease; }
a:hover { color: var(--primary); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container-width), calc(100% - 2rem)); margin: 0 auto; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.button-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(17, 22, 27, 0.16);
}
.button-primary:hover {
  color: var(--white);
  background: #161b20;
  transform: translateY(-1px);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary);
  border-color: rgba(31, 35, 39, 0.1);
}
.button-secondary:hover {
  color: var(--primary);
  background: rgba(248, 241, 231, 0.96);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 35, 39, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--primary);
  min-width: 0;
}
.logo:hover { color: var(--primary); }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(31, 35, 39, 0.03);
  box-shadow: inset 0 0 0 1px rgba(31, 35, 39, 0.08);
  flex-shrink: 0;
}
.logo-mark-image {
  width: 44px;
  height: 44px;
}
.logo-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
.logo-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
}
.logo-wordmark {
  font-family: var(--heading-font);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.05;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: rgba(184, 115, 51, 0.12);
  color: var(--secondary);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(31, 35, 39, 0.12);
  border-radius: 12px;
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Hero */
.page-hero {
  padding: 4.4rem 0 3.5rem;
  border-bottom: 1px solid rgba(31, 35, 39, 0.08);
  background:
    linear-gradient(135deg, rgba(248, 241, 231, 0.96), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top left, rgba(185, 92, 45, 0.14), transparent 30%);
  background-repeat: no-repeat;
}
.page-hero .container {
  max-width: 900px;
  text-align: center;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.12);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-hero-summary {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  color: var(--muted);
}

/* Layout and typography */
main { padding: 0 0 calc(var(--section-space) + 0.75rem); }
.breadcrumbs {
  border-bottom: 1px solid rgba(31, 35, 39, 0.08);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}
.breadcrumbs .container { padding: 0.82rem 0; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--secondary); }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 3rem;
  align-items: start;
  margin-top: 2.2rem;
}
.content-grid.content-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 930px;
  margin: 2.2rem auto 0;
}
article { min-width: 0; }
.article-body {
  display: grid;
  gap: 1.15rem;
}
.article-body > * { margin: 0; }
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  color: var(--primary);
  line-height: 1.16;
}
h1 { font-size: clamp(2.5rem, 4.5vw, 4rem); margin: 0 0 1rem; }
h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  margin-top: 2.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(31, 35, 39, 0.08);
}
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; }
p, ul, ol, table, figure { margin: 0 0 1.2rem; }
ul, ol { padding-left: 1.35rem; }
li { margin-bottom: 0.45rem; }
figure {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
figure svg,
figure img { width: 100%; height: auto; }
figcaption {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.94rem;
  color: var(--muted);
  background: var(--surface-alt);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
th, td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
thead { background: var(--surface-soft); }
tbody tr:last-child td { border-bottom: 0; }

/* Cards and support blocks */
.card-grid,
.editorial-pillars,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 1.6rem 0 0.6rem;
}
.card-grid-item,
.pillar-card,
.contact-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 241, 0.92));
  box-shadow: var(--shadow-soft);
}
.card-grid-item:hover,
.pillar-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.card-grid-item h3,
.pillar-card h3,
.contact-card h3 {
  margin: 0;
}
.card-grid-item p:last-child,
.pillar-card p:last-child,
.contact-card p:last-child { margin-bottom: 0; }
.card-grid-item a {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.84rem;
}
.pillars-intro,
.section-lead {
  font-size: 1.02rem;
  color: var(--muted);
}
.section-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
}

.callout,
.contact-note {
  margin: 2rem 0;
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(248, 241, 231, 0.92), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(184, 115, 51, 0.2);
  box-shadow: var(--shadow-soft);
}
.callout strong,
.contact-note strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--heading-font);
  font-size: 1.16rem;
  color: var(--primary);
}
.callout p:last-child,
.contact-note p:last-child { margin-bottom: 0; }

.recipe-card {
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 22px;
  border: 1px solid rgba(184, 115, 51, 0.28);
  background: linear-gradient(180deg, rgba(248, 241, 231, 0.95), rgba(255, 255, 255, 0.97));
  box-shadow: var(--shadow-soft);
}
.recipe-card-header {
  padding-bottom: 1.4rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(31, 35, 39, 0.08);
  text-align: center;
}
.recipe-card-title {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.recipe-body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
}
.recipe-ingredients h4,
.recipe-instructions h4 {
  margin: 0 0 0.8rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(31, 35, 39, 0.08);
}
.recipe-ingredients ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recipe-ingredients li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(31, 35, 39, 0.12);
}
.recipe-ingredients li:last-child { border-bottom: 0; }
.recipe-ingredients li span:last-child { font-weight: 700; color: var(--primary); }

.workflow {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 0.8rem;
}
.workflow-step,
.timeline-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-card);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.workflow-step-number {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.14);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.workflow-step-content h4 { margin: 0 0 0.3rem; }
.workflow-step-content p { margin: 0; color: var(--muted); }

.timeline {
  display: grid;
  gap: 1rem;
  margin: 1.7rem 0 0.8rem;
}
.timeline-marker {
  width: 5.4rem;
  padding-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}
.timeline-copy h3 { margin: 0 0 0.35rem; }
.timeline-copy p { margin: 0; color: var(--muted); }

.related-resources {
  margin-top: 2.1rem;
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius-card);
  background: rgba(243, 245, 247, 0.92);
  border: 1px solid rgba(31, 35, 39, 0.08);
}
.related-resources h2 {
  margin: 0 0 0.7rem;
  padding: 0;
  border: 0;
  font-size: 1.28rem;
}
.related-resources ul { margin: 0; padding-left: 1.2rem; }
.related-resources li:last-child { margin-bottom: 0; }

/* Homepage */
.home-hero {
  padding: 4.9rem 0 3.8rem;
  background:
    linear-gradient(120deg, rgba(248, 241, 231, 0.98), rgba(255, 255, 255, 0.96) 48%, rgba(247, 240, 231, 0.92)),
    radial-gradient(circle at 12% 12%, rgba(184, 115, 51, 0.12), transparent 34%),
    radial-gradient(circle at 90% 15%, rgba(31, 35, 39, 0.05), transparent 28%);
}
.home-hero .container {
  max-width: var(--container-width);
  text-align: left;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}
.home-hero-copy .page-hero-summary {
  margin: 0;
  max-width: 42rem;
}
.home-hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.45rem;
}
.home-hero-points {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.45rem 0 0;
  max-width: 42rem;
}
.home-hero-points li {
  position: relative;
  margin: 0;
  padding-left: 1.3rem;
  color: var(--muted);
}
.home-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(184, 115, 51, 0.14);
}
.home-hero-stage {
  display: grid;
  gap: 1rem;
}
.hero-stage-panel {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: 26px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(160deg, #181d22, #232a30 62%, #11161b);
  box-shadow: 0 24px 52px rgba(17, 22, 27, 0.24);
}
.hero-stage-panel::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -62px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.26), transparent 70%);
}
.hero-stage-topper {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-stage-topper span {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4c59c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-stage-title {
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}
.hero-stage-copy {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.72);
}
.hero-stage-route {
  display: grid;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.route-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.route-number {
  padding-top: 0.12rem;
  color: #f0b785;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.route-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.06rem;
}
.route-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}
.hero-spotlight {
  display: grid;
  gap: 0.8rem;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 35, 39, 0.08);
  box-shadow: var(--shadow-soft);
}
.hero-spotlight-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}
.hero-spotlight-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.hero-spotlight a {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(248, 241, 231, 0.82);
  border: 1px solid rgba(184, 115, 51, 0.14);
  color: var(--primary);
  font-weight: 700;
}
.hero-spotlight a span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}
.home-signal-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.45rem;
}
.home-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.signal-card {
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 35, 39, 0.08);
  box-shadow: var(--shadow-soft);
}
.signal-label {
  margin: 0 0 0.38rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}
.signal-title {
  margin: 0 0 0.35rem;
  padding: 0;
  border: 0;
  font-size: 1.14rem;
  font-family: var(--heading-font);
  color: var(--primary);
}
.signal-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.home-main {
  padding-top: 1.35rem;
}
.home-page .content-grid.content-single {
  max-width: 1040px;
}
.home-foundation,
.home-profiler,
.home-showcase {
  display: grid;
  gap: 1.35rem;
}
.home-section-heading {
  display: grid;
  gap: 0.65rem;
}
.home-section-heading h2 {
  margin-top: 0;
  padding-bottom: 0;
  border: 0;
}
.home-foundation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.4rem;
  align-items: start;
}
.home-foundation-copy {
  display: grid;
  gap: 1rem;
}
.home-foundation-copy p {
  margin: 0;
}
.home-pillar-stack {
  margin: 0;
}
.home-pillar-stack .pillar-card {
  position: relative;
  overflow: hidden;
}
.home-pillar-stack .pillar-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--secondary), transparent);
  opacity: 0.75;
}
.home-feature-figure {
  margin: 0;
}
.home-tag-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.tag-link {
  padding: 0.56rem 0.92rem;
  border-radius: 999px;
  background: rgba(31, 35, 39, 0.05);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(31, 35, 39, 0.08);
}
.tag-link:hover {
  color: var(--secondary);
  background: rgba(184, 115, 51, 0.12);
}
.home-card-grid .card-grid-item,
.home-mixologist-grid .card-grid-item {
  min-height: 100%;
}
.home-mixologist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.home-next-steps h2 {
  font-size: 1.38rem;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, #1d2125, #13171b);
}
.footer-shell {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  padding: 3.2rem 0 2rem;
}
.footer-brand { display: grid; gap: 0.7rem; }
.footer-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 199, 141, 0.86);
}
.footer-brand h4 {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  font-size: 1.45rem;
}
.footer-brand p { margin: 0; color: rgba(255, 255, 255, 0.66); }
.footer-col h4 {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  color: var(--white);
  font-size: 1rem;
}
.footer-col ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.7rem 1rem;
  padding: 0;
  margin: 0;
}
.footer-col li { margin: 0; }
.footer-col a { color: rgba(255, 255, 255, 0.76); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.35rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}
.footer-bottom p { margin: 0; }

/* Motion */
.fade-in-section {
  opacity: 1;
  transform: none;
  transition: none;
}
.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }
  .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .primary-nav {
    width: 100%;
    display: none;
    padding-top: 0.35rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
  .primary-nav a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    background: rgba(31, 35, 39, 0.03);
  }
  .recipe-body,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .home-hero {
    padding: 3.8rem 0 2.8rem;
  }
  .home-hero-grid,
  .home-foundation-grid,
  .home-signal-grid,
  .hero-spotlight-links,
  .home-mixologist-grid {
    grid-template-columns: 1fr;
  }
  .home-signal-strip {
    margin-top: 0;
  }
  .footer-shell { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container-width), calc(100% - 1.25rem)); }
  .header-inner { padding: 0.85rem 0; }
  .logo-mark { width: 46px; height: 46px; }
  .logo-mark-image { width: 38px; height: 38px; }
  .logo-kicker { font-size: 0.68rem; }
  .page-hero { padding: 3.4rem 0 2.8rem; }
  .home-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-hero-actions .button {
    width: 100%;
  }
  .hero-stage-panel,
  .hero-spotlight,
  .signal-card {
    padding: 1.1rem;
  }
  .recipe-card { padding: 1.35rem; }
  .workflow-step,
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-marker { width: auto; padding-top: 0; }
  .footer-col ul { grid-template-columns: 1fr; }
}
