/* =========================================================
   Say Yes Tees — design system
   ========================================================= */
:root {
  --paper: #f6efe4;
  --paper-2: #efe5d6;
  --ink: #161311;
  --ink-soft: #3a342f;
  --muted: #8a8076;
  --line: #e0d4c2;
  --accent: #ff4d2e;     /* coral red */
  --accent-ink: #fff7f3;
  --pop: #ffd23f;        /* acid yellow */
  --sage: #3f6f5f;       /* deep green */
  --white: #fffdf9;

  --shadow-sm: 0 2px 8px rgba(22,19,17,.06);
  --shadow-md: 0 16px 40px -18px rgba(22,19,17,.35);
  --shadow-lg: 0 40px 80px -30px rgba(22,19,17,.45);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1240px;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
}
.section { padding: clamp(56px, 9vw, 120px) 0; }
.center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: .55em;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--ink);
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--accent { --bg: var(--accent); --fg: var(--accent-ink); border-color: var(--accent); }
.btn--ghost { --bg: transparent; --fg: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 18px; font-size: .82rem; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__bar { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.32rem;
  letter-spacing: -.03em;
  display: inline-flex; align-items: center; gap: 8px;
}
.brand .yes { color: var(--accent); }
.brand__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pop); display: inline-block; }
.nav { display: flex; gap: 26px; margin-left: 12px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600; font-size: .9rem;
  position: relative; padding: 4px 0; color: var(--ink-soft);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.header__spacer { flex: 1; }
.icon-btn {
  position: relative; background: none; border: none; color: var(--ink);
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.icon-btn:hover { background: var(--paper-2); }
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--accent); color: #fff; font-size: .68rem; font-weight: 800;
  font-family: var(--font-display);
  min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center;
  padding: 0 5px; transform: scale(0); transition: transform .25s var(--ease);
}
.cart-count.show { transform: scale(1); }
.burger { display: none; }

/* ---------- announcement bar ---------- */
.ticker {
  background: var(--ink); color: var(--paper); overflow: hidden; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
}
.ticker__track { display: inline-flex; gap: 48px; padding: 9px 0; animation: ticker 26s linear infinite; }
.ticker span { display: inline-flex; gap: 48px; }
.ticker .star { color: var(--pop); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: .92;
  text-transform: uppercase;
}
.hero__title .stroke {
  color: transparent; -webkit-text-stroke: 2px var(--ink);
}
.hero__title .hl { color: var(--accent); }
.hero__lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; margin: 22px 0 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 30px; margin-top: 40px; }
.hero__stats .num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; }
.hero__stats .lbl { font-size: .8rem; color: var(--muted); }
.hero__art { position: relative; display: grid; place-items: center; }
.hero__card {
  background: var(--white); border: 1px solid var(--line); border-radius: 28px;
  box-shadow: var(--shadow-lg); padding: 26px; transform: rotate(-3deg);
  width: min(420px, 92%);
}
.hero__card .tee-mock { aspect-ratio: 1/1; }
.hero__badge {
  position: absolute; z-index: 3; background: var(--pop); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; border-radius: 50%;
  width: 108px; height: 108px; display: grid; place-content: center; text-align: center;
  font-size: .8rem; line-height: 1.05; box-shadow: var(--shadow-md);
  transform: rotate(12deg); animation: bob 5s ease-in-out infinite;
}
.hero__badge.b1 { top: -8px; right: 4%; }
@keyframes bob { 50% { transform: rotate(12deg) translateY(-10px); } }

/* ---------- marquee strip of words ---------- */
.strip {
  background: var(--accent); color: var(--accent-ink); padding: 16px 0; overflow: hidden;
  border-block: 3px solid var(--ink);
}
.strip__track { display: flex; gap: 26px; white-space: nowrap; animation: ticker 30s linear infinite; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; letter-spacing: .02em; }
.strip__track .dot { opacity: .6; }

/* ---------- product grid ---------- */
.section__head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; }
.section__head p { color: var(--ink-soft); margin: 8px 0 0; max-width: 50ch; }

.grid {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
}
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.card__media { position: relative; background: var(--paper-2); padding: 18px; }
.card__media .tee-mock { aspect-ratio: 1/1; }
/* ---- skeleton loaders ---- */
@keyframes skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skel {
  background: linear-gradient(90deg, var(--paper-2) 25%, var(--line) 50%, var(--paper-2) 75%);
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-sm);
}
.skel--card { aspect-ratio: 3/4; min-height: 240px; }

.tee-photo { display: block; width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; }
.pdp__media .tee-photo { border-radius: var(--radius); }
.pdp__thumb .tee-photo, .line__img .tee-photo { border-radius: 8px; }
.card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--ink); color: var(--paper); font-family: var(--font-display); font-weight: 700;
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.card__tag.hot { background: var(--accent); }
.card__tag.new { background: var(--sage); }
.card__quick {
  position: absolute; inset: auto 14px 14px; transform: translateY(12px); opacity: 0;
  transition: all .3s var(--ease);
}
.card:hover .card__quick { transform: none; opacity: 1; }
.card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.card__sub { color: var(--muted); font-size: .85rem; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; }
.card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.swatches { display: flex; gap: 6px; }
.swatch { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,.18); }

/* ---------- filters ---------- */
.toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.chip {
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink-soft);
  padding: 9px 16px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.toolbar__right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.select {
  border: 1.5px solid var(--line); background: var(--white); border-radius: 999px;
  padding: 9px 16px; font-family: var(--font-body); font-weight: 600; font-size: .85rem; color: var(--ink);
}

/* ---------- value props ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value .ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--paper-2);
  display: grid; place-items: center; margin-bottom: 16px; font-size: 1.4rem;
}
.value h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* ---------- split / custom CTA ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--card {
  background: var(--ink); color: var(--paper); border-radius: 28px; padding: clamp(32px, 5vw, 64px); overflow: hidden;
}
.split--card .eyebrow { color: var(--pop); }
.split--card h2 { color: var(--paper); font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; }
.split--card p { color: rgba(246,239,228,.78); }
.custom-canvas {
  background: var(--paper); border-radius: 20px; padding: 22px; box-shadow: var(--shadow-lg);
}

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
}
.quote .stars { color: var(--pop); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { font-size: 1rem; margin: 0 0 16px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .av { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.quote .who b { font-family: var(--font-display); }
.quote .who span { display: block; font-size: .8rem; color: var(--muted); }

/* ---------- newsletter ---------- */
.news {
  background: var(--pop); border-radius: 28px; padding: clamp(36px, 6vw, 72px); text-align: center;
  border: 3px solid var(--ink);
}
.news h2 { font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; }
.news p { max-width: 46ch; margin: 12px auto 26px; color: var(--ink-soft); }
.news__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.input {
  flex: 1; border: 2px solid var(--ink); border-radius: 999px; padding: 14px 20px;
  font-family: var(--font-body); font-size: .95rem; background: var(--white); min-width: 0;
}
.input:focus { outline: 3px solid rgba(255,77,46,.4); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 64px 0 30px; margin-top: 40px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; color: var(--pop); }
.footer a { color: rgba(246,239,228,.74); font-size: .92rem; display: block; padding: 5px 0; transition: color .2s; }
.footer a:hover { color: var(--paper); }
.footer .brand { color: var(--paper); margin-bottom: 14px; }
.footer p { color: rgba(246,239,228,.6); font-size: .9rem; max-width: 34ch; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(246,239,228,.16); font-size: .82rem; color: rgba(246,239,228,.55); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(246,239,228,.25); display: grid; place-items: center; }
.socials a:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- cart drawer ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(22,19,17,.5); z-index: 90;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%); z-index: 100;
  background: var(--paper); box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .35s var(--ease); display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.2rem; text-transform: uppercase; }
.drawer__body { flex: 1; overflow-y: auto; padding: 14px 22px; }
.drawer__empty { text-align: center; color: var(--muted); padding: 60px 10px; }
.line {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line);
}
.line__img { background: var(--paper-2); border-radius: 10px; padding: 6px; }
.line__name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.line__meta { font-size: .8rem; color: var(--muted); }
.qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty button { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line); background: var(--white); font-weight: 700; line-height: 1; }
.line__price { font-family: var(--font-display); font-weight: 700; text-align: right; }
.line__remove { background: none; border: none; color: var(--muted); font-size: .78rem; text-decoration: underline; padding: 4px 0; }
.drawer__foot { padding: 20px 22px; border-top: 1px solid var(--line); }
.drawer__row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .9rem; color: var(--ink-soft); }
.drawer__row.total { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--ink); margin: 12px 0 16px; }

/* ---------- product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding-top: 40px; }
.pdp__media { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: sticky; top: 90px; }
.pdp__thumbs { display: flex; gap: 10px; margin-top: 14px; }
.pdp__thumb { flex: 1; background: var(--paper-2); border-radius: 10px; padding: 8px; border: 2px solid transparent; cursor: pointer; }
.pdp__thumb.is-active { border-color: var(--ink); }
.pdp h1 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin: 8px 0 10px; }
.pdp__price { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; }
.pdp__desc { color: var(--ink-soft); margin: 18px 0; }
.opt { margin: 22px 0; }
.opt__label { font-family: var(--font-display); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; display: flex; gap: 8px; }
.opt__label span { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size {
  min-width: 48px; padding: 11px 10px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  font-family: var(--font-display); font-weight: 700; transition: all .2s var(--ease);
}
.size:hover { border-color: var(--ink); }
.size.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.colors { display: flex; gap: 10px; }
.color {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--line); cursor: pointer; position: relative;
}
.color.is-active { border-color: var(--ink); box-shadow: 0 0 0 3px var(--paper), 0 0 0 5px var(--ink); }
.pdp__add { margin-top: 24px; display: flex; gap: 12px; }
.pdp__feat { margin-top: 28px; display: grid; gap: 10px; }
.pdp__feat li { list-style: none; display: flex; gap: 10px; color: var(--ink-soft); font-size: .92rem; }
.pdp__feat li::before { content: "✓"; color: var(--sage); font-weight: 800; }

/* ---------- page header band ---------- */
.pagehead { padding: clamp(40px, 7vw, 80px) 0 clamp(24px, 4vw, 40px); }
.pagehead h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); text-transform: uppercase; }
.pagehead p { color: var(--ink-soft); max-width: 56ch; margin-top: 12px; font-size: 1.05rem; }

/* ---------- accordion (faq) ---------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; text-align: left; background: none; border: none; padding: 22px 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; display: flex; justify-content: space-between; gap: 16px; color: var(--ink);
}
.acc__q .pm { color: var(--accent); transition: transform .3s var(--ease); font-size: 1.4rem; line-height: 1; }
.acc__item.open .pm { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc__a p { color: var(--ink-soft); padding-bottom: 22px; margin: 0; max-width: 70ch; }

/* ---------- size table ---------- */
.table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.table th, .table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
.table th { font-family: var(--font-display); background: var(--paper-2); text-transform: uppercase; font-size: .78rem; letter-spacing: .06em; }
.table tr:last-child td { border-bottom: none; }

/* ---------- contact form ---------- */
.form { display: grid; gap: 16px; max-width: 560px; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 16px;
  font-family: var(--font-body); font-size: .95rem; background: var(--white);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(255,77,46,.35); border-color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: transl(-50%) translateY(120%);
  translate: -50% 0;
  background: var(--ink); color: var(--paper); padding: 14px 22px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem; z-index: 120;
  box-shadow: var(--shadow-md); transition: transform .35s var(--ease), opacity .35s; opacity: 0;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); translate: -50% 0; opacity: 1; }
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pop); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- custom designer ---------- */
.designer { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.designer__panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.designer__preview { background: var(--paper-2); border-radius: var(--radius); padding: 30px; position: sticky; top: 90px; }
.fontrow { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero__grid, .split, .pdp, .designer { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pdp__media, .designer__preview { position: static; }
  .nav, .news__form { }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .burger { display: grid; }
  .nav.open {
    display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column;
    background: var(--paper); padding: 20px; gap: 6px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .hero__stats { flex-wrap: wrap; gap: 18px; }
  .values, .footer__grid { grid-template-columns: 1fr; }
  .news__form { flex-direction: column; }
}

/* mobile nav toggle helper */
.burger { background: none; border: none; width: 42px; height: 42px; place-items: center; color: var(--ink); }
