/* ============================================
   DMC — Page-specific styles
   ============================================ */

/* ==================== HERO (Home) ==================== */

.hero {
  padding: 220px 0 96px;
  position: relative;
  overflow: hidden;
}

/* === HERO CINEMATIC (full-bleed video bg) === */
.hero--cinematic {
  padding: 0;
  min-height: 88vh;
  max-height: 1000px;
  display: flex;
  align-items: stretch;
  color: var(--paper);
  background: var(--ink);
}

.hero--cinematic .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(0.78);
  z-index: 0;
}

.hero--cinematic .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      oklch(0.12 0.01 250 / 0.65) 0%,
      oklch(0.12 0.01 250 / 0.45) 30%,
      oklch(0.12 0.01 250 / 0.60) 70%,
      oklch(0.10 0.01 250 / 0.85) 100%
    ),
    radial-gradient(ellipse at 20% 30%, color-mix(in oklch, var(--accent), transparent 88%), transparent 60%);
}

.hero--cinematic .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 200px;
  padding-bottom: 56px;
}

.hero--cinematic .hero__topmeta {
  position: absolute;
  top: 180px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: oklch(0.85 0.01 250 / 0.85);
}

.hero--cinematic .hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero--cinematic .hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero--cinematic .hero__status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero--cinematic h1.h-hero {
  font-size: clamp(48px, 7.5vw, 112px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
  max-width: 22ch;
  color: var(--paper);
  margin-bottom: 32px;
}

.hero--cinematic h1.h-hero em {
  font-style: normal;
  font-weight: 400;
  color: var(--paper);
}

.hero--cinematic .hero__sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: oklch(0.85 0.01 250 / 0.85);
  line-height: 1.5;
  max-width: 56ch;
  margin-bottom: 36px;
}

.hero--cinematic .hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero--cinematic .hero__ab-toggle {
  display: inline-flex;
  gap: 0;
  border: 1px solid oklch(0.85 0.01 250 / 0.25);
  border-radius: 999px;
  padding: 3px;
  align-self: flex-start;
}

.hero--cinematic .hero__ab-toggle button {
  color: oklch(0.85 0.01 250 / 0.6);
  background: transparent;
}

.hero--cinematic .hero__ab-toggle button.active {
  background: var(--paper);
  color: var(--ink);
}

.hero--cinematic .hero__footer {
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid oklch(0.85 0.01 250 / 0.18);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: oklch(0.75 0.01 250 / 0.7);
}

.hero--cinematic .hero__footer > :nth-child(2) {
  justify-self: center;
}

.hero--cinematic .hero__footer > :nth-child(3) {
  justify-self: end;
}

.hero--cinematic .hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero--cinematic .hero__scroll span {
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}

.btn--outline-light {
  background: transparent;
  color: var(--paper);
  border-color: oklch(0.85 0.01 250 / 0.35);
}
.btn--outline-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

@media (max-width: 768px) {
  .hero--cinematic { min-height: 92vh; }
  .hero--cinematic .hero__topmeta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    top: 130px;
  }
  .hero--cinematic .hero__inner { padding-top: 220px; }
  .hero--cinematic .hero__footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero--cinematic .hero__footer > :nth-child(2),
  .hero--cinematic .hero__footer > :nth-child(3) {
    justify-self: start;
  }
}

.hero__inner {
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

.hero__title {
  max-width: 16ch;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

.hero__meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__lede {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}

.hero__sub {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 44ch;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, color-mix(in oklch, var(--accent), transparent 70%), transparent 60%),
    radial-gradient(ellipse at 70% 80%, color-mix(in oklch, var(--teal), transparent 80%), transparent 55%);
  mix-blend-mode: screen;
}

.hero__visual-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: oklch(0.8 0.01 250);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.hero__ab-toggle {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
  margin-top: 28px;
}

.hero__ab-toggle button {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  text-transform: uppercase;
}

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

/* Highlighted accent word in hero */
.hero h1 em {
  font-style: normal;
  color: color-mix(in oklch, var(--ink), var(--accent) calc(var(--accent-on-text) * 100%));
}

/* Strong-intensity: underline the accent word with a gradient */
body[data-intensity="strong"] .hero h1 em {
  background-image: linear-gradient(transparent 76%, var(--accent) 76%, var(--accent) 92%, transparent 92%);
}

/* ==================== Approach (3 pillars) ==================== */

.approach {
  padding: 128px 0;
  border-top: 1px solid var(--rule);
}

.approach__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.approach__title { max-width: 14ch; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.pillar {
  background: var(--paper);
  padding: 48px 36px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;
  position: relative;
}

.pillar__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar__num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.pillar h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: auto;
  max-width: 10ch;
}

.pillar p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

.pillar__glyph {
  width: 52px;
  height: 52px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-3);
  transition: all 0.4s var(--ease);
}

.pillar:hover .pillar__glyph {
  color: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}

/* ==================== Numbers ==================== */

.numbers {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, color-mix(in oklch, var(--accent), transparent 80%), transparent 70%);
  pointer-events: none;
}

.numbers__head {
  max-width: 720px;
  margin-bottom: 80px;
  position: relative;
}

.numbers__head .section-label__line { background: oklch(0.3 0.01 250); }

.numbers__head h2 { color: var(--paper); }

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid oklch(0.3 0.01 250);
  padding-top: 48px;
  position: relative;
}

.num-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.num-item__value {
  font-family: var(--f-display);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--paper);
}

.num-item__value .plus { color: var(--accent); margin-right: 4px; font-weight: 400; }

.num-item__label {
  font-size: 15px;
  color: oklch(0.75 0.01 250);
  line-height: 1.4;
  max-width: 28ch;
}

.num-item__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==================== Areas List ==================== */

.areas {
  padding: 128px 0;
}

.areas__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

.area-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}

.area-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  position: relative;
  transition: padding 0.4s var(--ease);
  cursor: pointer;
}

.area-row::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 100%;
  background: color-mix(in oklch, var(--accent-soft), transparent 80%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: -1;
}

.area-row:hover { padding-left: 24px; padding-right: 24px; }
.area-row:hover::before { opacity: 1; }
.area-row:hover .area-row__arrow { transform: translateX(8px) rotate(-45deg); color: var(--accent); }
.area-row:hover .area-row__title { color: var(--accent); }

.area-row__num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}

.area-row__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: color 0.3s var(--ease);
}

.area-row__desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 52ch;
}

.area-row__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  color: var(--ink-3);
  transition: all 0.4s var(--ease);
}

/* ==================== Perspectives ==================== */

.perspectives {
  padding: 128px 0;
  border-top: 1px solid var(--rule);
}

/* Dark variant — inherits the contrast from the old "Escala" section */
.perspectives--dark {
  background: var(--ink);
  color: var(--paper);
  border-top: 0;
  position: relative;
  overflow: hidden;
}

.perspectives--dark::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, color-mix(in oklch, var(--accent), transparent 80%), transparent 70%);
  pointer-events: none;
}

.perspectives--dark .perspectives__head { position: relative; }
.perspectives--dark .section-label { color: oklch(0.65 0.01 250); }
.perspectives--dark .section-label__line { background: oklch(0.3 0.01 250); }
.perspectives--dark h2 { color: var(--paper); }

.perspectives--dark .link-arrow {
  color: var(--paper);
  border-color: oklch(0.4 0.01 250);
}
.perspectives--dark .link-arrow:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.perspectives--dark .articles-grid { position: relative; }

.perspectives--dark .article-card__title { color: var(--paper); }
.perspectives--dark .article-card__meta {
  color: oklch(0.65 0.01 250);
  border-top-color: oklch(0.3 0.01 250);
}
.perspectives--dark .article-card:hover .article-card__title { color: var(--accent); }

.perspectives__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.article-card:hover { transform: translateY(-4px); }

.article-card__cover {
  aspect-ratio: 4/3;
  border-radius: 2px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.article-card__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--accent), transparent 90%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.article-card:hover .article-card__cover::after { opacity: 1; }

.article-card__tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.article-card__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in oklch, var(--accent-soft), transparent 60%);
  border: 1px solid color-mix(in oklch, var(--accent), transparent 75%);
  border-radius: 999px;
  padding: 3px 9px;
}

.article-card__title {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color 0.2s var(--ease);
}

.article-card:hover .article-card__title { color: var(--accent); }

.article-card__meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
}

/* ==================== CTA ==================== */

.cta-section {
  padding: 140px 0;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}

body[data-intensity="strong"] .cta-section { background: color-mix(in oklch, var(--paper-2), var(--accent) 8%); }

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.cta-section h2 { max-width: 14ch; }

.cta-section p {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-2);
  max-width: 48ch;
  margin-bottom: 32px;
}

/* ==================== O Escritório page ==================== */

.page-head {
  padding: 240px 0 72px;
  border-bottom: 1px solid var(--rule);
}

.page-head__crumbs {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  display: flex;
  gap: 10px;
}

.page-head__crumbs a { color: var(--ink-3); }
.page-head__crumbs a:hover { color: var(--accent); }
.page-head__crumbs span { color: var(--accent); }

.page-head h1 {
  max-width: 18ch;
}

.page-head__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.meta-item__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}

.meta-item__val {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

/* About content */
.about-intro {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 120px;
}

.about-intro__col-left .eyebrow { margin-bottom: 24px; }

.about-intro__col-left h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 18ch;
}

.about-intro__col-right p {
  font-size: clamp(17px, 1.25vw, 20px);
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-intro__col-right p:first-letter {
  font-family: var(--f-display);
  font-size: 2.6em;
  float: left;
  line-height: 0.85;
  margin: 4px 10px 0 0;
  color: var(--accent);
  font-weight: 500;
}

/* Partners grid */
.partners {
  padding: 96px 0;
  border-top: 1px solid var(--rule);
}

.partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.partner-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}

.partners__grid .partner-card {
  align-content: start;
}

.partners__grid .partner-card > div:first-child {
  width: 100%;
  max-width: 240px;
}

.partner-card__portrait {
  aspect-ratio: 4/5;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.partner-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.4s var(--ease);
}

.partner-card:hover .partner-card__portrait img {
  filter: grayscale(0%) contrast(1);
}

.partner-card__name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 4px;
}

.partner-card__role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.partner-card__bio {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Values */
.values {
  padding: 120px 0;
  background: var(--paper-2);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-top: 64px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.value-cell {
  padding: 40px 32px;
  background: var(--paper-2);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: background 0.3s var(--ease);
}

.value-cell:hover { background: var(--paper); }

.value-cell__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.value-cell h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.value-cell p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ==================== Area page ==================== */

.area-hero {
  padding: 240px 0 100px;
  border-bottom: 1px solid var(--rule);
}

.area-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.area-hero__title { font-size: clamp(44px, 5.5vw, 80px); letter-spacing: -0.03em; }

.area-hero__summary {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-2);
  line-height: 1.55;
}

/* What you get */
.what-you-get {
  padding: 120px 0;
}

.section-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.section-split__head h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 12ch;
  margin-top: 16px;
}

.wyg-list {
  display: grid;
  gap: 24px;
}

.wyg-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}

.wyg-item:last-child { border-bottom: 1px solid var(--rule); }

.wyg-item__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.wyg-item__title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.wyg-item__body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 60ch;
}

/* Why it matters */
.why-matters {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
}

.why-matters h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.05;
  max-width: 22ch;
  margin: 0 auto;
  text-align: left;
}

.why-matters h2 em {
  font-style: normal;
  color: var(--accent);
}

.why-matters__body {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-top: 40px;
  border-top: 1px solid oklch(0.3 0.01 250);
}

.why-matters__body p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: oklch(0.8 0.01 250);
}

/* How it works */
.how-works {
  padding: 120px 0;
}

.acc-list {
  border-top: 1px solid var(--rule);
  margin-top: 56px;
}

.acc-item {
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s var(--ease);
}

.acc-item:hover { background: color-mix(in oklch, var(--accent-soft), transparent 92%); }

.acc-header {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 16px;
  cursor: pointer;
  user-select: none;
}

.acc-header__num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.acc-header__title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.acc-header__icon {
  width: 28px; height: 28px;
  position: relative;
  color: var(--ink-3);
  transition: color 0.3s;
}

.acc-header__icon::before,
.acc-header__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transition: transform 0.3s var(--ease);
}

.acc-header__icon::before {
  width: 14px; height: 1px;
  transform: translate(-50%, -50%);
}

.acc-header__icon::after {
  width: 1px; height: 14px;
  transform: translate(-50%, -50%);
}

.acc-item.open .acc-header__icon { color: var(--accent); }
.acc-item.open .acc-header__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.acc-item.open .acc-body { max-height: 400px; }

.acc-body__inner {
  padding: 0 16px 32px 120px;
  max-width: 72ch;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

/* Add-ons */
.addons {
  padding: 80px 0 120px;
  border-top: 1px solid var(--rule);
}

.addons-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-top: 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.addon-item {
  padding: 28px 32px;
  background: var(--paper);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.3s var(--ease);
  cursor: pointer;
}

.addon-item:hover { background: var(--paper-2); }
.addon-item:hover .addon-item__arrow { color: var(--accent); transform: translateX(4px); }

.addon-item__label {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  flex: 1;
}

.addon-item__arrow {
  color: var(--ink-3);
  transition: all 0.3s var(--ease);
}

/* Areas listing */
.areas-index {
  padding: 120px 0;
}

.areas-index__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 64px;
}

.area-card {
  background: var(--paper);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 340px;
  position: relative;
  transition: background 0.4s var(--ease);
  cursor: pointer;
}

.area-card:hover { background: var(--paper-2); }
.area-card:hover .area-card__title { color: var(--accent); }
.area-card:hover .area-card__arrow { transform: translate(4px, -4px); color: var(--accent); }

.area-card__num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.area-card__title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-top: auto;
  transition: color 0.3s var(--ease);
  max-width: 14ch;
}

.area-card__summary {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

.area-card__arrow {
  position: absolute;
  top: 40px;
  right: 40px;
  color: var(--ink-3);
  transition: all 0.4s var(--ease);
}

/* ==================== Contact ==================== */

.contact {
  padding: 240px 0 120px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  margin-top: 72px;
}

.contact__head h1 {
  max-width: 14ch;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: block;
  position: relative;
}

.field label,
.field > span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0 12px;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s var(--ease);
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }

.contact-form button {
  justify-self: start;
  margin-top: 12px;
}

.contact-form.sent {
  opacity: 0.7;
  pointer-events: none;
}

.contact-form__sent-msg {
  display: none;
  padding: 20px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: color-mix(in oklch, var(--accent-soft), transparent 80%);
  font-family: var(--f-mono);
  font-size: 13px;
}

.contact-form.sent .contact-form__sent-msg { display: block; }
.contact-form.sent .contact-form__fields { display: none; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  background: var(--paper-2);
  border-radius: 4px;
  align-self: start;
}

.contact-info__block h3 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}

.contact-info__block p,
.contact-info__block a {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.contact-info__block a:hover { color: var(--accent); }

/* ==================== Responsive ==================== */

@media (max-width: 1100px) {
  .hero__lede { grid-template-columns: 1fr; gap: 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .hero__meta { align-items: flex-start; }
  .approach__head,
  .areas__head,
  .perspectives__head,
  .cta-section__inner { grid-template-columns: 1fr; gap: 32px; }
  .pillars { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: 1fr; gap: 48px; }
  .articles-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .area-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .section-split { grid-template-columns: 1fr; gap: 32px; }
  .why-matters__body { grid-template-columns: 1fr; gap: 32px; }
  .addons-list, .areas-index__grid, .values__grid { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: 1fr; }
  .partner-card { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .acc-header { grid-template-columns: 40px 1fr auto; gap: 16px; padding: 24px 0; }
  .acc-body__inner { padding: 0 0 24px 56px; }
  .page-head__meta { grid-template-columns: 1fr 1fr; }
  .area-row { grid-template-columns: 40px 1fr auto; }
  .area-row__desc { display: none; }
  .contact-form__row { grid-template-columns: 1fr; }
}
