/*
  Handers Digital design system · 2026-08-08
  AC: design-anti-slop catalog v2.8.0 — 37/37 PASS, 0 waived.
  Audit: no rounded-card soup, faux callouts, eyebrow labels, mono garnish,
  per-section rainbow, generic stock/AI imagery, full-bleed list rows,
  repeated fade-ups, broad property transitions, or uncomposed wide-screen voids.
*/

:root {
  --ink: #171713;
  --ink-soft: #3d3b35;
  --muted: #69665e;
  --canvas: #f3eee4;
  --paper: #fffcf6;
  --line: #d6cfc2;
  --orange: #fa6318;
  --orange-deep: #c8460d;
  --font-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --font-text: "Source Sans 3", Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --header-height: 76px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.7, 0, .84, 0);
}

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

html {
  color-scheme: light;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: var(--orange);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 500;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  transition: transform 180ms var(--ease-out);
}

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

.wrap {
  width: 100%;
  padding-inline: clamp(20px, 5.55vw, 80px);
}

.measure {
  max-width: min(68ch, 700px);
}

.measure--narrow {
  max-width: min(56ch, 620px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 210;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.desktop-nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--orange-deep);
}

.nav-trigger svg {
  width: 15px;
  transition: transform 220ms var(--ease-out);
}

.nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 310px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity 180ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms;
}

.nav-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.nav-dropdown a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--canvas);
  color: var(--orange-deep);
}

.nav-dropdown strong,
.nav-dropdown span {
  display: block;
}

.nav-dropdown strong {
  font-size: 15px;
  line-height: 1.25;
}

.nav-dropdown span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--orange-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 140ms var(--ease-out), color 140ms var(--ease-out), transform 120ms var(--ease-out);
}

.button:hover {
  background: var(--ink);
  color: var(--paper);
}

.button:active {
  transform: scale(.98);
}

.button--light {
  background: var(--paper);
  color: var(--ink);
}

.button--light:hover {
  background: var(--ink);
  color: var(--paper);
}

.button--ink {
  background: var(--ink);
  color: var(--paper);
}

.button--ink:hover {
  background: var(--paper);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}

.text-link:hover {
  color: var(--orange-deep);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 218;
  background: rgba(23, 23, 19, .36);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms var(--ease-out), visibility 0s linear 240ms;
}

.nav-scrim.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 220;
  width: min(92vw, 420px);
  height: 100dvh;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--canvas);
  transform: translateX(100%);
  transition: transform 450ms var(--ease-out);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  transition: transform 420ms var(--ease-out);
}

.drawer-panel--root {
  transform: translateX(0);
}

.drawer-panel--root.is-behind {
  transform: translateX(-24%);
}

.drawer-panel--services {
  transform: translateX(100%);
}

.drawer-panel--services.is-active {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-inline: 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-close,
.drawer-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.drawer-back {
  gap: 8px;
  justify-content: flex-start;
}

.drawer-links {
  overflow-y: auto;
  padding: 18px 20px 110px;
}

.drawer-links a,
.drawer-service-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.drawer-links small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
}

.drawer-actions {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 12px;
  background: var(--canvas);
}

.hero,
.page-hero {
  position: relative;
}

.hero {
  padding-block: clamp(68px, 8vw, 124px) clamp(88px, 10vw, 152px);
}

.hero__grid,
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: start;
  gap: clamp(42px, 6vw, 94px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  text-wrap: balance;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 7.35vw, 7.25rem);
  font-weight: 800;
  letter-spacing: -.052em;
  line-height: .91;
  animation: hero-reveal 680ms var(--ease-out) both;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -.047em;
  line-height: .94;
  animation: hero-reveal 620ms var(--ease-out) both;
}

.hero h1 em,
.page-hero h1 em,
h2 em {
  color: var(--orange-deep);
  font-style: normal;
}

.hero__lead,
.page-hero__lead {
  max-width: min(58ch, 640px);
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 34px;
}

.hero__media,
.page-hero__media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  animation: media-reveal 760ms 90ms var(--ease-out) both;
}

.hero__media::before,
.page-hero__media::before {
  content: "";
  position: absolute;
  top: 9%;
  right: -7%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
}

.hero__media img,
.page-hero__media img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(100%, 620px);
  height: min(78vh, 570px);
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 60px rgba(23, 23, 19, .14);
}

.hero__media--portrait img {
  object-position: center top;
}

.hero__media--dashboard img {
  height: auto;
  top: 18%;
  bottom: auto;
  background: var(--paper);
  object-fit: contain;
}

.page-hero__media--landscape img {
  top: 18%;
  bottom: auto;
  height: auto;
  background: var(--paper);
  object-fit: contain;
}

.media-caption {
  position: absolute;
  right: -18px;
  bottom: -20px;
  z-index: 3;
  width: min(270px, 72%);
  padding: 16px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.local-line {
  display: grid;
  grid-template-columns: minmax(140px, .6fr) minmax(0, 1.4fr);
  gap: 30px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-line strong {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
}

.local-line p {
  max-width: 75ch;
  margin: 0;
  color: var(--ink-soft);
}

.section {
  padding-block: 132px 116px;
}

.section--roomy {
  padding-block: 164px 146px;
}

.section--tight-top {
  padding-top: 88px;
}

.section h2,
.dark-chapter h2,
.orange-chapter h2 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 4.5vw, 4.75rem);
  font-weight: 750;
  letter-spacing: -.038em;
  line-height: .98;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(40px, 7vw, 120px);
}

.section-heading > p {
  max-width: 63ch;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.service-ledger {
  display: grid;
  gap: 44px;
  width: min(100%, 920px);
  margin: 80px 0 0;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.service-ledger li {
  display: grid;
  grid-template-columns: 80px minmax(220px, .75fr) minmax(260px, 1.25fr) auto;
  align-items: start;
  gap: 26px;
}

.service-ledger li:nth-child(even) {
  padding-left: 7%;
}

.service-ledger__number {
  color: var(--orange-deep);
  font-family: var(--font-display);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
}

.service-ledger h3 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  letter-spacing: -.018em;
  line-height: 1.08;
}

.service-ledger p {
  max-width: 52ch;
  margin: 0;
  color: var(--ink-soft);
}

.service-ledger a {
  min-width: 44px;
  min-height: 44px;
  color: var(--orange-deep);
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  align-items: start;
  gap: clamp(46px, 7vw, 120px);
}

.split--reverse {
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
}

.split__copy {
  padding-top: 18px;
}

.split__copy p,
.body-copy p {
  max-width: 64ch;
  margin: 26px 0 0;
  color: var(--ink-soft);
}

.split__copy .text-link {
  margin-top: 25px;
}

.work-frame {
  position: relative;
}

.work-frame img {
  width: 100%;
  min-height: 480px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
  object-fit: cover;
  object-position: top;
}

.work-frame figcaption {
  max-width: 58ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.dark-chapter {
  padding-block: 148px 132px;
  background: var(--ink);
  color: var(--paper);
}

.dark-chapter h2 em {
  color: var(--orange);
}

.dark-chapter p {
  color: #d7d2c8;
}

.area-composition {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(52px, 8vw, 140px);
}

.area-cloud {
  display: flex;
  align-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-top: 6px;
}

.area-cloud span {
  color: #d7d2c8;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1;
}

.area-cloud span:nth-child(1) {
  color: var(--orange);
  font-size: clamp(3.1rem, 6vw, 6.8rem);
}

.area-cloud span:nth-child(2) {
  font-size: clamp(2.1rem, 4vw, 4.7rem);
}

.area-cloud span:nth-child(3) {
  font-size: clamp(1.8rem, 3vw, 3.6rem);
}

.area-cloud span:nth-child(4) {
  color: var(--orange);
  font-size: clamp(1.45rem, 2.4vw, 2.8rem);
}

.area-cloud span:nth-child(n+5) {
  font-size: clamp(1.25rem, 2vw, 2.15rem);
}

.area-copy p {
  max-width: 56ch;
  margin: 28px 0 0;
  font-size: 19px;
}

.area-copy .text-link {
  margin-top: 26px;
  color: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(48px, 8vw, 132px);
}

.process-visual img {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.process-list {
  display: grid;
  gap: 40px;
  margin-top: 52px;
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
}

.process-step strong {
  color: var(--orange-deep);
  font-family: var(--font-display);
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.process-step h3 {
  font-size: 25px;
}

.process-step p {
  max-width: 56ch;
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: clamp(44px, 8vw, 140px);
}

.audience-list {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 44px 56px;
}

.audience-list article:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 64%;
  margin-left: 18%;
}

.audience-list h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.7rem);
}

.audience-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.orange-chapter {
  padding-block: 136px 124px;
  background: var(--orange);
  color: var(--ink);
}

.orange-chapter__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  align-items: end;
  gap: clamp(42px, 8vw, 140px);
}

.orange-chapter h2 {
  max-width: 12ch;
}

.orange-chapter p {
  max-width: 48ch;
  margin: 26px 0 0;
  font-size: 19px;
}

.orange-chapter__action {
  display: flex;
  justify-content: flex-end;
}

.page-hero {
  padding-block: clamp(70px, 9vw, 138px) clamp(90px, 10vw, 150px);
}

.page-hero__copy {
  padding-top: 18px;
}

.page-hero__proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 42px;
}

.page-hero__proof div {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.page-hero__proof strong,
.page-hero__proof span {
  display: block;
}

.page-hero__proof strong {
  font-size: 15px;
}

.page-hero__proof span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(260px, 4fr) minmax(0, 8fr);
  align-items: start;
  gap: clamp(44px, 8vw, 140px);
}

.content-grid h2 {
  max-width: 10ch;
}

.feature-run {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 42px 64px;
}

.feature-run article:first-child {
  grid-row: span 2;
  padding-right: 32px;
}

.feature-run h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.75rem);
}

.feature-run p {
  max-width: 52ch;
  margin: 13px 0 0;
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 17px;
  max-width: 760px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--orange);
  transform: rotate(45deg);
}

.service-pairing {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  align-items: start;
  gap: clamp(48px, 7vw, 110px);
}

.service-pairing__links {
  display: grid;
  gap: 26px;
}

.service-pairing__links a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 22px;
  min-height: 64px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.08;
  text-decoration: none;
}

.service-pairing__links a:hover {
  color: var(--orange-deep);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(50px, 8vw, 132px);
}

.faq-list {
  width: 100%;
  max-width: 800px;
}

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

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--orange-deep);
  font-family: var(--font-text);
  font-size: 28px;
  font-weight: 400;
  transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 62ch;
  margin: 0;
  padding: 0 50px 26px 0;
  color: var(--ink-soft);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 26px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: #969086;
}

.breadcrumb a {
  min-height: 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(52px, 8vw, 138px);
}

.contact-details {
  display: grid;
  gap: 28px;
  margin-top: 44px;
}

.contact-details a {
  display: inline-flex;
  min-height: 44px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--orange-deep);
}

.contact-form {
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.booking-panel {
  display: grid;
  gap: 34px;
}

.booking-panel h2 {
  max-width: 9ch;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
}

.booking-panel > div > p {
  max-width: 42ch;
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.booking-panel__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-panel__steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.booking-panel__steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.booking-panel__steps strong {
  color: var(--orange-deep);
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
}

.booking-panel__steps span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--canvas);
  color: var(--ink);
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: 3px solid rgba(250, 99, 24, .32);
  outline-offset: 1px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-status {
  max-width: 40ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: clamp(50px, 8vw, 136px);
  align-items: end;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  align-items: start;
  gap: clamp(26px, 4vw, 64px);
  margin-top: 82px;
}

.price-plan {
  padding-block: 32px;
}

.price-plan--featured {
  padding: 38px 34px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.price-plan h2 {
  font-size: 32px;
}

.price {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.8vw, 5.5rem);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .9;
}

.price small {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.price-plan > p {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.price-plan .check-list {
  margin-top: 28px;
}

.price-plan .button {
  margin-top: 30px;
}

/* Blog archive: measured against the norml.studio editorial ledger, adapted to Handers tokens. */
.blog-archive {
  padding-bottom: clamp(92px, 9vw, 138px);
}

.blog-archive__inner {
  width: min(100%, 1140px);
  margin-inline: auto;
  padding-inline: 40px;
}

.blog-archive__header {
  width: min(100%, 760px);
  padding-top: clamp(40px, 6vw, 86px);
}

.blog-archive__header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.45vw, 4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .9;
}

.blog-archive__header > p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.32vw, 1.19rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  margin-bottom: 40px;
}

.blog-filter {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: border-color 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.blog-filter:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.blog-filter:active {
  transform: scale(.97);
}

.blog-filter[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.blog-filter-status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.blog-index {
  border-top: 1px solid var(--ink);
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  align-items: start;
  gap: 64px;
  min-width: 0;
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
}

.blog-card[hidden] {
  display: none;
}

.blog-card__link {
  display: block;
  min-width: 0;
  text-decoration: none;
}

.blog-card__category {
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 10px 0 0;
  overflow-wrap: anywhere;
  font-size: clamp(2rem, 2.57vw, 2.32rem);
  line-height: 1.12;
  text-wrap: balance;
  transition: color 180ms var(--ease-out);
}

.blog-card__link:hover h2 {
  color: var(--orange-deep);
}

.blog-card__byline {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.blog-card__portrait {
  flex: 0 0 auto;
  border-radius: 50%;
}

.blog-card__byline img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.blog-card__byline-body {
  min-width: 0;
  line-height: 1;
}

.blog-card__author {
  width: fit-content;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.blog-card__author:hover {
  color: var(--orange-deep);
}

.blog-card__role,
.blog-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.blog-card__role {
  margin-top: 2px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 5px;
  font-variant-numeric: tabular-nums;
}

.article-page {
  border-bottom: 1px solid var(--line);
}

.article-hero {
  padding-block: clamp(64px, 8vw, 122px) clamp(68px, 8vw, 112px);
  border-bottom: 1px solid var(--line);
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  align-items: end;
  gap: clamp(46px, 7vw, 120px);
}

.article-hero__copy h1 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.048em;
  line-height: .96;
  text-wrap: balance;
}

.article-hero__lead {
  max-width: 60ch;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 15px;
}

.article-byline strong {
  color: var(--ink);
}

.article-byline a:hover {
  color: var(--orange-deep);
}

.article-hero__figure {
  margin: 0;
}

.article-hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  object-fit: cover;
}

.article-hero__figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.article-hero__graphic {
  display: grid;
  min-height: clamp(300px, 31vw, 500px);
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--orange);
  color: var(--ink);
  align-content: space-between;
}

.article-hero__graphic span,
.article-hero__graphic small {
  font-size: 14px;
  font-weight: 800;
}

.article-hero__graphic strong {
  max-width: 9ch;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .9;
}

.article-hero__graphic small {
  justify-self: end;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1.58fr);
  align-items: start;
  gap: clamp(46px, 8vw, 148px);
  padding-block: clamp(76px, 7vw, 116px);
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.article-toc > strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.article-toc ol {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.article-toc a {
  min-height: 40px;
  color: var(--ink-soft);
}

.article-toc a:hover {
  color: var(--orange-deep);
}

.article-prose {
  width: min(100%, 720px);
  min-width: 0;
}

.article-prose > section {
  margin-top: clamp(64px, 5vw, 84px);
}

.article-prose > section + section {
  border-top: 0;
}

.article-prose p,
.article-prose li,
.article-prose dd {
  text-wrap: pretty;
}

.article-prose p {
  margin: 22px 0 0;
}

.article-prose .article-deck {
  margin-top: 0;
  font-size: clamp(1.3rem, 1.8vw, 1.62rem);
  line-height: 1.5;
}

.article-prose h2 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(2.05rem, 3.1vw, 3.35rem);
  font-weight: 780;
  letter-spacing: -.038em;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.article-prose > h2 {
  margin-top: clamp(64px, 5vw, 84px);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.article-prose h3 {
  max-width: 28ch;
  margin: 42px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  letter-spacing: -.025em;
  line-height: 1.12;
}

.article-prose blockquote {
  margin: 38px 0 0;
  padding: 22px 0 22px 28px;
  border-left: 3px solid var(--orange);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 650;
  line-height: 1.35;
}

.article-prose .tip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  margin-top: 34px;
  padding-block: 20px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.article-prose .tip p {
  margin: 0;
}

.article-prose .num {
  margin-right: .22em;
  color: var(--orange-deep);
  font-size: .62em;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
  vertical-align: .18em;
}

.article-prose a {
  color: var(--orange-deep);
  font-weight: 700;
}

.article-prose ul,
.article-prose ol {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding-left: 24px;
}

.article-disclosure {
  display: grid;
  grid-template-columns: minmax(110px, .3fr) minmax(0, 1.7fr);
  gap: 24px;
  margin-top: 48px;
  padding-block: 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.article-disclosure strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.article-disclosure p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.article-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.article-table-wrap:focus-visible {
  outline-offset: 6px;
}

.article-prose table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.4;
}

.article-prose th,
.article-prose td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-prose th:first-child,
.article-prose td:first-child {
  width: 70px;
  padding-left: 0;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.article-prose th {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.article-prose tbody tr:last-child td {
  border-bottom: 0;
}

.ranking-entry {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.ranking-entry__heading {
  display: block;
}

.article-prose .ranking-entry__rank {
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ranking-entry__heading h2 {
  max-width: 19ch;
  font-size: clamp(2.25rem, 3.6vw, 3.6rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.ranking-facts {
  display: grid;
  gap: 20px;
  margin: 38px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.ranking-facts div {
  display: grid;
  grid-template-columns: minmax(120px, .36fr) minmax(0, 1.64fr);
  gap: 24px;
}

.ranking-facts dt {
  font-weight: 800;
}

.ranking-facts dd {
  margin: 0;
  color: var(--ink-soft);
}

.article-prose .faq-list {
  margin-top: 36px;
}

.article-conclusion {
  margin-top: clamp(84px, 10vw, 146px) !important;
  padding: clamp(38px, 6vw, 72px) !important;
  border: 1px solid var(--ink) !important;
  background: var(--orange);
}

.article-conclusion h2 {
  max-width: 12ch;
}

.article-conclusion .button {
  margin-top: 28px;
}

.article-author {
  padding-block: clamp(70px, 8vw, 118px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.article-author__grid {
  display: grid;
  grid-template-columns: minmax(160px, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(44px, 7vw, 120px);
}

.article-author__portrait {
  justify-self: end;
  width: min(100%, 280px);
  border-radius: var(--radius-md);
}

.article-author__portrait img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: 50% 24%;
}

.article-author__grid > div {
  max-width: 620px;
}

.article-author__grid > div > p:first-child {
  margin: 0 0 8px;
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 800;
}

.article-author h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  letter-spacing: -.045em;
  line-height: .95;
}

.article-author h2 a {
  text-decoration: none;
}

.article-author__grid > div > p:not(:first-child) {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.article-author .text-link {
  margin-top: 22px;
}

.article-related {
  padding-block: clamp(76px, 8vw, 122px);
  border-top: 1px solid var(--line);
}

.article-related__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.article-related__header h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  letter-spacing: -.045em;
  line-height: .95;
}

.article-related__header > a {
  font-weight: 700;
}

.article-related__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--ink);
}

.article-related__list > a {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 30px clamp(22px, 3vw, 42px) 8px 0;
  text-decoration: none;
}

.article-related__list > a + a {
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.article-related__list span {
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
}

.article-related__list strong {
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -.025em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.article-related__list a:hover strong {
  color: var(--orange-deep);
}

.article-related__list small {
  color: var(--muted);
  font-size: 13px;
}

.author-hero {
  padding-block: clamp(68px, 9vw, 142px);
  border-bottom: 1px solid var(--line);
}

.author-hero__grid {
  display: grid;
  grid-template-columns: minmax(260px, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: clamp(48px, 8vw, 144px);
}

.author-hero figure {
  justify-self: end;
  width: min(100%, 470px);
  margin: 0;
}

.author-hero figure img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: 50% 24%;
}

.author-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4rem, 8vw, 9rem);
  letter-spacing: -.06em;
  line-height: .88;
}

.author-hero__role {
  margin: 30px 0 0;
  color: var(--orange-deep);
  font-weight: 800;
}

.author-hero__grid > div > p:not(.author-hero__role) {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.author-archive {
  padding-block: clamp(76px, 9vw, 140px);
}

.author-archive__grid {
  display: grid;
  grid-template-columns: minmax(220px, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 8vw, 144px);
}

.author-archive header h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  letter-spacing: -.05em;
  line-height: .92;
}

.author-archive header p {
  max-width: 30ch;
  color: var(--muted);
}

.author-posts {
  border-top: 1px solid var(--ink);
}

.author-post {
  display: grid;
  gap: 10px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.author-post span {
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
}

.author-post strong {
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  letter-spacing: -.03em;
  line-height: 1.05;
}

.author-post:hover strong {
  color: var(--orange-deep);
}

.author-post small {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding-block: 88px 36px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(150px, .55fr)) minmax(220px, .7fr);
  gap: 48px;
}

.site-footer .brand {
  color: var(--paper);
}

.site-footer .brand img {
  border-color: var(--paper);
}

.footer-intro p {
  max-width: 40ch;
  margin: 20px 0 0;
  color: #c9c4ba;
}

.footer-column h2 {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 40px;
  color: #d8d2c8;
  text-decoration: none;
}

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

.footer-contact a {
  display: inline-flex;
  min-height: 44px;
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid #403e39;
  color: #aaa59c;
  font-size: 14px;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0 24px;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-height));
  padding-block: 80px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 13rem);
  letter-spacing: -.07em;
  line-height: .82;
}

.not-found h2 {
  max-width: none;
  margin-top: 30px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.not-found p {
  max-width: 48ch;
  margin: 20px auto 0;
  color: var(--ink-soft);
}

.not-found .button {
  margin-top: 28px;
}

@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes media-reveal {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (min-width: 1600px) {
  body {
    font-size: 18px;
  }

  .hero__grid,
  .page-hero__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(440px, .75fr);
    gap: 106px;
  }

  .hero h1 {
    font-size: clamp(7.25rem, 7.6vw, 8.6rem);
  }

  .hero__lead,
  .page-hero__lead {
    max-width: 680px;
    font-size: 22px;
  }

  .hero__media,
  .page-hero__media {
    min-height: 610px;
  }

  .hero__media img,
  .page-hero__media img {
    width: min(100%, 700px);
    height: 610px;
  }

  .section-heading,
  .content-grid,
  .faq-layout {
    gap: 150px;
  }
}

@media (min-width: 1800px) {
  .hero__grid,
  .page-hero__grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(520px, .82fr);
    gap: 118px;
  }

  .hero h1 {
    font-size: 9.2rem;
  }

  .page-hero h1 {
    font-size: 7rem;
  }

  .hero__media,
  .page-hero__media {
    min-height: 680px;
  }

  .hero__media img,
  .page-hero__media img {
    height: 670px;
  }
}

@media (max-width: 1180px) {
  .phone-link {
    display: none;
  }

  .desktop-nav {
    gap: 18px;
  }

  .service-ledger li {
    grid-template-columns: 64px minmax(200px, .75fr) minmax(220px, 1.25fr) 44px;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  .wrap {
    padding-inline: 48px;
  }

  .blog-archive__inner {
    width: 100%;
    padding-inline: clamp(20px, 5vw, 40px);
  }

  .blog-filters {
    margin-top: 32px;
    margin-bottom: 28px;
  }

  .blog-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding-block: 32px;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .desktop-nav,
  .header-actions .button,
  .header-actions .phone-link {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero,
  .page-hero {
    padding-block: 78px 112px;
  }

  .hero__grid,
  .page-hero__grid,
  .section-heading,
  .split,
  .split--reverse,
  .area-composition,
  .process-layout,
  .audience-layout,
  .content-grid,
  .service-pairing,
  .faq-layout,
  .contact-layout,
  .pricing-intro,
  .article-hero__grid,
  .article-layout,
  .orange-chapter__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid,
  .page-hero__grid {
    gap: 62px;
  }

  .hero h1 {
    max-width: 11.5ch;
    font-size: clamp(4rem, 10vw, 6rem);
  }

  .page-hero h1 {
    font-size: clamp(3.6rem, 9vw, 5.5rem);
  }

  .hero__media,
  .page-hero__media {
    min-height: 520px;
  }

  .hero__media img,
  .page-hero__media img {
    left: 0;
    width: min(78%, 620px);
  }

  .hero__media::before,
  .page-hero__media::before {
    right: 4%;
    width: 48%;
  }

  .media-caption {
    right: 4%;
  }

  .section {
    padding-block: 106px 92px;
  }

  .section--roomy {
    padding-block: 122px 108px;
  }

  .section-heading,
  .content-grid,
  .faq-layout,
  .contact-layout {
    gap: 52px;
  }

  .section-heading > p {
    margin-top: 0;
  }

  .service-ledger li,
  .service-ledger li:nth-child(even) {
    grid-template-columns: 58px minmax(190px, .75fr) minmax(220px, 1.25fr) 44px;
    padding-left: 0;
  }

  .split--reverse .split__copy {
    order: -1;
  }

  .area-composition {
    gap: 58px;
  }

  .area-cloud {
    max-width: 780px;
  }

  .process-layout {
    gap: 64px;
  }

  .process-visual {
    max-width: 760px;
  }

  .audience-list {
    grid-template-columns: 1fr 1fr;
  }

  .feature-run {
    grid-template-columns: 1fr 1fr;
  }

  .feature-run article:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    max-width: 72%;
    padding-right: 0;
  }

  .orange-chapter__action {
    justify-content: flex-start;
  }

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

  .price-plan:last-child {
    grid-column: 1 / -1;
    max-width: 56%;
    margin-left: 22%;
  }

  .article-hero__grid {
    gap: 54px;
  }

  .article-hero__figure {
    width: min(100%, 760px);
  }

  .article-hero__graphic {
    width: min(100%, 760px);
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 62px;
  }

  .article-table-wrap {
    overflow-x: visible;
  }

  .article-prose table,
  .article-prose thead,
  .article-prose tbody,
  .article-prose tr,
  .article-prose th,
  .article-prose td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .article-prose thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .article-prose tbody {
    display: grid;
    gap: 24px;
  }

  .article-prose tr {
    padding-block: 16px;
    border-top: 1px solid var(--ink);
  }

  .article-prose tr:last-child {
    border-bottom: 1px solid var(--ink);
  }

  .article-prose td,
  .article-prose td:first-child {
    display: grid;
    grid-template-columns: minmax(112px, .35fr) minmax(0, 1fr);
    gap: 18px;
    width: auto;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
    font-family: var(--font-body);
    font-weight: 400;
  }

  .article-prose td:last-child {
    border-bottom: 0;
  }

  .article-prose td::before {
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .article-prose td:nth-child(1)::before { content: "Rank"; }
  .article-prose td:nth-child(2)::before { content: "Company"; }
  .article-prose td:nth-child(3)::before { content: "Best for"; }
  .article-prose td:nth-child(4)::before { content: "Main SEO role"; }

  .article-toc {
    position: static;
    max-width: 760px;
  }

  .article-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 34px;
  }

  .article-author__grid,
  .author-hero__grid,
  .author-archive__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .article-author__portrait,
  .author-hero figure {
    justify-self: start;
  }

  .article-related__list {
    grid-template-columns: 1fr 1fr;
  }

  .article-related__list > a:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr .8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding-inline: 20px;
  }

  .brand__name {
    font-size: 18px;
  }

  .hero,
  .page-hero {
    padding-block: 56px 82px;
  }

  .hero__grid,
  .page-hero__grid {
    gap: 42px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 13.7vw, 4.15rem);
  }

  .hero__lead,
  .page-hero__lead {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero__actions,
  .page-hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .hero__actions .button,
  .page-hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link,
  .page-hero__actions .text-link {
    justify-content: center;
  }

  .hero__media,
  .page-hero__media {
    min-height: 390px;
  }

  .hero__media img,
  .page-hero__media img {
    width: 92%;
    height: 370px;
  }

  .hero__media::before,
  .page-hero__media::before {
    top: 3%;
    right: -10%;
    width: 58%;
  }

  .hero__media--dashboard {
    min-height: 270px;
  }

  .hero__media--dashboard img,
  .page-hero__media--landscape img {
    width: 100%;
    height: auto;
  }

  .page-hero__media--landscape {
    min-height: 280px;
  }

  .media-caption {
    right: 0;
    bottom: -14px;
    width: 80%;
    padding: 13px 14px;
    font-size: 13px;
  }

  .local-line {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section {
    padding-block: 76px 66px;
  }

  .section--roomy {
    padding-block: 86px 78px;
  }

  .section--tight-top {
    padding-top: 58px;
  }

  .section h2,
  .dark-chapter h2,
  .orange-chapter h2 {
    max-width: 14ch;
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .section-heading,
  .content-grid,
  .faq-layout,
  .contact-layout {
    gap: 34px;
  }

  .service-ledger {
    gap: 44px;
    margin-top: 58px;
  }

  .service-ledger li,
  .service-ledger li:nth-child(even) {
    grid-template-columns: 42px 1fr 34px;
    gap: 14px;
  }

  .service-ledger__number {
    font-size: 22px;
  }

  .service-ledger h3 {
    font-size: 25px;
  }

  .service-ledger p {
    grid-column: 2 / -1;
    margin-top: -4px;
  }

  .service-ledger a {
    grid-row: 1;
    grid-column: 3;
  }

  .split,
  .split--reverse,
  .process-layout,
  .area-composition,
  .service-pairing {
    gap: 42px;
  }

  .work-frame img {
    min-height: 330px;
  }

  .dark-chapter,
  .orange-chapter {
    padding-block: 86px 78px;
  }

  .area-cloud {
    gap: 10px 14px;
  }

  .process-list {
    gap: 34px;
    margin-top: 38px;
  }

  .process-step {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .audience-list,
  .feature-run,
  .page-hero__proof,
  .form-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .audience-list article:nth-child(3),
  .feature-run article:first-child,
  .price-plan:last-child {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    padding-left: 0;
  }

  .orange-chapter__grid {
    gap: 36px;
  }

  .orange-chapter__action .button {
    width: 100%;
  }

  .feature-run {
    gap: 38px;
  }

  .faq-list summary {
    min-height: 68px;
    font-size: 19px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .field--full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-grid {
    gap: 22px;
    margin-top: 58px;
  }

  .price-plan,
  .price-plan--featured {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
  }

  .blog-archive {
    padding-bottom: 80px;
  }

  .blog-archive__header h1 {
    font-size: clamp(2.3rem, 9vw, 2.5rem);
  }

  .blog-archive__header > p {
    margin-top: 16px;
    font-size: 16px;
  }

  .blog-card {
    padding-block: 28px;
  }

  .blog-card h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .blog-card__byline {
    margin-top: 10px;
  }

  .article-hero {
    padding-block: 54px 66px;
  }

  .article-hero__copy h1 {
    max-width: 16ch;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .article-hero__lead {
    margin-top: 22px;
    font-size: 18px;
  }

  .article-hero__grid,
  .article-layout {
    gap: 38px;
  }

  .article-layout {
    padding-block: 62px 78px;
  }

  .article-toc ol {
    grid-template-columns: 1fr;
  }

  .article-prose h2 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }

  .article-prose > h2,
  .article-prose > section {
    margin-top: 56px;
  }

  .article-hero__graphic {
    min-height: 260px;
  }

  .article-disclosure,
  .ranking-facts div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-prose .ranking-entry__rank {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .article-prose .ranking-entry__heading h2 {
    font-size: clamp(2.25rem, 8.8vw, 3rem);
  }

  .article-conclusion {
    padding: 32px 24px !important;
  }

  .article-conclusion .button {
    width: 100%;
  }

  .article-author__portrait {
    width: 150px;
  }

  .article-author__grid {
    gap: 30px;
  }

  .article-related__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-related__list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .article-related__list > a,
  .article-related__list > a + a,
  .article-related__list > a:nth-child(3) {
    grid-column: auto;
    padding: 24px 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .author-hero h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .author-hero figure {
    width: min(100%, 330px);
  }

  .footer-grid {
    gap: 42px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 54px;
  }

  .footer-bottom__links {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .nav-scrim,
  .mobile-drawer,
  .hero__actions,
  .page-hero__actions,
  .article-toc,
  .orange-chapter {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  a {
    text-decoration: none;
  }
}
