/* ============================================================
   WINGED VICTORY ADVISORY — Site (dark)
   Modern firm site on near-black. Built atop tokens.css.

   Strict spacing scale (no other values permitted):
   16 · 24 · 48 · 96 · 192   (px)

   Hairlines: 1px solid var(--wv-line-inverse), always.
   Surfaces: --wv-ink (primary) / --wv-ink-2 (band-alt).
   Text: --wv-paper (primary) / --wv-fg-inverse-2 (muted).
   Accent: --wv-oxblood — link hover & em emphasis only.
   ============================================================ */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--wv-ink);
  color: var(--wv-paper);
  font-family: var(--wv-font-serif);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--wv-oxblood);
  color: var(--wv-paper);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 240ms var(--wv-ease);
}
a:hover { color: var(--wv-oxblood-soft); }

p { margin: 0 0 24px; }
p:last-child { margin: 0; }

em {
  font-style: italic;
  color: var(--wv-paper);
}

/* ============================================================
   EYEBROW — small caps + hairline. Inline by default; centered
   variant adds rules on both sides for hero/engage placement.
   ============================================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--wv-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wv-paper);
  margin: 0;
  line-height: 1;
}
.eyebrow__rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--wv-paper);
  flex-shrink: 0;
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center .eyebrow__rule { width: 24px; }

/* ============================================================
   SECTION TITLE — Source Serif italic. Used in band heads.
   ============================================================ */
.section-title {
  font-family: var(--wv-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--wv-paper);
  margin: 24px 0 0;
  text-wrap: balance;
}

/* ============================================================
   BUTTONS — square corners. Solid (paper bg) and ghost (border).
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--wv-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 240ms var(--wv-ease),
              color 240ms var(--wv-ease),
              border-color 240ms var(--wv-ease);
  white-space: nowrap;
  line-height: 1;
}

.btn--solid {
  background: var(--wv-paper);
  color: var(--wv-ink);
  border-color: var(--wv-paper);
}
.btn--solid:hover {
  background: var(--wv-oxblood);
  color: var(--wv-paper);
  border-color: var(--wv-oxblood);
}

.btn--ghost {
  background: transparent;
  color: var(--wv-paper);
  border-color: var(--wv-line-inverse);
}
.btn--ghost:hover {
  border-color: var(--wv-paper);
  color: var(--wv-paper);
}

.btn--cta {
  padding: 11px 18px;
  background: transparent;
  color: var(--wv-paper);
  border-color: var(--wv-line-inverse);
}
.btn--cta:hover {
  background: var(--wv-paper);
  color: var(--wv-ink);
  border-color: var(--wv-paper);
}

.btn--lg { padding: 20px 36px; font-size: 12px; }

/* ============================================================
   HEADER — fixed, dark, hairline beneath. Backdrop blur.
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--wv-line-inverse);
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--wv-gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wv-paper);
}
.brand:hover { color: var(--wv-paper); }
.brand__mark { height: 24px; width: auto; }
.brand__name {
  font-family: var(--wv-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand__sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--wv-fg-inverse-2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--wv-font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: 24px;
}
.nav a {
  color: var(--wv-paper);
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--wv-oxblood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--wv-ease);
}
.nav a:hover { color: var(--wv-paper); }
.nav a:hover::after { transform: scaleX(1); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--wv-paper);
  transition: transform 240ms var(--wv-ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 99;
  background: var(--wv-ink);
  border-bottom: 1px solid var(--wv-line-inverse);
  padding: 24px var(--wv-gutter);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--wv-font-display);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.18em;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--wv-line-inverse);
  color: var(--wv-paper);
}
.mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 880px) {
  .nav, .btn--cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--wv-ink);
  overflow: hidden;
  padding-top: 72px; /* account for fixed header */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__watermark {
  position: absolute;
  right: -12vw;
  top: 50%;
  transform: translateY(-50%);
  height: 130%;
  width: auto;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px var(--wv-gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__headline {
  font-family: var(--wv-font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--wv-paper);
  margin: 0;
  max-width: 20ch;
  text-wrap: balance;
}

.hero__lede {
  font-family: var(--wv-font-serif);
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.6;
  letter-spacing: 0.005em;
  color: var(--wv-fg-inverse-2);
  margin: 32px 0 0;
  max-width: 62ch;
}
.hero__lede em {
  font-style: normal;
  font-family: var(--wv-font-display);
  font-weight: 700;
  font-size: 0.78em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wv-paper);
  background: linear-gradient(transparent 62%, var(--wv-oxblood) 62%, var(--wv-oxblood) 84%, transparent 84%);
  padding: 0 4px;
  white-space: nowrap;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin: 48px 0 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   BAND — section container. Two surfaces: ink and ink-2.
   ============================================================ */
.band {
  background: var(--wv-ink);
  padding: 192px 0;
}
.band--alt { background: var(--wv-ink-2); }

.band__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--wv-gutter);
}

.band__head {
  margin: 0 0 96px;
  max-width: 720px;
}

@media (max-width: 880px) {
  .band { padding: 96px 0; }
  .band__head { margin-bottom: 48px; }
}

/* ============================================================
   WHO WE ARE — 12-col: head left (5/12), body right (7/12)
   ============================================================ */
.who-section { position: relative; overflow: hidden; }

.who {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}
.who__head {
  position: sticky;
  top: 96px;
}

.who__lede {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--wv-paper);
}

.who__body .who__lede + p {
  margin-top: 24px;
}

.who__clients {
  list-style: none;
  margin: 48px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--wv-line-inverse);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.who__clients li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--wv-line-inverse);
  font-family: var(--wv-font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wv-paper);
  transition: color 240ms var(--wv-ease), padding-left 240ms var(--wv-ease);
}
.who__clients li:hover {
  color: var(--wv-oxblood-soft);
  padding-left: 8px;
}
.who__clients-num {
  font-family: var(--wv-font-display);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--wv-pewter);
  min-width: 32px;
}

@media (max-width: 980px) {
  .who { grid-template-columns: 1fr; gap: 48px; }
  .who__head { position: static; }
}

/* ============================================================
   PROSE — body paragraphs in serif on dark.
   ============================================================ */
.prose {
  font-family: var(--wv-font-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.005em;
  color: var(--wv-fg-inverse-2);
  max-width: 64ch;
}
.prose p { color: var(--wv-fg-inverse-2); }
.prose p:first-child { color: var(--wv-paper); }
.prose--sm {
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================================
   PRACTICE GRID — 2x2 cards on desktop, 1 per row on mobile.
   ============================================================ */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--wv-line-inverse);
  border-left: 1px solid var(--wv-line-inverse);
}

.card {
  background: var(--wv-ink);
  padding: 48px;
  border-right: 1px solid var(--wv-line-inverse);
  border-bottom: 1px solid var(--wv-line-inverse);
  position: relative;
  transition: background 240ms var(--wv-ease);
}
.card:hover {
  background: var(--wv-graphite);
}
.band--alt .card { background: var(--wv-ink-2); }
.band--alt .card:hover { background: var(--wv-graphite); }

.card__index {
  font-family: var(--wv-font-display);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--wv-pewter);
  margin: 0 0 24px;
  line-height: 1;
}

.card__title {
  font-family: var(--wv-font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--wv-paper);
  margin: 0 0 24px;
  line-height: 1.15;
  text-wrap: balance;
}

.card__copy {
  font-family: var(--wv-font-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--wv-fg-inverse-2);
  margin: 0;
  max-width: 48ch;
}

@media (max-width: 880px) {
  .practice-grid { grid-template-columns: 1fr; }
  .card { padding: 48px 24px; }
}

/* ============================================================
   TEAM GRID — three bios. 3-col on desktop, stacked on mobile.
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media (max-width: 1100px) {
  .team-grid { grid-template-columns: 1fr; gap: 96px; }
}

.bio { display: flex; flex-direction: column; }

.bio__portrait {
  margin: 0 0 24px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--wv-ink) 0%, var(--wv-graphite) 100%);
  border: 1px solid var(--wv-line-inverse);
  position: relative;
  overflow: hidden;
}
.bio__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.02);
  transition: transform 600ms var(--wv-ease);
}
.bio:hover .bio__portrait img {
  transform: scale(1.02);
}

.bio__role {
  font-family: var(--wv-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wv-fg-inverse-2);
  margin: 0 0 16px;
  line-height: 1.2;
}

.bio__name {
  font-family: var(--wv-font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--wv-paper);
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--wv-line-inverse);
  line-height: 1.1;
}

.bio__full[hidden] { display: none; }

.bio__toggle {
  margin-top: 24px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  font-family: var(--wv-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wv-paper);
  position: relative;
  transition: color 240ms var(--wv-ease);
}
.bio__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--wv-oxblood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--wv-ease);
}
.bio__toggle:hover::after { transform: scaleX(1); }
.bio__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--wv-line-inverse);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  transition: transform 240ms var(--wv-ease), border-color 240ms var(--wv-ease);
}
.bio__toggle[aria-expanded="true"] .bio__toggle-icon {
  transform: rotate(45deg);
  border-color: var(--wv-paper);
}

.bio__portrait-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.bio__portrait-link:hover { color: inherit; }
.bio__portrait-link:focus-visible {
  outline: 2px solid var(--wv-paper);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .bio__portrait { max-width: 360px; }
}

/* ============================================================
   ENGAGE — single CTA band. Centered. Oxblood vertical rule.
   ============================================================ */
.engage {
  background: var(--wv-ink);
  border-top: 1px solid var(--wv-line-inverse);
  padding: 192px 0;
  position: relative;
  text-align: center;
}
.engage__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--wv-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.engage__title {
  font-family: var(--wv-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--wv-paper);
  margin: 48px 0 0;
  max-width: 18ch;
  text-wrap: balance;
}
.engage__copy {
  font-family: var(--wv-font-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--wv-fg-inverse-2);
  margin: 24px 0 0;
  max-width: 48ch;
}
.engage__actions {
  margin: 48px 0 0;
}

@media (max-width: 880px) {
  .engage { padding: 96px 0; }
}

/* ============================================================
   FORM PAGE — /contact/. Single-column form on dark.
   Spacing scale honored: 16 / 24 / 48 / 96 / 192.
   ============================================================ */
.form-page {
  background: var(--wv-ink);
  padding: 192px 0 96px;
  min-height: 100vh;
}
.form-page__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--wv-gutter);
}
.form-page__head {
  margin: 0 0 96px;
}
.form-page__title {
  font-family: var(--wv-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--wv-paper);
  margin: 24px 0 0;
  text-wrap: balance;
}
.form-page__lede {
  font-family: var(--wv-font-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--wv-fg-inverse-2);
  margin: 24px 0 0;
  max-width: 56ch;
}

@media (max-width: 880px) {
  .form-page { padding: 96px 0 48px; }
  .form-page__head { margin-bottom: 48px; }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; }
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.form__label {
  font-family: var(--wv-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wv-paper);
  line-height: 1.2;
}
.form__hint {
  font-family: var(--wv-font-display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wv-pewter);
  margin-left: 8px;
}
.form__hint--block {
  margin-left: 0;
  display: block;
  font-family: var(--wv-font-serif);
  font-size: 13px;
  letter-spacing: 0.005em;
  text-transform: none;
  font-weight: 400;
  color: var(--wv-pewter);
  line-height: 1.5;
  margin-top: 8px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
  width: 100%;
  background: var(--wv-ink-2);
  color: var(--wv-paper);
  border: 1px solid var(--wv-line-inverse);
  padding: 16px;
  font-family: var(--wv-font-serif);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  border-radius: 0;
  transition: border-color 240ms var(--wv-ease), background 240ms var(--wv-ease);
  -webkit-appearance: none;
  appearance: none;
}
.form textarea {
  resize: vertical;
  min-height: 160px;
  font-family: var(--wv-font-serif);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--wv-paper);
  background: var(--wv-graphite);
}
.form input:user-invalid,
.form textarea:user-invalid {
  border-color: var(--wv-oxblood-soft);
}

.form__turnstile {
  margin: 8px 0 0;
  min-height: 65px;
}

.form__actions {
  display: flex;
  gap: 16px;
  margin: 24px 0 0;
  flex-wrap: wrap;
  align-items: center;
}

.form__legal {
  font-family: var(--wv-font-serif);
  font-size: 13px;
  line-height: 1.55;
  color: var(--wv-pewter);
  margin: 24px 0 0;
  max-width: 60ch;
}

/* ============================================================
   THANKS PAGE — /thanks/. Centered confirmation.
   ============================================================ */
.thanks-page {
  background: var(--wv-ink);
  padding: 192px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.thanks-page__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--wv-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thanks-page__title {
  font-family: var(--wv-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--wv-paper);
  margin: 48px 0 0;
  max-width: 22ch;
  text-wrap: balance;
}
.thanks-page__copy {
  font-family: var(--wv-font-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--wv-fg-inverse-2);
  margin: 24px 0 0;
  max-width: 52ch;
}
.thanks-page__actions {
  margin: 48px 0 0;
}
@media (max-width: 880px) {
  .thanks-page { padding: 96px 0; }
}

/* Footer minimal variant — used on /contact and /thanks (no wordmark/cols) */
.footer--minimal .footer__inner {
  padding: 24px var(--wv-gutter);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--wv-ink);
  border-top: 1px solid var(--wv-line-inverse);
  overflow: hidden;
}
.footer__watermark {
  position: absolute;
  right: -6vw;
  bottom: -8vw;
  height: 90vw;
  max-height: 820px;
  width: auto;
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 880px) {
  .footer__watermark {
    right: -20vw;
    bottom: -12vw;
    height: 130vw;
    max-height: 560px;
    opacity: 0.07;
  }
}
.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px var(--wv-gutter) 24px;
}

.footer__brand {
  margin-bottom: 96px;
}
.footer__logo {
  display: block;
  height: auto;
  width: auto;
  max-width: 320px;
  max-height: 120px;
}
@media (max-width: 880px) {
  .footer__logo { max-width: 240px; max-height: 96px; }
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 48px;
  padding-bottom: 96px;
}
.footer__col h4 {
  font-family: var(--wv-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wv-paper);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wv-line-inverse);
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--wv-font-serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--wv-fg-inverse-2);
}
.footer__col a { color: var(--wv-fg-inverse-2); }
.footer__col a:hover { color: var(--wv-oxblood-soft); }

.footer__social {
  flex-direction: row !important;
  gap: 8px;
}
.footer__social li { display: inline-flex; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--wv-fg-inverse-2);
}
.footer__social-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  transition: color 240ms var(--wv-ease);
}
.footer__social a:hover .footer__social-icon { color: var(--wv-oxblood-soft); }

.footer__rule {
  height: 1px;
  background: var(--wv-line-inverse);
}
.footer__legal {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--wv-font-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wv-pewter);
}
