/* Imprint Digital LLP — release press visual system (dark press room) */
:root {
  --paper: #1a1e25;
  --paper-2: #222831;
  --graphite: #0c0e12;
  --ink: #e8eaed;
  --muted: #9aa3b2;
  --line: #3a4250;
  --stamp: #e8513a;
  --stamp-hover: #ff6a52;
  --steel: #7aa0bc;
  --display: "Barlow Condensed", sans-serif;
  --body: "Source Sans 3", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --radius: 4px;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 8% 0%, rgba(232, 81, 58, 0.16), transparent 55%),
    radial-gradient(1000px 600px at 92% 18%, rgba(122, 160, 188, 0.14), transparent 50%),
    radial-gradient(700px 400px at 50% 70%, rgba(232, 81, 58, 0.05), transparent 60%),
    linear-gradient(180deg, #151820 0%, var(--paper) 40%, #12151b 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--steel);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--graphite);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

.section-index {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--stamp);
  margin: 0 0 1rem;
}

.section-index.light {
  color: rgba(255, 255, 255, 0.65);
}

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

.section h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 58ch;
}

/* Press rail */
.press-rail {
  position: fixed;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  z-index: 5;
  writing-mode: horizontal-tb;
}

.press-rail span:first-child,
.press-rail span:last-child {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.press-rail-line {
  width: 1px;
  height: 4.5rem;
  background: linear-gradient(180deg, transparent, var(--stamp), transparent);
  animation: rail-glow 2.4s ease-in-out infinite;
}

@keyframes rail-glow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

/* Press toast */
.press-toast {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  background: rgba(12, 14, 18, 0.92);
  border: 1px solid rgba(232, 81, 58, 0.4);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.press-toast.is-on {
  transform: translateY(0);
  opacity: 1;
}

.press-toast-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--stamp);
  box-shadow: 0 0 10px var(--stamp);
  animation: press-pulse 1.4s ease-in-out infinite;
}

@media (min-width: 1100px) {
  .press-rail {
    display: flex;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 14, 18, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(232, 81, 58, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  background: rgba(12, 14, 18, 0.92);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-copy small {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--stamp);
}

.nav-cta {
  padding: 0.45rem 0.85rem;
  background: var(--graphite);
  color: #fff !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--stamp) !important;
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--radius);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--stamp);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

@media (min-width: 880px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }
}

@media (max-width: 879px) {
  .main-nav.is-open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }

  .main-nav.is-open a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border: 0;
  }
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

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

.button-primary {
  background: var(--stamp);
  color: #fff;
}

.button-primary:hover {
  background: var(--stamp-hover);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-secondary:hover {
  border-color: #fff;
  color: #fff;
}

.button-on-dark {
  background: #fff;
  color: var(--graphite);
}

.button-on-dark:hover {
  background: var(--stamp);
  color: #fff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero-drift 28s ease-in-out infinite alternate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 10, 14, 0.92) 0%, rgba(12, 14, 18, 0.72) 42%, rgba(20, 23, 28, 0.35) 72%, rgba(232, 81, 58, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.35) 0%, rgba(8, 10, 14, 0.82) 100%);
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4rem;
}

.hero-brand {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  max-width: 22ch;
  color: rgba(255, 255, 255, 0.92);
}

.hero-lede {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

/* Studio */
.studio {
  background:
    linear-gradient(180deg, rgba(26, 30, 37, 0.4), rgba(34, 40, 49, 0.85));
  border-block: 1px solid rgba(58, 66, 80, 0.6);
}

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

@media (min-width: 820px) {
  .studio-grid {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: start;
    gap: 3rem;
  }
}

.studio-points {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.studio-points li {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}

.studio-points .mono {
  color: var(--stamp);
}

/* Build plate */
.plate-section {
  background:
    radial-gradient(800px 420px at 80% 10%, rgba(232, 81, 58, 0.12), transparent 55%),
    linear-gradient(160deg, #161a21 0%, #1f2530 45%, #171b22 100%);
}

.plate-intro {
  margin-bottom: 2rem;
}

.build-plate {
  border: 1px solid rgba(232, 81, 58, 0.28);
  background: linear-gradient(180deg, #1c2129 0%, #151920 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 50px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(232, 81, 58, 0.08);
}

.lane-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: #12161c;
}

.lane-tab {
  flex: 1 1 auto;
  min-width: 4.5rem;
  padding: 0.9rem 1rem;
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

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

.lane-tab.is-active {
  color: var(--stamp);
  background: var(--paper-2);
  border-bottom-color: var(--stamp);
}

.plate-deck {
  padding: 1.25rem 1.25rem 1.5rem;
  position: relative;
}

.press-arm {
  height: 4px;
  margin: 0 0 1rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--stamp), var(--steel), transparent);
  transform-origin: center;
  opacity: 0.55;
}

.press-arm.is-pressing {
  animation: press-arm 0.55s ease;
}

@keyframes press-arm {
  0% {
    transform: scaleX(0.2);
    opacity: 0.2;
  }
  45% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.85);
    opacity: 0.45;
  }
}

.plate-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.plate-pulse {
  color: var(--stamp);
  animation: press-pulse 1.8s ease-in-out infinite;
}

@keyframes press-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.stamp-field {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-height: 11rem;
}

@media (min-width: 700px) {
  .stamp-field {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stamp {
  border: 1.5px dashed rgba(232, 81, 58, 0.55);
  background:
    radial-gradient(120% 80% at 20% 0%, rgba(232, 81, 58, 0.18), transparent 55%),
    rgba(232, 81, 58, 0.06);
  border-radius: 2px;
  padding: 0.85rem 0.75rem;
  transform: rotate(var(--tilt, -1deg));
  opacity: 0;
  animation: stamp-in 0.45s ease forwards;
  box-shadow: 0 0 18px rgba(232, 81, 58, 0.08);
}

.stamp:nth-child(2) {
  --tilt: 1.2deg;
  animation-delay: 0.06s;
}

.stamp:nth-child(3) {
  --tilt: -0.8deg;
  animation-delay: 0.12s;
}

.stamp:nth-child(4) {
  --tilt: 0.6deg;
  animation-delay: 0.18s;
}

.stamp strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--stamp);
  margin-bottom: 0.25rem;
}

.stamp span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.35;
}

@keyframes stamp-in {
  from {
    opacity: 0;
    transform: translateY(10px) rotate(var(--tilt, -1deg)) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--tilt, -1deg)) scale(1);
  }
}

.plate-note {
  margin: 1.15rem 0 0;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: none;
}

/* Services */
.lanes-intro {
  margin-bottom: 1.5rem;
}

.lane-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-chip {
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.filter-chip:hover {
  border-color: var(--steel);
}

.filter-chip.is-active {
  background: var(--stamp);
  border-color: var(--stamp);
  color: #fff;
  box-shadow: 0 0 18px rgba(232, 81, 58, 0.35);
}

.service-registry {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, padding-left 0.2s ease, border-color 0.2s ease;
  border-left: 2px solid transparent;
  padding-left: 0;
}

.service-row.is-hidden {
  display: none;
}

.service-row:hover {
  background: rgba(232, 81, 58, 0.06);
  border-left-color: var(--stamp);
  padding-left: 0.65rem;
}

.service-row h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0.2rem 0 0.35rem;
}

.service-row p {
  margin: 0;
  max-width: none;
}

.service-row .price {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.service-row .price span {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

@media (min-width: 760px) {
  .service-row {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1.5rem;
  }
}

/* Process */
.press-steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .press-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.press-steps li {
  padding: 1.15rem 0 0;
  border-top: 2px solid var(--stamp);
}

.press-steps h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0.45rem 0 0.4rem;
  letter-spacing: 0.02em;
}

.press-steps p {
  margin: 0;
  font-size: 0.95rem;
}

/* Ink band */
.ink-band {
  background:
    linear-gradient(135deg, #14171c 0%, #1c2430 55%, #243447 100%);
  color: #fff;
  padding-block: 3.5rem;
  overflow: hidden;
}

.ink-band-inner {
  position: relative;
}

.ink-marquee {
  overflow: hidden;
  margin: 0.5rem 0 1.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ink-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(232, 81, 58, 0.22);
  animation: marquee 28s linear infinite;
}

.ink-copy {
  color: rgba(255, 255, 255, 0.78) !important;
  margin-bottom: 1.25rem !important;
  max-width: 42ch;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* FAQ */
.faq-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
}

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

.faq-list summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--stamp);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0.75rem 0 0.25rem;
}

/* Contact */
.contact-section {
  background:
    radial-gradient(700px 380px at 20% 0%, rgba(122, 160, 188, 0.1), transparent 55%),
    linear-gradient(180deg, #171b22 0%, #12161c 100%);
}

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

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-facts li {
  display: grid;
  gap: 0.25rem;
}

.contact-facts a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.contact-facts a:hover {
  color: var(--stamp);
}

.contact-form {
  background: rgba(28, 33, 41, 0.95);
  border: 1px solid rgba(232, 81, 58, 0.22);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #12161c;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(232, 81, 58, 0.4);
  border-color: var(--stamp);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-status {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.92rem;
}

.form-status.is-ok {
  color: var(--steel);
}

.form-status.is-err {
  color: var(--stamp);
}

/* Footer */
.site-footer {
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.footer-meta {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

  .button:hover,
  .stamp,
  .ink-track,
  .plate-pulse,
  .press-arm,
  .press-rail-line,
  .hero-media,
  .press-toast-dot,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .press-toast {
    transform: none;
  }
}

/* Policy pages */
.policy-page {
  padding: 5rem 0 4rem;
}

.policy-page h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.policy-page h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  max-width: none;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  max-width: 70ch;
}
