@charset "UTF-8";
/* ==========================================================================
   Beard & Barrel — landing page
   Single stylesheet, no build step. Organised as:
     1. Fonts
     2. Design tokens
     3. Reset & base
     4. Typography
     5. Layout
     6. Components
   Palette and type rules come from docs/BRAND.md. Do not hard-code hex
   values below the token block.
   ========================================================================== */

/* ==========================================================================
   1. Fonts — Acumin Pro Condensed, subsetted to Latin (tools/build_fonts.py)
   ========================================================================== */

@font-face {
  font-family: "Acumin Pro Condensed";
  src: url("../fonts/acumin-cond-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acumin Pro Condensed";
  src: url("../fonts/acumin-cond-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acumin Pro Condensed";
  src: url("../fonts/acumin-cond-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acumin Pro Condensed";
  src: url("../fonts/acumin-cond-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acumin Pro Condensed";
  src: url("../fonts/acumin-cond-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   2. Design tokens
   ========================================================================== */

:root {
  /* --- Brand palette (identity document values) --- */
  --bb-black: #0b0c0c;
  --bb-bronze: #7b5f30;
  --bb-bone: #e2e0dc;
  --bb-gold: #a8884e;
  --bb-charcoal: #33312e;
  --bb-brown: #33250d;

  /* --- Semantic colour --- */
  --bg: var(--bb-black);
  --bg-raised: var(--bb-charcoal);
  --bg-deep: #070808;
  --bg-light: var(--bb-bone);

  --text: var(--bb-bone);
  --text-muted: rgba(226, 224, 220, 0.72);   /* 8.0:1 on --bg */
  --text-faint: rgba(226, 224, 220, 0.5);
  --text-on-light: var(--bb-black);
  --text-on-light-muted: rgba(11, 12, 12, 0.68);

  --accent: var(--bb-gold);                   /* 5.9:1 on --bg */
  --accent-deep: var(--bb-bronze);            /* UI only — 3.3:1, not body text */

  --rule: rgba(226, 224, 220, 0.14);
  --rule-strong: rgba(226, 224, 220, 0.26);
  --rule-on-light: rgba(11, 12, 12, 0.14);

  /* --- Type --- */
  --font: "Acumin Pro Condensed", "Barlow Condensed", "Roboto Condensed",
    "Arial Narrow", system-ui, sans-serif;

  --fs-display: clamp(3rem, 9vw, 6.5rem);
  --fs-h1: clamp(2.25rem, 5.5vw, 4rem);
  --fs-h2: clamp(1.875rem, 3.6vw, 3rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.625rem);
  --fs-h4: clamp(1.0625rem, 1.4vw, 1.25rem);
  --fs-body: clamp(1rem, 0.97rem + 0.15vw, 1.125rem);
  --fs-lead: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  --fs-small: 0.9375rem;
  --fs-eyebrow: 0.8125rem;

  --lh-tight: 0.96;
  --lh-heading: 1.08;
  --lh-body: 1.62;

  --tr-display: -0.02em;
  --tr-heading: -0.01em;
  --tr-eyebrow: 0.18em;

  /* --- Spacing --- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-9: 4rem;
  --sp-10: 5rem;
  --sp-section: clamp(3.25rem, 6.5vw, 6rem);

  /* --- Layout --- */
  --container: 76rem;
  --container-narrow: 48rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* --- Form --- */
  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 2px 4px rgba(0, 0, 0, 0.4), 0 20px 56px rgba(0, 0, 0, 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 240ms;

  --header-h: 4.5rem;
}

/* ==========================================================================
   3. Reset & base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--accent);
  color: var(--bb-black);
}

/* Skip link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 100;
  padding: var(--sp-3) var(--sp-5);
  background: var(--accent);
  color: var(--bb-black);
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus {
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   4. Typography
   ========================================================================== */

.display,
.h1,
.h2,
.h3 {
  font-weight: 900;
  line-height: var(--lh-heading);
  letter-spacing: var(--tr-heading);
  text-wrap: balance;
}

.display {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-display);
  text-transform: uppercase;
}

.h1 {
  font-size: var(--fs-h1);
  text-transform: uppercase;
}

.h2 {
  font-size: var(--fs-h2);
  text-transform: uppercase;
}

.h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
}

.h4 {
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}

.lead {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  text-wrap: pretty;
}

.muted {
  color: var(--text-muted);
}

.prose p + p {
  margin-top: var(--sp-4);
}

.prose {
  text-wrap: pretty;
}

/* ==========================================================================
   5. Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--sp-section);
}

.section--light {
  background: var(--bg-light);
  color: var(--text-on-light);
}
.section--light .eyebrow {
  color: var(--bb-bronze);
}
.section--light .lead,
.section--light .muted {
  color: var(--text-on-light-muted);
}

.section--raised {
  background: var(--bg-raised);
}

.section--deep {
  background: var(--bg-deep);
}

.section__head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 3.8vw, 3rem);
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.stack > * + * {
  margin-top: var(--sp-4);
}

/* ==========================================================================
   6. Components
   ========================================================================== */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: background var(--dur) var(--ease),
    color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn--primary {
  background: var(--accent-deep);
  color: var(--bb-bone);
}
.btn--primary:hover {
  background: var(--accent);
  color: var(--bb-black);
}

.btn--ghost {
  border: 1px solid var(--rule-strong);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section--light .btn--ghost {
  border-color: var(--rule-on-light);
  color: var(--text-on-light);
}
.section--light .btn--ghost:hover {
  border-color: var(--bb-bronze);
  color: var(--bb-bronze);
}

.btn:active {
  transform: translateY(1px);
}

/* --- Rules --- */
.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

/* --- Media --- */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-raised);
}

.media img,
.media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   7. Site header — S-01
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
  background: rgba(11, 12, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.site-header__brand {
  flex: none;
  display: block;
}

.site-header__wordmark {
  width: 168px;
  height: auto;
}

.site-nav {
  margin-inline-start: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.site-nav__list a {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}

.site-nav__list a:hover {
  color: var(--accent);
}

.site-header__cta {
  flex: none;
  padding: 0.625rem 1.375rem;
}

/* --- Mobile menu --- */
.nav-toggle {
  display: none;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  margin-inline-start: auto;
  padding: 0.75rem;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  inset: var(--header-h) 0 auto 0;
  background: rgba(11, 12, 12, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-block: var(--sp-4) var(--sp-6);
}

.mobile-nav__list a:not(.btn) {
  display: block;
  padding: var(--sp-3) 0;
  font-size: var(--fs-h4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rule);
}

.mobile-nav__list .btn {
  margin-top: var(--sp-4);
  align-self: flex-start;
}

@media (max-width: 60rem) {
  .site-nav,
  .site-header__cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ==========================================================================
   8. Hero — S-02
   ========================================================================== */

.hero {
  position: relative;
  padding-block: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem))
    clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(90rem 50rem at 78% 18%, rgba(51, 37, 13, 0.55), transparent 65%),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 55%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 60rem) {
  .hero__inner {
    grid-template-columns: 1fr clamp(19rem, 32%, 26rem);
  }
}

/* The headline is the wordmark artwork, so it scales as an image rather than
   as type. See D-16 — the wordmark is not drawn in the supplied Acumin. */
.hero__title {
  max-width: 34rem;
  margin-bottom: var(--sp-4);
}

.hero__title img {
  width: 100%;
}

.hero__subtitle {
  color: var(--accent);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--sp-5);
}

.hero__lead {
  max-width: 34rem;
}

.hero__points {
  display: grid;
  gap: var(--sp-2);
  margin-block: var(--sp-6);
  max-width: 34rem;
}

.hero__points li {
  position: relative;
  padding-inline-start: 1.5rem;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.hero__points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
}

.hero__media {
  position: relative;
}

.hero__figure {
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rule);
}

@media (max-width: 60rem) {
  .hero__media {
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
  }
}

/* ==========================================================================
   9. Site footer — S-12
   ========================================================================== */

.site-footer {
  padding-block: var(--sp-9);
  background: var(--bg-deep);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  gap: var(--sp-5);
}

.site-footer__logo {
  width: 240px;
}

.site-footer__tagline {
  font-size: var(--fs-small);
  color: var(--text-muted);
  max-width: 30rem;
}

.site-footer__legal {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.04em;
  color: var(--text-faint);
}

/* ==========================================================================
   10. Shared content components
   ========================================================================== */

.checklist {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.checklist li {
  position: relative;
  padding-inline-start: 1.75rem;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.checklist li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.42em;
  width: 0.7rem;
  height: 0.4rem;
  border: solid var(--accent);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.section--light .checklist li {
  color: var(--text-on-light-muted);
}
.section--light .checklist li::before {
  border-color: var(--bb-bronze);
}

/* ==========================================================================
   11. S-03 Brand story
   ========================================================================== */

.story__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 60rem) {
  .story__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  }
}

.story__media {
  aspect-ratio: 4 / 5;
}

.story__cta {
  margin-top: var(--sp-7);
}

/* ==========================================================================
   12. S-04 Benefits
   ========================================================================== */

/* Five items: 2+2+1 on tablet, 3+2 on desktop — avoids a lone orphan card. */
.benefits__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.benefit {
  padding-top: var(--sp-5);
  border-top: 2px solid var(--bb-bronze);
}

.benefit p {
  margin-top: var(--sp-3);
  font-size: var(--fs-small);
  color: var(--text-on-light-muted);
}

/* ==========================================================================
   13. S-05 Ingredients
   ========================================================================== */

.ingredients__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 60rem) {
  .ingredients__inner {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  }
}

.ingredients__media {
  aspect-ratio: 4 / 5;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

@media (max-width: 60rem) {
  .ingredients__media {
    position: static;
  }
}

.ingredients__list {
  display: grid;
  gap: 0;
}

.ingredient {
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--rule);
}
.ingredient:first-child {
  padding-top: 0;
}

.ingredient dt {
  color: var(--accent);
  margin-bottom: var(--sp-2);
}

.ingredient dd {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.ingredients__strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-6);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rule);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.ingredients__strip span {
  position: relative;
}
.ingredients__strip span + span::before {
  content: "·";
  position: absolute;
  inset-inline-start: calc(var(--sp-6) / -2);
  transform: translateX(-50%);
  color: var(--accent);
}

/* ==========================================================================
   14. S-06 Positioning
   ========================================================================== */

.positioning__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 60rem) {
  .positioning__inner {
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
  }
}

.positioning__media {
  aspect-ratio: 9 / 16;
  max-height: 34rem;
  margin-inline: auto;
  width: 100%;
  max-width: 20rem;
}

.feature-cards {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

/* Image sits flush to the card edge; the card clips it, so the media's own
   radius is reset. Keeps the card language rather than WP's bare image. */
.feature-card {
  display: flex;
  flex-direction: column;
  background: rgba(226, 224, 220, 0.04);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card__media {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  flex: none;
}

.feature-card__body {
  padding: var(--sp-6);
}

.feature-card h3 {
  color: var(--accent);
  margin-bottom: var(--sp-3);
}

.feature-card p {
  font-size: var(--fs-small);
}

/* ==========================================================================
   15. S-07 How to use
   ========================================================================== */

.steps {
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  counter-reset: step;
}

.step__media {
  aspect-ratio: 1;
  margin-bottom: var(--sp-4);
  background: rgba(11, 12, 12, 0.06);
}

.step__num {
  font-size: var(--fs-h3);
  font-weight: 900;
  line-height: 1;
  color: var(--bb-bronze);
  margin-bottom: var(--sp-2);
}

.step p:last-child {
  font-size: var(--fs-small);
  color: var(--text-on-light-muted);
}

.tips {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(11, 12, 12, 0.05);
  border-radius: var(--radius-lg);
}

@media (min-width: 48rem) {
  .tips {
    grid-template-columns: 15rem minmax(0, 1fr);
  }
}

.tips__media {
  aspect-ratio: 9 / 16;
  max-height: 26rem;
  width: 100%;
}

.tips__copy .h3 {
  color: var(--text-on-light);
}

/* ==========================================================================
   16. S-08 Testimonials
   ========================================================================== */

.quotes {
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.quote {
  position: relative;
  padding: var(--sp-6);
  padding-top: var(--sp-8);
  background: var(--bg-raised);
  border-radius: var(--radius-lg);
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 0.1em;
  inset-inline-start: var(--sp-5);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}

.quote blockquote {
  margin: 0;
  font-size: var(--fs-body);
  color: var(--text);
  text-wrap: pretty;
}

/* ==========================================================================
   17. S-09 FAQ
   ========================================================================== */

.faq__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 60rem) {
  .faq__inner {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  }
}

.faq__media {
  aspect-ratio: 3 / 4;
  margin-top: var(--sp-6);
}

.faq__item {
  border-bottom: 1px solid var(--rule);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  font-size: var(--fs-h4);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color var(--dur) var(--ease);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "";
  flex: none;
  width: 0.75rem;
  height: 0.75rem;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: translateY(-25%) rotate(45deg);
  transition: transform var(--dur) var(--ease);
}

.faq__item[open] summary::after {
  transform: translateY(15%) rotate(-135deg);
}

.faq__item summary:hover {
  color: var(--accent);
}

.faq__answer {
  padding-bottom: var(--sp-5);
  max-width: 42rem;
}

.faq__answer p {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

/* ==========================================================================
   18. S-10 Closing CTA
   ========================================================================== */

.closing {
  background:
    radial-gradient(60rem 40rem at 20% 30%, rgba(51, 37, 13, 0.7), transparent 70%),
    var(--bg);
}

.closing__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 60rem) {
  .closing__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  }
}

.closing__media {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 22rem;
  max-height: 36rem;
  margin-inline: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rule);
}

.closing__actions {
  margin-top: var(--sp-7);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rule);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ==========================================================================
   19. S-11 Contact
   ========================================================================== */

.contact__inner {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: var(--sp-4);
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-7);
  margin-top: var(--sp-4);
}

.contact__links a {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}

.contact__links a:hover {
  border-bottom-color: currentColor;
}

/* ==========================================================================
   20. Mobile refinements
   Portrait imagery at full column width made every asset roughly a whole
   screen on a phone, and the page 17 screens tall. These rules keep the
   photography present but stop any single image filling the viewport.
   Crops shift upward via object-position so faces survive the wider ratios.
   ========================================================================== */

@media (max-width: 48rem) {
  /* Four steps read fine as a 2x2 grid, and it halves the block */
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-6) var(--sp-4);
  }

  .step__media {
    margin-bottom: var(--sp-3);
  }

  .step__num {
    font-size: var(--fs-h4);
    margin-bottom: var(--sp-1);
  }

  .step p:last-child {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* Wide crops instead of tall portraits for supporting imagery */
  .story__media,
  .ingredients__media {
    aspect-ratio: 3 / 2;
  }

  .story__media img {
    object-position: 50% 32%;
  }

  .faq__media {
    aspect-ratio: 16 / 9;
  }

  .faq__media img {
    object-position: 50% 22%;
  }

  .hero__figure {
    aspect-ratio: 4 / 5;
  }

  /* Feature cards go horizontal — a third of the height of stacked ones,
     and the photography still reads at thumbnail size */
  .feature-card {
    flex-direction: row;
    align-items: stretch;
  }

  .feature-card__media {
    flex: 0 0 38%;
    aspect-ratio: auto;
  }

  .feature-card__media img {
    object-position: 50% 28%;
  }

  .feature-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-4) var(--sp-5);
  }

  .feature-card h3 {
    margin-bottom: var(--sp-2);
  }

  .feature-card p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* Trim the ingredient rows a little */
  .ingredient {
    padding-block: var(--sp-4);
  }

  /* 9:16 video is taller than the viewport at full width. Constrain by
     width so the aspect ratio still holds and nothing is cropped. */
  .positioning__media,
  .tips__media,
  .closing__media {
    max-width: 15rem;
    max-height: none;
    margin-inline: auto;
  }
}

@media (max-width: 30rem) {
  .positioning__media,
  .tips__media,
  .closing__media {
    max-width: 13rem;
  }
}
