/* Lilbit — site styles. Minimal: one accent (blue), yellow only for ISI, WhatsApp green only for WhatsApp actions.
   Section rhythm: Hero (cream) → Manufacturing (dark spec sheet) → Process (cream, chain) → Products (white band)
   → Quality (cream, credential card) → Why (white band) → Management (cream) → FAQ (cream, ruled, two-column) → Enquiry (cream, form card). */

:root {
  --ground: #FFF9EC;
  --surface: #FFFFFF;
  --line: #EFE6D2;
  --line-mid: #DCD0B6;     /* decorative hairlines and rules */
  --line-strong: #948A76;  /* form-control borders: 3.25:1 on cream, 3.41:1 on white */
  --ink: #1C1A17;
  --body: #45403A;
  --muted: #5C5750;
  --blue: #1F6FC5;
  --blue-light: #9CC3F0;   /* blue for text on the dark band (8:1 on ink) */
  --red: #E0271F;
  --yellow: #FFD21F;
  --green: #2DBD5E;
  --wa: #177F42;           /* 5.06:1 with white text */
  --tint-blue: #E3EEFB;
  --tint-red: #FDE3E2;
  --tint-yellow: #FFF4C2;
  --tint-green: #DFF5E7;
  --dark-text: #D8D2C6;
  --dark-muted: #B9B2A5;
  --dark-line: rgba(255, 255, 255, .14);

  --display: "Fredoka", system-ui, sans-serif;
  --text: "Nunito", system-ui, sans-serif;
  --wrap: 1160px;
  --gutter: clamp(16px, 5vw, 48px);
  --section: clamp(72px, 10vw, 128px);
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--body);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); color: var(--ink); font-weight: 600; margin: 0; line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0 0; }
.section:last-of-type { padding-bottom: var(--section); }
/* Full-bleed white band: sets a section apart from its cream neighbours */
.section--band {
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-top: var(--section); padding-bottom: var(--section);
}

.eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.h2 { font-size: clamp(30px, 4vw, 44px); max-width: 22ch; }
.lede { font-size: clamp(17px, 1.6vw, 19px); color: var(--body); max-width: 60ch; }
.head { display: grid; gap: 20px; margin-bottom: clamp(40px, 5vw, 64px); }
.head--split { grid-template-columns: 1fr; align-items: end; }
@media (min-width: 900px) { .head--split { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px; border-radius: 999px;
  font: 700 16px/1.2 var(--text); text-decoration: none; text-align: center; cursor: pointer;
  border: 1.5px solid transparent; transition: background .15s, border-color .15s, color .15s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #15723B; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: #185A9F; }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 15px; }
.link { color: var(--blue); font-weight: 700; text-decoration: none; }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 249, 236, 0.94);
  backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .2s;
}
.nav.is-scrolled, .nav.is-open { border-bottom-color: var(--line); }
.nav__bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; padding: 5px 0; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.brand span { font-size: 12px; color: var(--muted); line-height: 1.2; border-left: 1px solid var(--line-mid); padding-left: 12px; }
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
/* Six links + button: tighten between the mobile breakpoint and full desktop */
@media (min-width: 900px) and (max-width: 1139px) { .brand span { display: none; } .nav__links { gap: 22px; } }
.nav__links .btn { white-space: nowrap; }
.nav__links a:not(.btn) { text-decoration: none; font-weight: 700; font-size: 15px; color: var(--ink); }
.nav__links a:not(.btn):hover { color: var(--blue); }
.nav__toggle { display: none; }

@media (max-width: 899px) {
  .brand span { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center; margin-right: -10px;
    width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink); cursor: pointer; border-radius: 10px;
  }
  .nav__toggle svg { width: 24px; height: 24px; }
  .nav__icon-close, .nav__toggle[aria-expanded="true"] .nav__icon-open { display: none; }
  .nav__toggle[aria-expanded="true"] .nav__icon-close { display: block; }
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ground); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px; display: none;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links li a:not(.btn) { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav__links li:last-child { margin-top: 20px; }
  .nav__links .btn { width: 100%; min-height: 48px; font-size: 16px; }
}

/* Hero */
.hero { padding: clamp(48px, 9vw, 120px) 0 0; }
.hero__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 72px; } }
.hero h1 { font-size: clamp(40px, 5.4vw, 68px); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero .lede { margin-top: 24px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__note { margin-top: 20px; font-size: 14px; color: var(--muted); }
@media (max-width: 479px) { .hero__cta .btn { flex: 1 1 100%; } }

.hero__card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(24px, 4vw, 40px); display: grid; gap: 28px;
}
.hero__product { margin: -8px -8px 0; }
.hero__product img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 18px; background: #fff; }
.hero__product figcaption { margin-top: 6px; text-align: center; font-size: 13px; font-weight: 700; color: var(--muted); }
@media (max-width: 959px) { .hero__product { max-width: 360px; margin: 0 auto; } }
.hero__card dl { margin: 0; display: grid; gap: 14px; }
.hero__card dl div { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding-top: 14px; font-size: 15px; }
.hero__card dt { color: var(--muted); }
.hero__card dd { margin: 0; color: var(--ink); font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(56px, 8vw, 96px); border-top: 1px solid var(--line-mid); border-bottom: 1px solid var(--line);
}
.stat { padding: 24px 0; }
.stat + .stat { padding-left: 20px; border-left: 1px solid var(--line); }
.stat:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
.stat:nth-child(4) { border-top: 1px solid var(--line); }
@media (min-width: 760px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 28px 0; }
  .stat, .stat:nth-child(3), .stat:nth-child(4) { border-top: 0; }
  .stat + .stat, .stat:nth-child(3) { padding-left: 28px; border-left: 1px solid var(--line); }
}
.stat__num { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 4vw, 44px); color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { margin-top: 10px; font-size: 14px; color: var(--muted); line-height: 1.4; }

/* Manufacturing — dark band with a factory spec sheet */
.factory { background: var(--ink); color: var(--dark-text); border-radius: 32px; padding: clamp(28px, 6vw, 80px); }
@media (max-width: 559px) { .factory { border-radius: 24px; margin: 0 calc(var(--gutter) * -0.5); } }
.factory__head { margin-bottom: 0; align-items: start; }
.factory__cta { margin-top: 28px; }
.factory .eyebrow { color: var(--blue-light); }
.factory h2 { color: #fff; }
.factory .lede { color: var(--dark-text); }
.factory .btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.factory .btn--ghost:hover { background: #fff; color: var(--ink); }
.factory :focus-visible { outline-color: #fff; }

.specs {
  margin: clamp(40px, 5vw, 64px) 0 0; counter-reset: spec;
  border-top: 2px solid rgba(255,255,255,.5); border-bottom: 1px solid var(--dark-line);
  font-variant-numeric: tabular-nums lining-nums;
}
.specs > div { counter-increment: spec; display: grid; grid-template-columns: 28px 1fr; gap: 2px 12px; padding: 16px 0; }
.specs > div + div { border-top: 1px solid var(--dark-line); }
.specs > div::before {
  content: counter(spec, decimal-leading-zero); grid-row: span 2;
  font-size: 12px; font-weight: 700; color: var(--dark-muted); padding-top: 2px; letter-spacing: 0.04em;
}
.specs dt { font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark-muted); }
.specs dd { margin: 0; color: #fff; font-weight: 700; font-size: 16px; line-height: 1.5; }
@media (min-width: 700px) {
  .specs > div { grid-template-columns: 40px 220px 1fr; gap: 32px; padding: 18px 16px 18px 0; align-items: baseline; }
  .specs > div::before { grid-row: auto; padding: 0 0 0 16px; }
  .specs > div:nth-child(even) { background: rgba(255,255,255,.035); }
  .specs dd { font-size: 17px; }
}

/* Process — a numbered chain: vertical timeline on small screens, horizontal chain from 1040px */
.steps { list-style: none; margin: 0; padding: 0; display: grid; counter-reset: step; max-width: 680px; }
.steps li { counter-increment: step; position: relative; padding: 0 0 36px 60px; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -4px;
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--ground); border: 1.5px solid var(--ink);
  font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--ink); font-variant-numeric: tabular-nums;
}
.steps li:first-child::before { background: var(--ink); color: #fff; }
.steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 19.5px; top: 44px; bottom: 4px; width: 1.5px; background: var(--line-mid);
}
.steps h3 { font-size: 20px; }
.steps p { margin-top: 8px; font-size: 15.5px; line-height: 1.6; }
@media (min-width: 1040px) {
  .steps { max-width: none; grid-template-columns: repeat(5, 1fr); column-gap: 32px; }
  .steps li { padding: 64px 0 0; }
  .steps li::before { top: 0; }
  .steps li:not(:last-child)::after { left: 52px; right: -20px; top: 19.5px; bottom: auto; width: auto; height: 1.5px; }
  /* arrowhead at the end of each connector */
  .steps li:not(:last-child) h3::after {
    content: ""; position: absolute; top: 15px; right: -21px; width: 8px; height: 8px;
    border-top: 1.5px solid var(--line-mid); border-right: 1.5px solid var(--line-mid); transform: rotate(45deg);
  }
}

/* Products */
.toys { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 2vw, 24px); list-style: none; margin: 0; padding: 0; }
@media (min-width: 760px) { .toys { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .toys { grid-template-columns: repeat(4, 1fr); } }
.toy {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 8px 8px 4px;
  transition: border-color .15s;
}
.toy:hover { border-color: var(--line-mid); }
.toy > :not(.toy__img) { margin-left: 10px; margin-right: 10px; }
.toy__img {
  aspect-ratio: 1; border-radius: 16px; display: grid; place-items: center; position: relative; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(28, 26, 23, .05);
}
/* Stand-in tile until photos arrive: centred outline shape on a flat tint, framed like a product shot */
.toy__img svg { width: 30%; height: 30%; }
.toy__img img { width: 100%; height: 100%; object-fit: cover; }
.toy__img--photo { background: #fff; }
.toy__img picture { display: block; width: 100%; height: 100%; }
.toy__img .isi-dot, .feature__img .isi-dot {
  position: absolute; top: 10px; right: 10px; background: var(--yellow); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; line-height: 1; border-radius: 999px; padding: 5px 9px;
}
.toy h3 { font-size: 19px; margin-top: 16px; }
.toy p { font-size: 15px; line-height: 1.55; margin-top: 8px; color: var(--body); flex: 1; }
.toy .toy__cat {
  flex: none; margin-top: 6px; font-size: 12.5px; font-weight: 800; line-height: 1.4;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.toy__age { color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.toy__foot { display: flex; align-items: center; min-height: 48px; margin-top: 8px; border-top: 1px solid var(--line); font-size: 14px; }
.toy__foot .link { font-size: 14px; line-height: 1.35; padding: 10px 0; }
/* Whole card is the enquiry target */
.toy__foot .link::after { content: ""; position: absolute; inset: 0; border-radius: 22px; }
/* Focus: ring the whole card where :has() works; elsewhere the link keeps the normal ring */
.toy__foot .link:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
@supports selector(:has(a)) {
  .toy:has(.link:focus-visible) { outline: 2px solid var(--blue); outline-offset: 2px; }
  .toy__foot .link:focus-visible { outline: none; }
}
@media (max-width: 559px) {
  .toy { padding: 6px 6px 2px; border-radius: 18px; }
  .toy > :not(.toy__img) { margin-left: 6px; margin-right: 6px; }
  .toy__img { border-radius: 13px; }
  .toy p:not(.toy__cat) { display: none; }
  .toy h3 { font-size: 16.5px; margin-top: 12px; }
  .toy .toy__cat { font-size: 11.5px; letter-spacing: 0.04em; flex: 1; }
  .toy__foot .link { font-size: 13.5px; }
}

/* Quality — copy on the left, credential card on the right */
.split { display: grid; gap: 48px; }
@media (min-width: 960px) { .split { grid-template-columns: 0.95fr 1.05fr; gap: 88px; align-items: start; } }
.quality__lede { margin-top: 24px; }
.split .lede + .lede { margin-top: 16px; }
.split .btn { margin-top: 32px; }

.cred { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.cred__head {
  display: flex; align-items: center; gap: 18px; padding: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
}
.cred__mark {
  flex: none; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px;
  background: var(--yellow); color: var(--ink); font: 700 17px/1 var(--display); letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 2px var(--ink);
}
.cred__label { font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cred__num { margin-top: 2px; font: 600 clamp(20px, 2.4vw, 24px)/1.2 var(--display); color: var(--ink); letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }

.standards { list-style: none; margin: 0; padding: 0 clamp(20px, 3vw, 28px); }
.standards li { display: grid; grid-template-columns: 112px 1fr; gap: 16px; align-items: center; padding: 18px 0; }
.standards li + li { border-top: 1px solid var(--line); }
.standards .code {
  justify-self: start; font-size: 13px; font-weight: 800; color: var(--ink); line-height: 1.3; letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  border: 1px solid var(--line-mid); border-radius: 8px; padding: 6px 10px; background: var(--ground);
}
.standards .code span { display: block; font-weight: 700; color: var(--muted); }
.standards h3 { font-family: var(--text); font-weight: 700; font-size: 16px; line-height: 1.35; }
@media (max-width: 399px) { .standards li { grid-template-columns: 96px 1fr; gap: 12px; } .standards h3 { font-size: 15px; } }

/* Management — name and role; monogram stands in until portraits exist */
.team { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line-mid); }
.person { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-mid); }
.person__mono {
  flex: none; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--tint-blue); color: var(--blue); font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: 0.02em;
}
.person h3 { font-size: 19px; }
.person p { margin-top: 2px; font-size: 14.5px; color: var(--muted); }
@media (min-width: 900px) {
  .team { grid-template-columns: repeat(5, 1fr); column-gap: 32px; border-top: 0; }
  .person { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px 0 0; border-bottom: 0; border-top: 2px solid var(--ink); }
  .person__mono { width: 64px; height: 64px; font-size: 21px; }
}

/* Hero product spotlight, above the range grid */
.feature {
  display: grid; gap: clamp(24px, 4vw, 56px); align-items: center;
  background: var(--ground); border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(16px, 3vw, 32px); margin-bottom: clamp(32px, 4vw, 48px);
}
@media (min-width: 860px) { .feature { grid-template-columns: 1fr 1fr; } }
.feature__img { position: relative; border-radius: 20px; overflow: hidden; background: #fff; }
.feature__img img { width: 100%; height: auto; display: block; }
.feature__img .isi-dot { position: absolute; top: 14px; right: 14px; }
.feature__title { font-size: clamp(30px, 3.6vw, 42px); font-weight: 700; }
.feature__lede { margin-top: 14px; font-size: clamp(16px, 1.5vw, 18px); max-width: 46ch; }
.feature__specs { margin: 24px 0 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; border-top: 1px solid var(--line-mid); }
.feature__specs div { padding: 12px 0; border-bottom: 1px solid var(--line-mid); }
.feature__specs dt { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.feature__specs dd { margin: 4px 0 0; color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
@media (max-width: 479px) { .feature .btn { width: 100%; } }

/* Why — numbered list on a white band */
.why { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; counter-reset: why; }
@media (min-width: 760px) { .why { grid-template-columns: repeat(2, 1fr); column-gap: 64px; } }
@media (min-width: 1040px) { .why { grid-template-columns: repeat(4, 1fr); column-gap: 40px; } }
.why li { counter-increment: why; padding: 24px 0 32px; border-top: 2px solid var(--ink); }
.why li::before {
  content: counter(why, decimal-leading-zero); display: block; font-family: var(--display); font-weight: 600;
  color: var(--blue); font-size: 28px; line-height: 1; margin-bottom: 20px; font-variant-numeric: tabular-nums;
}
.why h3 { font-size: 21px; }
.why p { margin-top: 10px; font-size: 15.5px; }

/* FAQ — heading on the left, questions on the right from 960px */
.faq-layout { display: grid; }
.faq-layout::before { grid-column: 1 / -1; } /* section--rule divider spans both columns */
@media (min-width: 960px) {
  .faq-layout { grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
  .faq-layout .head { position: sticky; top: 112px; margin-bottom: 0; }
}
.faq { border-top: 1px solid var(--line-mid); }
.faq details { border-bottom: 1px solid var(--line-mid); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0; min-height: 44px; font-family: var(--display); font-weight: 600; font-size: clamp(18px, 2vw, 21px); color: var(--ink);
}
.faq summary:hover { color: var(--blue); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 14px; height: 14px;
  background: linear-gradient(currentColor, currentColor) center/100% 2px no-repeat, linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 26px; max-width: 64ch; }
@media (max-width: 374px) { .faq summary { gap: 12px; } }

/* Enquiry — a hairline rule separates it from the FAQ, which shares the cream ground */
.section--rule { padding-top: calc(var(--section) * .6); }
.section--rule > .wrap::before { content: ""; display: block; border-top: 1px solid var(--line-mid); margin-bottom: calc(var(--section) * .6); }
.enquiry { display: grid; gap: 48px; }
@media (min-width: 960px) { .enquiry { grid-template-columns: 1.2fr 0.8fr; gap: 72px; } }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: clamp(20px, 4vw, 40px); display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; min-width: 0; }
.field label { font-size: 14px; font-weight: 800; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; font: 16px/1.4 var(--text); color: var(--ink);
  background: var(--ground); border: 1px solid var(--line-strong); border-radius: 12px; appearance: none;
}
.field textarea::placeholder { color: var(--muted); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%231C1A17' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px var(--tint-blue); }
.form .btn { justify-self: start; margin-top: 4px; }
@media (max-width: 479px) { .form .btn { justify-self: stretch; } }
.form small { font-size: 13px; color: var(--muted); }

.contact { display: grid; gap: 0; align-content: start; margin: 0; border-top: 2px solid var(--ink); }
.contact > div { padding: 20px 0; border-bottom: 1px solid var(--line-mid); }
.contact dt { font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact dd { margin: 6px 0 0; color: var(--ink); font-weight: 700; }
.contact dd a { display: inline-block; padding: 8px 0; margin: -8px 0; text-decoration: underline; text-decoration-color: var(--line-mid); text-underline-offset: 4px; }
.contact dd a:hover { color: var(--blue); text-decoration-color: currentColor; }

/* Footer */
.footer { border-top: 1px solid var(--line-mid); padding: 56px 0 40px; font-size: 14px; color: var(--muted); }
.footer__grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.3fr 1fr auto; gap: 64px; } }
.footer img { height: 30px; width: auto; }
.footer__about p { margin-top: 16px; max-width: 42ch; }
.legal { display: grid; grid-template-columns: auto 1fr; gap: 6px 20px; margin: 0; font-variant-numeric: tabular-nums; }
.legal dt { color: var(--muted); }
.legal dd { margin: 0; color: var(--ink); font-weight: 700; min-width: 0; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer ul a { text-decoration: none; color: var(--ink); font-weight: 700; }
.footer ul a:hover { color: var(--blue); }
@media (max-width: 899px) {
  .footer ul { grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .footer ul a { display: flex; align-items: center; min-height: 44px; }
}
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }

.placeholder { background: var(--tint-yellow); border-radius: 4px; padding: 0 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
