/* ==========================================================================
   Andy Stahlbusch — portfolio
   Built on the Andy Stahlbusch Design System.
   Square or circle, no middle radius. No shadows. Two surfaces max per page.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
/* Copied verbatim from the design system's tokens/colors.css.
   Do not hand-edit — resync from the design system if it changes. */
:root {
  --ink-900: #14163a;
  --ink-800: #1d2050;
  --ink-700: #2a2d68;
  --ink-100: #dedff0;
  --ink-050: #eeeef8;

  --violet-700: #453a7d;
  --violet-600: #56489c;
  --violet-500: #6a5ab5;
  --violet-300: #a89cd8;
  --violet-200: #cfc7ea;
  --violet-050: #f2effb;

  --azure-700: #234a71;
  --azure-600: #2f5d8c;
  --azure-500: #4079ad;
  --azure-300: #9dbcd6;
  --azure-200: #c5d9e8;
  --azure-050: #eef4f9;

  --clay-600: #a2422a;
  --clay-500: #b8492c;
  --clay-200: #e8c6ba;

  --sand-400: #b9ac91;
  --sand-300: #c8bda8;
  --sand-200: #ddd5c6;
  --sand-050: #f6f3ec;

  --neutral-900: #1b1b25;
  --neutral-700: #4a4a58;
  --neutral-500: #767684;
  --neutral-300: #c3c3ce;
  --neutral-200: #dcdce4;
  --neutral-100: #ebebf0;
  --neutral-050: #f4f4f6;
  --white: #ffffff;

  --text-heading: var(--neutral-900);
  --text-body: var(--neutral-700);
  --text-muted: var(--neutral-500);
  --text-accent: var(--violet-600);
  --text-on-dark: var(--white);
  --text-on-dark-muted: rgba(255, 255, 255, 0.78);
  --text-link: var(--violet-600);
  --text-link-hover: var(--violet-700);

  --border-hairline: var(--neutral-200);
  --border-strong: var(--neutral-900);
  --border-accent: var(--violet-600);
  --border-clay: var(--clay-500);
  --border-on-dark: rgba(255, 255, 255, 0.55);

  --focus-ring: var(--violet-500);

  --font-display: "Jost", "Futura", "Century Gothic", sans-serif;
  --font-body: "EB Garamond", "Adobe Caslon Pro", Georgia, serif;

  --content-max: 1180px;
  --gutter: clamp(20px, 4vw, 32px);
  --band-y: clamp(56px, 9vw, 96px);
  --grid-gap: clamp(24px, 4vw, 48px);
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: 220ms;
}

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

* {
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text-body);
  font: 400 18px/1.68 var(--font-body);
  text-wrap: pretty;
}

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

iframe {
  border: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

[id] {
  scroll-margin-top: 24px;
}

a {
  color: var(--violet-600);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

a:hover {
  color: var(--violet-700);
}

:focus-visible {
  outline: 2px solid var(--violet-600);
  outline-offset: 2px;
}

.band--ink :focus-visible {
  outline-color: var(--sand-300);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10;
  background: var(--violet-600);
  color: #fff;
  padding: 12px 20px;
  font: 600 13px/1 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.skip:focus {
  left: 0;
  color: #fff;
}

/* --- Motion --------------------------------------------------------------
   Progressive enhancement: without the .js class (JS disabled) or with
   reduced motion requested, [data-reveal] elements simply render at rest. */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 760ms var(--ease), transform 760ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .js [data-reveal="img"] {
    transform: scale(1.06);
  }

  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  .three-up [data-reveal]:nth-child(2) {
    --reveal-delay: 110ms;
  }

  .three-up [data-reveal]:nth-child(3) {
    --reveal-delay: 220ms;
  }

  .four-up [data-reveal]:nth-child(2) {
    --reveal-delay: 90ms;
  }

  .four-up [data-reveal]:nth-child(3) {
    --reveal-delay: 180ms;
  }

  .four-up [data-reveal]:nth-child(4) {
    --reveal-delay: 270ms;
  }

  .evidence [data-reveal]:nth-child(2) {
    --reveal-delay: 80ms;
  }

  .evidence [data-reveal]:nth-child(3) {
    --reveal-delay: 160ms;
  }

  .evidence [data-reveal]:nth-child(4) {
    --reveal-delay: 240ms;
  }
}

/* --- Layout ------------------------------------------------------------- */
.wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band {
  padding-block: var(--band-y);
}

.band--tight {
  padding-block: clamp(36px, 6vw, 56px);
}

.band--ink {
  background: var(--ink-900);
  color: var(--text-on-dark);
}

.band--sand {
  background: var(--sand-200);
}

.band--tint {
  background: var(--neutral-050);
}

.band--rule {
  border-top: 1px solid var(--border-hairline);
}

/* Editorial split: wraps without a media query, keeps its ratio when wide */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.split--top {
  align-items: flex-start;
}

.split__main {
  flex: 1.45 1 330px;
  min-width: 0;
}

.split__side {
  flex: 1 1 250px;
  min-width: 0;
}

.split--even .split__main {
  flex: 1 1 300px;
}

.three-up {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--grid-gap);
}

.four-up {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: var(--grid-gap);
}

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

.stack>*+* {
  margin-top: var(--space-5);
}

.stack--tight>*+* {
  margin-top: var(--space-4);
}

/* --- Type --------------------------------------------------------------- */
.display,
h1 {
  font: 300 clamp(30px, 6.2vw, 54px)/1.15 var(--font-display);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--neutral-900);
  text-wrap: balance;
}

.band--ink h1,
.band--ink .display {
  color: #fff;
}

h2,
.h2 {
  font: 400 clamp(23px, 4.2vw, 32px)/1.24 var(--font-display);
  letter-spacing: .045em;
  text-transform: uppercase;
  color: var(--neutral-900);
  text-wrap: balance;
}

h3,
.h3 {
  font: 500 clamp(18px, 2.4vw, 21px)/1.28 var(--font-display);
  letter-spacing: .045em;
  text-transform: uppercase;
  color: var(--neutral-900);
}

h4,
.h4 {
  font: 600 17px/1.4 var(--font-display);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--neutral-900);
}

.band--ink h2,
.band--ink h3,
.band--ink h4 {
  color: #fff;
}

.eyebrow {
  display: block;
  font: 600 13px/1.3 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet-600);
}

.eyebrow--sand {
  color: var(--sand-300);
}

.eyebrow--quiet {
  color: var(--neutral-500);
}

.standfirst {
  font: 400 clamp(19px, 2.4vw, 21px)/1.6 var(--font-body);
  color: var(--neutral-900);
  max-width: 58ch;
}

.band--ink .standfirst {
  color: var(--text-on-dark-muted);
}

.lede {
  font: italic 400 clamp(18px, 2.4vw, 21px)/1.55 var(--font-body);
  color: var(--text-on-dark-muted);
  max-width: 48ch;
}

.prose {
  max-width: 62ch;
}

.prose p+p {
  margin-top: var(--space-5);
}

.prose--narrow {
  max-width: 44ch;
}

.meta {
  font: 400 15px/1.5 var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.small {
  font: 400 16px/1.6 var(--font-body);
  color: var(--text-muted);
}

.center {
  text-align: center;
}

.center .standfirst,
.center .prose {
  margin-inline: auto;
}

/* --- Buttons ------------------------------------------------------------ */
/* Labels stay under ~22 characters: nowrap is deliberate, so long labels
   would overflow a phone column rather than wrap. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 34px;
  border: 1px solid transparent;
  border-radius: 0;
  font: 600 13px/1 var(--font-display);
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .btn {
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform 120ms var(--ease);
  }

  .btn:active {
    transform: scale(.96);
  }
}

.btn--primary {
  background: var(--violet-600);
  color: #fff;
}

.btn--primary:hover {
  background: var(--violet-700);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--clay-500);
  color: var(--clay-600);
}

.btn--outline:hover {
  background: var(--clay-500);
  border-color: var(--clay-500);
  color: #fff;
}

.btn--light {
  background: transparent;
  border-color: var(--border-on-dark);
  color: #fff;
}

.btn--light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink-900);
}

.btn--ghost {
  min-height: 36px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--violet-600);
  letter-spacing: .14em;
  border-bottom: 1px solid currentColor;
}

.btn--ghost:hover {
  color: var(--violet-700);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.center .btn-row {
  justify-content: center;
}

/* --- Nav ---------------------------------------------------------------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: 24px;
}

.wordmark {
  display: block;
  color: #fff;
}

.wordmark__name {
  font: 500 19px/1.1 var(--font-display);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.wordmark__tag {
  display: block;
  margin-top: 6px;
  font: 400 10px/1.3 var(--font-display);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--sand-300);
}

.nav__toggle {
  display: none;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 30px);
}

.nav__links a {
  font: 600 12px/1 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

.nav__links a:hover {
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .nav__links a:not([aria-current="page"]) {
    position: relative;
  }

  .nav__links a:not([aria-current="page"])::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 260ms var(--ease);
  }

  .nav__links a:hover::after {
    transform: scaleX(1);
  }
}

.nav__links a[aria-current="page"] {
  color: #fff;
  border-bottom: 1px solid var(--sand-300);
  padding-bottom: 4px;
}

@media (max-width:960px) {
  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 4px;
    background: none;
    border: 0;
    cursor: pointer;
    font: 600 12px/1 var(--font-display);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
  }

  .nav__toggle::after {
    content: "";
    width: 14px;
    height: 1px;
    background: #fff;
    box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
  }

  .nav__toggle[aria-expanded="true"]::after {
    box-shadow: none;
    transform: rotate(45deg);
  }

  .nav__links {
    display: none;
    width: 100%;
    flex: 1 0 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 15px 0;
    border-top: 1px solid var(--border-on-dark);
  }

  .nav__links a[aria-current="page"] {
    border-bottom: 0;
    padding-bottom: 15px;
  }
}

/* --- Cards -------------------------------------------------------------- */
.card {
  border: 1px solid var(--border-hairline);
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .card {
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  }

  a.card:hover {
    transform: translateY(-6px);
  }

  a.card .photo {
    transition: transform 500ms var(--ease);
  }

  a.card:hover .photo {
    transform: scale(1.045);
  }
}

.card__body {
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.card__body>.meta:last-child {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-hairline);
}

a.card {
  color: inherit;
}

a.card:hover {
  border-color: var(--violet-600);
}

a.card:hover h3 {
  color: var(--violet-600);
}

.card--plain {
  border: 0;
}

.card--door {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  align-items: center;
  text-align: center;
  padding: 36px 26px;
  gap: 18px;
  transition: border-color var(--dur) var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .card--door {
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  }

  .card--door::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--violet-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 320ms var(--ease);
  }

  .card--door:hover {
    transform: translateY(-6px);
    border-color: var(--violet-300);
  }

  .card--door:hover::before {
    transform: scaleX(1);
  }

  .disc {
    transition: transform var(--dur) var(--ease);
  }

  .card--door:hover .disc {
    transform: scale(1.08);
  }
}

/* --- Media placeholders ------------------------------------------------- */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  background: var(--sand-200);
  color: var(--neutral-700);
  font: 600 11px/1.4 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ph--wide {
  aspect-ratio: 16/9;
  width: 100%;
}

.ph--circle {
  border-radius: 50%;
  aspect-ratio: 1;
  width: min(320px, 74vw);
  margin-inline: auto;
}

.ph--azure {
  background: var(--azure-200);
  color: var(--azure-700);
}

.ph--violet {
  background: var(--violet-200);
  color: var(--violet-700);
}

.ph--ink {
  background: var(--ink-900);
  color: var(--text-on-dark-muted);
}

/* height:auto is required — the width/height attributes map to presentational
   CSS height, which would otherwise beat aspect-ratio. */
.photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--sand-200);
}

.photo--wide {
  aspect-ratio: 16/9;
}

.photo--circle {
  aspect-ratio: 1;
  border-radius: 50%;
  width: min(320px, 74vw);
  margin-inline: auto;
}

.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video__disc {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .video__disc::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    animation: pulse-ring 2.6s var(--ease) infinite;
  }

  @keyframes pulse-ring {
    0% {
      transform: scale(.82);
      opacity: .9;
    }

    70% {
      transform: scale(1.35);
      opacity: 0;
    }

    100% {
      transform: scale(1.35);
      opacity: 0;
    }
  }
}

.video:hover .video__disc {
  background: var(--violet-600);
}

.video__disc::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
}

.video__label {
  position: absolute;
  inset: auto 0 18px;
  text-align: center;
  font: 600 11px/1.4 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

/* --- Discs, lists, stats, quotes --------------------------------------- */
.disc {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--violet-600);
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .28);
  font: 500 26px/1 var(--font-display);
  letter-spacing: .06em;
}

.disc--azure {
  background: var(--azure-600);
}

.disc--sand {
  background: var(--sand-300);
  color: var(--ink-900);
}

/* Markers never shrink — two-digit labels must not wrap */
.numlist {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.numlist li {
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
}

.numlist span:first-child {
  flex: 0 0 auto;
  min-width: 2em;
  white-space: nowrap;
  font: 600 13px/1.6 var(--font-display);
  letter-spacing: .16em;
  color: var(--text-accent);
}

.numlist span:last-child {
  font: 400 17px/1.66 var(--font-body);
  color: var(--text-body);
}

.band--ink .numlist span:first-child {
  color: var(--sand-300);
}

.band--ink .numlist span:last-child {
  color: var(--text-on-dark-muted);
}

.rule-col {
  border-top: 2px solid var(--violet-600);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rule-col--azure {
  border-top-color: var(--azure-600);
}

.rule-col--sand {
  border-top-color: var(--sand-400);
}

/* Figures never wrap: a range like "550-650" must not split at its dash. */
.stat__fig {
  font: 300 clamp(34px, 5.4vw, 46px)/1 var(--font-display);
  letter-spacing: .02em;
  color: #fff;
  white-space: nowrap;
}

.stat__label {
  margin-top: 10px;
  font: 600 12px/1.4 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sand-300);
}

.evidence {
  border-top: 2px solid var(--violet-600);
}

.evidence li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-hairline);
}

.evidence li:last-child {
  border-bottom: 0;
}

.evidence__fig {
  font: 500 20px/1.2 var(--font-display);
  letter-spacing: .03em;
  color: var(--neutral-900);
}

.evidence__note {
  margin-top: 5px;
  font: 400 16px/1.5 var(--font-body);
  color: var(--text-body);
}

.pullquote {
  border-left: 3px solid var(--clay-500);
  padding-left: 22px;
}

.pullquote p {
  font: italic 400 clamp(20px, 2.2vw, 26px)/1.5 var(--font-display);
  color: var(--neutral-900);
  max-width: 44ch;
}

.pullquote cite {
  display: block;
  margin-top: 14px;
  font: 600 12px/1.4 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--neutral-500);
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.facts dt {
  font: 600 12px/1.4 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet-600);
}

.facts dd {
  margin: 7px 0 0;
  font: 400 17px/1.55 var(--font-body);
  color: var(--neutral-900);
}

.facts dd.todo {
  font: 400 15px/1.5 var(--font-display);
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags li {
  font: 600 12px/1 var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azure-700);
  background: var(--azure-050);
  padding: 9px 13px;
}

.cta-box {
  border: 1px solid var(--border-hairline);
  padding: clamp(36px, 6vw, 64px) clamp(22px, 4vw, 48px);
}

/* --- Forms -------------------------------------------------------------- */
.form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.field--full {
  grid-column: 1/-1;
}

.field label {
  font: 600 12px/1.4 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--neutral-700);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-hairline);
  border-radius: 0;
  background: var(--white);
  color: var(--neutral-900);
  font: 400 17px/1.5 var(--font-body);
  transition: border-color var(--dur) var(--ease);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--violet-600);
  outline-offset: 1px;
}

.field .hint {
  font: 400 15px/1.5 var(--font-body);
  color: var(--text-muted);
}

.form__status {
  grid-column: 1/-1;
  font: 400 17px/1.6 var(--font-body);
  color: var(--violet-700);
}

.form__status:empty {
  display: none;
}

/* --- Footer ------------------------------------------------------------- */
.footer {
  background: var(--sand-200);
  padding-block: clamp(48px, 7vw, 72px);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--grid-gap);
  justify-content: space-between;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--grid-gap);
  flex: 1 1 520px;
}

.footer dt {
  font: 600 12px/1.4 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--neutral-900);
}

.footer dd {
  margin: 8px 0 0;
  font: 400 17px/1.6 var(--font-body);
  color: var(--neutral-700);
}

.footer__brand {
  flex: 0 1 240px;
}

.footer__brand .wordmark__name {
  color: var(--neutral-900);
}

.footer__brand .wordmark__tag {
  color: var(--neutral-700);
}

.footer__bottom {
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--sand-400);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--grid-gap);
  justify-content: space-between;
  align-items: baseline;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 26px);
}

.footer__links a {
  font: 600 12px/1 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--neutral-700);
}

.footer__links a:hover {
  color: var(--violet-700);
}

.footer__note {
  font: 400 16px/1.6 var(--font-body);
  color: var(--neutral-700);
}

@media print {

  .nav,
  .nav__toggle,
  .btn,
  .video {
    display: none;
  }

  body {
    font-size: 12pt;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Toast Notification Styles */
.toast {
  visibility: hidden;
  min-width: 280px;
  background-color: #2e2b31;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 12px 20px;
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}