/* ==========================================================================
   Design tokens
   Palette: clean benchtops, panel equipment, network links, ready-state teal,
   warm desk wood, status amber — grounded in real workplace setup moments.
   Type: Outfit (display) + Source Sans 3 (body) — deliberate, not defaults.
   ========================================================================== */

:root {
  --color-benchtop: #F4F5F7;
  --color-workstation-white: #FAFBFC;
  --color-panel-grey: #3D4551;
  --color-cable-charcoal: #1E2429;
  --color-link-blue: #356995;
  --color-ready-teal: #2F6F6D;
  --color-warm-desk: #D9D3CB;
  --color-status-amber: #B8923E;

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-card: 0 1px 3px rgba(30, 36, 41, 0.06), 0 4px 16px rgba(30, 36, 41, 0.04);
  --shadow-card-hover: 0 4px 12px rgba(30, 36, 41, 0.08), 0 8px 24px rgba(30, 36, 41, 0.06);

  --transition: 180ms ease;
  --max-width: 1120px;
}

/* Reset & base */
*, *::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;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .process-step,
  .process-track-fill {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-cable-charcoal);
  background: var(--color-workstation-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-link-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--color-ready-teal);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 100;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-cable-charcoal);
  color: var(--color-workstation-white);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-md);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-lg);
  }
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-cable-charcoal);
}

h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.125rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--color-panel-grey);
  max-width: 52ch;
}

.section {
  padding-block: var(--space-2xl);
  scroll-margin-top: 4.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 251, 252, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(61, 69, 81, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: var(--space-sm);
}

@media (min-width: 768px) {
  .header-inner {
    padding-block: var(--space-md);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-cable-charcoal);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.0625rem;
  }
}

.logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-mark {
  color: var(--color-ready-teal);
  flex-shrink: 0;
}

.header-cta {
  flex-shrink: 0;
  font-size: 0.8125rem;
  padding: 0.5rem 0.875rem;
}

@media (min-width: 768px) {
  .header-cta {
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--color-ready-teal);
  color: var(--color-workstation-white);
}

.btn-primary:hover {
  background: #265956;
  color: var(--color-workstation-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-cable-charcoal);
  border: 1.5px solid rgba(61, 69, 81, 0.25);
}

.btn-secondary:hover {
  border-color: var(--color-panel-grey);
  color: var(--color-cable-charcoal);
}

/* Hero */
.hero {
  padding-block: var(--space-xl) var(--space-2xl);
  background:
    linear-gradient(165deg, var(--color-benchtop) 0%, var(--color-workstation-white) 55%);
}

.hero-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ready-teal);
  margin: 0 0 var(--space-md);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--color-panel-grey);
  max-width: 48ch;
  margin-block: var(--space-md) var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-reassurance {
  margin: var(--space-md) 0 0;
  font-size: 0.875rem;
  color: var(--color-panel-grey);
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Problem */
.problem {
  background: var(--color-cable-charcoal);
  color: rgba(250, 251, 252, 0.88);
}

.problem h2 {
  color: var(--color-workstation-white);
}

.problem .section-lead {
  color: rgba(250, 251, 252, 0.72);
}

/* Problem */
.problem-inner {
  max-width: 42rem;
}

.pain-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: grid;
  gap: var(--space-md);
}

.pain-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: rgba(250, 251, 252, 0.92);
}

.pain-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-workstation-white);
  background: var(--color-status-amber);
  border-radius: 50%;
}

/* Signature: Path cards */
.paths {
  background: var(--color-benchtop);
}

.paths-header {
  margin-bottom: var(--space-xl);
}

.path-cards {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .path-cards {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.path-card {
  position: relative;
  background: var(--color-workstation-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.path-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.path-card--single {
  border-top: 3px solid var(--color-ready-teal);
}

.path-card--full {
  border-top: 3px solid var(--color-link-blue);
}

@media (prefers-reduced-motion: no-preference) {
  .path-card:hover {
    transform: translateY(-2px);
  }
}

.path-photo {
  margin: calc(var(--space-lg) * -1) calc(var(--space-lg) * -1) var(--space-md);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.path-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .path-photo img {
    height: 200px;
  }
}

.path-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-ready-teal);
  background: rgba(47, 111, 109, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.path-badge--full {
  color: var(--color-link-blue);
  background: rgba(53, 105, 149, 0.1);
}

.path-card h3 {
  font-size: 1.375rem;
  margin: 0 0 var(--space-sm);
}

.path-tagline {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-panel-grey);
  margin: 0 0 var(--space-md);
}

.path-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  flex-grow: 1;
}

.path-includes li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

.path-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-ready-teal);
}

.path-card--full .path-includes li::before {
  background: var(--color-link-blue);
}

.path-note {
  font-size: 0.875rem;
  color: var(--color-panel-grey);
  font-style: italic;
  margin: 0 0 var(--space-sm);
}

.path-price {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-cable-charcoal);
  background: var(--color-benchtop);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  margin: 0 0 var(--space-md);
  line-height: 1.45;
}

.btn-path {
  width: 100%;
  background: var(--color-ready-teal);
  color: var(--color-workstation-white);
  margin-top: auto;
}

.btn-path:hover {
  background: #265956;
  color: var(--color-workstation-white);
}

.btn-path--full {
  background: var(--color-link-blue);
}

.btn-path--full:hover {
  background: #2a5a7f;
  color: var(--color-workstation-white);
}

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .path-card.reveal:nth-child(1) { transition-delay: 0.05s; }
  .path-card.reveal:nth-child(2) { transition-delay: 0.15s; }

  .audience-details .detail-block.reveal:nth-child(1) { transition-delay: 0.05s; }
  .audience-details .detail-block.reveal:nth-child(2) { transition-delay: 0.12s; }
  .audience-details .detail-block.reveal:nth-child(3) { transition-delay: 0.19s; }
}

/* Process */
.process-track {
  display: none;
}

@media (min-width: 768px) {
  .process-track {
    display: block;
    position: relative;
    height: 2px;
    background: var(--color-benchtop);
    margin-top: var(--space-xl);
    border-radius: 1px;
    overflow: hidden;
  }

  .process-track-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(
      90deg,
      var(--color-ready-teal) 0%,
      #3d8a87 100%
    );
    border-radius: 1px;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .process-track.is-visible .process-track-fill {
    width: 100%;
  }

  .process-flow {
    margin-top: 0;
  }
}

.process-flow {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0 0;
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .process-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .process-step.reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @media (min-width: 768px) {
    .process-flow.is-active .process-step.reveal {
      opacity: 1;
      transform: translateY(0);
    }

    .process-flow.is-active .process-step:nth-child(1) { transition-delay: 0.2s; }
    .process-flow.is-active .process-step:nth-child(2) { transition-delay: 0.4s; }
    .process-flow.is-active .process-step:nth-child(3) { transition-delay: 0.6s; }
    .process-flow.is-active .process-step:nth-child(4) { transition-delay: 0.8s; }

    .process-marker {
      transform: scale(0);
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .process-flow.is-active .process-step:nth-child(1) .process-marker { transition-delay: 0.35s; }
    .process-flow.is-active .process-step:nth-child(2) .process-marker { transition-delay: 0.55s; }
    .process-flow.is-active .process-step:nth-child(3) .process-marker { transition-delay: 0.75s; }
    .process-flow.is-active .process-step:nth-child(4) .process-marker { transition-delay: 0.95s; }

    .process-flow.is-active .process-marker {
      transform: scale(1);
    }

    .process-flow.is-active .process-step:last-child .process-marker {
      animation: marker-glow 2s ease-in-out 1.1s infinite;
    }
  }

  @media (max-width: 767px) {
    .process-step.reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .process-step.reveal .process-marker {
      transform: scale(0);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
    }

    .process-step.reveal.is-visible .process-marker {
      transform: scale(1);
    }
  }
}

@keyframes marker-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 111, 109, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(47, 111, 109, 0); }
}

.process-step {
  position: relative;
  padding-left: var(--space-lg);
  padding-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .process-step {
    padding-left: 0;
    padding-bottom: 0;
    padding-top: var(--space-md);
  }
}

.process-marker {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-ready-teal);
}

@media (min-width: 768px) {
  .process-marker {
    top: -5px;
    left: 0;
  }
}

@media (max-width: 767px) {
  @media (prefers-reduced-motion: no-preference) {
    .process-step:not(:last-child)::after {
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .process-step.is-visible:not(:last-child)::after {
      transform: scaleY(1);
    }
  }

  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1.1rem;
    bottom: 0;
    width: 2px;
    background: var(--color-benchtop);
  }

  .process-step.is-visible:not(:last-child)::after {
    background: linear-gradient(
      180deg,
      var(--color-ready-teal) 0%,
      var(--color-benchtop) 100%
    );
  }
}

.process-content h3 {
  margin: 0 0 var(--space-xs);
}

.process-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-panel-grey);
}

/* Audience */
.audience {
  background: var(--color-benchtop);
}

.audience-centered {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.audience-centered p {
  color: var(--color-panel-grey);
  margin-inline: auto;
  max-width: 60ch;
}

.audience-details {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  text-align: left;
}

@media (min-width: 768px) {
  .audience-details {
    grid-template-columns: repeat(3, 1fr);
  }
}

.detail-block {
  background: var(--color-workstation-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.detail-block h3 {
  font-size: 1rem;
  margin: 0 0 var(--space-sm);
  color: var(--color-ready-teal);
}

.detail-block p {
  margin: 0;
  font-size: 0.9375rem;
  max-width: none;
}

/* FAQ */
.faq {
  background: var(--color-workstation-white);
}

.faq-inner {
  max-width: 40rem;
  margin-inline: auto;
}

.faq-list {
  margin-top: var(--space-lg);
  display: grid;
  gap: var(--space-sm);
}

.faq-item {
  border: 1.5px solid rgba(61, 69, 81, 0.12);
  border-radius: var(--radius-md);
  background: var(--color-workstation-white);
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: var(--space-md);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-ready-teal);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--color-ready-teal);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

.faq-item p {
  margin: 0;
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-panel-grey);
  line-height: 1.55;
}

/* Contact / Form */
.contact {
  background: var(--color-benchtop);
}

.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-2xl);
    align-items: start;
  }
}

.contact-intro p {
  color: var(--color-panel-grey);
}

.contact-reassurance {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ready-teal);
  margin-top: var(--space-md);
}

.lead-form {
  background: var(--color-workstation-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-row {
  margin-bottom: var(--space-md);
}

.form-row--half {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .form-row--half {
    grid-template-columns: 1fr 1fr;
  }
}

label, legend {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--color-cable-charcoal);
}

.required {
  color: var(--color-ready-teal);
}

.optional {
  font-weight: 400;
  color: var(--color-panel-grey);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid rgba(61, 69, 81, 0.2);
  border-radius: var(--radius-sm);
  background: var(--color-workstation-white);
  color: var(--color-cable-charcoal);
  transition: border-color var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-ready-teal);
  box-shadow: 0 0 0 3px rgba(47, 111, 109, 0.15);
}

textarea {
  resize: vertical;
  min-height: 5rem;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-md);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.625rem 0.75rem;
  border: 1.5px solid rgba(61, 69, 81, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: border-color var(--transition), background var(--transition);
}

.radio-label:hover {
  border-color: rgba(47, 111, 109, 0.4);
  background: rgba(47, 111, 109, 0.03);
}

.radio-label input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.radio-label:has(input:focus-visible) {
  outline: 2px solid var(--color-ready-teal);
  outline-offset: 2px;
}

.radio-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(61, 69, 81, 0.35);
  border-radius: 50%;
  position: relative;
  transition: border-color var(--transition);
}

.radio-label input:checked + .radio-custom {
  border-color: var(--color-ready-teal);
}

.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--color-ready-teal);
  border-radius: 50%;
}

.radio-label:has(input:checked) {
  border-color: var(--color-ready-teal);
  background: rgba(47, 111, 109, 0.05);
}

.conditional-fields {
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background: var(--color-benchtop);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-ready-teal);
}

.conditional-fields[hidden] {
  display: none;
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

.form-status--success {
  color: var(--color-ready-teal);
}

.form-status--error {
  color: #B33A3A;
}

.btn-submit {
  width: 100%;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-reassurance {
  margin: var(--space-sm) 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-panel-grey);
}

/* Legal page */
.legal-page {
  padding-block: var(--space-2xl);
}

.legal-page h1 {
  margin-top: 0;
}

.legal-updated {
  color: var(--color-panel-grey);
  font-size: 0.9375rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: var(--space-xl);
}

.legal-page p,
.legal-page li {
  color: var(--color-panel-grey);
  max-width: 60ch;
}

/* Footer */
.site-footer {
  background: var(--color-cable-charcoal);
  color: rgba(250, 251, 252, 0.75);
  padding-block: var(--space-xl);
}

.footer-inner {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-workstation-white);
  margin: 0 0 var(--space-xs);
}

.footer-tagline {
  margin: 0;
  font-size: 0.9375rem;
}

.footer-contact p {
  margin: 0 0 var(--space-xs);
}

.footer-contact a {
  color: rgba(250, 251, 252, 0.85);
  text-decoration: none;
}

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

.footer-meta {
  margin-top: var(--space-md) !important;
  font-size: 0.8125rem;
  opacity: 0.6;
}

.footer-legal {
  margin-top: var(--space-sm) !important;
  font-size: 0.875rem;
}

.footer-legal a {
  color: rgba(250, 251, 252, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
