:root {
  --night: #080c11;
  --night-soft: #121923;
  --paper: #f2eee4;
  --paper-bright: #fbf8f0;
  --ink: #11161b;
  --muted: #505960;
  --line: rgba(17, 22, 27, 0.18);
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #d2a64a;
  --gold-light: #f1d58f;
  --blue: #1680b8;
  --blue-dark: #0c4f76;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --content: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--paper-bright);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 17, 0.96);
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
}

.brand-text { display: grid; gap: 1px; }

.brand-name {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-line {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: #fff; }

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

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light { color: var(--gold-light); }

.display,
.display-small,
.section-heading {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.display {
  font-size: clamp(50px, 7.4vw, 102px);
  line-height: 0.92;
}

.display-small {
  font-size: clamp(46px, 6.3vw, 82px);
  line-height: 0.98;
}

.section-heading {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.lede {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
}

.lede strong { color: var(--gold-light); }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 18% 15%, rgba(22, 128, 184, 0.18), transparent 30%),
    radial-gradient(circle at 82% 82%, rgba(210, 166, 74, 0.12), transparent 24%),
    var(--night);
  color: #fff;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.hero-copy { padding: 24px 0 34px; }

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); background: var(--gold-light); }

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

.button.secondary:hover { background: rgba(255, 255, 255, 0.06); }
.button.dark { background: var(--night); color: #fff; }
.button.dark:hover { background: var(--night-soft); }

.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after { content: "↗"; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.hero-proof {
  padding: 12px;
  border: 1px solid var(--line-dark);
  background: rgba(18, 25, 35, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.banner-proof {
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.banner-proof img {
  width: 100%;
  aspect-ratio: 2.625 / 1;
  object-fit: cover;
}

.proof-media {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 12px;
  margin-top: 12px;
}

.portrait-card,
.book-mini {
  position: relative;
  overflow: hidden;
  min-height: 272px;
  border: 1px solid var(--line-dark);
  background: var(--night-soft);
}

.portrait-card img {
  width: 84%;
  height: auto;
  min-height: 0;
  margin: 18px auto 50px;
  object-fit: contain;
  filter: saturate(0.55) contrast(0.94) brightness(0.88);
}

.portrait-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 15px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.94));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.book-mini {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 13px;
  padding: 15px;
  color: #fff;
  text-decoration: none;
}

.book-mini img {
  width: 100%;
  max-height: 242px;
  object-fit: contain;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.44);
}

.book-mini-copy { display: grid; align-content: center; gap: 8px; }

.status-chip {
  width: fit-content;
  border: 1px solid rgba(210, 166, 74, 0.7);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  padding: 6px 8px;
  text-transform: uppercase;
}

.book-mini strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.05;
}

.book-mini small { color: rgba(255, 255, 255, 0.64); font-size: 11px; line-height: 1.4; }

.proof-strip {
  background: var(--paper-bright);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  min-height: 122px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child { border-left: 1px solid var(--line); }

.proof-item span,
.edition-fact span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.18;
}

.section { padding: 96px 0; }
.section.compact { padding: 72px 0; }
.section.dark { overflow: hidden; background: var(--night); color: #fff; }
.section.paper-bright { background: var(--paper-bright); }

.section-intro {
  max-width: 670px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.dark .section-intro { color: rgba(255, 255, 255, 0.66); }

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 78px;
  align-items: start;
}

.plain-statement { max-width: 820px; }
.plain-statement p { margin: 24px 0 0; font-size: 22px; line-height: 1.65; }

.claim-boundary {
  padding: 30px;
  border-top: 4px solid var(--gold);
  background: var(--night-soft);
  color: #fff;
}

.claim-boundary h3,
.standard h3,
.method-item h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.claim-boundary p { margin: 0; color: rgba(255, 255, 255, 0.7); }

.work-grid,
.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

.work-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.work-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
}

.work-index,
.work-list-number,
.method-item > span {
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 18px;
}

.work-card h3 {
  margin: 52px 0 14px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.04;
}

.work-card p,
.standard p { margin: 0; color: var(--muted); }
.work-card .text-link { margin-top: auto; padding-top: 28px; }

.book-feature,
.book-hero-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 76px;
  align-items: center;
}

.book-feature-cover { position: relative; }

.book-feature-cover::before {
  content: "";
  position: absolute;
  inset: 10% -8% -8% 12%;
  border: 1px solid rgba(210, 166, 74, 0.5);
}

.book-feature-cover img,
.book-hero-cover img {
  position: relative;
  width: min(100%, 410px);
  margin-inline: auto;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.52);
}

.book-feature-copy p {
  max-width: 640px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  padding: 20px 0;
  border-block: 1px solid var(--line-dark);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.standard-grid { gap: 24px; margin-top: 46px; }
.standard { padding-top: 23px; border-top: 3px solid var(--blue); }
.standard h3 { font-size: 29px; }

.social-band { background: var(--gold); }

.social-band-inner {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.social-band h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.05;
}

.social-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }

.social-links a {
  padding: 10px 13px;
  border: 1px solid rgba(17, 22, 27, 0.36);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links a:hover { background: rgba(255, 255, 255, 0.3); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background: var(--night);
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -240px;
  top: -260px;
  border: 1px solid rgba(210, 166, 74, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(22, 128, 184, 0.04), 0 0 0 140px rgba(210, 166, 74, 0.03);
}

.page-hero .lede { color: rgba(255, 255, 255, 0.72); }
.book-hero-grid { position: relative; gap: 80px; }

.edition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.edition-fact {
  min-height: 142px;
  padding: 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.edition-fact strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.reading-column { max-width: 760px; }

.reading-column h2,
.about-copy h2 {
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: clamp(37px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.reading-column h3 {
  margin: 44px 0 14px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.reading-column p,
.about-copy p {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.78;
}

.reading-column ul { margin: 22px 0 0; padding: 0; list-style: none; }

.reading-column li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-top: 1px solid var(--line);
}

.reading-column li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 24px;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.status-note {
  padding: 23px 25px;
  border-left: 4px solid var(--gold);
  background: var(--paper-bright);
  color: var(--muted);
  font-size: 15px;
}

.work-list { margin-top: 52px; border-top: 1px solid var(--line); }

.work-list-item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) minmax(270px, 0.65fr);
  gap: 34px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.work-list-item h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.work-list-item p { margin: 0; color: var(--muted); }

.link-ledger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.link-ledger a {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 25px;
  background: var(--paper-bright);
  text-decoration: none;
}

.link-ledger a:hover { background: #fff; }
.link-ledger small { display: block; margin-top: 4px; color: var(--muted); }
.link-ledger .arrow { color: var(--blue-dark); font-size: 22px; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 76px;
  align-items: start;
}

.about-portrait { position: sticky; top: 130px; margin: 0; }

.about-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.about-portrait figcaption { margin-top: 14px; color: var(--muted); font-size: 13px; }

.method-list { margin-top: 40px; border-top: 1px solid var(--line); }

.method-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.method-item h3 { font-size: 25px; margin-bottom: 8px; }
.method-item p { margin: 0; color: var(--muted); font-size: 16px; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px;
  background: var(--night-soft);
  color: #fff;
}

.contact-panel h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
}

.contact-panel p { margin: 0; color: rgba(255, 255, 255, 0.68); }

.product-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
}

.product-callout .button { margin-bottom: 8px; }

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  margin-top: 42px;
  padding: 36px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  background: #fff;
}

.featured-product h3,
.product-card h3,
.service-card h3 {
  margin: 12px 0 14px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.1;
}

.featured-product p,
.product-card p,
.service-card p { margin: 0; color: var(--muted); }

.product-kind {
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-kind.light { color: var(--gold-light); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.product-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
}

.product-card .text-link { margin-top: auto; padding-top: 30px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  background: var(--night-soft);
}

.service-card h3 { color: #fff; }
.service-card p { color: rgba(255, 255, 255, 0.68); }
.service-card .button { width: fit-content; margin-top: auto; }

.site-footer { padding: 54px 0 34px; background: var(--night); color: #fff; }

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: end;
}

.footer-statement {
  max-width: 670px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.35;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
  gap: 11px 28px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero-grid,
  .book-hero-grid,
  .book-feature,
  .about-grid,
  .two-column { grid-template-columns: 1fr; }
  .product-callout,
  .featured-product { grid-template-columns: 1fr; }
  .hero-grid { gap: 30px; }
  .hero-proof { max-width: 720px; }
  .proof-grid,
  .work-grid,
  .standard-grid { grid-template-columns: 1fr; }
  .proof-item { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .work-card { min-height: 290px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .edition-grid { grid-template-columns: repeat(2, 1fr); }
  .work-list-item { grid-template-columns: 72px minmax(0, 1fr); }
  .work-list-item p { grid-column: 2; }
  .about-portrait { position: relative; top: auto; max-width: 440px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--content)); }
  .site-nav { min-height: 68px; }
  .brand-line { display: none; }
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    padding: 20px 24px 30px;
    border-bottom: 1px solid var(--line-dark);
    background: var(--night);
  }
  .nav-links.open { display: grid; }
  .nav-links a { display: block; padding: 12px 0; font-size: 18px; }
  .nav-links a::after { display: none; }
  .home-hero,
  .page-hero { padding: 62px 0 52px; }
  .hero-copy { padding-top: 0; }
  .display { font-size: clamp(50px, 17vw, 72px); }
  .display-small { font-size: clamp(43px, 14vw, 64px); }
  .lede { font-size: 19px; }
  .hero-actions .button,
  .button-row .button { width: 100%; }
  .proof-media { grid-template-columns: 1fr 1.2fr; }
  .portrait-card,
  .portrait-card img,
  .book-mini { min-height: 220px; }
  .portrait-card img { min-height: 0; }
  .book-mini { grid-template-columns: 1fr; padding: 12px; }
  .book-mini img { max-height: 160px; }
  .book-mini-copy { display: none; }
  .section { padding: 70px 0; }
  .section.compact { padding: 55px 0; }
  .plain-statement p,
  .section-intro,
  .book-feature-copy p { font-size: 18px; }
  .book-feature { gap: 50px; }
  .book-feature-cover img,
  .book-hero-cover img { width: min(82%, 340px); }
  .social-band-inner { padding: 34px 0; align-items: flex-start; flex-direction: column; }
  .social-links { justify-content: flex-start; }
  .edition-grid,
  .link-ledger { grid-template-columns: 1fr; }
  .work-list-item { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; padding: 28px 0; }
  .work-list-item p { margin-top: 13px; }
  .about-grid { gap: 48px; }
  .product-grid,
  .service-grid { grid-template-columns: 1fr; }
  .featured-product { padding: 26px; }
  .service-card { min-height: 290px; }
  .contact-panel { grid-template-columns: 1fr; padding: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
  .footer-bottom { flex-direction: column; }
}

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