/* ===========================================================
   Dyt. Buse Sepin — Warm Editorial Redesign
   Type: Instrument Serif (display) + DM Sans (body)
   Palette: warm cream + sage / olive
   =========================================================== */

:root {
  --cream: #faf7f2;
  --cream-2: #f2ece1;
  --bone: #fdfbf6;
  --paper: #fefcf9;
  --ink: #2a2620;
  --ink-soft: #5c554a;
  --ink-muted: #8a8377;
  --sage: #7d9067;
  --sage-deep: #536b42;
  --olive: #94a87a;
  --terracotta: #b66a48;
  --rule: rgba(42, 38, 32, 0.14);
  --rule-soft: rgba(42, 38, 32, 0.08);
  --shadow-card: 0 1px 0 rgba(42, 38, 32, 0.06), 0 24px 48px -28px rgba(42, 38, 32, 0.18);

  --serif: "Instrument Serif", "Cormorant Garamond", "Georgia", serif;
  --sans: "DM Sans", -apple-system, "Helvetica Neue", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
p { text-wrap: pretty; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Type ---------- */
.display {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}
.display em { font-family: var(--serif); font-style: italic; color: var(--sage-deep); font-weight: 400; }

h1.display { font-size: clamp(32px, 4.4vw, 68px); }
h2.display { font-size: clamp(26px, 3.2vw, 48px); }
h3.display { font-size: clamp(22px, 2.2vw, 34px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.no-rule::before { display: none; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.4;
  color: var(--ink-soft);
  text-wrap: balance;
}

.body-lg { font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.body-md { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }
.caption {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(48px, 5.5vw, 88px) 0; }
.section--tight { padding: clamp(32px, 3.8vw, 60px) 0; }
.section--cream2 { background: var(--cream-2); }
.section--ink { background: var(--ink); color: var(--bone); }
.section--ink .display { color: var(--bone); }
.section--ink .lede { color: rgba(250, 246, 236, 0.7); }
.section--ink .eyebrow { color: var(--olive); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--ink { background: var(--ink); color: var(--bone); }
.btn--ink:hover { background: #1c1916; }
.btn--sage { background: var(--sage-deep); color: var(--bone); }
.btn--sage:hover { background: #3a4632; }
.btn--ghost { border-color: var(--rule); color: var(--ink); }
.btn--ghost:hover { background: var(--cream-2); }
.btn--bone { background: var(--bone); color: var(--ink); }
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}
.brand__mark {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding-left: 10px;
  border-left: 1px solid var(--rule);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--ink);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--sage-deep);
}
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
}
.nav__burger span::before { top: -5px; }
.nav__burger span::after { top: 5px; }

@media (max-width: 920px) {
  .nav__links, .nav__cta .nav__cta-btn { display: none; }
  .nav__burger { display: inline-flex; }
}

/* Mobile menu drawer */
.mnav {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--cream);
  z-index: 100;
  padding: 24px var(--gutter);
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.6,.2,.2,1), visibility 0s linear .35s;
  display: flex;
  flex-direction: column;
}
.mnav.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .35s cubic-bezier(.6,.2,.2,1), visibility 0s;
}
.mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.mnav__close {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
}
.mnav__links {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mnav__links a {
  font-family: var(--serif);
  font-size: 40px;
  padding: 12px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mnav__links a .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.mnav__foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: var(--bone);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
}
.topbar__inner > span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .topbar { font-size: 11px; }
  .topbar__inner > span:last-child { display: none; }
}
.topbar a { color: var(--bone); opacity: 0.85; }
.topbar a:hover { opacity: 1; }
.topbar__dot { display: inline-block; width: 6px; height: 6px; border-radius: 999px; background: var(--olive); margin-right: 8px; animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ---------- Decorative placeholders (no real photos) ---------- */
.ph {
  position: relative;
  background: var(--cream-2);
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      transparent 0 14px,
      rgba(42,38,32,0.04) 14px 15px);
  z-index: 0;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  z-index: 2;
}
.ph .ph__inner {
  position: absolute; inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--wide { aspect-ratio: 16 / 10; }
.ph--tall { aspect-ratio: 3 / 4; }

/* Real images inside placeholder containers */
.ph > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  display: block;
}
.ph:has(> img)::before,
.ph:has(> img)::after { display: none; }
.hero__portrait > img { object-fit: cover; object-position: center top; background: transparent; }

/* A small "studio" decorative shape inside placeholders */
.glyph {
  width: 56%;
  max-width: 320px;
  opacity: 0.5;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 96px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer ul a { color: rgba(250,246,236,0.75); }
.footer ul a:hover { color: var(--bone); }
.footer__brand .display {
  font-size: clamp(28px, 4vw, 56px);
  color: var(--bone);
  margin: 0 0 16px;
}
.footer__brand .display em { color: var(--olive); }
.footer__brand p { color: rgba(250,246,236,0.65); font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer__bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,246,236,0.12);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(250,246,236,0.55);
  letter-spacing: 0.04em;
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}

/* ---------- Whatsapp floater ---------- */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: var(--sage-deep);
  color: var(--bone);
  border-radius: 999px;
  padding: 14px 20px 14px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 14px 30px -10px rgba(42,38,32,0.4);
  transition: transform .2s ease;
}
.wa:hover { transform: translateY(-2px); }
.wa svg { flex: none; }

/* ---------- Card ---------- */
.card {
  background: var(--paper);
  border-radius: 6px;
  border: 1px solid var(--rule-soft);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--sage-deep);
}
.card h3 { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 30px); margin: 0; line-height: 1.07; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.card__link {
  margin-top: auto;
  font-size: 13px;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.card__link::after { content: "→"; transition: transform .2s ease; }
.card:hover .card__link::after { transform: translateX(4px); }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
}

/* ---------- Page header (interior pages) ---------- */
.pagehead {
  padding: clamp(28px, 3.5vw, 56px) 0 clamp(18px, 2vw, 32px);
  border-bottom: 1px solid var(--rule);
}
.pagehead__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.pagehead__crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pagehead__crumb a { color: var(--ink-muted); }
.pagehead__crumb a:hover { color: var(--ink); }
@media (max-width: 820px) {
  .pagehead__inner { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .pagehead__crumb { margin-bottom: 12px; }
}

/* ---------- Newsletter band ---------- */
.news {
  background: var(--sage-deep);
  color: var(--bone);
  padding: clamp(60px, 7vw, 110px) 0;
}
.news .display { color: var(--bone); }
.news .display em { color: var(--cream-2); }
.news__form {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px;
  max-width: 480px;
}
.news__form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--bone);
  font: inherit;
  padding: 12px 18px;
  outline: none;
  font-size: 14px;
}
.news__form input::placeholder { color: rgba(250,246,236,0.55); }
.news__form button {
  background: var(--bone);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
}
.news__small { margin-top: 14px; font-size: 12px; color: rgba(250,246,236,0.6); }

/* ---------- Forms / inputs (calculators, contact) ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted);
}
.field input, .field select, .field textarea {
  font: inherit;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--sage-deep);
  background: var(--bone);
}

/* ---------- Quote / testimonial ---------- */
.quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quote em { color: var(--sage-deep); font-style: italic; }
.quote__attrib {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* small util */
.flow > * + * { margin-top: var(--flow, 18px); }
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
}

/* Page reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   v2 REFINEMENTS — spacing, overflow, font hierarchy
   - Big display titles stay Instrument Serif (h1/h2.display)
   - .lede italic serif stays
   - All sub-headings + small heading-strongs swap to DM Sans (header font)
   - Grid items get min-width: 0 so long words / large type can't blow out columns
   =========================================================== */

/* Allow grid children to shrink rather than overflow */
.hero__inner > *,
.intro > *,
.bio > *,
.pagehead__inner > *,
.cmp > *,
.contact-grid > *,
.recipes > *,
.calc-page > *,
.featured > *,
.news__inner > *,
.rec-feature > *,
.testi-grid > *,
.blog-grid > *,
.grid > * { min-width: 0; }

/* Hero title — avoid awkward breaks on narrow viewports */
.hero h1.display { hyphens: none; word-break: keep-all; overflow-wrap: break-word; }

/* Intro section heading — scale to its column, not the full hero */
.intro h2.display { font-size: clamp(28px, 3.4vw, 48px); line-height: 1.06; }

/* Wider section heads — keep titles inside container */
.sec__head .display { max-width: 720px; }

/* === Subheading font swap (DM Sans, slight medium weight) === */
.card h3,
.calc h3,
.blog-card h3,
.rec-card h3,
.recipe__body h3,
.recipe-mini h4,
.process__step h3,
.proc-row__body h3,
.ch h3,
.bio__stats strong,
.principles li strong,
.recipe__meta strong,
.rec-feature__meta strong,
.kal-split strong,
.faq__row summary {
  font-family: var(--sans);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.005em;
  line-height: 1.22;
}

/* Optical sizes on sub-heads */
.card h3,
.calc h3,
.blog-card h3,
.rec-card h3,
.recipe-mini h4 { font-size: 20px; }
.process__step h3,
.proc-row__body h3,
.ch h3,
.recipe__body h3 { font-size: 22px; line-height: 1.25; }
.faq__row summary { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.35; }

/* Bio + recipe stat numerals — sans, tighter so they sit on the column */
.bio__stats strong { font-size: 17px; letter-spacing: 0; }
.recipe__meta strong, .rec-feature__meta strong { font-size: 16px; }
.kal-split strong { font-size: 22px; letter-spacing: 0; }

/* Card link arrow restraint */
.card__link { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Recipe meta + mini headings */
.recipe-mini h4 { font-size: 17px; }
.recipe-mini .caption { font-size: 10.5px; }

/* Body type breathing */
.body-lg { font-size: 16px; line-height: 1.7; letter-spacing: 0; }
.body-md { font-size: 15px; line-height: 1.7; letter-spacing: 0; }
.lede { letter-spacing: 0; line-height: 1.4; }

/* Eyebrow tracking */
.eyebrow { font-size: 10.5px; letter-spacing: 0.22em; }

/* Section header spacing */
.sec__head { margin-bottom: 64px; gap: 18px; }
.sec__head--row { gap: 48px; }

/* Card padding rhythm */
.card { padding: 32px; gap: 12px; }
.card p { font-size: 14px; line-height: 1.65; }
.card__num { font-size: 24px; }

/* Footer spacing */
.footer { padding: 112px 0 32px; }
.footer__brand .display { font-size: clamp(36px, 3.4vw, 48px); line-height: 1.1; }
.footer__brand p { font-size: 13.5px; line-height: 1.65; }
.footer ul { gap: 12px; font-size: 13.5px; }

/* Nav vertical centering — ensure single line on narrow */
.nav__links { font-size: 13.5px; gap: 24px; }
.brand__sub { font-size: 10px; letter-spacing: 0.24em; }
.brand__mark { font-size: 24px; }

/* Buttons — slightly tighter, sans tracking */
.btn { font-size: 13.5px; letter-spacing: 0.01em; }
.btn--lg { font-size: 14.5px; padding: 16px 28px; }

/* WhatsApp floater — make sure it sits above */
.wa { z-index: 70; }

/* Quotes — tighter ledes, slightly reduced max size */
.quote { letter-spacing: -0.005em; line-height: 1.28; font-size: clamp(20px, 2.2vw, 30px); }

/* Newsletter form input */
.news__form input { letter-spacing: 0; }

/* FAQ row spacing */
.faq__row summary { padding: 22px 0; }
.faq__row p { font-size: 15px; line-height: 1.7; margin-bottom: 22px; }

/* Forms — better label-input spacing */
.field { gap: 10px; }
.field label { font-size: 10.5px; letter-spacing: 0.18em; }
.field input, .field select, .field textarea { font-size: 14.5px; padding: 13px 16px; letter-spacing: 0; }

/* Calc result numerals — keep serif, lock in size */
.calc-result__num { font-size: clamp(72px, 8vw, 104px); letter-spacing: -0.025em; line-height: 1; }
.calc-result__label { font-size: 20px; }

/* Tighter rhythm on calculator form button */
.calc-form { gap: 22px; padding: 36px; }
.calc-form button { margin-top: 4px; }

/* Process cards in dark section */
.process { gap: 36px; }
.process__step h3 { color: var(--bone); }
.process__num { font-size: 36px; }

/* Channels — slightly more padding */
.ch { padding: 32px 32px; }
.ch h3 { margin-bottom: 6px; }

/* Service body */
.service__body { padding: 36px 36px 40px; gap: 16px; }
.service__list li { font-size: 14px; }

/* Comparison columns */
.cmp__col { padding: 44px; gap: 14px; }

/* Tags row spacing */
.tags-row { gap: 8px 10px; padding: 22px 0; }
.tag { font-size: 10.5px; letter-spacing: 0.12em; padding: 7px 12px; }

/* ---------- Mobile-first final tweaks ---------- */
@media (max-width: 640px) {
  /* sec__head--row stacks on narrow screens */
  .sec__head--row { flex-direction: column; gap: 16px; }
  .sec__head--row .sec__head__txt { max-width: none; }
  /* Tighter section margins on mobile */
  .sec__head { margin-bottom: 36px; }
  .sec__head--center { margin-bottom: 40px; }
  /* Service body padding */
  .service__body { padding: 24px; }
  /* Comparison column padding */
  .cmp__col { padding: 28px 24px; }
  /* Card padding */
  .card { padding: 22px; }
  /* News form stacks on very small screens */
  .news__form { flex-direction: column; border-radius: 12px; padding: 8px; }
  .news__form input { padding: 10px 14px; }
  .news__form button { border-radius: 8px; }
}
@media (max-width: 480px) {
  /* hero CTA buttons full-width */
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  /* bigcta buttons */
  .bigcta__ctas { flex-direction: column; align-items: stretch; }
  .bigcta__ctas .btn { justify-content: center; }
  /* lede slightly smaller on phones */
  .lede { font-size: 16px; }
}
