/* Plymouth Public Dispensary — bespoke concept */
:root {
  --ink: #0e1c22;
  --ink-soft: #31464f;
  --muted: #5d727b;
  --sea: #0a5563;
  --sea-deep: #063944;
  --sea-mid: #1b7d8c;
  --foam: #eef6f7;
  --mist: #d5e7eb;
  --paper: #f4f9fa;
  --white: #ffffff;
  --beacon: #c0392b;
  --beacon-soft: rgba(192, 57, 43, 0.1);
  --brass: #a67c1a;
  --brass-soft: rgba(166, 124, 26, 0.14);
  --line: rgba(14, 28, 34, 0.1);
  --shadow: 0 22px 50px rgba(6, 57, 68, 0.14);
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
  --banner-h: 2.25rem;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 50% at 100% -10%, rgba(27, 125, 140, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 30%, rgba(192, 57, 43, 0.04), transparent 45%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.has-norbit-demo-banner {
  padding-top: var(--banner-h);
}

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

a {
  color: var(--sea);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--beacon);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10001;
  padding: 0.6rem 1rem;
  background: var(--sea);
  color: var(--white);
  border-radius: 0.35rem;
}

.skip-link:focus {
  top: calc(var(--banner-h) + 0.5rem);
}

/* —— Demo banner —— */
.norbit-demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0.45rem 0.75rem;
  font: 600 0.72rem/1.4 system-ui, sans-serif;
  letter-spacing: 0.02em;
  text-align: center;
  color: #f8fafc;
  background: linear-gradient(90deg, #1e3a5f, #0f172a);
  border-bottom: 1px solid rgba(34, 211, 238, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.norbit-demo-banner a {
  color: #67e8f9;
  text-decoration: underline;
}

/* —— Site chrome —— */
.site-header {
  position: sticky;
  top: var(--banner-h);
  z-index: 100;
  background: rgba(244, 249, 250, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  position: relative;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  flex-shrink: 0;
  width: 2.55rem;
  height: 2.55rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand__meta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 550;
  padding: 0.55rem 0.8rem;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--beacon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--ink);
}

.site-nav a[aria-current="page"]:not(.nav-cta)::after,
.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  margin-left: 0.5rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  background: var(--sea);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--sea-deep);
  color: var(--white);
}

/* —— Layout helpers —— */
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.75rem, 9vw, 6rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section--sea {
  position: relative;
  background:
    linear-gradient(145deg, var(--sea-deep) 0%, var(--sea) 48%, #0f6a78 100%);
  color: var(--foam);
  overflow: hidden;
}

.section--sea::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: repeating-linear-gradient(
    180deg,
    var(--beacon) 0 18px,
    var(--white) 18px 36px
  );
}

.section--sea h2,
.section--sea h3 {
  color: var(--white);
}

.section--mist {
  background:
    linear-gradient(180deg, transparent, rgba(213, 231, 235, 0.55)),
    var(--foam);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea-mid);
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--beacon);
}

.section--sea .eyebrow {
  color: rgba(238, 245, 246, 0.8);
}

.section--sea .eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

.lede {
  font-size: clamp(1.1rem, 2.2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 38rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.95rem, 4.2vw, 2.7rem);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--brass);
  color: var(--ink);
}

.btn--primary:hover {
  background: #b88a1f;
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--sea-deep);
  border-color: rgba(10, 85, 99, 0.3);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--sea-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--banner-h) - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(6, 57, 68, 0.82) 0%, rgba(6, 57, 68, 0.45) 42%, rgba(6, 57, 68, 0.2) 100%),
    linear-gradient(180deg, transparent 35%, rgba(6, 40, 48, 0.9) 100%),
    url("../images/hero-plymouth.jpg") center 30% / cover no-repeat;
  transform: scale(1.05);
  animation: hero-drift 24s ease-in-out infinite alternate;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  z-index: 1;
  background: repeating-linear-gradient(
    180deg,
    var(--beacon) 0 22px,
    var(--white) 22px 44px
  );
}

.hero__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 10vh, 5.5rem) 0 clamp(2.75rem, 8vh, 4.5rem);
}

.hero__est {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 0.85s var(--ease) 0.05s forwards;
}

.hero__est::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--beacon);
}

.hero__brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 4.7rem);
  font-weight: 550;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 11ch;
  opacity: 0;
  transform: translateY(1.1rem);
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero h1 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.28rem, 3vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.94);
  max-width: 26ch;
  opacity: 0;
  transform: translateY(1.1rem);
  animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero__support {
  margin: 0 0 1.85rem;
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(238, 245, 246, 0.88);
  max-width: 34ch;
  opacity: 0;
  transform: translateY(1.1rem);
  animation: rise 0.9s var(--ease) 0.42s forwards;
}

.hero .btn-row {
  opacity: 0;
  transform: translateY(1.1rem);
  animation: rise 0.9s var(--ease) 0.55s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.4%, -1%, 0);
  }
}

/* —— Page hero —— */
.page-hero {
  position: relative;
  padding: clamp(3.25rem, 8vw, 4.75rem) 0 clamp(2.75rem, 6vw, 3.75rem);
  background:
    linear-gradient(120deg, rgba(6, 57, 68, 0.94), rgba(10, 85, 99, 0.78)),
    url("../images/hero-plymouth.jpg") center 35% / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: repeating-linear-gradient(
    180deg,
    var(--beacon) 0 22px,
    var(--white) 22px 44px
  );
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  color: var(--white);
  max-width: 15ch;
}

.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: rgba(238, 245, 246, 0.88);
  font-size: 1.1rem;
}

/* —— Mission —— */
.mission {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.mission__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: start;
}

.mission__year {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--sea);
  margin: 0;
}

.mission__aim {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.1vw, 1.95rem);
  line-height: 1.32;
  font-weight: 450;
  max-width: 38rem;
  margin: 0.35rem 0 0;
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.mission__item {
  padding: 1.6rem 1.35rem 0.25rem 0;
  border-right: 1px solid var(--line);
}

.mission__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.mission__item:first-child {
  padding-left: 0;
}

.mission__item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.mission__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 24ch;
}

/* —— Quote band —— */
.quote-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}

.quote-band__visual {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  border-radius: 1.25rem 0.35rem 1.25rem 0.35rem;
  background:
    linear-gradient(160deg, rgba(6, 57, 68, 0.15), rgba(6, 57, 68, 0.5)),
    url("../images/plymouth-hoe.jpg") center 45% / cover no-repeat;
  box-shadow: var(--shadow);
}

.quote-band__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--beacon) 0 18px,
    var(--white) 18px 36px
  );
}

.quote-band__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.6vw, 2.45rem);
}

.quote-band__copy p {
  color: var(--ink-soft);
}

/* —— Split —— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
}

.split__visual {
  min-height: 22rem;
  border-radius: 0.35rem 1.25rem 0.35rem 1.25rem;
  background:
    linear-gradient(160deg, rgba(6, 57, 68, 0.18), rgba(6, 57, 68, 0.42)),
    url("../images/plymouth-secondary.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.split__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
}

.split__copy p {
  color: var(--ink-soft);
}

/* —— Steps / criteria —— */
.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--beacon);
  line-height: 1.2;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.22rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.pillar {
  padding: 1.4rem 1.2rem 1.4rem 1.3rem;
  border-top: 3px solid var(--sea);
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.pillar h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.note {
  margin-top: 1.5rem;
  padding: 1.15rem 1.3rem;
  background: var(--beacon-soft);
  border-left: 3px solid var(--beacon);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.note--prominent {
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem;
  font-size: 1rem;
}

.note--prominent strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.meetings {
  margin: 1.25rem 0 1.5rem;
  padding: 1.15rem 1.25rem;
  background: var(--foam);
  border-left: 3px solid var(--sea);
}

.meetings h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--sea-deep);
}

.meetings p {
  margin: 0 0 0.65rem;
}

.meetings p:last-child {
  margin-bottom: 0;
}

.meetings__hint {
  font-size: 0.92rem;
  color: var(--muted);
}

.pitch-list {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.pitch-list li {
  margin-bottom: 0.75rem;
}

.pitch-list li:last-child {
  margin-bottom: 0;
}

.panel {
  padding: 1.6rem 1.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.35rem 1rem 0.35rem 1rem;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

/* —— Timeline —— */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 48rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--beacon), var(--mist));
}

.tl-item {
  position: relative;
  padding: 0 0 1.85rem 2.35rem;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.45rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 4px var(--paper);
}

.tl-item time {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beacon);
}

.tl-item p {
  margin: 0;
  color: var(--ink-soft);
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1.35rem;
}

.contact-item dt {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item dd {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 550;
}

.contact-item a {
  text-decoration: none;
  color: var(--sea-deep);
}

.contact-item a:hover {
  color: var(--beacon);
  text-decoration: underline;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.35rem 1rem 0.35rem 1rem;
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--ink-soft);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid rgba(27, 125, 140, 0.35);
  border-color: var(--sea-mid);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form__hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.form-success {
  display: none;
  padding: 1rem 1.1rem;
  background: rgba(10, 85, 99, 0.1);
  border-left: 3px solid var(--sea);
  color: var(--sea-deep);
  font-size: 0.95rem;
}

.form-success.is-visible {
  display: block;
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  z-index: 1;
  text-align: left;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
}

.cta-band p {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: rgba(238, 245, 246, 0.88);
}

/* —— Wave divider —— */
.wave {
  display: block;
  width: 100%;
  height: 48px;
  color: var(--foam);
  margin-top: -1px;
}

.wave--sea {
  color: var(--sea-deep);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(1.35rem);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* —— Footer —— */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--ink);
  color: rgba(238, 245, 246, 0.78);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin: 0;
}

.footer-meta {
  margin: 0;
  max-width: 28ch;
}

.footer-meta a {
  color: #67e8f9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 245, 246, 0.55);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(238, 245, 246, 0.88);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-legal {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(238, 245, 246, 0.5);
}

.footer-legal a {
  color: #67e8f9;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .mission__grid,
  .pillars,
  .quote-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mission__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.25rem 0;
  }

  .mission__item:last-child {
    border-bottom: 0;
  }

  .mission__item p {
    max-width: none;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split__visual,
  .quote-band__visual {
    min-height: 16rem;
    order: -1;
  }

  .mission__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.75rem 1rem 1rem;
    background: rgba(244, 249, 250, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(6, 57, 68, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    margin-top: 0.4rem;
    text-align: center;
  }

  .hero {
    min-height: calc(92svh - var(--banner-h) - var(--nav-h));
  }

  .hero__brand {
    max-width: 12ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media,
  .hero__est,
  .hero__brand,
  .hero h1,
  .hero__support,
  .hero .btn-row,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
