:root {
  --bb-ink: #2b2118;
  --bb-muted: #6f6357;
  --bb-cream: #fff8ec;
  --bb-cream-strong: #f6e7cb;
  --bb-biscuit: #f4dfb8;
  --bb-kale: #31543d;
  --bb-kale-dark: #203929;
  --bb-pumpkin: #dc7a39;
  --bb-coral: #ee9b73;
  --bb-white: #ffffff;
  --bb-border: rgba(43, 33, 24, 0.14);
  --bb-shadow: 0 24px 70px rgba(43, 33, 24, 0.14);
  --bb-radius: 28px;
  --bb-radius-sm: 18px;
  --bb-wrap: 1180px;
  --bb-focus: 0 0 0 3px rgba(220, 122, 57, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bb-cream);
  color: var(--bb-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }

a:hover { color: var(--bb-kale); }

button,
input,
select,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: none; box-shadow: var(--bb-focus); border-radius: 8px; }

.wrap { width: min(calc(100% - 40px), var(--bb-wrap)); margin-inline: auto; }

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--bb-ink);
  color: var(--bb-white);
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bb-border);
}

.site-header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.site-branding a,
.brand-mark { display: inline-flex; align-items: center; text-decoration: none; }

.custom-logo-link img { width: auto; max-height: 54px; }

.primary-navigation { justify-self: end; }

.primary-navigation ul { display: flex; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }

.primary-navigation a {
  display: block;
  padding: 10px 12px;
  color: var(--bb-ink);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a { background: var(--bb-biscuit); color: var(--bb-ink); }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--bb-kale);
  color: var(--bb-white);
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(49, 84, 61, 0.22);
  cursor: pointer;
}

.header-cta:hover,
.button:hover { color: var(--bb-white); background: var(--bb-kale-dark); transform: translateY(-1px); }

.button--ghost { background: transparent; color: var(--bb-ink); border: 1px solid var(--bb-border); box-shadow: none; }
.button--ghost:hover { background: var(--bb-biscuit); color: var(--bb-ink); }
.button--light { background: var(--bb-white); color: var(--bb-kale); box-shadow: none; }
.button--light:hover { background: var(--bb-biscuit); color: var(--bb-ink); }

.text-link {
  font-weight: 800;
  color: var(--bb-kale);
  text-decoration: none;
  border-bottom: 2px solid rgba(49, 84, 61, 0.22);
}

.text-link:hover { color: var(--bb-pumpkin); border-color: currentColor; }

.nav-toggle { display: none; }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 58px;
  padding-block: 72px 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bb-pumpkin);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 { margin: 0; line-height: 0.98; letter-spacing: -0.045em; }

h1 { font-size: clamp(3.6rem, 8vw, 6.9rem); max-width: 10ch; }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); max-width: 12ch; }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }

.hero__lede { max-width: 640px; margin: 26px 0 0; color: var(--bb-muted); font-size: clamp(1.08rem, 2vw, 1.32rem); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  padding: 9px 12px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: 999px;
  color: var(--bb-muted);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(43, 33, 24, 0.08);
}

.hero__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 28px 0 0 34px;
  border-radius: 48% 52% 44% 56%;
  background: var(--bb-biscuit) url('../img/paw-pattern.svg');
  transform: rotate(-5deg);
}

.hero__visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: 8px;
  top: 24px;
  border-radius: 999px;
  background: var(--bb-pumpkin);
  opacity: 0.16;
}

.bowl-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 30px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: 38px;
  box-shadow: var(--bb-shadow);
  transform: rotate(3deg);
}

.bowl-card__badge,
.formula-card__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bb-pumpkin);
  color: var(--bb-white);
  font-size: 0.82rem;
  font-weight: 900;
}

.bowl-card__plate {
  position: relative;
  height: 250px;
  margin: 24px 0;
  border-radius: 50% 50% 44% 44%;
  background: radial-gradient(circle at 48% 46%, #f5c26e 0 18%, #9f6a35 19% 32%, #f1c989 33% 51%, #fff8ec 52% 62%, #31543d 63% 100%);
  box-shadow: inset 0 -22px 0 rgba(0,0,0,0.08), 0 18px 32px rgba(43, 33, 24, 0.17);
}

.bowl-card__plate span { position: absolute; width: 36px; height: 24px; border-radius: 999px; background: #eb6f42; opacity: 0.86; }
.bowl-card__plate span:nth-child(1) { left: 92px; top: 70px; transform: rotate(20deg); }
.bowl-card__plate span:nth-child(2) { right: 76px; top: 92px; transform: rotate(-18deg); background: #f0c86e; }
.bowl-card__plate span:nth-child(3) { left: 138px; bottom: 58px; background: #72a15c; }
.bowl-card__plate span:nth-child(4) { right: 132px; bottom: 82px; background: #d85c3e; }

.bowl-card h2 { font-size: 2rem; max-width: none; }
.bowl-card p { margin-bottom: 0; color: var(--bb-muted); }

.metric-strip { padding-block: 16px; }
.metric-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.metric-strip__grid div {
  padding: 22px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-sm);
}
.metric-strip strong { display: block; font-size: 2rem; line-height: 1; color: var(--bb-kale); }
.metric-strip span { display: block; margin-top: 6px; color: var(--bb-muted); font-weight: 700; }

.section { padding-block: 92px; }
.section--cream { background: var(--bb-cream-strong); padding-block: 92px; }
.section--dark { background: var(--bb-kale-dark); color: var(--bb-white); padding-block: 92px; }
.section--dark .eyebrow { color: var(--bb-biscuit); }

.section__intro { max-width: 760px; margin-bottom: 36px; }
.section__intro p:not(.eyebrow) { color: var(--bb-muted); font-size: 1.08rem; }
.section--dark .section__intro p:not(.eyebrow) { color: rgba(255,255,255,0.72); }
.section__intro--split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.section__intro--split p { max-width: 420px; }

.quiz-section { display: grid; grid-template-columns: 0.8fr 1fr; gap: 44px; align-items: start; }
.quiz-card {
  padding: 30px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}
.quiz-card fieldset { display: grid; gap: 18px; margin: 0; padding: 0; border: 0; }
.quiz-card legend { font-weight: 900; font-size: 1.25rem; margin-bottom: 6px; }
.quiz-card label { display: grid; gap: 8px; font-weight: 800; }
.quiz-card select,
.search-field {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid var(--bb-border);
  border-radius: 16px;
  background: var(--bb-cream);
  color: var(--bb-ink);
}
.quiz-result {
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: var(--bb-kale);
  color: var(--bb-white);
}
.quiz-result span { display: block; color: var(--bb-biscuit); font-weight: 900; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.quiz-result strong { display: block; margin-top: 6px; font-size: clamp(1.6rem, 4vw, 2.8rem); line-height: 1; letter-spacing: -0.04em; }
.quiz-result p { margin-bottom: 0; color: rgba(255,255,255,0.76); }

.formula-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.formula-grid--featured { align-items: stretch; }

.formula-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 100%;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  box-shadow: 0 18px 40px rgba(43, 33, 24, 0.08);
}
.formula-card.is-hidden { display: none; }
.formula-card__badge { position: absolute; z-index: 2; top: 16px; left: 16px; }
.formula-card__media {
  min-height: 230px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fbebcc, #fff8ec);
  text-decoration: none;
}
.formula-card__media img { width: 100%; height: 100%; object-fit: cover; }
.formula-card__media--fallback { background: linear-gradient(145deg, #f4dfb8, #fff8ec); }
.formula-card__bowl {
  position: relative;
  display: block;
  width: 154px;
  height: 118px;
  border-radius: 50% 50% 44% 44%;
  background: radial-gradient(circle at 50% 42%, #e38a4b 0 22%, #f3c77b 23% 42%, #fff8ec 43% 60%, #31543d 61% 100%);
  box-shadow: inset 0 -14px 0 rgba(0,0,0,0.08), 0 16px 26px rgba(43, 33, 24, 0.16);
}
.formula-card__bowl i { position: absolute; width: 20px; height: 14px; border-radius: 999px; background: #83a76b; }
.formula-card__bowl i:nth-child(1) { left: 42px; top: 36px; }
.formula-card__bowl i:nth-child(2) { right: 42px; top: 48px; background: #f5be5f; }
.formula-card__bowl i:nth-child(3) { left: 66px; bottom: 32px; background: #d85c3e; }
.formula-card__body { padding: 24px; display: grid; gap: 16px; }
.formula-card__body h3 a { text-decoration: none; }
.formula-card__body p { margin: 0; color: var(--bb-muted); }
.formula-card__facts,
.formula-stats dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
}
.formula-card__facts div,
.formula-stats div {
  padding: 12px;
  border: 1px solid var(--bb-border);
  border-radius: 16px;
  background: var(--bb-cream);
}
.formula-card__facts dt,
.formula-stats dt { color: var(--bb-muted); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.formula-card__facts dd,
.formula-stats dd { margin: 4px 0 0; font-weight: 900; line-height: 1.2; }
.formula-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; }
.formula-card__price { font-weight: 950; font-size: 1.2rem; }
.formula-card__price small { color: var(--bb-muted); font-size: 0.78rem; }

.barkbowl-formula-tools,
.barkbowl-product-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.barkbowl-filter {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--bb-border);
  border-radius: 999px;
  background: var(--bb-white);
  color: var(--bb-ink);
  font-weight: 800;
  cursor: pointer;
}
.barkbowl-filter[aria-pressed="true"] { background: var(--bb-kale); color: var(--bb-white); border-color: var(--bb-kale); }

.ingredient-story { display: grid; grid-template-columns: 1fr 0.85fr; gap: 54px; align-items: center; }
.ingredient-story__content p:not(.eyebrow) { color: var(--bb-muted); font-size: 1.08rem; }
.ingredient-cloud { display: flex; flex-wrap: wrap; gap: 14px; align-content: center; min-height: 330px; padding: 30px; border-radius: 44px; background: var(--bb-white); border: 1px solid var(--bb-border); box-shadow: var(--bb-shadow); }
.ingredient-cloud span { padding: 14px 18px; border-radius: 999px; background: var(--bb-cream-strong); color: var(--bb-kale); font-weight: 900; }
.ingredient-cloud span:nth-child(2n) { background: var(--bb-kale); color: var(--bb-white); }
.ingredient-cloud span:nth-child(3n) { background: var(--bb-pumpkin); color: var(--bb-white); }

.process-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 42px; }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: process; display: grid; gap: 16px; }
.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--bb-radius-sm);
  background: rgba(255,255,255,0.06);
}
.process-list li::before {
  content: counter(process, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--bb-biscuit);
  color: var(--bb-ink);
  font-weight: 950;
}
.process-list strong { align-self: end; font-size: 1.2rem; }
.process-list span { grid-column: 2; color: rgba(255,255,255,0.72); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  box-shadow: 0 18px 40px rgba(43, 33, 24, 0.08);
}
.testimonial-grid p { margin-top: 0; font-size: 1.08rem; }
.testimonial-grid cite { color: var(--bb-kale); font-weight: 900; font-style: normal; }

.site-footer { background: var(--bb-ink); color: var(--bb-white); }
.footer-cta {
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  background: var(--bb-kale);
  box-shadow: var(--bb-shadow);
}
.footer-cta h2 { max-width: 17ch; font-size: clamp(2rem, 4vw, 3.4rem); }
.site-footer__main { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 34px; padding-bottom: 54px; margin-top: -28px; }
.site-footer p,
.site-footer address { color: rgba(255,255,255,0.72); font-style: normal; }
.site-footer a { color: var(--bb-white); }
.site-footer__nav ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 18px; }
.site-footer__bottom p { margin: 0; font-size: 0.9rem; }

.archive-hero { padding-block: 74px 30px; }
.archive-hero h1 { max-width: 13ch; }
.archive-hero p:not(.eyebrow) { max-width: 760px; color: var(--bb-muted); font-size: 1.08rem; }
.archive-main .section { padding-block: 44px 96px; }

.content-card {
  margin-block: 70px 112px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}
.entry-header { margin-bottom: 28px; }
.entry-header h1 { max-width: 14ch; }
.entry-content { font-size: 1.06rem; }
.entry-content > * { max-width: 760px; }
.entry-content > .alignwide { max-width: 1040px; }
.entry-content h2 { margin-top: 1.35em; font-size: clamp(1.8rem, 3vw, 3rem); }
.entry-content h3 { margin-top: 1.2em; }
.entry-content p,
.entry-content li { color: var(--bb-muted); }
.entry-content a { color: var(--bb-kale); font-weight: 800; }
.entry-media { margin-bottom: 28px; border-radius: var(--bb-radius); overflow: hidden; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { overflow: hidden; background: var(--bb-white); border: 1px solid var(--bb-border); border-radius: var(--bb-radius); }
.post-card__body { padding: 24px; }
.post-card__body h2 { font-size: 1.7rem; max-width: none; }
.post-card__body h2 a { text-decoration: none; }
.post-card__body p { color: var(--bb-muted); }

.single-formula { padding-block: 72px 112px; }
.single-formula__header { display: grid; grid-template-columns: 1fr 0.82fr; gap: 44px; align-items: center; }
.single-formula__header h1 { max-width: 11ch; }
.single-formula__lede { max-width: 650px; color: var(--bb-muted); font-size: 1.18rem; }
.single-formula__media { min-height: 420px; display: grid; place-items: center; overflow: hidden; border-radius: 42px; background: var(--bb-cream-strong); border: 1px solid var(--bb-border); box-shadow: var(--bb-shadow); }
.single-formula__media .formula-card__bowl { transform: scale(1.5); }
.formula-stats { margin-block: 44px; }
.formula-stats dl { grid-template-columns: repeat(6, 1fr); }
.single-formula__content,
.formula-note { max-width: 850px; }
.formula-note { margin-top: 28px; padding: 24px; border-radius: var(--bb-radius-sm); background: var(--bb-white); border: 1px solid var(--bb-border); }
.formula-note p { margin: 0; }
.formula-note p + p { margin-top: 10px; }

.search-form { display: flex; max-width: 720px; gap: 10px; margin-top: 24px; }
.search-form label { flex: 1; }

.not-found { text-align: center; }
.not-found h1 { margin-inline: auto; }
.not-found .hero__actions { justify-content: center; }

.page-numbers { display: inline-flex; margin-top: 30px; padding: 10px 14px; border-radius: 999px; background: var(--bb-white); text-decoration: none; font-weight: 800; }
.page-numbers.current { background: var(--bb-kale); color: var(--bb-white); }

@media (max-width: 1040px) {
  .site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--bb-border);
    border-radius: 999px;
    background: var(--bb-white);
    color: var(--bb-ink);
    font-weight: 900;
  }
  .nav-toggle__bar,
  .nav-toggle__bar::before,
  .nav-toggle__bar::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }
  .nav-toggle__bar::before { transform: translateY(-6px); }
  .nav-toggle__bar::after { transform: translateY(4px); }
  .primary-navigation {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 16px;
  }
  .primary-navigation.is-open { display: block; }
  .primary-navigation ul { display: grid; gap: 4px; }
  .primary-navigation a { padding: 12px; background: var(--bb-white); }

  .hero,
  .quiz-section,
  .ingredient-story,
  .process-grid,
  .single-formula__header { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-block: 52px; }
  .hero__visual { min-height: 440px; }
  .formula-grid,
  .testimonial-grid,
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .formula-stats dl { grid-template-columns: repeat(3, 1fr); }
  .site-footer__main { grid-template-columns: 1fr; }
  .footer-cta { transform: translateY(-30px); flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .wrap { width: min(calc(100% - 28px), var(--bb-wrap)); }
  h1 { font-size: clamp(3rem, 18vw, 4.2rem); }
  .hero__actions,
  .section__intro--split,
  .formula-card__footer,
  .search-form { flex-direction: column; align-items: stretch; }
  .button,
  .header-cta { width: 100%; }
  .hero__visual { min-height: 360px; }
  .bowl-card { padding: 22px; transform: none; }
  .bowl-card__plate { height: 210px; }
  .formula-grid,
  .testimonial-grid,
  .post-grid,
  .metric-strip__grid { grid-template-columns: 1fr; }
  .formula-card__facts,
  .formula-stats dl { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 1fr; }
  .process-list span { grid-column: auto; }
  .footer-cta { padding: 24px; }
  .site-footer__main { margin-top: 0; }
}

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

/* Complete page template system. */
.template-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding-block: 76px 42px;
}
.template-hero h1 { max-width: 13ch; }
.template-hero p:not(.eyebrow) { max-width: 760px; color: var(--bb-muted); font-size: 1.12rem; }
.template-hero__card {
  padding: 28px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}
.template-hero__card strong { display: block; margin-bottom: 12px; font-size: 1.2rem; }
.template-hero__card ul { margin: 0; padding-left: 20px; color: var(--bb-muted); }
.template-hero__card p { margin: 0; }
.section--tight { padding-block: 48px 84px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-card {
  min-height: 100%;
  padding: 26px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  box-shadow: 0 18px 40px rgba(43, 33, 24, 0.08);
}
.info-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--bb-biscuit);
  color: var(--bb-kale);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.info-card h3 { max-width: 12ch; }
.info-card p { color: var(--bb-muted); }
.split-panel { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 42px; align-items: start; }
.stack-list { display: grid; gap: 18px; }
.stack-list p {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--bb-radius-sm);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.76);
}
.ingredient-cloud--compact { min-height: 260px; }
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
  display: grid;
  gap: 14px;
}
.timeline li {
  counter-increment: timeline;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-sm);
}
.timeline li::before {
  content: counter(timeline, decimal-leading-zero);
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--bb-kale);
  color: var(--bb-white);
  font-weight: 950;
}
.timeline strong { color: var(--bb-kale); font-size: 1.1rem; }
.timeline span { color: var(--bb-muted); }
.quiz-card--standalone { width: 100%; }
.content-card--page-copy { margin-block: 0 96px; }
.contact-layout { display: grid; grid-template-columns: 0.72fr 1fr; gap: 42px; align-items: start; }
.contact-card { display: grid; gap: 8px; }
.contact-card a { color: var(--bb-kale); font-weight: 900; text-decoration: none; }
.barkbowl-contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow);
}
.barkbowl-contact-form label { display: grid; gap: 7px; font-weight: 900; }
.barkbowl-contact-form input,
.barkbowl-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--bb-border);
  border-radius: 16px;
  background: var(--bb-cream);
  color: var(--bb-ink);
}
.barkbowl-contact-form textarea { min-height: 150px; resize: vertical; }
.barkbowl-hp { position: absolute; left: -9999px; height: 1px; overflow: hidden; }
.notice {
  padding: 18px 20px;
  border-radius: var(--bb-radius-sm);
  border: 1px solid var(--bb-border);
  background: var(--bb-white);
}
.notice p { margin: 0; }
.notice--success { border-color: rgba(49,84,61,0.35); background: #eff7ed; }
.notice--error { border-color: rgba(220,122,57,0.45); background: #fff1e8; }
.notice--info { background: var(--bb-cream-strong); }
@media (max-width: 1040px) {
  .template-hero,
  .feature-grid,
  .feature-grid--four,
  .split-panel,
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .timeline li { grid-template-columns: 1fr; }
  .timeline li::before { grid-row: auto; }
}
