/* =========================================================
   THE ACTIVE PHARM — Brand-Accurate Redesign
   Palette: Navy #21426B · Cyan #0CC3F7 · Cream #F6F5F1 · White
   Aesthetic: editorial scientific-luxury, serif display + clean sans
   ========================================================= */

:root {
  /* Brand palette (extracted from logo + catalog) */
  --navy: #21426B;
  --navy-deep: #173354;
  --navy-ink: #0F253E;
  --cyan: #0CC3F7;
  --cyan-bright: #3FD4FF;
  --cyan-soft: #E6F7FE;
  --cream: #F6F5F1;
  --cream-2: #EFEEE8;
  --paper: #FFFFFF;
  --slate: #44546A;
  --slate-light: #7A8B9E;
  --line: #E2E2DC;
  --line-soft: #EDECE6;
  --line-dark: rgba(255,255,255,0.12);

  /* Type — serif display + clean sans, matching catalog editorial feel */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono-label: 'Inter', sans-serif;

  /* Layout */
  --maxw: 1240px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 14px rgba(33,66,107,0.07);
  --shadow-md: 0 12px 44px rgba(33,66,107,0.12);
  --shadow-lg: 0 28px 80px rgba(15,37,62,0.22);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--navy); }
.serif-it { font-style: italic; }

/* Tracked uppercase label — the catalog's signature device */
.label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: ""; width: 28px; height: 1px; background: var(--cyan); display: inline-block;
}
.label.no-rule::before { display: none; }
.label.center { justify-content: center; }
.label.center::before { display: none; }

/* Numbered section marker (00 · INTRODUCTION style) */
.secnum {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--slate-light);
  text-transform: uppercase;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section-tight { padding: 84px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #DCE6F2; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.text-center { text-align: center; }

/* Thin editorial rule */
.rule { height: 1px; background: var(--line); border: none; }
.rule-dark { background: var(--line-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 2px;
  transition: all .25s ease;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn--primary { background: var(--cyan); color: var(--navy-ink); }
.btn--primary:hover { background: var(--cyan-bright); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(12,195,247,0.35); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn--outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn svg { width: 16px; height: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: all .35s ease;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav.scrolled {
  background: rgba(15,37,62,0.9);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.brand__mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: #fff; letter-spacing: 0.01em; white-space: nowrap; }
.brand__sub { font-family: var(--font-sans); font-size: 9.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyan); margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  color: rgba(255,255,255,0.8); font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.04em; transition: color .2s;
}
.nav__links a:hover { color: #fff; }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__store { color: rgba(255,255,255,0.82); font-size: 13px; font-weight: 500; letter-spacing: 0.03em; }
.nav__store:hover { color: var(--cyan); }
.nav__mobile-actions { display: none; }
.nav__toggle {
  display: none; position: relative; flex-shrink: 0;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.24); border-radius: 4px;
  color: #fff;
}
.nav__toggle span {
  position: absolute; left: 10px; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav__toggle span:nth-child(1) { top: 12px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 26px; }
.nav__toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy-ink); overflow: hidden; padding: 140px 0 100px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero-bg.png');
  background-size: cover; background-position: center right; opacity: 0.95;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(15,37,62,0.96) 0%, rgba(15,37,62,0.86) 40%, rgba(15,37,62,0.3) 72%, rgba(15,37,62,0.08) 100%);
}
.hero__glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(12,195,247,0.2), transparent 70%);
  filter: blur(50px); bottom: -180px; left: -140px; pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 740px; }
.hero h1 {
  color: #fff; font-size: clamp(44px, 6.4vw, 82px); font-weight: 600;
  margin: 26px 0 0; line-height: 1.02;
}
.hero h1 .accent { color: var(--cyan); font-style: italic; }
.hero__lead {
  color: rgba(255,255,255,0.82); font-size: 19px; line-height: 1.65;
  max-width: 560px; margin-top: 30px; font-weight: 400;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 44px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 14px 30px;
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line-dark);
}
.hero__trust .pill {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.72); font-size: 12.5px; font-weight: 500; letter-spacing: 0.05em;
}
.hero__trust .pill svg { width: 15px; height: 15px; color: var(--cyan); }
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .line { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,0.5), transparent); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line); padding: 28px 0; }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.trustbar__item { display: flex; align-items: center; gap: 13px; color: var(--navy); font-size: 14px; font-weight: 600; }
.trustbar__icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--cyan); flex-shrink: 0; }
.trustbar__icon svg { width: 20px; height: 20px; }
.trustbar__item small { display: block; font-size: 11px; font-weight: 500; color: var(--slate-light); letter-spacing: 0.04em; }

/* ---------- Section header (editorial) ---------- */
.sec-head { max-width: 740px; margin-bottom: 70px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2 { font-size: clamp(32px, 4.4vw, 54px); margin-top: 22px; font-weight: 600; }
.sec-head .sub { margin-top: 22px; color: var(--slate); font-size: 18px; }
.section--navy .sec-head .sub { color: rgba(220,230,242,0.72); }

/* ---------- Story section ---------- */
.story__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.story__media { position: relative; }
.story__media img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.story__media .badge-float {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px;
  box-shadow: var(--shadow-md);
}
.story__media .badge-float .num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--cyan); line-height: 1; }
.story__media .badge-float .lbl { font-size: 12px; color: var(--slate); margin-top: 8px; max-width: 220px; letter-spacing: 0.03em; }
.story__copy h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 22px; }
.story__copy h2 em { color: var(--cyan); }
.story__copy p { color: var(--slate); font-size: 17px; margin-top: 24px; }
.story__pillars { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; margin-top: 40px; }
.story__pillar { border-top: 1px solid var(--line); padding-top: 20px; }
.story__pillar .pn { font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em; color: var(--cyan); }
.story__pillar h4 { font-size: 19px; margin: 10px 0 8px; }
.story__pillar p { font-size: 13.5px; color: var(--slate-light); margin: 0; }

/* ---------- Differentiators (navy) ---------- */
.diff__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.diff__card { background: var(--navy); padding: 44px 36px; transition: background .3s; }
.diff__card:hover { background: var(--navy-deep); }
.diff__card .pn { font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em; color: var(--cyan); }
.diff__card h3 { color: #fff; font-size: 26px; margin: 14px 0 12px; font-weight: 600; }
.diff__card > p { color: rgba(220,230,242,0.62); font-size: 15px; margin-bottom: 24px; }
.diff__card ul li {
  color: rgba(220,230,242,0.85); font-size: 14px; padding: 11px 0 11px 24px; position: relative;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.diff__card ul li:first-child { border-top: none; }
.diff__card ul li::before {
  content: ""; position: absolute; left: 0; top: 18px; width: 12px; height: 1px; background: var(--cyan);
}

/* ---------- Compliance band ---------- */
.compliance { background: var(--cream); text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compliance h2 { font-size: clamp(28px, 3.8vw, 44px); }
.compliance h2 em { color: var(--cyan); font-style: italic; }
.compliance .sub { color: var(--slate); max-width: 640px; margin: 22px auto 0; font-size: 17px; }
.compliance__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 50px; }
.compliance__chip {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 100px; padding: 13px 24px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--navy);
  transition: all .25s;
}
.compliance__chip:hover { border-color: var(--cyan); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.compliance__chip svg { width: 18px; height: 18px; color: var(--cyan); }

/* ---------- Offerings ---------- */
.offer__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.offer__intro .lead { font-size: 20px; color: var(--navy); font-family: var(--font-display); line-height: 1.4; }
.offer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.offer__card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 42px 36px; background: var(--paper); transition: all .3s; }
.offer__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--cyan); }
.offer__card .tag {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 22px;
}
.offer__card h3 { font-size: 28px; margin-bottom: 14px; font-weight: 600; }
.offer__card > p { color: var(--slate); font-size: 15px; margin-bottom: 24px; }
.offer__list li { font-size: 14px; color: var(--slate); padding: 9px 0 9px 22px; position: relative; border-top: 1px solid var(--line-soft); }
.offer__list li:first-child { border-top: none; }
.offer__list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 10px; height: 1px; background: var(--cyan); }
.offer__card.featured { background: var(--navy); border-color: var(--navy); color: #fff; }
.offer__card.featured h3 { color: #fff; }
.offer__card.featured > p { color: rgba(220,230,242,0.7); }
.offer__card.featured .offer__list li { color: rgba(220,230,242,0.85); border-color: rgba(255,255,255,0.08); }
.offer__card .blendcount { font-family: var(--font-display); font-size: 64px; font-weight: 700; color: var(--cyan); line-height: 1; margin-bottom: 8px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--navy); }
.step .num { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--cyan); line-height: 1; margin-bottom: 18px; }
.step h4 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--slate); }

/* ---------- FAQ ---------- */
.faq__wrap { max-width: 880px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--navy); text-align: left;
}
.faq__q .pm { flex-shrink: 0; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--cyan); transition: all .3s; }
.faq__item.open .faq__q .pm { background: var(--cyan); color: var(--navy-ink); border-color: var(--cyan); transform: rotate(135deg); }
.faq__q .pm svg { width: 16px; height: 16px; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 4px; color: var(--slate); font-size: 16px; }
.faq__item.open .faq__a { max-height: 360px; padding: 0 4px 28px; }

/* ---------- CTA final ---------- */
.cta-final { position: relative; background: var(--navy-ink); color: #fff; overflow: hidden; text-align: center; }
.cta-final__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 130%, rgba(12,195,247,0.26), transparent 60%); }
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; font-size: clamp(32px, 4.8vw, 58px); max-width: 800px; margin: 22px auto 0; font-weight: 600; }
.cta-final h2 em { color: var(--cyan); font-style: italic; }
.cta-final .sub { color: rgba(255,255,255,0.78); font-size: 19px; max-width: 580px; margin: 26px auto 0; }
.cta-final .hero__cta { justify-content: center; }
.cta-final .note { margin-top: 28px; color: rgba(255,255,255,0.5); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-ink); color: rgba(220,230,242,0.6); padding: 76px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid var(--line-dark); }
.footer .brand { margin-bottom: 22px; }
.footer__about p { font-size: 14px; line-height: 1.75; max-width: 330px; color: rgba(220,230,242,0.55); }
.footer__col h5 { color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; margin-bottom: 20px; font-family: var(--font-sans); font-weight: 700; }
.footer__col a { display: block; font-size: 14px; padding: 7px 0; color: rgba(220,230,242,0.6); transition: color .2s; }
.footer__col a:hover { color: var(--cyan); }
.footer__contact li { font-size: 14px; padding: 7px 0; display: flex; gap: 11px; align-items: flex-start; color: rgba(220,230,242,0.6); }
.footer__contact svg { width: 16px; height: 16px; color: var(--cyan); margin-top: 4px; flex-shrink: 0; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-top: 28px; font-size: 12.5px; color: rgba(220,230,242,0.45); }
.footer__bottom .legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__bottom .legal a:hover { color: var(--cyan); }
.footer__disclaimer { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: 11.5px; color: rgba(220,230,242,0.38); line-height: 1.8; max-width: 920px; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav.menu-open { background: rgba(15,37,62,0.98); backdrop-filter: blur(14px); }
  .nav__inner { gap: 20px; }
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px 32px 28px;
    max-height: calc(100vh - 70px); overflow-y: auto; overscroll-behavior: contain;
    background: rgba(15,37,62,0.98);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: 0 20px 40px rgba(5,18,32,0.28);
  }
  .nav.menu-open .nav__links { display: flex; }
  .nav__links > a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line-dark); font-size: 15px; }
  .nav__mobile-actions { display: grid; gap: 12px; padding-top: 18px; }
  .nav__mobile-actions .btn { display: none; }
  .nav__mobile-store {
    display: flex; align-items: center; justify-content: center;
    min-height: 48px; padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.3); border-radius: 2px;
    color: #fff; font-size: 13px; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
  }
  .nav__mobile-store:hover { border-color: var(--cyan); color: var(--cyan); }
  .nav__store { display: none; }
  .nav__cta > .btn { display: inline-flex; padding: 12px 18px; font-size: 11px; }
  .nav__cta { flex-shrink: 0; gap: 10px; }
  .nav__toggle { display: block; }
  .nav.menu-open .nav__toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
  .nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav__toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
  .story__grid { grid-template-columns: 1fr; gap: 44px; }
  .story__media img { height: 380px; }
  .story__pillars { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr; }
  .offer__intro { grid-template-columns: 1fr; gap: 24px; }
  .offer__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 12px 0; }
  .nav__inner { gap: 6px; }
  .brand { min-width: 0; gap: 6px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: 15px; }
  .brand__sub { max-width: 96px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 7.5px; }
  .nav__cta { gap: 6px; }
  .nav__cta > .btn { min-height: 36px; padding: 9px 9px; font-size: 8.5px; letter-spacing: 0.02em; }
  .nav__toggle { width: 36px; height: 36px; }
  .nav__toggle span { left: 8px; width: 18px; }
  .nav__toggle span:nth-child(1) { top: 10px; }
  .nav__toggle span:nth-child(2) { top: 17px; }
  .nav__toggle span:nth-child(3) { top: 24px; }
  .nav.menu-open .nav__toggle span:nth-child(1),
  .nav.menu-open .nav__toggle span:nth-child(3) { top: 17px; }
  .nav__links { padding: 12px 10px 24px; }
  .section { padding: 76px 0; }
  .container { padding: 0 10px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
@media (max-width: 360px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .brand__mark { width: 30px; height: 30px; }
  .brand__name { font-size: 14px; }
  .brand__sub { max-width: 88px; font-size: 7px; }
  .nav__cta { gap: 5px; }
  .nav__cta > .btn { min-height: 34px; padding: 8px 7px; font-size: 8px; letter-spacing: 0; }
  .nav__toggle { width: 34px; height: 34px; }
  .nav__toggle span { left: 8px; width: 16px; }
}
