:root {
  --ink: #151a16;
  --ink-soft: #202721;
  --paper: #f2eee6;
  --paper-deep: #e5dfd4;
  --paper-line: #d2c9bc;
  --muted: #879087;
  --muted-dark: #5f685f;
  --lime: #d9f36b;
  --lime-dark: #b4d641;
  --coral: #ff7857;
  --coral-dark: #d95e40;
  --sky: #a9c8ed;
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(11, 16, 12, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --display: "Syne", "Trebuchet MS", sans-serif;
  --body: "DM Sans", "Helvetica Neue", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.section-pad {
  padding-block: 128px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(242, 238, 230, 0.12);
  background: rgba(21, 26, 22, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 29px;
  height: 29px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 5px;
  border: 1px solid var(--paper);
  transform: rotate(-6deg);
}

.brand-mark span {
  display: block;
  background: var(--lime);
}

.brand-mark span:nth-child(1) {
  height: 47%;
}

.brand-mark span:nth-child(2) {
  height: 76%;
}

.brand-mark span:nth-child(3) {
  height: 100%;
  background: var(--coral);
}

.brand-name {
  color: var(--white);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-name span {
  color: var(--lime);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.main-nav a,
.header-cta,
.footer-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  color: #aeb7ad;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 500;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
}

.arrow {
  font-family: var(--body);
  font-size: 17px;
  line-height: 0.8;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid rgba(242, 238, 230, 0.24);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--paper);
}

.hero {
  position: relative;
  padding-top: 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(169, 200, 237, 0.16), transparent 22%),
    radial-gradient(circle at 18% 85%, rgba(217, 243, 107, 0.1), transparent 27%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(239, 240, 229, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 240, 229, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.hero-copy {
  padding-bottom: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 120, 87, 0.13);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.075em;
}

h1 {
  max-width: 690px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(52px, 6.3vw, 92px);
  line-height: 0.94;
}

h1 em,
h2 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lede {
  max-width: 485px;
  margin-bottom: 36px;
  color: #b6c0b4;
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.text-link {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--coral);
  font-family: var(--body);
  font-size: 16px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.hero-proof {
  display: flex;
  max-width: 430px;
  margin-top: 68px;
  border-top: 1px solid rgba(242, 238, 230, 0.2);
}

.hero-proof > div {
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 14px 0 0;
}

.hero-proof > div + div {
  padding-left: 14px;
  border-left: 1px solid rgba(242, 238, 230, 0.2);
}

.hero-proof strong {
  color: var(--coral);
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.07em;
  line-height: 1;
}

.hero-proof span {
  color: #8f9c90;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(242, 238, 230, 0.28);
  background: #29332e;
  box-shadow: 22px 22px 0 rgba(217, 243, 107, 0.08);
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 238, 230, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 238, 230, 0.1) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(130deg, #000 20%, transparent 75%);
}

.stage-topline,
.stage-bottomline {
  position: absolute;
  right: 25px;
  left: 25px;
  display: flex;
  justify-content: space-between;
  color: #9ba99d;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.stage-topline {
  top: 23px;
}

.stage-bottomline {
  bottom: 20px;
  align-items: center;
}

.stage-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime);
}

.stage-status i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 120, 87, 0.12);
}

.stage-annotation {
  position: absolute;
  top: 50%;
  z-index: 2;
  color: rgba(242, 238, 230, 0.43);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  writing-mode: vertical-rl;
}

.stage-annotation--left {
  left: 18px;
  transform: rotate(180deg);
}

.stage-annotation--right {
  right: 18px;
}

.desk-scene {
  position: absolute;
  top: 28%;
  right: 10%;
  bottom: 16%;
  left: 9%;
}

.monitor {
  position: absolute;
  z-index: 3;
  width: 43%;
  height: 36%;
  padding: 9px;
  border: 2px solid #111813;
  border-radius: 5px;
  background: #59675e;
  box-shadow: 12px 12px 0 rgba(14, 19, 15, 0.22);
}

.monitor-back {
  top: 7%;
  left: 4%;
  transform: perspective(400px) rotateY(13deg) rotateZ(-4deg);
}

.monitor-front {
  top: 22%;
  right: 5%;
  width: 47%;
  height: 41%;
  transform: perspective(400px) rotateY(-13deg) rotateZ(3deg);
}

.screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(242, 238, 230, 0.48);
  background: #151b18;
}

.screen-blue {
  background:
    linear-gradient(130deg, transparent 48%, rgba(169, 200, 237, 0.56) 49%, transparent 51%),
    linear-gradient(45deg, transparent 35%, rgba(217, 243, 107, 0.3) 36%, transparent 38%),
    #203b42;
}

.screen-blue::after {
  position: absolute;
  right: 10%;
  bottom: 14%;
  width: 42%;
  height: 1px;
  background: var(--lime);
  box-shadow: -18px -11px 0 rgba(242, 238, 230, 0.4), 18px 10px 0 rgba(242, 238, 230, 0.26);
  content: "";
}

.screen-coral {
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 120, 87, 0.95) 0 7%, transparent 8%),
    linear-gradient(145deg, rgba(242, 238, 230, 0.13), transparent 52%),
    #4a332e;
}

.screen-line {
  position: absolute;
  display: block;
  height: 1px;
  background: rgba(242, 238, 230, 0.72);
}

.screen-line--one {
  top: 25%;
  left: 12%;
  width: 34%;
}

.screen-line--two {
  top: 33%;
  left: 12%;
  width: 21%;
  background: var(--lime);
}

.screen-orbit {
  position: absolute;
  right: 17%;
  bottom: 16%;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(242, 238, 230, 0.76);
  border-radius: 50%;
}

.screen-orbit::after {
  position: absolute;
  top: 50%;
  right: -9px;
  width: 18px;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: rotate(-45deg);
}

.monitor-stand {
  position: absolute;
  z-index: 2;
  top: 59%;
  left: 47%;
  width: 10px;
  height: 20%;
  background: #111813;
}

.monitor-stand::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 72px;
  height: 8px;
  background: #111813;
  content: "";
  transform: translateX(-50%);
}

.light-bar {
  position: absolute;
  z-index: 5;
  top: 17%;
  right: 10%;
  width: 35%;
  height: 7px;
  border-radius: 100%;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(217, 243, 107, 0.62);
  transform: rotate(3deg);
}

.keyboard {
  position: absolute;
  z-index: 6;
  top: 65%;
  left: 32%;
  display: grid;
  width: 27%;
  height: 11%;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  padding: 6px;
  border: 1px solid #111813;
  border-radius: 5px;
  background: #a9b5a7;
  transform: perspective(160px) rotateX(50deg) rotateZ(-2deg);
}

.keyboard span {
  border-radius: 1px;
  background: #3f4c43;
}

.keyboard span:nth-child(3n) {
  background: var(--coral);
}

.mouse {
  position: absolute;
  z-index: 6;
  top: 70%;
  right: 24%;
  width: 25px;
  height: 39px;
  border: 1px solid #111813;
  border-radius: 50% 50% 45% 45%;
  background: #b8c2b7;
  transform: rotate(11deg);
}

.mouse::after {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  background: var(--coral);
  content: "";
  transform: translateX(-50%);
}

.hub {
  position: absolute;
  z-index: 7;
  top: 72%;
  left: 17%;
  display: flex;
  width: 85px;
  height: 36px;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid #111813;
  border-radius: 4px;
  background: var(--coral);
  transform: rotate(-9deg);
}

.hub i {
  width: 10px;
  height: 5px;
  border: 1px solid #111813;
  background: rgba(21, 26, 22, 0.22);
}

.hub b {
  margin-left: 2px;
  color: #351d17;
  font-family: var(--mono);
  font-size: 7px;
}

.desk-surface {
  position: absolute;
  z-index: 4;
  right: 2%;
  bottom: 11%;
  left: 3%;
  height: 8%;
  border: 2px solid #111813;
  background: #a3b09f;
  transform: skewX(-8deg);
}

.desk-leg {
  position: absolute;
  z-index: 2;
  bottom: -2%;
  width: 12px;
  height: 25%;
  background: #111813;
  transform: skewX(-8deg);
}

.desk-leg--left {
  left: 14%;
}

.desk-leg--right {
  right: 13%;
}

.cable {
  position: absolute;
  z-index: 1;
  width: 42%;
  height: 18%;
  border-bottom: 1px solid rgba(217, 243, 107, 0.75);
  border-radius: 0 0 50% 50%;
}

.cable--one {
  top: 52%;
  left: 7%;
  transform: rotate(17deg);
}

.cable--two {
  top: 59%;
  right: 9%;
  transform: rotate(-11deg);
  border-color: rgba(255, 120, 87, 0.7);
}

.stage-chip {
  position: absolute;
  z-index: 9;
  padding: 9px 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.stage-chip--lime {
  top: 24%;
  right: 11%;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(7deg);
}

.stage-chip--coral {
  bottom: 25%;
  left: 9%;
  color: #361c15;
  background: var(--coral);
  transform: rotate(-5deg);
}

.stage-stamp {
  position: absolute;
  top: 20%;
  left: 14%;
  color: rgba(242, 238, 230, 0.24);
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.83;
  text-align: right;
  transform: rotate(-10deg);
}

.signal-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(21, 26, 22, 0.24);
  border-bottom: 1px solid rgba(21, 26, 22, 0.24);
  color: var(--ink);
  background: var(--lime);
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  min-height: 50px;
  padding-block: 5px;
  animation: marquee 28s linear infinite;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-track b {
  color: var(--coral-dark);
  font-size: 18px;
}

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

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 60px;
}

.section-intro .eyebrow,
.method-header .eyebrow,
.desk-note-panel .eyebrow {
  color: var(--coral-dark);
}

.section-intro .eyebrow-dot,
.method-header .eyebrow-dot,
.desk-note-panel .eyebrow-dot {
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(21, 26, 22, 0.08);
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(43px, 5.3vw, 74px);
  line-height: 0.94;
}

.section-note {
  max-width: 355px;
  margin-bottom: 4px;
  color: var(--muted-dark);
  font-size: 16px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 27px;
}

.filter-button {
  padding: 9px 13px;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  color: var(--muted-dark);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.filter-button.is-active {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.topic-card {
  position: relative;
  display: flex;
  min-height: 294px;
  grid-column: span 3;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  background: #ede8df;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, opacity 180ms ease;
}

.topic-card:hover {
  z-index: 2;
  border-color: var(--ink);
  box-shadow: 8px 10px 0 rgba(21, 26, 22, 0.1);
  transform: translateY(-7px);
}

.topic-card--feature {
  background: var(--ink);
  color: var(--paper);
}

.topic-card--feature h3,
.topic-card--coral h3,
.topic-card--lime h3 {
  color: var(--white);
}

.topic-card--coral {
  background: var(--coral);
}

.topic-card--lime {
  color: var(--ink);
  background: var(--lime);
}

.topic-card--lime h3 {
  color: var(--ink);
}

.topic-card--paper {
  background: var(--white);
}

.topic-card--wide {
  grid-column: span 6;
}

.topic-card.is-hidden {
  display: none;
}

.topic-card-top,
.topic-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topic-number,
.topic-card-bottom > span,
.kd-pill,
.method-tag,
.guide-detail {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.topic-number {
  color: var(--muted);
}

.topic-card--feature .topic-number,
.topic-card--coral .topic-number {
  color: #758178;
}

.topic-card--lime .topic-number {
  color: #5f6b2d;
}

.kd-pill {
  padding: 6px 7px;
  border: 1px solid var(--paper-line);
  border-radius: 100px;
  color: var(--muted-dark);
}

.topic-card--feature .kd-pill {
  border-color: rgba(242, 238, 230, 0.23);
  color: var(--lime);
}

.topic-card--coral .kd-pill {
  border-color: rgba(21, 26, 22, 0.3);
  color: #3b2119;
}

.topic-card--lime .kd-pill {
  border-color: rgba(21, 26, 22, 0.35);
  color: var(--ink);
}

.topic-icon {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 26px 0 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
}

.topic-card--feature .topic-icon {
  border-color: rgba(242, 238, 230, 0.45);
  color: var(--lime);
}

.topic-card--coral .topic-icon {
  border-color: rgba(21, 26, 22, 0.45);
}

.topic-card--lime .topic-icon {
  border-color: rgba(21, 26, 22, 0.6);
}

.topic-icon::before,
.topic-icon::after,
.topic-icon i,
.topic-icon b {
  display: block;
  content: "";
}

.icon-hub {
  grid-template-columns: repeat(3, 11px);
  gap: 4px;
}

.icon-hub i {
  width: 10px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-hub i:nth-child(2) {
  height: 37px;
}

.icon-stand::before {
  width: 36px;
  height: 23px;
  border: 2px solid currentColor;
  border-radius: 2px;
  transform: translateY(-7px) rotate(-4deg);
}

.icon-stand i {
  position: absolute;
  bottom: 15px;
  width: 34px;
  height: 2px;
  background: currentColor;
  transform: rotate(23deg);
}

.icon-stand::after {
  position: absolute;
  bottom: 10px;
  width: 41px;
  height: 2px;
  background: currentColor;
  content: "";
}

.icon-riser::before {
  width: 42px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
  transform: translateY(-13px);
}

.icon-riser i {
  width: 36px;
  height: 2px;
  background: currentColor;
  transform: translateY(6px);
}

.icon-riser i:last-child {
  width: 28px;
  transform: translateY(14px);
}

.icon-lamp::before {
  width: 28px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 4px 4px;
  transform: translate(9px, -11px) rotate(-22deg);
}

.icon-lamp i {
  position: absolute;
  width: 2px;
  height: 30px;
  background: currentColor;
  transform: translate(-6px, 7px) rotate(19deg);
}

.icon-lamp b {
  position: absolute;
  bottom: 14px;
  width: 23px;
  height: 2px;
  background: currentColor;
}

.icon-monitor-stand::before {
  width: 38px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 2px;
  transform: translateY(-9px);
}

.icon-monitor-stand i {
  position: absolute;
  bottom: 15px;
  width: 2px;
  height: 12px;
  background: currentColor;
}

.icon-monitor-stand b {
  position: absolute;
  bottom: 12px;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.icon-cable::before,
.icon-cable::after {
  width: 31px;
  height: 31px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.icon-cable::before {
  transform: translate(9px, 4px) rotate(18deg);
}

.icon-cable::after {
  position: absolute;
  transform: translate(-9px, -4px) rotate(198deg);
}

.icon-cable i {
  position: absolute;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.icon-cable i:first-child {
  top: 16px;
  left: 15px;
}

.icon-cable i:last-child {
  right: 12px;
  bottom: 14px;
}

.icon-organizer {
  grid-template-columns: repeat(3, 10px);
  align-items: end;
  gap: 5px;
  padding-bottom: 16px;
}

.icon-organizer i {
  width: 10px;
  height: 27px;
  border: 2px solid currentColor;
}

.icon-organizer i:nth-child(2) {
  height: 38px;
}

.icon-organizer i:nth-child(3) {
  height: 20px;
}

.icon-drawer::before {
  width: 40px;
  height: 29px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-drawer i {
  position: absolute;
  width: 31px;
  height: 2px;
  background: currentColor;
  transform: translateY(-4px);
}

.icon-drawer b {
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translateY(7px);
}

.icon-lightbar::before {
  width: 44px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 100%;
  transform: translateY(-13px) rotate(5deg);
}

.icon-lightbar i {
  width: 2px;
  height: 35px;
  background: currentColor;
  transform: translateY(9px);
}

.icon-headphone::before {
  width: 35px;
  height: 35px;
  border: 2px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: translateY(5px);
}

.icon-headphone i {
  position: absolute;
  bottom: 13px;
  left: 14px;
  width: 7px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-headphone b {
  position: absolute;
  right: 14px;
  bottom: 13px;
  width: 7px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-wrist::before {
  width: 46px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 100%;
  transform: translateY(11px);
}

.icon-wrist::after {
  width: 34px;
  height: 24px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  transform: translateY(-9px);
}

.icon-fan::before {
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-fan i {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50% 0 50% 0;
}

.icon-fan i:nth-child(1) {
  transform: translate(7px, -7px) rotate(28deg);
}

.icon-fan i:nth-child(2) {
  transform: translate(-7px, -1px) rotate(148deg);
}

.icon-fan i:nth-child(3) {
  transform: translate(2px, 10px) rotate(268deg);
}

.icon-power {
  grid-template-columns: repeat(3, 12px);
  gap: 4px;
}

.icon-power i {
  width: 12px;
  height: 23px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-power i:nth-child(2) {
  height: 34px;
}

.topic-card h3 {
  position: relative;
  z-index: 1;
  max-width: 265px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 25px;
  line-height: 0.98;
}

.topic-card p {
  position: relative;
  z-index: 1;
  max-width: 275px;
  margin-bottom: auto;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.45;
}

.topic-card--feature p,
.topic-card--coral p {
  color: #aeb9ae;
}

.topic-card--lime p {
  color: #4f5a25;
}

.topic-card-bottom {
  position: relative;
  z-index: 3;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--paper-line);
}

.topic-card--feature .topic-card-bottom {
  border-color: rgba(242, 238, 230, 0.2);
}

.topic-card--coral .topic-card-bottom,
.topic-card--lime .topic-card-bottom {
  border-color: rgba(21, 26, 22, 0.25);
}

.topic-card-bottom > span {
  color: var(--coral-dark);
}

.topic-card--feature .topic-card-bottom > span {
  color: var(--lime);
}

.topic-card--coral .topic-card-bottom > span {
  color: #4c271d;
}

.topic-card--lime .topic-card-bottom > span {
  color: var(--ink);
}

.topic-open {
  padding: 0;
  border: 0;
  color: var(--muted-dark);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topic-open b {
  display: inline-block;
  margin-left: 5px;
  color: var(--coral-dark);
  font-family: var(--body);
  font-size: 15px;
  line-height: 0;
  transition: transform 180ms ease;
}

.topic-open:hover b,
.topic-open:focus-visible b {
  transform: translate(3px, -3px);
}

.topic-card--feature .topic-open {
  color: var(--paper);
}

.topic-card--feature .topic-open b {
  color: var(--lime);
}

.topic-card--coral .topic-open,
.topic-card--lime .topic-open {
  color: var(--ink);
}

.topic-card--coral .topic-open b {
  color: #4c271d;
}

.monitor-mini,
.shelf-mini {
  position: absolute;
  right: 22px;
  bottom: 60px;
  width: 130px;
  height: 110px;
  opacity: 0.8;
  transform: rotate(-8deg);
}

.monitor-mini span {
  position: absolute;
  top: 8px;
  width: 72px;
  height: 47px;
  border: 2px solid var(--lime);
  background: #25332d;
}

.monitor-mini span:first-child {
  left: 1px;
  transform: rotate(-7deg);
}

.monitor-mini span:nth-child(2) {
  right: 0;
  transform: rotate(7deg);
}

.monitor-mini i {
  position: absolute;
  bottom: 10px;
  left: 55px;
  width: 20px;
  height: 45px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
}

.shelf-mini {
  right: 32px;
  bottom: 50px;
}

.shelf-mini span {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 13px;
  border: 2px solid var(--ink);
  background: var(--coral);
  transform: skewX(-20deg);
}

.shelf-mini i,
.shelf-mini b {
  position: absolute;
  bottom: 0;
  width: 7px;
  height: 28px;
  background: var(--ink);
}

.shelf-mini i {
  left: 15px;
}

.shelf-mini b {
  right: 16px;
}

.filter-empty {
  margin: 36px 0 0;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.guides-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 25%, rgba(255, 120, 87, 0.12), transparent 22%),
    var(--ink-soft);
}

.section-intro--light .eyebrow {
  color: var(--lime);
}

.section-intro--light .eyebrow-dot {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 120, 87, 0.13);
}

.section-intro--light h2 {
  color: var(--white);
}

.section-intro--light .section-note {
  color: #9ca99e;
}

.guide-list {
  border-top: 1px solid rgba(242, 238, 230, 0.22);
}

.guide-row {
  display: grid;
  width: 100%;
  grid-template-columns: 64px minmax(220px, 1fr) minmax(260px, 0.72fr) 30px;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(242, 238, 230, 0.22);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: padding 180ms ease, color 180ms ease, background 180ms ease;
}

.guide-row:hover,
.guide-row:focus-visible {
  padding-right: 16px;
  padding-left: 16px;
  color: var(--lime);
  background: rgba(242, 238, 230, 0.05);
}

.guide-index {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 12px;
}

.guide-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.07em;
}

.guide-detail {
  color: #839086;
  line-height: 1.4;
}

.guide-arrow {
  color: var(--lime);
  font-size: 22px;
  transition: transform 180ms ease;
}

.guide-row:hover .guide-arrow,
.guide-row:focus-visible .guide-arrow {
  transform: translate(4px, -4px);
}

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

.method-header {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 68px;
}

.method-header .eyebrow {
  align-self: start;
  margin-bottom: 0;
}

.method-header h2 {
  font-size: clamp(51px, 6.2vw, 84px);
}

.method-header > p:last-child {
  max-width: 330px;
  margin-bottom: 1px;
  color: var(--muted-dark);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.method-card {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border-top: 2px solid var(--ink);
  background: var(--paper-deep);
}

.method-card:nth-child(2) {
  border-color: var(--coral);
  background: #eee7dd;
}

.method-card:nth-child(3) {
  border-color: var(--lime-dark);
  background: var(--ink);
}

.method-number {
  display: block;
  margin-bottom: 70px;
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 11px;
}

.method-card:nth-child(3) .method-number {
  color: var(--lime);
}

.method-card h3 {
  max-width: 220px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 29px;
  line-height: 0.98;
}

.method-card p {
  max-width: 270px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.method-card:nth-child(3) h3 {
  color: var(--white);
}

.method-card:nth-child(3) p {
  color: #a1afa2;
}

.method-tag {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--muted-dark);
}

.method-card:nth-child(3) .method-tag {
  color: var(--lime);
}

.method-note {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 14px;
  padding: 24px;
  border: 1px solid var(--paper-line);
  background: var(--white);
}

.method-note-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 24px;
}

.method-note-kicker {
  margin-bottom: 4px;
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-note-text {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.method-note-code {
  align-self: end;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
}

.desk-note-section {
  padding-top: 0;
  color: var(--ink);
  background: var(--paper);
}

.desk-note-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: clamp(34px, 5vw, 70px);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--coral);
}

.desk-note-panel h2 {
  max-width: 540px;
  font-size: clamp(42px, 5vw, 70px);
}

.desk-note-panel h2 em {
  color: var(--white);
}

.desk-note-form-wrap {
  align-self: end;
}

.desk-note-form-wrap > p:first-child {
  max-width: 360px;
  margin-bottom: 22px;
  color: #532c21;
  font-size: 15px;
}

.desk-note-form {
  display: flex;
  align-items: stretch;
  gap: 7px;
}

.desk-note-form input {
  min-width: 0;
  flex: 1;
  padding: 0 15px;
  border: 1px solid rgba(21, 26, 22, 0.42);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.7);
  font-size: 14px;
}

.desk-note-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(217, 243, 107, 0.75);
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: #4d281e;
  font-family: var(--mono);
  font-size: 10px;
}

.site-footer {
  color: #aeb9ad;
  background: var(--ink);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-block: 70px 58px;
}

.brand--footer {
  margin-bottom: 22px;
}

.footer-tagline {
  margin-bottom: 0;
  color: #768278;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 90px;
}

.footer-links > div {
  display: flex;
  min-width: 125px;
  flex-direction: column;
  gap: 12px;
}

.footer-label {
  margin-bottom: 6px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: #aeb9ad;
  font-size: 10px;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px 25px;
  border-top: 1px solid rgba(242, 238, 230, 0.15);
  color: #6f7c71;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topic-dialog {
  width: min(100% - 36px, 620px);
  padding: 0;
  border: 0;
  color: var(--paper);
  background: transparent;
}

.topic-dialog::backdrop {
  background: rgba(10, 14, 11, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-panel {
  position: relative;
  padding: 37px;
  border: 1px solid rgba(242, 238, 230, 0.35);
  background:
    linear-gradient(135deg, rgba(217, 243, 107, 0.08), transparent 40%),
    var(--ink-soft);
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(242, 238, 230, 0.25);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.dialog-kicker {
  margin-bottom: 13px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-panel h2 {
  max-width: 480px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(36px, 6vw, 58px);
}

.dialog-panel h2 em {
  color: var(--coral);
  font-style: normal;
}

.dialog-summary {
  max-width: 480px;
  margin-bottom: 28px;
  color: #b0bdb0;
}

.dialog-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  border-block: 1px solid rgba(242, 238, 230, 0.17);
}

.dialog-metric {
  padding: 15px 11px 15px 0;
}

.dialog-metric + .dialog-metric {
  padding-left: 11px;
  border-left: 1px solid rgba(242, 238, 230, 0.17);
}

.dialog-metric span {
  display: block;
  margin-bottom: 4px;
  color: #7e8d81;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-metric strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.08em;
}

.dialog-panel h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 19px;
}

.dialog-longtails {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dialog-longtails li {
  padding: 8px 10px;
  border: 1px solid rgba(242, 238, 230, 0.22);
  color: #b0bdb0;
  font-family: var(--mono);
  font-size: 10px;
}

.dialog-footnote {
  margin: 28px 0 0;
  color: #748277;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 90ms !important;
}

.reveal-delay-2 {
  transition-delay: 160ms !important;
}

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

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 44px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .topic-card {
    grid-column: span 4;
  }

  .topic-card--wide {
    grid-column: span 6;
  }

  .topic-card h3 {
    font-size: 23px;
  }

  .method-header {
    grid-template-columns: 0.7fr 1fr 0.9fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 34px, 680px);
  }

  .section-pad {
    padding-block: 88px;
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 17px;
    left: 17px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(242, 238, 230, 0.2);
    background: var(--ink-soft);
    box-shadow: 10px 12px 0 rgba(217, 243, 107, 0.1);
  }

  .main-nav.is-open {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    margin-bottom: 65px;
  }

  .hero-stage {
    width: 100%;
    min-height: 520px;
  }

  .hero-proof {
    margin-top: 48px;
  }

  .section-intro,
  .method-header,
  .desk-note-panel {
    display: block;
  }

  .section-note {
    margin-top: 25px;
  }

  .topic-card,
  .topic-card--wide {
    grid-column: span 6;
  }

  .method-header {
    margin-bottom: 45px;
  }

  .method-header .eyebrow {
    margin-bottom: 23px;
  }

  .method-header > p:last-child {
    margin-top: 25px;
  }

  .desk-note-panel {
    padding: 36px;
  }

  .desk-note-form-wrap {
    margin-top: 35px;
  }

  .footer-main {
    display: block;
  }

  .footer-links {
    margin-top: 50px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 480px);
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-proof {
    gap: 4px;
  }

  .hero-proof > div {
    gap: 6px;
  }

  .hero-proof > div + div {
    padding-left: 8px;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .hero-stage {
    min-height: 420px;
  }

  .stage-topline,
  .stage-bottomline {
    right: 14px;
    left: 14px;
    font-size: 7px;
  }

  .stage-topline {
    top: 15px;
  }

  .stage-bottomline {
    bottom: 13px;
  }

  .stage-annotation {
    display: none;
  }

  .desk-scene {
    top: 28%;
    right: 2%;
    bottom: 18%;
    left: 2%;
  }

  .stage-chip {
    padding: 7px 8px;
    font-size: 7px;
  }

  .stage-chip--lime {
    right: 5%;
  }

  .stage-chip--coral {
    left: 5%;
  }

  .stage-stamp {
    left: 8%;
    font-size: 31px;
  }

  .section-pad {
    padding-block: 74px;
  }

  h2 {
    font-size: clamp(40px, 13vw, 57px);
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .topic-grid {
    display: block;
  }

  .topic-card,
  .topic-card--wide {
    min-height: 275px;
    margin-bottom: 12px;
  }

  .topic-card:hover {
    transform: translateY(-3px);
  }

  .topic-card--wide {
    min-height: 310px;
  }

  .guide-row {
    grid-template-columns: 30px 1fr 25px;
    gap: 12px;
    padding-block: 18px;
  }

  .guide-row:hover,
  .guide-row:focus-visible {
    padding-right: 7px;
    padding-left: 7px;
  }

  .guide-detail {
    display: none;
  }

  .guide-title {
    font-size: 22px;
  }

  .method-grid {
    display: block;
  }

  .method-card {
    min-height: 255px;
    margin-bottom: 12px;
  }

  .method-number {
    margin-bottom: 53px;
  }

  .method-note {
    grid-template-columns: 46px 1fr;
    gap: 15px;
    padding: 19px;
  }

  .method-note-code {
    display: none;
  }

  .desk-note-panel {
    padding: 28px 22px;
  }

  .desk-note-form {
    display: block;
  }

  .desk-note-form input,
  .desk-note-form .button {
    width: 100%;
    min-height: 48px;
  }

  .desk-note-form .button {
    margin-top: 7px;
  }

  .footer-main {
    padding-block: 54px 45px;
  }

  .footer-links {
    gap: 33px;
  }

  .footer-bottom {
    display: block;
    padding-block: 16px 22px;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }

  .dialog-panel {
    padding: 30px 22px 25px;
  }

  .dialog-metrics {
    gap: 0;
  }

  .dialog-metric strong {
    font-size: 20px;
  }

  .dialog-metric span {
    font-size: 8px;
  }
}

/* Clean image-led hero: one subject, one caption, no text over the photograph. */
.hero-stage--editorial {
  min-height: 0;
  padding: 22px 22px 18px;
  border-color: rgba(42, 39, 34, 0.24);
  background: #ddd4c6;
  box-shadow: 15px 15px 0 rgba(158, 168, 111, 0.18);
}

.hero-stage--editorial::before,
.hero-stage--editorial::after {
  display: none;
}

.editorial-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42, 39, 34, 0.24);
  background: #c8c0b3;
  aspect-ratio: 4 / 3;
}

.editorial-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 250, 242, 0.08), transparent 48%, rgba(42, 39, 34, 0.11));
  content: "";
  pointer-events: none;
}

.editorial-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 500ms ease;
}

.hero-stage--editorial:hover .editorial-image {
  transform: scale(1.018);
}

.editorial-image-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
  color: #6b6b5c;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.topic-category {
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.topic-card--feature .topic-category,
.topic-card--coral .topic-category,
.topic-card--lime .topic-category {
  color: var(--coral-dark);
}

@media (max-width: 820px) {
  .hero-stage--editorial {
    padding: 17px 17px 15px;
  }
}

@media (max-width: 560px) {
  .hero-stage--editorial {
    padding: 13px 13px 13px;
  }

  .editorial-image-meta {
    padding-top: 11px;
    font-size: 7px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Journal and article pages: editorial, image-led and made for reading. */
.main-nav a.is-current {
  color: var(--ink);
}

.main-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.blog-page {
  background: var(--paper);
}

.blog-hero {
  padding-block: clamp(78px, 11vw, 138px) 52px;
  border-bottom: 1px solid rgba(42, 39, 34, 0.14);
  background:
    radial-gradient(circle at 86% 12%, rgba(187, 109, 80, 0.12), transparent 24%),
    var(--paper);
}

.blog-hero .eyebrow {
  margin-bottom: 34px;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  align-items: end;
  gap: clamp(42px, 9vw, 150px);
}

.blog-hero-grid h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(66px, 10.4vw, 148px);
  line-height: 0.86;
}

.blog-hero-grid h1 em {
  display: block;
  font-style: normal;
}

.blog-hero-grid > p {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.65;
}

.blog-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 64px;
  padding-top: 17px;
  border-top: 1px solid rgba(42, 39, 34, 0.19);
}

.blog-topic-nav a {
  padding: 9px 14px;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.blog-topic-nav a:hover,
.blog-topic-nav a:focus-visible,
.blog-topic-nav a.is-active {
  border-color: var(--coral);
  color: var(--white);
  background: var(--coral);
}

.featured-post-section {
  padding-block: 0 128px;
  background: var(--paper);
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  overflow: hidden;
  border: 1px solid rgba(42, 39, 34, 0.2);
  background: var(--white);
  box-shadow: 14px 14px 0 rgba(158, 168, 111, 0.2);
}

.featured-post-image {
  position: relative;
  display: block;
  min-height: 510px;
  overflow: hidden;
  background: #b9b7a9;
}

.featured-post-image::after,
.post-card-visual--image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.08), transparent 48%, rgba(42, 39, 34, 0.18));
  content: "";
  pointer-events: none;
}

.featured-post-image img,
.post-card-visual--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.featured-post-image:hover img,
.featured-post-image:focus-visible img,
.post-card-visual--image:hover img,
.post-card-visual--image:focus-visible img {
  transform: scale(1.025);
}

.featured-post-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(31px, 5vw, 72px);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
  margin: 0;
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.post-meta span + span::before {
  margin-right: 15px;
  color: var(--paper-line);
  content: "·";
}

.featured-post-copy h2 {
  max-width: 600px;
  margin: 29px 0 22px;
  color: var(--ink);
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 0.93;
}

.featured-post-copy h2 a:hover,
.featured-post-copy h2 a:focus-visible,
.post-card h3 a:hover,
.post-card h3 a:focus-visible {
  color: var(--coral-dark);
}

.post-excerpt {
  max-width: 440px;
  margin: 0 0 33px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.65;
}

.post-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.post-link span {
  color: var(--coral-dark);
  font-family: var(--body);
  font-size: 18px;
  line-height: 0.8;
}

.post-link:hover,
.post-link:focus-visible {
  gap: 14px;
  color: var(--coral-dark);
}

.notes-section {
  background: #ddd4c6;
}

.blog-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 53px;
}

.blog-section-heading h2 {
  margin: 23px 0 0;
  color: var(--ink);
  font-size: clamp(49px, 6vw, 82px);
  line-height: 0.9;
}

.blog-section-heading h2 em {
  font-style: normal;
}

.blog-section-heading > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.65;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.post-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(42, 39, 34, 0.2);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 10px 0 rgba(42, 39, 34, 0.1);
}

.post-card--accent {
  border-top: 4px solid var(--coral);
}

.post-card--dark {
  border-color: var(--ink-soft);
  background: var(--ink-soft);
}

.post-card-visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.28;
  background: #beb9a7;
}

.post-card-visual--close img {
  object-position: 62% 58%;
}

.post-card-visual--screen img {
  object-position: 68% 42%;
  filter: saturate(0.82);
}

.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 29px 28px 27px;
}

.post-card-body h3 {
  margin: 21px 0 13px;
  color: var(--ink);
  font-size: clamp(27px, 2.45vw, 37px);
  line-height: 0.98;
}

.post-card-body > p:not(.post-meta) {
  margin: 0 0 26px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.55;
}

.post-card-body .post-link {
  margin-top: auto;
}

.post-card--dark .post-card-body h3,
.post-card--dark .post-card-body .post-link {
  color: var(--white);
}

.post-card--dark .post-card-body > p:not(.post-meta) {
  color: #c4c8b9;
}

.post-card--dark .post-meta {
  color: var(--lime);
}

.blog-quote-section {
  background: var(--lime);
}

.blog-quote {
  max-width: 900px;
  text-align: center;
}

.blog-quote .eyebrow {
  display: flex;
  justify-content: center;
  color: var(--ink-soft);
}

.blog-quote .eyebrow-dot {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(164, 89, 63, 0.14);
}

.blog-quote blockquote {
  margin: 36px 0 22px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(37px, 5.2vw, 70px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.quote-signature {
  margin: 0;
  color: #536044;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-cta-section {
  background: var(--paper);
}

.blog-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.7fr);
  align-items: end;
  gap: 60px;
  padding: clamp(34px, 6vw, 76px);
  color: var(--white);
  background: var(--coral);
  box-shadow: 14px 14px 0 rgba(42, 39, 34, 0.11);
}

.blog-cta .eyebrow {
  color: #f9d4c4;
}

.blog-cta .eyebrow-dot {
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 250, 242, 0.15);
}

.blog-cta h2 {
  margin: 25px 0 0;
  color: var(--white);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.88;
}

.blog-cta h2 em {
  color: var(--ink);
  font-style: normal;
}

.blog-cta > div:last-child > p {
  max-width: 350px;
  margin: 0 0 27px;
  color: #f8dfd3;
  font-size: 16px;
}

.blog-cta .button-primary {
  color: var(--white);
  background: var(--ink);
}

.blog-cta .button-primary:hover,
.blog-cta .button-primary:focus-visible {
  color: var(--ink);
  background: var(--white);
}

/* Long-form article layout. */
.post-hero {
  padding-block: clamp(76px, 10vw, 130px) 78px;
  background:
    radial-gradient(circle at 89% 15%, rgba(203, 211, 164, 0.45), transparent 24%),
    var(--paper-deep);
}

.post-hero-inner {
  max-width: 980px;
}

.post-back {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.post-back:hover,
.post-back:focus-visible {
  color: var(--coral-dark);
}

.post-hero .eyebrow {
  margin-bottom: 26px;
}

.post-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(55px, 8.8vw, 126px);
  line-height: 0.87;
}

.post-dek {
  max-width: 650px;
  margin: 31px 0 0;
  color: var(--muted-dark);
  font-family: var(--display);
  font-size: clamp(23px, 2.6vw, 33px);
  line-height: 1.13;
}

.post-hero .post-meta {
  margin-top: 32px;
}

.post-article {
  padding-block: 0 118px;
  background: var(--paper);
}

.post-cover {
  max-width: 1120px;
  margin: -38px auto 0;
}

.post-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(42, 39, 34, 0.24);
  object-fit: cover;
  box-shadow: 15px 15px 0 rgba(158, 168, 111, 0.19);
}

.post-cover--close img {
  object-position: center 58%;
}

.post-cover--desk img {
  object-position: center 44%;
}

.post-cover figcaption {
  margin-top: 20px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-content {
  max-width: 700px;
  margin: 78px auto 0;
}

.post-content p {
  margin: 0 0 23px;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.72;
}

.post-content .post-lead {
  margin-bottom: 55px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.18;
}

.post-content h2 {
  margin: 61px 0 19px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 51px);
  line-height: 0.97;
}

.post-callout {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 18px;
  margin: 54px 0 61px;
  padding: 22px 25px;
  border-block: 1px solid rgba(42, 39, 34, 0.24);
  background: var(--lime);
}

.post-callout-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  font-size: 19px;
}

.post-callout p {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.1;
}

.post-end {
  margin-top: 66px;
  padding-top: 25px;
  border-top: 1px solid var(--paper-line);
}

.post-end .post-link {
  margin-top: 17px;
}

.post-disclosure {
  margin-top: 62px !important;
  color: var(--muted) !important;
  font-family: var(--mono);
  font-size: 10px !important;
  letter-spacing: 0.03em;
  line-height: 1.55 !important;
}

.post-related {
  background: var(--paper-deep);
}

.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 31px;
}

.post-related-grid a {
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  gap: 13px;
  align-items: start;
  min-height: 135px;
  padding: 18px;
  border: 1px solid rgba(42, 39, 34, 0.2);
  background: rgba(255, 250, 242, 0.62);
  transition: background 180ms ease, transform 180ms ease;
}

.post-related-grid a:hover,
.post-related-grid a:focus-visible {
  background: var(--white);
  transform: translateY(-3px);
}

.post-related-grid span,
.post-related-grid em {
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.post-related-grid strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

@media (max-width: 820px) {
  .blog-hero-grid,
  .blog-section-heading,
  .blog-cta {
    display: block;
  }

  .blog-hero-grid > p,
  .blog-section-heading > p,
  .blog-cta > div:last-child > p {
    margin-top: 28px;
  }

  .featured-post {
    display: block;
  }

  .featured-post-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .featured-post-copy {
    padding: 40px 34px 43px;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-card:last-child {
    grid-column: span 2;
  }

  .post-card:last-child .post-card-visual {
    aspect-ratio: 2.1;
  }

  .blog-cta {
    padding: 42px 35px 47px;
  }

  .post-hero h1 {
    font-size: clamp(52px, 10vw, 88px);
  }

  .post-cover {
    margin-top: -25px;
  }

  .post-content {
    margin-top: 61px;
  }

  .post-related-grid {
    grid-template-columns: 1fr;
  }

  .post-related-grid a {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .blog-hero {
    padding-block: 69px 38px;
  }

  .blog-hero-grid h1 {
    font-size: clamp(58px, 17vw, 80px);
  }

  .blog-topic-nav {
    margin-top: 45px;
  }

  .featured-post-section {
    padding-bottom: 79px;
  }

  .featured-post-image {
    aspect-ratio: 4 / 3;
  }

  .featured-post-copy {
    padding: 31px 23px 35px;
  }

  .featured-post-copy h2 {
    font-size: 42px;
  }

  .post-excerpt {
    font-size: 16px;
  }

  .post-grid {
    display: block;
  }

  .post-card,
  .post-card:last-child {
    margin-bottom: 13px;
  }

  .post-card:last-child .post-card-visual {
    aspect-ratio: 1.28;
  }

  .post-card-body {
    padding: 25px 22px 26px;
  }

  .blog-quote blockquote {
    font-size: 39px;
  }

  .blog-cta {
    padding: 30px 22px 34px;
  }

  .blog-cta h2 {
    font-size: 49px;
  }

  .post-hero {
    padding-block: 66px 67px;
  }

  .post-back {
    margin-bottom: 42px;
    font-size: 9px;
  }

  .post-hero h1 {
    font-size: clamp(49px, 14vw, 72px);
  }

  .post-dek {
    font-size: 23px;
  }

  .post-cover {
    margin-top: -19px;
  }

  .post-cover img {
    aspect-ratio: 4 / 3;
    box-shadow: 8px 9px 0 rgba(158, 168, 111, 0.18);
  }

  .post-content {
    margin-top: 48px;
  }

  .post-content p {
    font-size: 17px;
  }

  .post-content .post-lead {
    margin-bottom: 43px;
    font-size: 27px;
  }

  .post-content h2 {
    margin-top: 47px;
    font-size: 39px;
  }

  .post-callout {
    grid-template-columns: 34px 1fr;
    gap: 13px;
    margin-block: 43px 49px;
    padding: 18px 16px;
  }

  .post-callout-mark {
    width: 31px;
    height: 31px;
    font-size: 16px;
  }

  .post-callout p {
    font-size: 21px;
  }
}

/* The photograph is the hero artwork; captions live below it. */
.hero-stage--editorial {
  min-height: 0 !important;
  padding: 22px 22px 18px;
  border-color: rgba(42, 39, 34, 0.24);
  background: #ddd4c6;
  box-shadow: 15px 15px 0 rgba(158, 168, 111, 0.18);
}

.hero-stage--editorial::before,
.hero-stage--editorial::after {
  display: none !important;
}

.editorial-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42, 39, 34, 0.24);
  background: #c8c0b3;
  aspect-ratio: 4 / 3;
}

.editorial-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 250, 242, 0.08), transparent 48%, rgba(42, 39, 34, 0.11));
  content: "";
  pointer-events: none;
}

.editorial-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 500ms ease;
}

.hero-stage--editorial:hover .editorial-image {
  transform: scale(1.018);
}

.editorial-image-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
  color: #6b6b5c;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .hero-stage--editorial {
    padding: 17px 17px 15px;
  }
}

@media (max-width: 560px) {
  .hero-stage--editorial {
    padding: 13px 13px 13px;
  }

  .editorial-image-meta {
    padding-top: 11px;
    font-size: 7px;
  }
}

/* Editorial layer: calmer colour, paper textures and a reading-first rhythm. */
:root {
  --ink: #2a2722;
  --ink-soft: #3d463a;
  --paper: #f4eee4;
  --paper-deep: #e8dfd1;
  --paper-line: #d3c5b4;
  --muted: #978c7d;
  --muted-dark: #6d6458;
  --lime: #cbd3a4;
  --lime-dark: #9ea86f;
  --coral: #bb6d50;
  --coral-dark: #a4593f;
  --sky: #bccbc7;
  --white: #fffaf2;
  --shadow: 0 22px 55px rgba(54, 43, 30, 0.13);
  --display: "Newsreader", Georgia, serif;
}

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

.site-noise {
  opacity: 0.025;
}

.site-header {
  border-bottom-color: rgba(42, 39, 34, 0.15);
  background: rgba(244, 238, 228, 0.94);
}

.brand-mark {
  border-color: var(--ink);
}

.brand-mark span {
  background: var(--coral);
}

.brand-mark span:nth-child(3) {
  background: var(--lime-dark);
}

.brand-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.07em;
}

.brand-name span {
  color: var(--coral-dark);
}

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

.brand--footer .brand-name {
  color: var(--white);
}

.brand--footer .brand-name span {
  color: var(--lime);
}

.main-nav a {
  color: var(--muted-dark);
}

.main-nav a::after {
  background: var(--coral);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.header-cta {
  color: var(--white);
  background: var(--coral);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.hero {
  background:
    radial-gradient(circle at 82% 17%, rgba(187, 109, 80, 0.11), transparent 23%),
    radial-gradient(circle at 12% 86%, rgba(158, 168, 111, 0.14), transparent 27%),
    var(--paper);
}

.hero::before {
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(42, 39, 34, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 39, 34, 0.045) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.eyebrow {
  color: var(--coral-dark);
}

.eyebrow-dot {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(187, 109, 80, 0.13);
}

h1,
h2,
h3 {
  letter-spacing: -0.065em;
}

h1 {
  color: var(--ink);
  font-size: clamp(58px, 7.1vw, 100px);
  font-weight: 600;
  line-height: 0.9;
}

h1 em,
h2 em {
  color: var(--coral-dark);
}

.hero-lede {
  color: var(--muted-dark);
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  color: var(--ink);
}

.text-link span {
  color: var(--coral-dark);
}

.hero-proof {
  border-top-color: rgba(42, 39, 34, 0.2);
}

.hero-proof > div + div {
  border-left-color: rgba(42, 39, 34, 0.2);
}

.hero-proof strong {
  color: var(--coral-dark);
  font-family: var(--display);
  font-weight: 600;
}

.hero-proof span {
  color: var(--muted-dark);
}

.hero-stage,
.hero-stage--editorial {
  min-height: 620px;
  border-color: rgba(42, 39, 34, 0.26);
  background: #d9d0c1;
  box-shadow: 18px 18px 0 rgba(158, 168, 111, 0.22);
}

.hero-stage--editorial {
  overflow: hidden;
}

.hero-stage--editorial::before {
  position: absolute;
  top: 45px;
  right: -75px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(42, 39, 34, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-stage--editorial::after {
  position: absolute;
  top: 104px;
  right: 39px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(187, 109, 80, 0.14);
  content: "";
}

.stage-topline,
.stage-bottomline {
  color: #6b6b5c;
}

.stage-topline {
  top: 22px;
}

.stage-bottomline {
  bottom: 19px;
}

.stage-status {
  color: var(--coral-dark);
}

.stage-status i {
  background: var(--coral);
  box-shadow: none;
}

.stage-stamp {
  top: 25%;
  left: 8%;
  z-index: 2;
  color: rgba(42, 39, 34, 0.2);
  font-size: clamp(41px, 5.4vw, 78px);
  font-weight: 600;
}

.stage-stamp em {
  color: rgba(164, 89, 63, 0.34);
  font-style: normal;
}

.editorial-art {
  position: absolute;
  z-index: 1;
  top: 76px;
  right: 37px;
  bottom: 77px;
  left: 37px;
  overflow: hidden;
  border: 1px solid rgba(42, 39, 34, 0.25);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.15), transparent 20%),
    #b9c6b5;
}

.editorial-art::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(187, 109, 80, 0.17));
  content: "";
}

.editorial-art::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 1px;
  background: rgba(42, 39, 34, 0.08);
  content: "";
}

.art-window {
  position: absolute;
  top: -6%;
  left: 15%;
  width: 48%;
  height: 55%;
  border: 1px solid rgba(42, 39, 34, 0.29);
  background:
    linear-gradient(90deg, transparent 49%, rgba(42, 39, 34, 0.16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(42, 39, 34, 0.16) 50%, transparent 51%),
    #ead8be;
}

.art-window::before {
  position: absolute;
  right: -16%;
  bottom: -19%;
  width: 48%;
  height: 44%;
  border-radius: 50% 50% 0 0;
  background: rgba(187, 109, 80, 0.48);
  content: "";
}

.art-window::after {
  position: absolute;
  top: 18%;
  right: 12%;
  width: 14%;
  height: 17%;
  border-radius: 50%;
  background: #e7c483;
  box-shadow: 0 0 0 11px rgba(231, 196, 131, 0.14);
  content: "";
}

.art-desk {
  position: absolute;
  right: -6%;
  bottom: 17%;
  left: -6%;
  height: 12%;
  border-top: 2px solid rgba(42, 39, 34, 0.62);
  background: #7a6f5d;
  transform: skewY(-2deg);
}

.art-desk::before,
.art-desk::after {
  position: absolute;
  top: 100%;
  width: 12px;
  height: 130px;
  background: #4a4c40;
  content: "";
}

.art-desk::before {
  left: 17%;
  transform: rotate(6deg);
}

.art-desk::after {
  right: 16%;
  transform: rotate(-6deg);
}

.art-monitor {
  position: absolute;
  z-index: 3;
  top: 32%;
  left: 28%;
  width: 43%;
  height: 32%;
  padding: 9px;
  border: 2px solid #34382f;
  border-radius: 3px;
  background: #737c70;
  box-shadow: 9px 10px 0 rgba(42, 39, 34, 0.13);
  transform: rotate(-2deg);
}

.art-monitor span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 250, 242, 0.4);
  background:
    linear-gradient(160deg, transparent 50%, rgba(203, 211, 164, 0.65) 51%, transparent 53%),
    #35463d;
}

.art-monitor::before {
  position: absolute;
  bottom: -28%;
  left: 47%;
  width: 8px;
  height: 31%;
  background: #34382f;
  content: "";
}

.art-monitor::after {
  position: absolute;
  bottom: -35%;
  left: 28%;
  width: 52%;
  height: 7px;
  background: #34382f;
  content: "";
}

.art-lamp {
  position: absolute;
  z-index: 4;
  top: 25%;
  right: 15%;
  width: 18%;
  height: 40%;
  border-left: 4px solid #596355;
  transform: rotate(8deg);
}

.art-lamp::before {
  position: absolute;
  top: -4%;
  left: -35%;
  width: 53px;
  height: 25px;
  border: 3px solid #596355;
  border-radius: 50% 50% 4px 4px;
  background: #d7c39d;
  content: "";
  transform: rotate(-18deg);
}

.art-lamp::after {
  position: absolute;
  bottom: -2%;
  left: -19px;
  width: 44px;
  height: 7px;
  border-radius: 50%;
  background: #596355;
  content: "";
}

.art-lamp i {
  position: absolute;
  top: 3px;
  left: -1px;
  width: 2px;
  height: 100%;
  background: rgba(255, 250, 242, 0.6);
}

.art-lamp b {
  display: none;
}

.art-plant {
  position: absolute;
  z-index: 4;
  bottom: 27%;
  left: 12%;
  width: 16%;
  height: 35%;
}

.art-plant::before {
  position: absolute;
  bottom: 0;
  left: 21%;
  width: 58%;
  height: 31%;
  border: 1px solid rgba(42, 39, 34, 0.42);
  border-radius: 3px 3px 13px 13px;
  background: #bb6d50;
  content: "";
}

.art-plant b {
  position: absolute;
  bottom: 25%;
  left: 49%;
  width: 2px;
  height: 62%;
  background: #56624d;
}

.art-plant i {
  position: absolute;
  bottom: 55%;
  left: 27%;
  width: 34px;
  height: 19px;
  border-radius: 100% 0 100% 0;
  background: #687b65;
  transform: rotate(-29deg);
}

.art-plant i:nth-child(2) {
  bottom: 72%;
  left: 48%;
  transform: rotate(22deg) scale(0.8);
}

.art-plant i:nth-child(3) {
  bottom: 84%;
  left: 14%;
  transform: rotate(-47deg) scale(0.66);
}

.art-books {
  position: absolute;
  z-index: 5;
  right: 13%;
  bottom: 25%;
  display: flex;
  width: 24%;
  height: 13%;
  align-items: end;
  gap: 3px;
  transform: rotate(-7deg);
}

.art-books i {
  display: block;
  width: 28%;
  height: 76%;
  border: 1px solid rgba(42, 39, 34, 0.42);
  background: #d6b48c;
}

.art-books i:nth-child(2) {
  width: 36%;
  height: 100%;
  background: #687b65;
}

.art-books i:nth-child(3) {
  height: 64%;
  background: #bb6d50;
}

.stage-caption {
  position: absolute;
  z-index: 6;
  right: 48px;
  bottom: 26%;
  max-width: 160px;
  color: var(--ink);
}

.stage-caption p {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stage-caption span {
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-strip {
  border-top-color: rgba(42, 39, 34, 0.18);
  border-bottom-color: rgba(42, 39, 34, 0.18);
  background: #b7bd98;
}

.signal-track {
  animation-duration: 38s;
  color: var(--ink);
}

.signal-track b {
  color: var(--coral-dark);
}

.topics-section {
  background: var(--paper-deep);
}

.section-intro .eyebrow,
.method-header .eyebrow,
.desk-note-panel .eyebrow {
  color: var(--coral-dark);
}

.section-intro .eyebrow-dot,
.method-header .eyebrow-dot,
.desk-note-panel .eyebrow-dot {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(187, 109, 80, 0.12);
}

h2 {
  color: var(--ink);
  font-weight: 600;
}

.filter-button {
  border-color: #c8bbaa;
  color: var(--muted-dark);
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--ink);
}

.filter-button.is-active {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
}

.topic-card,
.topic-card--feature,
.topic-card--coral,
.topic-card--lime,
.topic-card--paper {
  color: var(--ink);
  border-color: #d0c3b3;
  background: var(--white);
}

.topic-card--coral {
  background: #e4c0ad;
}

.topic-card--lime {
  background: #dce2bf;
}

.topic-card--feature h3,
.topic-card--coral h3,
.topic-card--lime h3,
.topic-card h3 {
  color: var(--ink);
}

.topic-card--feature p,
.topic-card--coral p,
.topic-card--lime p,
.topic-card p {
  color: var(--muted-dark);
}

.topic-card--feature .topic-number,
.topic-card--coral .topic-number,
.topic-card--lime .topic-number,
.topic-number {
  color: var(--coral-dark);
}

.topic-card--feature .kd-pill,
.topic-card--coral .kd-pill,
.topic-card--lime .kd-pill,
.kd-pill {
  border-color: #cbbdad;
  color: var(--coral-dark);
}

.topic-card--feature .topic-icon,
.topic-card--coral .topic-icon,
.topic-card--lime .topic-icon,
.topic-icon {
  border-color: rgba(42, 39, 34, 0.55);
  color: var(--coral-dark);
}

.topic-card-bottom,
.topic-card--feature .topic-card-bottom,
.topic-card--coral .topic-card-bottom,
.topic-card--lime .topic-card-bottom {
  border-color: #d8cbbb;
}

.topic-card-bottom > span,
.topic-card--feature .topic-card-bottom > span,
.topic-card--coral .topic-card-bottom > span,
.topic-card--lime .topic-card-bottom > span {
  color: var(--coral-dark);
}

.topic-open,
.topic-card--feature .topic-open,
.topic-card--coral .topic-open,
.topic-card--lime .topic-open {
  color: var(--ink);
}

.topic-open b,
.topic-card--feature .topic-open b,
.topic-card--coral .topic-open b {
  color: var(--coral-dark);
}

.topic-card:hover {
  box-shadow: 8px 10px 0 rgba(42, 39, 34, 0.08);
}

.guides-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 91% 23%, rgba(187, 109, 80, 0.12), transparent 21%),
    #dcd4c6;
}

.section-intro--light .eyebrow {
  color: var(--coral-dark);
}

.section-intro--light .eyebrow-dot {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(187, 109, 80, 0.12);
}

.section-intro--light h2 {
  color: var(--ink);
}

.section-intro--light .section-note {
  color: var(--muted-dark);
}

.guide-list {
  border-top-color: rgba(42, 39, 34, 0.23);
}

.guide-row {
  border-bottom-color: rgba(42, 39, 34, 0.23);
  color: var(--ink);
}

.guide-row:hover,
.guide-row:focus-visible {
  color: var(--coral-dark);
  background: rgba(255, 250, 242, 0.52);
}

.guide-index {
  color: var(--coral-dark);
}

.guide-detail {
  color: var(--muted-dark);
}

.guide-arrow {
  color: var(--coral-dark);
}

.method-section {
  background: var(--paper);
}

.method-card {
  border-top-color: var(--ink);
  background: var(--white);
}

.method-card:nth-child(2) {
  border-color: var(--coral);
  background: #eee5d9;
}

.method-card:nth-child(3) {
  border-color: var(--lime-dark);
  background: var(--ink-soft);
}

.method-number {
  color: var(--coral-dark);
}

.method-card h3 {
  color: var(--ink);
}

.method-card:nth-child(3) h3 {
  color: var(--white);
}

.method-card p {
  color: var(--muted-dark);
}

.method-card:nth-child(3) p {
  color: #bcc4b8;
}

.method-tag {
  color: var(--coral-dark);
}

.method-card:nth-child(3) .method-tag {
  color: var(--lime);
}

.method-note {
  border-color: var(--paper-line);
  background: var(--white);
}

.method-note-mark {
  color: var(--ink);
  background: var(--lime);
}

.method-note-kicker {
  color: var(--coral-dark);
}

.desk-note-section {
  background: var(--paper);
}

.desk-note-panel {
  background: #b7bd98;
}

.desk-note-panel h2 em {
  color: var(--coral-dark);
}

.desk-note-form-wrap > p:first-child {
  color: #4c5140;
}

.desk-note-form input {
  border-color: rgba(42, 39, 34, 0.4);
  background: rgba(255, 250, 242, 0.78);
}

.desk-note-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 250, 242, 0.7);
}

.form-status {
  color: #4c5140;
}

.topic-dialog::backdrop {
  background: rgba(42, 39, 34, 0.46);
}

.dialog-panel {
  border-color: rgba(255, 250, 242, 0.32);
  background:
    linear-gradient(135deg, rgba(203, 211, 164, 0.1), transparent 40%),
    var(--ink-soft);
}

@media (max-width: 820px) {
  .main-nav {
    border-color: rgba(42, 39, 34, 0.18);
    background: var(--white);
    box-shadow: 10px 12px 0 rgba(158, 168, 111, 0.17);
  }

  .hero-stage,
  .hero-stage--editorial {
    min-height: 540px;
  }

  .stage-topline,
  .stage-bottomline {
    color: #6b6b5c;
  }
}

@media (max-width: 560px) {
  .hero-stage,
  .hero-stage--editorial {
    min-height: 430px;
  }

  .editorial-art {
    top: 60px;
    right: 20px;
    bottom: 60px;
    left: 20px;
  }

  .stage-stamp {
    top: 27%;
    left: 8%;
    font-size: 36px;
  }

  .stage-caption {
    right: 28px;
    bottom: 20%;
    max-width: 112px;
  }

  .stage-caption p {
    font-size: 15px;
  }

  .stage-caption span {
    font-size: 7px;
  }

  .art-monitor {
    left: 25%;
    width: 48%;
  }

  .art-lamp {
    right: 8%;
  }

  .art-plant {
    left: 7%;
  }
}

/* Final hero guard: keep the image and its caption clean on every breakpoint. */
.hero-stage--editorial {
  min-height: 0 !important;
  padding: 22px 22px 18px;
  border-color: rgba(42, 39, 34, 0.24);
  background: #ddd4c6;
  box-shadow: 15px 15px 0 rgba(158, 168, 111, 0.18);
}

.hero-stage--editorial::before,
.hero-stage--editorial::after {
  display: none !important;
}

@media (max-width: 820px) {
  .hero-stage--editorial {
    padding: 17px 17px 15px;
  }
}

@media (max-width: 560px) {
  .hero-stage--editorial {
    padding: 13px 13px 13px;
  }
}

/* Keep decorative wide-card sketches clear of the action row. */
.topic-card--wide .topic-copy {
  max-width: 62%;
}

.topic-card--wide .topic-card-bottom {
  margin-top: auto;
}

.topic-card--wide .monitor-mini,
.topic-card--wide .shelf-mini {
  right: 24px;
  bottom: 92px;
  transform: scale(0.82) rotate(-8deg);
  transform-origin: bottom right;
}

@media (max-width: 560px) {
  .topic-card--wide .topic-copy {
    max-width: 72%;
  }

  .topic-card--wide .monitor-mini,
  .topic-card--wide .shelf-mini {
    right: 12px;
    bottom: 92px;
    transform: scale(0.72) rotate(-8deg);
  }
}

/* Photo-led ranking cards: a visual shortlist that reads like a blog index. */
.topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.topic-card.topic-card--ranked {
  display: flex;
  grid-column: span 1 !important;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d0c3b3;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.topic-card--ranked:hover,
.topic-card--ranked:focus-within {
  transform: translateY(-5px);
  box-shadow: 9px 11px 0 rgba(42, 39, 34, 0.1);
}

.topic-card--ranked.is-hidden {
  display: none;
}

.topic-card--editor-pick {
  border-top: 4px solid var(--coral) !important;
}

.topic-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.32;
  background: #c8c0b3;
}

.topic-card-image::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(42, 39, 34, 0.06), transparent 42%, rgba(42, 39, 34, 0.17));
  content: "";
  pointer-events: none;
}

.topic-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.topic-card--ranked:hover .topic-card-image img,
.topic-card--ranked:focus-within .topic-card-image img {
  transform: scale(1.035);
}

.topic-rank,
.topic-badge {
  position: absolute;
  z-index: 1;
}

.topic-rank {
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(42, 39, 34, 0.82);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.topic-badge {
  top: 14px;
  right: 14px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--coral);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-card--ranked .topic-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 20px;
}

.topic-card--ranked .topic-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 19px;
}

.topic-card--ranked .topic-category,
.topic-card--ranked .topic-card-status,
.topic-card--ranked .topic-card-note {
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.topic-card--ranked .topic-card-status {
  color: var(--muted-dark);
  text-align: right;
}

.topic-card--ranked h3 {
  max-width: none;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(27px, 2.35vw, 36px);
  line-height: 0.98;
}

.topic-card--ranked p {
  max-width: none;
  margin: 0 0 24px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.5;
}

.topic-card--ranked .topic-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #d8cbbb;
}

.topic-card--ranked .topic-card-note {
  color: var(--muted);
}

.topic-card--ranked .topic-open {
  color: var(--ink);
  white-space: nowrap;
}

.topic-card--ranked .topic-open b {
  color: var(--coral-dark);
}

.topic-card--ranked .topic-open:hover b,
.topic-card--ranked .topic-open:focus-visible b {
  color: var(--ink);
}

.topic-card--ranked .topic-open:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-card--ranked h3 {
    font-size: clamp(27px, 4vw, 35px);
  }
}

@media (max-width: 560px) {
  .topic-grid {
    display: block;
  }

  .topic-card.topic-card--ranked {
    margin-bottom: 12px;
  }

  .topic-card--ranked .topic-card-body {
    padding: 21px 20px 19px;
  }

  .topic-card-image {
    aspect-ratio: 1.45;
  }
}

/* SEO guide details: scannable comparisons and FAQ blocks inside long-form posts. */
.post-content h2,
.post-content h3 {
  scroll-margin-top: 92px;
}

.post-content h3 {
  margin: 38px 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.post-table-wrap {
  margin: 31px 0 59px;
  overflow-x: auto;
  border: 1px solid var(--paper-line);
  background: rgba(255, 250, 242, 0.56);
}

.post-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.post-table th,
.post-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--paper-line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.45;
}

.post-table th {
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-table td:first-child {
  color: var(--ink);
  font-weight: 600;
}

.post-table tr:last-child td {
  border-bottom: 0;
}

.post-faq {
  margin-top: 27px;
  border-top: 1px solid var(--paper-line);
}

.post-faq h3 {
  margin: 0;
  padding: 25px 0 9px;
  font-size: clamp(25px, 3vw, 34px);
}

.post-faq p {
  max-width: 640px;
  margin: 0;
  padding-bottom: 26px;
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 40;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 920px;
  margin-inline: auto;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(21, 26, 22, 0.97);
  border: 1px solid rgba(255, 253, 247, 0.18);
  box-shadow: 0 18px 45px rgba(11, 16, 12, 0.28);
}

.consent-banner__copy {
  max-width: 610px;
}

.consent-banner__copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.consent-banner__copy p {
  margin: 0 0 6px;
  color: rgba(255, 253, 247, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.consent-banner__copy a {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.consent-banner__button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 247, 0.28);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.consent-banner__button--quiet {
  color: var(--white);
  background: transparent;
}

.consent-banner__button--allow {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

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

.utility-hero {
  padding-top: 112px;
  padding-bottom: 76px;
  border-bottom: 1px solid var(--paper-line);
}

.utility-hero__inner {
  max-width: 920px;
}

.utility-hero h1 {
  max-width: 700px;
  margin: 25px 0;
  font-family: var(--display);
  font-size: clamp(58px, 9vw, 132px);
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.utility-hero h1 em {
  color: var(--coral-dark);
  font-style: normal;
}

.utility-hero__intro {
  max-width: 590px;
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.utility-hero__date {
  margin: 25px 0 0;
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.utility-content {
  padding-top: 76px;
  background: var(--white);
}

.utility-content__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1.5fr);
  gap: clamp(48px, 10vw, 150px);
  max-width: 1060px;
}

.utility-aside {
  align-self: start;
  padding: 20px;
  background: var(--paper-deep);
  border-top: 2px solid var(--coral-dark);
}

.utility-aside__label {
  display: block;
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.utility-aside p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.55;
}

.utility-copy h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 45px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.utility-copy h2:not(:first-child) {
  margin-top: 52px;
}

.utility-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.7;
}

.utility-copy p + p {
  margin-top: 16px;
}

.utility-copy a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 560px) {
  .post-table-wrap {
    margin-block: 25px 47px;
  }

  .post-table th,
  .post-table td {
    padding: 13px 12px;
  }

  .post-faq h3 {
    padding-top: 22px;
  }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 16px;
  }

  .consent-banner__actions {
    margin-top: 14px;
  }

  .consent-banner__button {
    flex: 1;
  }

  .utility-hero {
    padding-top: 76px;
  }

  .utility-content__grid {
    display: block;
  }

  .utility-aside {
    margin-bottom: 52px;
  }
}
