/* PulseMark Media — The Listening Room — Dark Design System */

:root {
  --basalt: #090E12;
  --spruce: #10262B;
  --oat: #F0EBE1;
  --tide: #2ED3B7;
  --ash: #7F8B93;
  --basalt-rgb: 9, 14, 18;
  --spruce-rgb: 16, 38, 43;
  --oat-rgb: 240, 235, 225;
  --tide-rgb: 46, 211, 183;
  --ash-rgb: 127, 139, 147;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'Martian Mono', ui-monospace, monospace;
  --header-h: 4.5rem;
  --max-w: 72rem;
  --radius: 0.375rem;
  --radius-lg: 0.75rem;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1rem 3rem rgba(0, 0, 0, 0.45);
}

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

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--oat);
  background: var(--basalt);
  overflow-x: hidden;
}

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

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

a:hover, a:focus-visible {
  color: var(--oat);
}

:focus-visible {
  outline: 2px solid var(--tide);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--tide);
  color: var(--basalt);
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Surfaces */
.surface-basalt { background: var(--basalt); color: var(--oat); }
.surface-oat { background: var(--oat); color: var(--basalt); }
.surface-spruce { background: var(--spruce); color: var(--oat); }
.surface-tide { background: var(--tide); color: var(--basalt); }

.surface-oat a { color: var(--spruce); }
.surface-oat a:hover { color: var(--basalt); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }

p { margin: 0 0 1.25rem; }

.lead {
  font-size: 1.2rem;
  color: var(--ash);
  max-width: 42rem;
}

.surface-oat .lead { color: rgba(var(--basalt-rgb), 0.72); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tide);
  margin-bottom: 0.75rem;
}

.surface-oat .eyebrow { color: var(--spruce); }

.mono { font-family: var(--font-mono); font-size: 0.875em; }

/* Layout */
.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

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

.grid-2 {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 48rem) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 48rem) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Dial motif */
.dial {
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(var(--tide-rgb), 0.35);
  border-radius: 50%;
  flex-shrink: 0;
}

.dial::before {
  content: '';
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(var(--tide-rgb), 0.2);
  border-radius: 50%;
}

.dial::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--tide);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.dial--lg {
  width: 5rem;
  height: 5rem;
}

.dial--lg::before { inset: 0.75rem; }

.dial-ring {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(var(--tide-rgb), 0.12);
  border-radius: 50%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(var(--basalt-rgb), 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--tide-rgb), 0.1);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--oat);
  line-height: 1.1;
}

.logo:hover { color: var(--oat); }

.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(var(--tide-rgb), 0.25);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin-inline: auto;
  background: var(--oat);
  transition: transform var(--transition), opacity var(--transition);
}

.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);
}

@media (min-width: 56rem) {
  .nav-toggle { display: none; }
}

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--basalt);
  padding: 2rem 1.25rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.site-nav.is-open { transform: translateX(0); }

@media (min-width: 56rem) {
  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    transform: none;
    overflow: visible;
    background: transparent;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 56rem) {
  .nav-list { display: flex; align-items: center; gap: 0.25rem; }
}

.nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--oat);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: rgba(var(--tide-rgb), 0.1);
  color: var(--tide);
}

.header-cta { margin-top: 1.5rem; }

@media (min-width: 56rem) {
  .header-cta { margin-top: 0; margin-left: 0.75rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
}

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

.btn-primary {
  background: var(--tide);
  color: var(--basalt);
}

.btn-primary:hover {
  background: var(--oat);
  color: var(--basalt);
}

.btn-secondary {
  background: transparent;
  color: var(--oat);
  border: 1px solid rgba(var(--oat-rgb), 0.35);
}

.btn-secondary:hover {
  border-color: var(--tide);
  color: var(--tide);
}

.surface-oat .btn-secondary {
  color: var(--basalt);
  border-color: rgba(var(--basalt-rgb), 0.3);
}

.surface-oat .btn-secondary:hover {
  border-color: var(--spruce);
  color: var(--spruce);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

/* Hero — THE READING */
.hero-reading {
  position: relative;
  min-height: clamp(28rem, 85vh, 42rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-reading__bg {
  position: absolute;
  inset: 0;
  background: var(--basalt);
}

.hero-reading__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-reading__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--basalt-rgb), 0.35) 0%,
    rgba(var(--basalt-rgb), 0.75) 55%,
    rgba(var(--basalt-rgb), 0.95) 100%
  );
}

.hero-reading__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(3rem, 10vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero-reading__title {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tide);
  margin-bottom: 1.25rem;
}

.hero-reading h1 {
  max-width: 16ch;
  margin-bottom: 1.25rem;
}

.hero-reading .lead {
  max-width: 38rem;
  color: rgba(var(--oat-rgb), 0.85);
}

.hero-reading .pulse-note {
  margin-top: 1.5rem;
  padding: 0.875rem 1.125rem;
  background: rgba(var(--spruce-rgb), 0.65);
  border-left: 3px solid var(--tide);
  font-size: 0.9375rem;
  max-width: 36rem;
}

/* Stepped ladder */
.ladder {
  display: grid;
  gap: 0;
  margin-top: 3rem;
}

@media (min-width: 48rem) {
  .ladder {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.ladder-step {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--spruce);
  border: 1px solid rgba(var(--tide-rgb), 0.12);
}

@media (min-width: 48rem) {
  .ladder-step:nth-child(1) { margin-top: 0; }
  .ladder-step:nth-child(2) { margin-top: 2.5rem; }
  .ladder-step:nth-child(3) { margin-top: 5rem; }
  .ladder-step:nth-child(4) { margin-top: 7.5rem; }
}

.ladder-step__num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--tide);
  margin-bottom: 0.75rem;
}

.ladder-step h3 { margin-bottom: 0.5rem; }

.ladder-step p {
  font-size: 0.9375rem;
  color: var(--ash);
  margin: 0;
}

/* Capability list */
.capability-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 48rem) {
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.capability-col {
  padding: clamp(2rem, 4vw, 3rem);
}

.capability-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.capability-col li {
  position: relative;
  padding: 0.875rem 0 0.875rem 2rem;
  border-bottom: 1px solid rgba(var(--tide-rgb), 0.1);
  font-size: 0.9375rem;
}

.capability-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--tide);
  border-radius: 50%;
}

/* Cards */
.card {
  background: rgba(var(--spruce-rgb), 0.5);
  border: 1px solid rgba(var(--tide-rgb), 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
}

.surface-oat .card {
  background: #fff;
  border-color: rgba(var(--basalt-rgb), 0.08);
}

.card h3 { margin-bottom: 0.75rem; }

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

.card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 16 / 10;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(var(--tide-rgb), 0.1);
}

.page-hero h1 { max-width: 20ch; }

/* Split section */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 56rem) {
  .split { grid-template-columns: 1fr 1fr; }
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq-list { margin: 0; padding: 0; list-style: none; }

.faq-item {
  border-bottom: 1px solid rgba(var(--tide-rgb), 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--oat);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--tide);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--ash);
}

.faq-item.is-open .faq-answer { display: block; }

.surface-oat .faq-item { border-color: rgba(var(--basalt-rgb), 0.1); }
.surface-oat .faq-question { color: var(--basalt); }
.surface-oat .faq-answer { color: rgba(var(--basalt-rgb), 0.75); }

/* Forms */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--oat);
  background: rgba(var(--basalt-rgb), 0.6);
  border: 1px solid rgba(var(--tide-rgb), 0.2);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.surface-oat .form-group input,
.surface-oat .form-group select,
.surface-oat .form-group textarea {
  color: var(--basalt);
  background: #fff;
  border-color: rgba(var(--basalt-rgb), 0.15);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tide);
}

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

.form-hint {
  font-size: 0.8125rem;
  color: var(--ash);
  margin-top: 0.375rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.25rem;
  padding: 0;
  accent-color: var(--tide);
}

.form-checkbox label {
  flex: 1;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.form-status--success {
  background: rgba(var(--tide-rgb), 0.15);
  border: 1px solid var(--tide);
  color: var(--tide);
}

.form-status--error {
  background: rgba(220, 80, 80, 0.15);
  border: 1px solid #dc5050;
  color: #f0a0a0;
}

/* Work grid */
.work-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

.work-card {
  border: 1px solid rgba(var(--tide-rgb), 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(var(--spruce-rgb), 0.4);
}

.work-card__img { aspect-ratio: 16 / 9; overflow: hidden; }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; }

.work-card__body { padding: 1.5rem; }

.work-card__tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tide);
}

/* Legal prose */
.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 1.75rem;
}

.legal-content ul, .legal-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}

.legal-content li { margin-bottom: 0.5rem; }

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--ash);
  margin-bottom: 2rem;
}

.surface-oat .legal-meta { color: rgba(var(--basalt-rgb), 0.6); }

/* Legal hub */
.legal-links {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: rgba(var(--spruce-rgb), 0.5);
  border: 1px solid rgba(var(--tide-rgb), 0.12);
  border-radius: var(--radius-lg);
  color: var(--oat);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}

.legal-links a:hover {
  border-color: var(--tide);
  background: rgba(var(--spruce-rgb), 0.8);
  color: var(--oat);
}

.legal-links a::after {
  content: '→';
  font-family: var(--font-mono);
  color: var(--tide);
}

/* Footer */
.site-footer {
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid rgba(var(--tide-rgb), 0.1);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 48rem) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--ash);
  max-width: 28rem;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tide);
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li,
.footer-links li { margin-bottom: 0.5rem; }

.footer-nav a,
.footer-links a {
  color: var(--ash);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-nav a:hover,
.footer-links a:hover { color: var(--tide); }

.footer-contact address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--ash);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--tide-rgb), 0.08);
  font-size: 0.8125rem;
  color: var(--ash);
}

.pulse-clarifier {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(var(--tide-rgb), 0.06);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  color: var(--ash);
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}

.error-page h1 { margin-bottom: 1rem; }

.error-page .dial {
  margin: 0 auto 2rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 1.25rem;
  background: var(--spruce);
  border-top: 1px solid rgba(var(--tide-rgb), 0.2);
  box-shadow: 0 -0.5rem 2rem rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner__inner {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 48rem) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ash);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.cookie-banner .btn {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(var(--basalt-rgb), 0.85);
}

.cookie-modal.is-open { display: flex; }

.cookie-modal__panel {
  width: min(100%, 28rem);
  padding: 2rem;
  background: var(--spruce);
  border: 1px solid rgba(var(--tide-rgb), 0.2);
  border-radius: var(--radius-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal__panel h3 { margin-bottom: 1rem; }

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(var(--tide-rgb), 0.1);
}

.cookie-option label {
  flex: 1;
  cursor: pointer;
}

.cookie-option input { margin-top: 0.25rem; accent-color: var(--tide); }

.cookie-option__desc {
  font-size: 0.8125rem;
  color: var(--ash);
  margin-top: 0.25rem;
}

.cookie-modal__actions {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

/* Stat strip */
.stat-strip {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
}

@media (min-width: 48rem) {
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tide);
  display: block;
}

.stat-item__label {
  font-size: 0.875rem;
  color: var(--ash);
}

/* Service blocks */
.service-block {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(var(--tide-rgb), 0.1);
}

@media (min-width: 56rem) {
  .service-block {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

.service-block:last-child { border-bottom: none; }

.service-block__aside {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Contact layout */
.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 56rem) {
  .contact-layout { grid-template-columns: 1fr 1.2fr; }
}

.contact-details {
  padding: 2rem;
  background: rgba(var(--spruce-rgb), 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--tide-rgb), 0.12);
}

.contact-details h3 { margin-bottom: 1.25rem; }

.contact-details dl {
  margin: 0;
}

.contact-details dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tide);
  margin-top: 1.25rem;
}

.contact-details dt:first-child { margin-top: 0; }

.contact-details dd {
  margin: 0.375rem 0 0;
  color: var(--oat);
}

/* Utility */
.text-center { text-align: center; }
.text-ash { color: var(--ash); }
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 3rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
