/* Petcare. Design system drawn from enamelware dog bowls and pet food labels:
   enamel white, a cobalt rim, one warm yolk accent. Besley (a Clarendon, the
   face of old food labels) for display; Libre Franklin (Franklin Gothic is the
   Nutrition Facts face) for text and the Calculated Analysis label. */

@font-face { font-family: "Besley"; src: url("../fonts/besley-normal-latin.woff2") format("woff2");
  font-weight: 400 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Besley"; src: url("../fonts/besley-italic-latin.woff2") format("woff2");
  font-weight: 400 700; font-style: italic; font-display: swap; }
@font-face { font-family: "Libre Franklin"; src: url("../fonts/libre-franklin-normal-latin.woff2") format("woff2");
  font-weight: 300 900; font-style: normal; font-display: swap; }

:root {
  --enamel: #FBFBF8;
  --porcelain: #F0F1EC;
  --white: #FFFFFF;
  --cobalt: #1D3A8A;
  --cobalt-deep: #142B6A;
  --ink: #141A2E;
  --muted: #535B6E;
  --hair: #DADDE4;
  --yolk: #F2B233;
  --brass: #C38C1E;
  --leaf: #2F6B3E;
  --tomato: #B3412D;
  --display: "Besley", Georgia, "Times New Roman", serif;
  --text: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  --wrap: 1180px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--enamel); color: var(--ink);
  font: 400 1.0625rem/1.62 var(--text);
  text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--cobalt); text-underline-offset: 3px; }
h1, h2, h3, h4, p, ul, ol, figure, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--yolk); outline-offset: 3px; border-radius: 6px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 50; background: var(--ink); color: #fff;
  padding: 10px 14px; border-radius: 10px; }
.skip:focus { top: 12px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* Type */
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font: 800 .76rem/1.2 var(--text); letter-spacing: .14em; text-transform: uppercase; color: var(--cobalt);
}
.eyebrow::before { content: ""; width: 22px; height: 4px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: #C9D3F2; }
.h2 {
  font: 600 clamp(2rem, 3.4vw, 3rem)/1.08 var(--display); letter-spacing: -.015em; margin-bottom: 18px;
  text-wrap: balance;
}
.h2 em, .hero__title em { font-style: italic; font-weight: 500; color: var(--cobalt); }
.lead { font-size: 1.16rem; color: var(--ink); max-width: 36em; }
.muted { color: var(--muted); font-size: .95rem; }
.section__lead { color: var(--muted); max-width: 44em; margin-bottom: 32px; }

/* Buttons and links */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: 700 1rem/1 var(--text); color: #fff; background: var(--cobalt);
  border: 0; border-radius: 999px; padding: 16px 26px; text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, transform .15s ease;
}
.btn:hover { background: var(--cobalt-deep); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .6; cursor: progress; }
.btn--small { padding: 11px 18px; font-size: .92rem; }
.btn--light { color: var(--cobalt); background: #fff; }
.btn--light:hover { background: #E8ECF8; }
.btn--wide { width: 100%; }
.link { font-weight: 700; }
.link--light { color: #fff; }

/* Enamel plate: a white body inside a cobalt rim, the frame for every photo */
.plate {
  background: var(--white); border: 3px solid var(--cobalt); border-radius: 30px; padding: 7px;
  box-shadow: 0 22px 44px -30px rgba(20, 26, 46, .45);
}
.plate img { display: block; width: 100%; height: auto; border-radius: 22px; }
.plate--round { border-radius: 50%; padding: 6px; }
.plate--round img { border-radius: 50%; aspect-ratio: 1; object-fit: cover; }

/* Header */
.top {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 251, 248, .9); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.top__row { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 34px; height: 26px; }
.mark__food { fill: var(--yolk); }
.mark__rim { fill: var(--cobalt); }
.mark__body { fill: #fff; stroke: var(--cobalt); stroke-width: 2; }
.brand__word { font: 700 1.45rem/1 var(--display); letter-spacing: -.01em; }
.top__nav { display: flex; gap: 24px; margin-left: auto; }
.top__nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; }
.top__nav a:hover { color: var(--cobalt); }

/* Hero */
.hero { padding: 56px 0 84px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 64px; align-items: center; }
.hero__title {
  font: 600 clamp(2.5rem, 4.4vw, 3.9rem)/1.04 var(--display); letter-spacing: -.025em;
  margin-bottom: 24px;
}
.hero__title em { display: block; }
.namebar {
  display: flex; gap: 8px; max-width: 540px; margin-top: 30px; padding: 6px;
  background: #fff; border: 2px solid var(--cobalt); border-radius: 999px;
}
.namebar:focus-within { box-shadow: 0 0 0 4px rgba(242, 178, 51, .5); }
.namebar input {
  flex: 1; min-width: 0; border: 0; background: transparent; color: var(--ink);
  font: 500 1.06rem var(--text); padding: 0 16px;
}
.namebar input::placeholder { color: #7A8193; }
.namebar input:focus { outline: none; }
.hero__small { margin-top: 12px; font-size: .9rem; color: var(--muted); }
.sources { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 30px; font-size: .86rem; color: var(--muted); }
.sources li { display: flex; align-items: center; gap: 8px; }
.sources li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yolk); }
.hero__visual { position: relative; }
.plate--tall { max-width: 440px; margin-left: auto; }
.facts--mini {
  position: absolute; left: -76px; bottom: -30px; width: 292px; transform: rotate(-1.6deg);
}

/* Calculated Analysis label */
.facts {
  background: #fff; color: var(--ink); border: 2px solid var(--ink); padding: 10px 14px 12px;
  font-family: var(--text); font-size: .94rem; line-height: 1.35;
  box-shadow: 0 26px 50px -30px rgba(20, 26, 46, .5);
}
.facts__title { font: 900 2.05rem/1 var(--text); letter-spacing: -.02em; }
.facts--mini .facts__title { font-size: 1.62rem; }
.facts__for { margin: 5px 0 6px; font-size: .88rem; }
.facts__bar { height: 1px; background: var(--ink); margin: 5px 0; }
.facts__bar--heavy { height: 10px; margin: 6px 0; }
.facts__bar--mid { height: 5px; }
.facts__energy div { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; border-bottom: 1px solid var(--ink); }
.facts__energy div:last-child { border-bottom: 0; }
.facts__energy dt, .facts__energy dd { font-weight: 900; }
.facts__energy div:first-child dt, .facts__energy div:first-child dd { font-size: 1.28rem; }
.facts__energy .facts__sub dt, .facts__energy .facts__sub dd { font-weight: 500; font-size: .9rem; }
.facts__energy dd, .facts__lines td, .facts__met b, .facts__supp span { font-variant-numeric: tabular-nums; white-space: nowrap; }
.facts__cap { font-weight: 800; font-size: .8rem; margin: 2px 0 3px; }
.facts__lines { width: 100%; border-collapse: collapse; }
.facts__lines th, .facts__lines td { padding: 3px 0; border-top: 1px solid var(--ink); font-size: .92rem; }
.facts__lines th { text-align: left; font-weight: 500; }
.facts__lines td { text-align: right; font-weight: 700; }
.facts__total th, .facts__total td { font-weight: 900; border-top-width: 3px; }
.swatch { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 8px; background: var(--c); vertical-align: -1px; box-shadow: inset 0 0 0 1px rgba(20, 26, 46, .18); }
.facts__macro { display: flex; height: 12px; border: 1px solid var(--ink); }
.facts__macro span { width: var(--w); }
.facts__macro span:nth-child(1) { background: var(--ink); }
.facts__macro span:nth-child(2) { background: #6A7185; }
.facts__macro span:nth-child(3) { background: #C3C8D3; }
.facts__legend { display: flex; flex-wrap: wrap; gap: 4px 14px; margin: 5px 0 2px; font-size: .84rem; font-weight: 600; }
.facts__legend i { display: inline-block; width: 9px; height: 9px; margin-right: 6px; vertical-align: 0; }
.facts__legend span:nth-child(1) i { background: var(--ink); }
.facts__legend span:nth-child(2) i { background: #6A7185; }
.facts__legend span:nth-child(3) i { background: #C3C8D3; }
.facts__met { display: flex; justify-content: space-between; gap: 10px; font-weight: 700; }
.facts__met b { font-weight: 900; }
.facts__supps li { padding: 4px 0; border-top: 1px solid var(--ink); }
.facts__supps li:first-child { border-top: 0; }
.facts__supp { display: flex; justify-content: space-between; gap: 10px; }
.facts__supp b { font-weight: 800; }
.facts__supp span { font-weight: 800; }
.facts__supps small { display: block; color: var(--muted); font-size: .78rem; line-height: 1.35; margin-top: 1px; }
.facts__add { font-size: .86rem; }
.facts__foot { margin-top: 8px; padding-top: 6px; border-top: 5px solid var(--ink); font-size: .74rem; color: var(--muted); }

/* Evidence band */
.band { padding: 76px 0; background: var(--porcelain); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.evidence__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.evidence__grid p + p { margin-top: 14px; }
.cite { font-size: .8rem; color: var(--muted); border-left: 3px solid var(--yolk); padding-left: 12px; margin-top: 22px !important; }
.evidence__chart { background: #fff; border: 1px solid var(--hair); border-radius: 22px; padding: 22px 22px 16px; }
.units { display: block; width: 100%; height: auto; }
.u { --uf: #FFFFFF; --us: #C7CCD6; --ud: #E2E5EB; }
.u--ok { --uf: var(--cobalt); --us: var(--cobalt); --ud: var(--yolk); }
.evidence__chart figcaption { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; margin-top: 14px; font-size: .82rem; color: var(--muted); }
.key { display: inline-block; width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid #C7CCD6; background: #fff; }
.key--ok { background: var(--cobalt); border-color: var(--cobalt); }

/* Generic sections */
.section { padding: 100px 0; }
.section--porcelain { background: var(--porcelain); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }

/* Steps: a real sequence, so real numbers */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 34px; counter-reset: none; }
.step { border-top: 3px solid var(--ink); padding-top: 18px; }
.step__n { display: block; font: 600 2.6rem/1 var(--display); color: var(--cobalt); margin-bottom: 12px; }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* Examples */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.tabs__tab {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 18px 6px 6px;
  font: 700 .96rem var(--text); color: var(--ink); background: #fff;
  border: 2px solid var(--hair); border-radius: 999px; cursor: pointer;
}
.tabs__tab img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.tabs__tab:hover { border-color: var(--cobalt); }
.tabs__tab[aria-selected="true"] { border-color: var(--cobalt); background: var(--cobalt); color: #fff; }
.example {
  display: grid; gap: 30px 48px; align-items: start;
  grid-template-columns: minmax(0, 1fr) 360px; grid-template-rows: auto 1fr;
  grid-template-areas: "dog facts" "bowl facts";
}
.example__dog {
  grid-area: dog; display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 6px 24px; align-items: center;
}
.example__dog .plate--round { width: 132px; grid-row: span 4; }
.example__bowl { grid-area: bowl; align-self: center; }
.example > .facts { grid-area: facts; }
.example__name { font: 600 2.2rem/1.1 var(--display); margin: 0 0 6px; }
.example__facts { display: flex; flex-wrap: wrap; gap: 6px; }
.example__facts li { font-size: .84rem; font-weight: 600; background: #fff; border: 1px solid var(--hair); border-radius: 999px; padding: 3px 11px; }
.example__concern { margin-top: 12px; font-weight: 700; color: var(--cobalt); }
.example__notes p { margin-top: 10px; font-size: .86rem; color: var(--muted); }
.example__bowl figcaption { margin-top: 6px; text-align: center; font-size: .8rem; color: var(--muted); }

/* The bowl: enamel cross section, food in layers by weight */
.bowl { display: block; width: 100%; height: auto; }
.bowl--compact { display: none; max-width: 420px; margin: 0 auto; }
.bowl__wall { fill: #fff; stroke: var(--cobalt); stroke-width: 2.5; }
.bowl__inner { fill: none; stroke: var(--cobalt); stroke-width: 2; }
.bowl__rim, .bowl__foot { fill: var(--cobalt); }
.bowl__layer { stroke: rgba(255, 255, 255, .6); stroke-width: .8; }
.bowl__leader { fill: none; stroke: #9AA2B4; stroke-width: 1; }
.bowl__name { font: 600 13.5px var(--text); fill: var(--ink); }
.bowl__grams { font: 800 13.5px var(--text); fill: var(--ink); font-variant-numeric: tabular-nums; }
.bowl__ring { fill: none; stroke: var(--cobalt); stroke-width: 2; }
.bowl__disc { fill: var(--yolk); stroke: var(--brass); stroke-width: 1.5; }
.bowl__tag text { font: 800 9.5px var(--text); letter-spacing: .06em; fill: var(--ink); }
.is-filling .bowl__layer { transform-box: fill-box; transform-origin: 50% 100%; animation: rise .5s cubic-bezier(.2, .7, .2, 1) both; }
.is-filling .bowl__layer:nth-child(2) { animation-delay: .07s; }
.is-filling .bowl__layer:nth-child(3) { animation-delay: .14s; }
.is-filling .bowl__layer:nth-child(4) { animation-delay: .21s; }
.is-filling .bowl__layer:nth-child(5) { animation-delay: .28s; }
.is-filling .bowl__layer:nth-child(6) { animation-delay: .35s; }
.is-filling .bowl__layer:nth-child(7) { animation-delay: .42s; }
.is-filling .bowl__layer:nth-child(8) { animation-delay: .49s; }
@keyframes rise { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* Science */
.science { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card { background: #fff; border: 1.5px solid var(--hair); border-radius: 20px; padding: 24px 22px; }
.card h3 { font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.card p { font-size: .94rem; color: var(--muted); }
.card .formula { font: 600 2.3rem/1.1 var(--display); color: var(--cobalt); margin: 12px 0 14px; }
.formula span { font: 600 .95rem var(--text); color: var(--ink); }
.formula sup { font-size: .5em; }
.nutrients { margin-top: 44px; border-top: 3px solid var(--ink); padding-top: 22px; }
.nutrients__title { font-size: 1.12rem; margin-bottom: 18px; }
.nutrients__groups { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.ngroup h4 { font-size: .86rem; margin-bottom: 10px; }
.ngroup h4 span { display: inline-block; min-width: 26px; margin-left: 6px; padding: 1px 7px; border-radius: 999px; background: var(--yolk); font-size: .78rem; text-align: center; }
.ngroup ul { display: flex; flex-wrap: wrap; gap: 6px; }
.ngroup li { font-size: .8rem; background: #fff; border: 1px solid var(--hair); border-radius: 999px; padding: 3px 10px; }

/* Life stages */
.stages { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 30px; }
.stage .plate { border-radius: 26px; }
.stage figcaption { margin-top: 16px; }
.stage h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; font-size: 1.12rem; }
.stage h3 span { font: italic 600 1.15rem var(--display); color: var(--cobalt); white-space: nowrap; }
.stage p { margin-top: 6px; font-size: .92rem; color: var(--muted); }
.stages__more { margin-top: 30px; padding: 18px 22px; background: #fff; border: 1px solid var(--hair); border-radius: 16px; font-size: .95rem; }

/* Concerns and the never list */
.concerns { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 56px; align-items: start; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.chips li { font-weight: 600; font-size: .92rem; padding: 7px 14px; border-radius: 999px; background: #FFF6DE; border: 1px solid #F0D48D; }
.never { background: #fff; border: 2px solid var(--ink); padding: 16px 20px 18px; }
.never__title { font: 900 1.8rem/1 var(--text); letter-spacing: -.01em; padding-bottom: 8px; border-bottom: 10px solid var(--ink); }
.never__sub { font-size: .82rem; color: var(--muted); margin: 8px 0 6px; }
.never li { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-top: 1px solid var(--ink); font-weight: 600; }
.never li::before { content: ""; flex: none; width: 12px; height: 12px; border-radius: 50%; background: var(--tomato); }

/* Business: speckled enamel */
.business {
  padding: 100px 0; color: #fff; background-color: var(--cobalt);
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .22) 0 1px, transparent 1.6px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, .12) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 50% 50%, rgba(10, 20, 60, .35) 0 1.4px, transparent 2px);
  background-size: 23px 23px, 37px 37px, 29px 29px;
}
.business__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.business p { color: #E3E8F6; }
.uses { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 26px; margin: 28px 0 32px; }
.uses li { font-size: .94rem; color: #DCE3F5; border-top: 1px solid rgba(255, 255, 255, .3); padding-top: 12px; }
.uses b { display: block; color: #fff; font-size: 1rem; margin-bottom: 4px; }
.business__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
.code { background: #0E1533; border-radius: 22px; padding: 20px 22px; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); border: 1px solid rgba(255, 255, 255, .12); }
.code figcaption { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #9FB0E3; margin-bottom: 12px; }
.code pre { margin: 0; overflow-x: auto; }
.code code { font: .8rem/1.6 var(--mono); color: #E6EBFA; }

/* Story */
.story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; align-items: center; }
.story__copy p + p { margin-top: 14px; }
.promises { margin-top: 26px; display: grid; gap: 10px; }
.promises li { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 1.05rem; }
.promises li::before {
  content: ""; flex: none; width: 16px; height: 9px; margin: -4px 2px 0;
  border-left: 3px solid var(--cobalt); border-bottom: 3px solid var(--cobalt); transform: rotate(-45deg);
}

/* Reviews */
.reviews { max-width: 780px; text-align: center; }
.reviews .eyebrow { justify-content: center; }
.reviews p { color: var(--muted); margin: 0 auto 28px; max-width: 38em; }

/* FAQ */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 56px; }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__item:first-child { border-top: 1px solid var(--hair); }
.faq__item summary {
  display: flex; justify-content: space-between; gap: 16px; padding: 18px 0;
  font-weight: 700; font-size: 1.06rem; cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font: 400 1.5rem/1 var(--display); color: var(--cobalt); transition: transform .2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 20px; color: var(--muted); max-width: 40em; }

/* Join */
.join { padding: 100px 0; background: var(--ink); color: #fff; }
.join__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; align-items: center; }
.join .h2 { color: #fff; }
.form { display: grid; gap: 16px; max-width: 480px; margin-top: 10px; }
.seg { display: flex; gap: 6px; padding: 5px; margin: 0; border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; width: fit-content; }
.seg label { position: relative; }
.seg input { position: absolute; opacity: 0; inset: 0; }
.seg span { display: block; padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: .92rem; cursor: pointer; color: #D5DBEA; }
.seg input:checked + span { background: #fff; color: var(--ink); }
.seg input:focus-visible + span { outline: 3px solid var(--yolk); outline-offset: 2px; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; color: #fff; }
.field label span { font-weight: 500; color: #A9B2C8; margin-left: 4px; }
.field input, .field select {
  width: 100%; font: 500 1rem var(--text); color: var(--ink); background: #fff;
  border: 2px solid transparent; border-radius: 12px; padding: 13px 14px;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--yolk); }
.field--pair { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
.field--pair[hidden], .field[hidden] { display: none; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__status { min-height: 1.3em; font-size: .9rem; color: #FFD27A; }
.form__small { font-size: .82rem; color: #A9B2C8; }
.form__small a { color: #fff; }
.form__done { max-width: 480px; padding: 24px; border: 2px solid rgba(255, 255, 255, .3); border-radius: 18px; }
.form__done:focus { outline: none; }
.form__done-title { font: 600 1.8rem/1.2 var(--display); margin-bottom: 8px; }
.plate--join { border-color: var(--yolk); }

/* Footer */
.foot { padding: 56px 0 64px; border-top: 1px solid var(--hair); font-size: .88rem; color: var(--muted); }
.foot__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px 56px; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: flex-end; align-content: start; }
.foot__nav a { color: var(--ink); font-weight: 600; text-decoration: none; }
.foot__nav a:hover { color: var(--cobalt); }
.brand--foot { margin-bottom: 10px; }
.foot__legal, .foot__credits { grid-column: 1 / -1; max-width: 70em; }
.foot__credits { font-size: .78rem; }

/* Privacy page */
.doc { max-width: 760px; padding: 72px var(--gutter) 96px; margin: 0 auto; }
.doc h1 { font: 600 clamp(2.2rem, 4vw, 3rem)/1.1 var(--display); margin-bottom: 10px; }
.doc h2 { font-size: 1.15rem; margin: 34px 0 8px; }
.doc p, .doc li { color: #2A3146; }
.doc p + p { margin-top: 10px; }
.doc ul { list-style: disc; padding-left: 22px; }
.doc li + li { margin-top: 6px; }

/* Responsive */
@media (max-width: 1100px) {
  .example { grid-template-columns: minmax(0, 1fr) 330px; column-gap: 32px; }
  .science { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nutrients__groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .top__nav { display: none; }
  .top__row { justify-content: space-between; }
  .hero { padding-top: 36px; }
  .hero__grid, .evidence__grid, .business__grid, .story, .faq, .join__grid, .concerns { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .plate--tall { margin: 0 auto; }
  .facts--mini { position: relative; left: auto; bottom: auto; margin: -70px auto 0; transform: rotate(-1deg); }
  .stages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .section, .business, .join { padding: 72px 0; }
  .example { grid-template-columns: minmax(0, 1fr); grid-template-areas: "dog" "bowl" "facts"; }
  .example > .facts { width: 100%; max-width: 440px; justify-self: center; }
}
@media (max-width: 760px) {
  .example__dog { grid-template-columns: 104px minmax(0, 1fr); gap: 4px 16px; }
  .example__dog .plate--round { width: 104px; }
  .example__name { font-size: 1.8rem; }
  .example__notes { grid-column: 1 / -1; }
  .bowl--full { display: none; }
  .bowl--compact { display: block; }
  .uses { grid-template-columns: minmax(0, 1fr); }
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
  .foot__nav { justify-content: flex-start; }
}
@media (max-width: 560px) {
  :root { --gutter: 16px; }
  body { font-size: 1rem; }
  .namebar { flex-direction: column; border-radius: 22px; }
  .namebar input { padding: 12px 12px; }
  .namebar .btn { width: 100%; }
  .science, .nutrients__groups { grid-template-columns: minmax(0, 1fr); }
  .stages { gap: 16px; }
  .field--pair { grid-template-columns: minmax(0, 1fr); }
  .tabs__tab { padding-right: 14px; font-size: .9rem; }
  .facts__title { font-size: 1.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
