/* =========================================================================
   NAV Coaching & Consulting — clean modernization
   ========================================================================= */

:root {
  --navy:        #0E2A47;
  --navy-2:      #16365A;
  --navy-deep:   #07182A;
  --green:       #2E7864;
  --green-deep:  #1F5A4A;
  --ink:         #16243A;
  --ink-2:       #4A5870;
  --ink-3:       #7A869C;
  --bg:          #FFFFFF;
  --bg-2:        #F6F4EF;
  --bg-3:        #ECE8DE;
  --rule:        #E5E2D9;
  --rule-2:      #D4D0C5;

  --headline: "Anton", "Impact", "Helvetica Neue", Arial, sans-serif;
  --display:  "Fira Sans Extra Condensed", "Helvetica Neue", Arial, sans-serif;
  --body:     "Fira Sans", "Helvetica Neue", Arial, sans-serif;

  --pad-x:  clamp(1.25rem, 4vw, 3rem);
  --max:    1240px;
  --gap:    clamp(1.25rem, 2.4vw, 2rem);

  --radius: 4px;
}

/* -------------------------------------------------------------------------
   Reset / base
   ------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
button { font: inherit; color: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }

::selection { background: var(--navy); color: #fff; }

.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--navy); color: #fff;
  padding: .5rem .75rem; border-radius: var(--radius); z-index: 100;
}
.skip-link:focus { top: .75rem; }

/* Reusable utility for the wide-letter-spaced display style the brand uses */
.display-spaced {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* "lc" lets us mix lowercase letters inside an uppercase display token,
   preserving the brand's NAVigate / NAVigating styling */
.lc {
  text-transform: lowercase;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* -------------------------------------------------------------------------
   Top nav
   ------------------------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: .9rem var(--pad-x);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav__brand img { height: 40px; width: auto; }

.nav__primary {
  justify-self: center;
  display: flex; gap: 1.75rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.nav__primary a {
  padding: .35rem .15rem;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav__primary a:hover { color: var(--navy); border-bottom-color: var(--green); text-decoration: none; }

.nav__right {
  display: flex; align-items: center; gap: .85rem;
}

.nav__social {
  display: flex; align-items: center; gap: .15rem;
  padding: 0 .85rem 0 0;
  margin: 0;
  border-right: 1px solid var(--rule);
}
.nav__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--ink-2);
  transition: color .2s ease, background .2s ease;
}
.nav__social a:hover {
  color: var(--green-deep);
  background: var(--bg-2);
  text-decoration: none;
}
.nav__social svg { width: 18px; height: 18px; }

.nav__cta {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem 1.1rem;
  background: var(--navy);
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: .95rem;
  border-radius: var(--radius);
  transition: background .2s ease;
}
.nav__cta:hover { background: var(--navy-2); text-decoration: none; }

/* Mobile menu social row */
.mobile-nav__social {
  display: flex; gap: .25rem;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--rule);
}
.mobile-nav__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  color: var(--navy);
  transition: background .2s ease;
}
.mobile-nav__social a:hover { background: var(--bg-2); }
.mobile-nav__social svg { width: 22px; height: 22px; }

.nav__toggle {
  display: none;
  background: transparent; border: none; padding: .25rem;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: sticky; top: 65px; z-index: 49;
  display: flex; flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: .25rem var(--pad-x) 1rem;
}
.mobile-nav a {
  padding: .9rem 0;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav[hidden] { display: none; }

@media (max-width: 1100px) {
  .nav__primary { display: none; }
}
@media (max-width: 920px) {
  .nav__right { display: none; }
  .nav__toggle { display: inline-flex; }
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(3.5rem, 6.5vw, 5.5rem) var(--pad-x) clamp(3.5rem, 6vw, 5rem);
  max-width: var(--max);
  margin: 0 auto;
  isolation: isolate;
}

/* Full-bleed cream band that ends with a hairline so the hero is clearly
   its own section and doesn't blend into the services block below. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  background:
    radial-gradient(110% 80% at 88% 18%, rgba(46, 120, 100, 0.07), transparent 62%),
    var(--bg-2);
  border-bottom: 1px solid var(--rule);
  z-index: -1;
}

.hero__copy { max-width: 34rem; }

.hero__title {
  font-family: var(--headline);
  font-weight: 400;
  font-size: clamp(2.75rem, 1.5rem + 5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: var(--navy);
}
.hero__title > span { display: block; }
.hero__title > span + span { margin-top: 0.14em; }
.hero__title--accent { color: var(--green-deep); }

.hero__lede {
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 42ch;
  margin: 0 0 2.25rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__actions .btn { padding: 1rem 1.7rem; font-size: 1rem; }

.hero__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(14, 42, 71, 0.06);
  box-shadow:
    0 1px 0 rgba(14, 42, 71, 0.04),
    0 36px 70px -34px rgba(14, 42, 71, 0.32),
    0 14px 28px -16px rgba(14, 42, 71, 0.18);
}
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
}

/* Tablet & below: stack copy over a wider, shorter image */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }
  .hero__copy { max-width: 38rem; }
  .hero__media img { aspect-ratio: 16 / 10; object-position: center; }
}

@media (max-width: 540px) {
  .hero { padding: clamp(2.5rem, 7vw, 3.75rem) var(--pad-x) clamp(2.25rem, 5vw, 3rem); }
  .hero__title { font-size: clamp(2.25rem, 9vw, 3.25rem); line-height: 1.02; }
  .hero__lede { margin-bottom: 1.75rem; }
  .hero__media img { aspect-ratio: 4 / 3; }
}

/* -------------------------------------------------------------------------
   Coming soon (placeholder pages)
   ------------------------------------------------------------------------- */

.coming-soon {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: calc(100vh - 220px);
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  isolation: isolate;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(46, 120, 100, 0.07), transparent 62%),
    var(--bg-2);
  border-bottom: 1px solid var(--rule);
  z-index: -1;
}

.coming-soon__inner { max-width: 38rem; }

.coming-soon__eyebrow {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--green);
  margin: 0 0 1.25rem;
}

.coming-soon__title {
  font-family: var(--headline);
  font-weight: 400;
  font-size: clamp(3rem, 1.5rem + 6vw, 6rem);
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1.5rem;
}

.coming-soon__lede {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 38ch;
  margin: 0 auto 2.25rem;
}

.coming-soon__back {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: .15rem;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.coming-soon__back:hover {
  color: var(--green-deep);
  border-color: var(--green-deep);
  gap: .8rem;
  text-decoration: none;
}

/* -------------------------------------------------------------------------
   Service detail pages
   ------------------------------------------------------------------------- */

.service-hero {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) var(--pad-x) clamp(2.75rem, 5vw, 4rem);
  text-align: center;
  isolation: isolate;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 90% at 50% 18%, rgba(46, 120, 100, 0.07), transparent 62%),
    var(--bg-2);
  border-bottom: 1px solid var(--rule);
  z-index: -1;
}
.service-hero__inner { max-width: var(--max); margin: 0 auto; }
.service-hero__eyebrow {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--green);
  margin: 0 0 1.25rem;
}
.service-hero__title {
  font-family: var(--headline);
  font-weight: 400;
  font-size: clamp(2.5rem, 1.4rem + 5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}

/* Left-aligned section head modifier for service pages */
.section__head--start { text-align: left; }

/* Long-form prose body */
.prose { max-width: 64ch; }
.prose > p {
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.prose > p:last-child { margin-bottom: 0; }

/* What you get — column grid of value cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.value-card { border-top: 2px solid var(--green); padding-top: 1.1rem; }
.value-card__title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 .75rem;
}
.value-card__body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* When to bring us in — cued list */
.bring-list {
  display: grid;
  gap: .9rem;
  max-width: 60ch;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bring-list li {
  position: relative;
  padding-left: 1.85rem;
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.5;
  color: var(--ink);
}
.bring-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 1.1rem;
  height: 1.5px;
  background: var(--green-deep);
}

/* Closing CTA block on service pages */
.service-cta {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.service-cta__title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  color: var(--navy);
  margin: 0 0 1rem;
}
.service-cta__body {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto 1.25rem;
}
.service-cta__hook {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin: 0 0 1.75rem;
}

/* Inline NOTE callout */
.note {
  margin: .5rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--green);
  background: rgba(46, 120, 100, 0.06);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 64ch;
}

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

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-2); border-color: var(--navy-2); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.05rem; }

/* -------------------------------------------------------------------------
   Section scaffold
   ------------------------------------------------------------------------- */

.section {
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.section--alt {
  max-width: none;
  background: var(--bg-2);
  margin: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.section__eyebrow {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--green);
  margin: 0 0 .65rem;
}
.section__title {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
}
.section__lede {
  font-size: 1rem;
  color: var(--ink-2);
  margin: .85rem auto 0;
  max-width: 56ch;
}
.section__lede a { color: var(--green-deep); border-bottom: 1px solid currentColor; }
.section__lede a:hover { color: var(--green); text-decoration: none; }

/* -------------------------------------------------------------------------
   Services (3 cards)
   ------------------------------------------------------------------------- */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service {
  display: block;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color: var(--ink);
}
.service:hover {
  transform: translateY(-3px);
  border-color: var(--rule-2);
  box-shadow: 0 18px 40px -24px rgba(14, 42, 71, 0.30);
  text-decoration: none;
}
.service__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-3);
}
.service__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service:hover .service__media img { transform: scale(1.04); }
.service__title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 1.25rem 1.25rem .5rem;
}
.service__more {
  margin: 0 1.25rem 1.25rem;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--green-deep);
  display: inline-flex;
  gap: .35rem;
  transition: color .2s ease, gap .2s ease;
}
.service:hover .service__more { color: var(--green); gap: .55rem; }

@media (max-width: 880px) { .services { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   Steps (How it works)
   ------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.step {
  display: flex; flex-direction: column;
}
.step__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 1.25rem;
}
.step__media img { width: 100%; height: 100%; object-fit: cover; }
.step__num {
  font-family: var(--display);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 .35rem;
}
.step__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 .65rem;
}
.step__body {
  font-size: 1rem;
  color: var(--ink-2);
  margin: 0;
  max-width: 36ch;
}

@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------------- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.testimonial {
  margin: 0;
  padding: 1.75rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.testimonial:hover {
  border-color: var(--rule-2);
  box-shadow: 0 14px 30px -22px rgba(14, 42, 71, 0.22);
}
.testimonial__quote {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.testimonial__cite {
  display: flex; align-items: center; gap: .85rem;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.testimonial__cite img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.testimonial__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin: 0;
}
.testimonial__role {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin: 0;
}

@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr; } }

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

.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--rule-2);
}
.faq__item {
  border-bottom: 1px solid var(--rule-2);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 2.25rem 1.25rem 0;
  position: relative;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  transition: color .15s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item summary:hover { color: var(--green-deep); }
.faq__item p {
  padding: 0 0 1.4rem;
  margin: 0;
  font-size: 1rem;
  color: var(--ink-2);
  max-width: 70ch;
}

/* -------------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------------- */

.cta {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-align: center;
}
.cta__media {
  position: absolute; inset: 0; z-index: -1;
}
.cta__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 24, 42, 0.55), rgba(7, 24, 42, 0.78));
}
.cta__copy { max-width: 720px; margin: 0 auto; }
.cta__title {
  font-size: clamp(1.85rem, 1.3rem + 2.2vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.cta__lede {
  font-size: 1.125rem;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.88);
}
.cta .btn--primary {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.cta .btn--primary:hover { background: var(--bg-2); border-color: var(--bg-2); }

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

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 5vw, 4rem) var(--pad-x) 1.5rem;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer__brand img {
  width: clamp(160px, 22vw, 220px);
  height: auto;
  filter: brightness(0) invert(1) opacity(0.92);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}
.footer__col li { margin-bottom: .55rem; }
.footer__col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.footer__col a:hover { color: #fff; text-decoration: none; }

.footer__disclaimer {
  max-width: var(--max);
  margin: 2rem auto;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
}
.footer__copy {
  max-width: var(--max);
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
}

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