/* ==========================================================================
   Purify Water Co — "The Waterline"
   Deep-navy sections (below the line: tanks, media, engineering) alternate
   with pale mist sections (above the line: drinking, living).
   Palette from the client's own world: logo navy, droplet blue, and one
   brass accent sampled from the Brushed Gold faucet finish.
   ========================================================================== */

:root {
  --ink: #0C1E38;        /* logo navy */
  --depth: #071527;      /* below the waterline */
  --current: #4BA0DE;    /* droplet blue */
  --channel: #1B5C99;    /* deep water blue */
  --paper: #F6FAFE;      /* cool white — never cream */
  --mist: #E1EDF7;       /* pale shallows */
  --brass: #B08D4F;      /* from the Brushed Gold finish */
  --text-dark: #182B45;
  --text-dim: #5A6E86;
  --text-light: #C9DBEC;
  --radius: 14px;
  --wrap: 1160px;
  --font-display: "Marcellus", "Times New Roman", serif;
  --font-body: "Figtree", -apple-system, "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

html, body { overflow-x: clip; }

.hero-grid > *, .drinking-grid > *, .quote-grid > *,
.water-grid > *, .option-grid > *, .review-grid > * {
  min-width: 0;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; }

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: .01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: .01em; }
h3 { font-size: 1.35rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--current);
  margin-bottom: 1rem;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--brass);
  margin-left: .9em;
  vertical-align: middle;
}
.eyebrow-dark { color: var(--channel); }

.section-lede {
  max-width: 620px;
  margin: 1.1rem auto 0;
  color: var(--text-dim);
  font-size: 1.06rem;
}
.section-lede.left { margin-left: 0; }

.desk-only { display: none; }
@media (min-width: 760px) { .desk-only { display: inline; } }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .9em 1.7em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-solid {
  background: linear-gradient(135deg, #5FB0E8, var(--channel));
  color: #fff;
  box-shadow: 0 8px 24px rgba(27, 92, 153, .35);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(27, 92, 153, .45); }
.btn-ghost { border-color: rgba(124, 195, 240, .5); color: var(--text-light); }
.btn-ghost:hover { border-color: var(--current); color: #fff; }
.btn-sm { font-size: .9rem; padding: .65em 1.3em; }
.btn-full { width: 100%; }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--current);
  outline-offset: 3px;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 39, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(124, 195, 240, .14);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  background: rgba(7, 21, 39, .95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.nav-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #7CC3F0, var(--current) 60%, var(--brass));
  pointer-events: none;
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}
.brand-drop { width: 26px; height: 33px; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.brand-word em { font-style: normal; color: var(--current); }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: .02em;
}
.nav-burger { display: none; }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
  }
  .nav-burger span { width: 22px; height: 2px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--depth);
    padding: 20px 24px 26px;
    border-bottom: 1px solid rgba(124, 195, 240, .14);
    gap: 18px;
  }
  .nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 75% -10%, rgba(46, 123, 192, .35), transparent 65%),
    radial-gradient(800px 420px at 12% 110%, rgba(27, 92, 153, .3), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--depth));
  color: #fff;
  overflow: hidden;
  padding: 92px 0 0;
}
.hero-caustics {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 240px 90px at 20% 30%, rgba(124, 195, 240, .10), transparent 70%),
    radial-gradient(ellipse 300px 110px at 70% 60%, rgba(124, 195, 240, .08), transparent 70%),
    radial-gradient(ellipse 200px 80px at 45% 85%, rgba(124, 195, 240, .07), transparent 70%);
  animation: caustics 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes caustics {
  from { transform: translate3d(-2%, 0, 0) scale(1); opacity: .8; }
  to   { transform: translate3d(2%, -3%, 0) scale(1.06); opacity: 1; }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 110px;
}
.hero-copy .lede {
  margin-top: 1.4rem;
  max-width: 520px;
  color: var(--text-light);
  font-size: 1.13rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 2.1rem; }
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 0;
  list-style: none;
  margin-top: 2.6rem;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(201, 219, 236, .75);
}
.trust-line { column-gap: 28px; }
.trust-line li { display: flex; align-items: center; }
.trust-line li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
  margin-left: 28px;
}
.hero-figure {
  position: relative;
  text-align: center;
  transform: translateY(calc(var(--parallax, 0) * -1px));
  will-change: transform;
}
.hero-figure::before {
  content: "";
  position: absolute;
  inset: 8% 4% 2%;
  background: radial-gradient(closest-side, rgba(75, 160, 222, .28), transparent);
  filter: blur(10px);
}
.hero-figure img { position: relative; width: min(100%, 480px); margin: 0 auto; animation: buoy 7s ease-in-out infinite alternate; }
@keyframes buoy {
  from { transform: translateY(0); }
  to   { transform: translateY(-9px); }
}
.hero-figure figcaption {
  position: relative;
  margin-top: 6px;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(201, 219, 236, .6);
}
.waterline { display: block; width: 100%; height: 44px; margin-top: -1px; }
.waterline-drift { animation: drift 26s linear infinite; }
@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-1440px); }
}

/* ---------- Your water ---------- */

.water { background: var(--mist); padding: 84px 0 96px; text-align: center; }
.water-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 3.2rem;
  text-align: left;
}
.water-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  border: 1px solid rgba(27, 92, 153, .1);
  box-shadow: 0 6px 24px rgba(12, 30, 56, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.water-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(12, 30, 56, .1); }
.water-card svg { width: 44px; height: 44px; color: var(--channel); margin-bottom: 18px; }
.water-card h3 { font-size: 1.18rem; margin-bottom: .55rem; color: var(--ink); }
.water-card p { font-size: .95rem; color: var(--text-dim); }

/* ---------- The system ---------- */

.system {
  background:
    radial-gradient(900px 500px at 85% 8%, rgba(27, 92, 153, .25), transparent 60%),
    linear-gradient(180deg, var(--depth), var(--ink) 30%, var(--depth));
  color: #fff;
  padding: 96px 0 100px;
  text-align: center;
}
.system .section-lede { color: var(--text-light); opacity: .85; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3.4rem;
  text-align: left;
}
.option-card {
  background: rgba(225, 237, 247, .06);
  border: 1px solid rgba(124, 195, 240, .16);
  border-radius: var(--radius);
  padding: 26px 26px 32px;
  transition: transform .2s ease, border-color .2s ease;
}
.option-card:hover { transform: translateY(-4px); border-color: rgba(124, 195, 240, .4); }
.option-card figure {
  background: linear-gradient(160deg, rgba(225, 237, 247, .97), rgba(200, 222, 240, .93));
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
}
.option-card img { width: 100%; max-width: 240px; }
.option-card h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.option-card p { color: var(--text-light); opacity: .85; font-size: .96rem; }
.option-card a { color: #7CC3F0; text-underline-offset: 3px; }

.system-cta {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.system-cta p { color: var(--text-light); opacity: .85; max-width: 480px; }

/* ---------- Drinking water / finish picker ---------- */

.drinking { background: var(--paper); padding: 96px 0; }
.drinking-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.check-list { list-style: none; margin: 1.6rem 0 2.2rem; }
.check-list li {
  position: relative;
  padding: .34rem 0 .34rem 2rem;
  color: var(--text-dim);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 16px;
  height: 9px;
  border-left: 2.5px solid var(--current);
  border-bottom: 2.5px solid var(--current);
  transform: rotate(-45deg);
}

.finish-picker {
  border-top: 1px solid rgba(27, 92, 153, .15);
  padding-top: 1.6rem;
}
.finish-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .9rem;
}
.finish-label span { color: var(--brass); }
.finish-swatches { display: flex; gap: 14px; }
.swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--metal);
  cursor: pointer;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, .5), 0 3px 8px rgba(12, 30, 56, .25);
  transition: transform .16s ease, box-shadow .16s ease;
  position: relative;
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active { transform: scale(1.12); }
.swatch.is-active::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
}
.drinking-figure { text-align: center; }
.faucet-stage {
  background:
    radial-gradient(closest-side at 50% 62%, rgba(75, 160, 222, .18), transparent),
    linear-gradient(170deg, var(--mist), #CBDEEF);
  border-radius: calc(var(--radius) * 2);
  padding: 30px;
  display: grid;
  place-items: center;
}
.faucet-stage img {
  width: min(100%, 400px);
  transition: opacity .3s ease;
}
.faucet-stage img.is-fading { opacity: 0; }
.drinking-figure figcaption {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ---------- Reviews ---------- */

.reviews { background: var(--paper); padding: 92px 0; text-align: center; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
  text-align: left;
}
.review {
  background: #fff;
  border: 1px solid rgba(27, 92, 153, .1);
  border-left: 3px solid var(--current);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 6px 24px rgba(12, 30, 56, .06);
}
.review p { color: var(--text-dark); font-size: 1rem; }
.review footer {
  margin-top: 1.2rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
}
.review footer span {
  display: block;
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 2px;
}

/* ---------- FAQ ---------- */

.faq { background: var(--mist); padding: 88px 0 96px; text-align: center; }
.faq-list { margin-top: 2.6rem; text-align: left; }
.faq-list details {
  background: #fff;
  border: 1px solid rgba(27, 92, 153, .12);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--channel);
  transition: transform .2s ease;
}
.faq-icon::before { inset: 5px 0; }
.faq-icon::after { inset: 0 5px; }
.faq-list details[open] .faq-icon::after { transform: scaleY(0); }
.faq-list details p {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: .97rem;
  max-width: 640px;
}

/* ---------- Quote ---------- */

.quote {
  background:
    radial-gradient(900px 480px at 15% 15%, rgba(46, 123, 192, .3), transparent 60%),
    linear-gradient(180deg, var(--depth), var(--ink));
  color: #fff;
  padding: 96px 0 104px;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
/* The GHL embed is much taller than the copy — keep the copy in view
   while the form scrolls past instead of letting it float mid-void. */
.quote-copy { position: sticky; top: 110px; }
@media (max-width: 820px) {
  .quote-copy { position: static; }
}
.quote-copy .section-lede { color: var(--text-light); opacity: .85; }
.quote-phone {
  display: inline-block;
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: .03em;
}
.quote-phone span {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .3rem;
}
.quote-phone:hover { color: var(--current); }

.quote-form {
  background: rgba(246, 250, 254, .97);
  border-radius: calc(var(--radius) * 1.4);
  padding: 36px 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--channel);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: #fff;
  border: 1.5px solid rgba(27, 92, 153, .25);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--current);
  box-shadow: 0 0 0 3px rgba(75, 160, 222, .2);
}
.field input::placeholder { color: #9FB2C6; }
.quote-form .btn { margin-top: 6px; }
.quote-embed { padding: 18px 16px 20px; }
.quote-embed iframe { display: block; width: 100%; min-height: 834px; }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 14px;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--text-dim);
  cursor: pointer;
}
.consent input {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  flex: none;
  accent-color: var(--channel);
}
.consent a { color: var(--channel); }
.form-note {
  margin-top: 14px;
  font-size: .8rem;
  color: var(--text-dim);
  text-align: center;
}
.form-done {
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--channel);
}

/* ---------- Footer ---------- */

.footer { background: var(--depth); color: var(--text-light); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 48px;
}
.footer-brand img {
  width: 250px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}
.footer-links {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}
.footer-links h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  font-size: .95rem;
  padding: .28rem 0;
  transition: color .15s ease;
}
.footer-links a:hover { color: #fff; }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(124, 195, 240, .12);
  font-size: .85rem;
  color: rgba(201, 219, 236, .55);
}
.footer-base p:last-child { font-family: var(--font-display); letter-spacing: .08em; }
.footer-base a {
  color: var(--mist);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(225, 237, 247, .45);
}
.footer-base a:hover { color: #fff; text-decoration-color: #fff; }

/* ---------- Our story page ---------- */

.story-intro { background: var(--paper); padding: 130px 0 96px; }
.story-intro h1 { font-size: clamp(2.1rem, 3.6vw, 2.9rem); color: var(--ink); }
.story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.story-grid > * { min-width: 0; }
.story-head { position: sticky; top: 110px; }
.story-prose p { margin-bottom: 1.15rem; color: var(--text-dark); }
.story-prose p:last-child { margin-bottom: 0; }

.founders {
  background: linear-gradient(180deg, var(--ink), var(--depth));
  color: #fff;
  padding: 92px 0 100px;
  text-align: center;
}
.story-cta { margin-top: 0; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-head { position: static; }
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .48s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Variant: settle in with a slight scale, for large figures and panels */
.reveal-scale { transform: translateY(22px) scale(.96); }
.reveal-scale.is-visible { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1; transform: none; transition: none;
  }
  .hero-caustics, .hero-figure img, .waterline-drift { animation: none; }
  .hero-figure { transform: none; }
  .btn, .water-card, .option-card, .swatch { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .water-grid { grid-template-columns: repeat(2, 1fr); }
  .option-grid, .review-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 820px) {
  .hero-grid, .drinking-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .hero-grid { gap: 40px; padding-bottom: 80px; }
  .drinking-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; justify-items: start; }
  .footer-links { justify-content: flex-start; gap: 56px; }
  .footer-base { flex-direction: column; gap: 6px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .water-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .trust-line { font-size: .76rem; column-gap: 16px; }
  .trust-line li:not(:last-child)::after { margin-left: 16px; }
  .quote-form { padding: 28px 22px; }
  .nav-inner { padding: 12px 16px; gap: 12px; }
  .brand { gap: 8px; }
  .brand-drop { width: 21px; height: 27px; }
  .brand-word { font-size: .95rem; letter-spacing: .09em; }
  .nav-cta .btn-sm { font-size: .8rem; padding: .55em 1em; white-space: nowrap; }
}
