:root {
  --ink: #17120f;
  --coal: #211b18;
  --paper: #f6efe3;
  --cream: #fffaf1;
  --line: rgba(33, 27, 24, .14);
  --muted: #756b62;
  --graphite: #2b2b32;
  --aubergine: #4b2434;
  --champagne: #d8b36a;
  --coral: #e85d45;
  --cobalt: #265cff;
  --gold: #c9942d;
  --shadow: 0 28px 90px rgba(33, 27, 24, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; }

.shell {
  width: min(1240px, calc(100% - 44px));
  margin-inline: auto;
}

.narrow { width: min(880px, calc(100% - 44px)); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.nav-shell {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(33, 27, 24, .12);
  border-radius: 12px;
  background: rgba(255, 250, 241, .88);
  box-shadow: 0 18px 60px rgba(33, 27, 24, .12);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--cream);
  background: #fff;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(33,27,24,.08), 0 12px 28px rgba(75,36,52,.14);
  overflow: hidden;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.brand strong { display: block; line-height: 1; font-weight: 950; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 780; }

.main-nav {
  justify-self: center;
  display: flex;
  gap: 2px;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 8px;
  color: #453d37;
  font-size: 14px;
  font-weight: 780;
}

.main-nav a:hover {
  color: var(--aubergine);
  background: #efe2d0;
}

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

.language-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.button,
.nav-actions .button-dark,
.atelier-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 9px;
  color: var(--cream);
  background: var(--aubergine);
  box-shadow: 0 16px 36px rgba(75,36,52,.22);
  font-size: 14px;
  font-weight: 900;
}

.button-secondary {
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9px;
  background: #efe2d0;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.mobile-panel {
  display: none;
  position: fixed;
  z-index: 90;
  top: 94px;
  left: 14px;
  right: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.mobile-panel.open { display: grid; }
.mobile-panel a { padding: 13px; border-bottom: 1px solid var(--line); font-weight: 850; }

.atelier { background: var(--paper); }

.atelier-hero {
  position: relative;
  min-height: 100svh;
  padding: 118px 0 52px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
}

.hero-photo {
  position: absolute;
  inset: 0;
  --mx: 0px;
  --my: 0px;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246,239,227,.98) 0%, rgba(246,239,227,.78) 38%, rgba(246,239,227,.12) 70%),
    linear-gradient(0deg, rgba(246,239,227,.94) 0%, rgba(246,239,227,.12) 42%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.02);
  animation: slowPush 18s ease-in-out infinite alternate;
}

@keyframes slowPush {
  to { transform: scale(1.075) translateX(-1.2%); }
}

.atelier-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(370px, .58fr);
  gap: 60px;
  align-items: center;
}

.atelier-label {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-statement h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(42px, 5.9vw, 82px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-intro {
  padding: 20px;
  border: 1px solid rgba(33,27,24,.16);
  border-radius: 14px;
  background: rgba(255,250,241,.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-intro p {
  margin: 0 0 16px;
  color: #4e453e;
  font-size: 16px;
  line-height: 1.55;
}

.direct-care {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  padding: 13px;
  border: 1px solid rgba(75,36,52,.18);
  border-radius: 12px;
  background: rgba(246,239,227,.78);
}

.direct-care strong {
  color: var(--aubergine);
  font-size: 15px;
  font-weight: 950;
}

.direct-care span {
  color: #4e453e;
  font-size: 13px;
  line-height: 1.48;
  font-weight: 720;
}

.audit-console {
  display: grid;
  gap: 10px;
}

.hero-intro .audit-console {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.hero-intro .audit-console label:first-child,
.hero-intro .audit-console button {
  grid-column: 1 / -1;
}

.audit-console label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.audit-console input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(33,27,24,.18);
  border-radius: 9px;
  color: var(--ink);
  background: #fffdf8;
  outline: 0;
  font-weight: 800;
}

.audit-console input::placeholder {
  color: rgba(33,27,24,.56);
  opacity: 1;
}

.audit-console input:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(38,92,255,.12);
}

.audit-console button {
  min-height: 50px;
  border: 0;
  border-radius: 9px;
  color: var(--cream);
  background: var(--coral);
  box-shadow: 0 16px 34px rgba(232,93,69,.28);
  font-weight: 950;
  cursor: pointer;
}

.proof-row {
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.proof-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
}

.proof-grid strong {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  color: #4a413a;
  text-align: center;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .02em;
  white-space: nowrap;
}

.atelier-section { padding: 112px 0; }

.editorial-head {
  display: grid;
  grid-template-columns: .64fr 1fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

.editorial-head h2,
.lab-copy h2,
.cms-card h2,
.authority-card h2,
.final-grid h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 950;
}

.editorial-head p:not(.atelier-label),
.lab-copy p,
.cms-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.audit-wall {
  background:
    linear-gradient(90deg, rgba(75,36,52,.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(75,36,52,.07) 1px, transparent 1px),
    #fffaf1;
  background-size: 56px 56px;
}

.audit-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.audit-tile {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: rgba(255,250,241,.88);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.audit-tile:hover {
  z-index: 3;
  color: var(--cream);
  background: var(--aubergine);
  transform: translateY(-6px) rotate(-1deg);
}

.audit-tile.audit-more {
  color: var(--cream);
  background: var(--graphite);
}

.audit-tile.audit-more span {
  color: var(--champagne);
  font-size: 26px;
}

.audit-tile span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
}

.audit-tile b {
  max-width: 170px;
  font-size: 17px;
  line-height: 1.16;
  font-weight: 950;
}

.diagnosis-lab {
  color: var(--cream);
  background: var(--graphite);
}

.diagnosis-lab .atelier-label { color: var(--champagne); }

.lab-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, .7fr);
  gap: 60px;
  align-items: center;
}

.lab-copy p { color: rgba(255,250,241,.72); margin-top: 22px; }

.lab-panels {
  padding: 18px;
  border: 1px solid rgba(255,250,241,.18);
  border-radius: 16px;
  background: rgba(255,250,241,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.lab-tab {
  min-height: 42px;
  margin: 0 8px 12px 0;
  padding: 0 14px;
  border: 1px solid rgba(255,250,241,.2);
  border-radius: 9px;
  color: rgba(255,250,241,.72);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.lab-tab.active {
  color: var(--ink);
  background: var(--champagne);
}

.lab-panel {
  display: none;
  min-height: 270px;
  padding: 28px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--cream);
}

.lab-panel.active {
  display: grid;
  align-content: end;
  animation: panelIn .28s ease;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.lab-panel h3 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1;
}

.lab-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cms-studio {
  background:
    radial-gradient(circle at 12% 20%, rgba(232,93,69,.14), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(38,92,255,.10), transparent 22%),
    var(--paper);
}

.cms-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, .82fr);
  gap: 64px;
  align-items: start;
}

.cms-card {
  position: sticky;
  top: 120px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.cms-card p:not(.atelier-label) { margin: 22px 0; }

.cms-universal {
  padding: 16px;
  border: 1px solid rgba(75,36,52,.18);
  border-radius: 12px;
  background: rgba(255,250,241,.72);
  color: var(--ink) !important;
  font-weight: 780;
}

.cms-rental {
  border-color: rgba(38,92,255,.22);
  background: rgba(255,255,255,.68);
}

.cms-price-card {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(38,92,255,.24);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,250,241,.84)),
    radial-gradient(circle at 100% 0, rgba(232,93,69,.16), transparent 34%);
  box-shadow: 0 18px 42px rgba(75,36,52,.10);
}

.cms-price-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(38,92,255,.10);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cms-price-card strong {
  display: block;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.05;
  font-weight: 950;
}

.cms-card .cms-price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.cms-price-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 2px;
  padding: 0;
  list-style: none;
}

.cms-price-card li {
  padding: 8px 10px;
  border: 1px solid rgba(75,36,52,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.cms-price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.cms-price-actions .atelier-button,
.cms-price-actions .button {
  min-height: 46px;
  padding: 0 18px;
}

.cms-request-section {
  background:
    linear-gradient(180deg, rgba(255,250,241,.94), rgba(255,255,255,.92)),
    radial-gradient(circle at 12% 10%, rgba(38,92,255,.10), transparent 26%);
}

.cms-request-grid {
  align-items: start;
}

.cms-request-grid p {
  color: var(--muted);
}

.cms-request-form.audit-form {
  border-color: rgba(75,36,52,.16);
  background: rgba(255,255,255,.88);
  box-shadow: 0 26px 70px rgba(75,36,52,.12);
  backdrop-filter: none;
}

.cms-request-form.audit-form label {
  color: var(--ink);
}

.cms-request-form.audit-form input {
  border-color: rgba(75,36,52,.24);
  color: var(--ink);
  background: #fffdf8;
  font-weight: 760;
}

.cms-request-form.audit-form input::placeholder {
  color: rgba(33,27,24,.50);
  opacity: 1;
}

.cms-request-form.audit-form input:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(38,92,255,.14);
}

.cms-request-form.audit-form > small {
  color: rgba(33,27,24,.64);
}

.cms-request-form fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(75,36,52,.16);
  border-radius: 12px;
  background: rgba(255,250,241,.74);
}

.cms-request-form legend {
  padding: 0 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.cms-request-form .radio-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(75,36,52,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-weight: 780;
}

.cms-request-form .radio-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--coral);
}

.cms-request-form label small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.feature-stack {
  display: grid;
  gap: 12px;
}

.feature-line {
  min-height: 74px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,250,241,.74);
  font-size: 19px;
  font-weight: 920;
  transition: transform .18s ease, background .18s ease;
}

.feature-line:hover {
  background: var(--cream);
  transform: translateX(10px);
}

.feature-line span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(232,93,69,.12);
}

.authority-split {
  background: var(--cream);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.authority-card {
  min-height: 520px;
  display: grid;
  align-content: space-between;
  padding: 32px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(43,43,50,.96), rgba(75,36,52,.72)),
    url("../img/studio-audit-hero-v3.png") center / cover;
}

.authority-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(38,92,255,.92), rgba(232,93,69,.68)),
    url("../img/studio-audit-hero-v3.png") center / cover;
}

.authority-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -80px;
  border: 1px solid rgba(255,250,241,.34);
  border-radius: 50%;
}

.authority-card p {
  margin: 0;
  color: var(--champagne);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.authority-card h2 {
  position: relative;
  z-index: 1;
  max-width: 660px;
  color: var(--cream);
}

.authority-card a {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 13px 16px;
  border-radius: 9px;
  color: var(--ink);
  background: var(--cream);
  font-weight: 950;
}

.industry-index {
  background: var(--paper);
}

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

.industry-list a {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,250,241,.5);
  font-weight: 900;
  transition: background .18s ease, color .18s ease;
}

.industry-list a:hover {
  color: var(--cream);
  background: var(--coral);
}

.final-audit {
  padding-top: 40px;
  background: var(--paper);
}

.final-grid {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 18px;
  color: var(--cream);
  background: var(--coal);
  box-shadow: var(--shadow);
}

.final-grid span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.final-grid h2 { color: var(--cream); font-size: clamp(32px, 3.6vw, 54px); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 88px;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(23,18,15,.92), rgba(75,36,52,.88) 48%, rgba(38,92,255,.76)),
    url("../img/studio-audit-hero-v3.png") center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--coral), var(--champagne), var(--cobalt));
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 58px;
  align-items: end;
}

.page-hero-copy { max-width: 860px; }

.eyebrow,
.kicker {
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .96;
  font-weight: 950;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.page-hero .lead { color: rgba(255,250,241,.78); }

.page-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.page-chip-row span {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(255,250,241,.22);
  border-radius: 999px;
  color: rgba(255,250,241,.86);
  background: rgba(255,250,241,.08);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 850;
}

.page-signal-card {
  padding: 26px;
  border: 1px solid rgba(255,250,241,.2);
  border-radius: 16px;
  background: rgba(255,250,241,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.page-signal-card span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-signal-card strong {
  display: block;
  margin-top: 14px;
  color: var(--cream);
  font-size: 25px;
  line-height: 1.1;
}

.page-signal-card p {
  color: rgba(255,250,241,.72);
  line-height: 1.65;
}

.page-signal-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--champagne);
  font-weight: 950;
}

.section { padding: 96px 0; }
.subpage-content {
  background:
    linear-gradient(180deg, rgba(255,250,241,.86), rgba(246,239,227,1)),
    radial-gradient(circle at 12% 12%, rgba(232,93,69,.14), transparent 28%),
    radial-gradient(circle at 88% 30%, rgba(38,92,255,.12), transparent 34%);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 34px;
  align-items: start;
}

.content-main {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(33,27,24,.12);
  border-radius: 18px;
  background: rgba(255,250,241,.82);
  box-shadow: 0 24px 70px rgba(33,27,24,.11);
}

.content-main h2 {
  margin: 44px 0 14px;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.1;
}

.content-main h2:first-of-type { margin-top: 12px; }
.content-main p, .content-main li { color: var(--muted); font-size: 17px; line-height: 1.72; }

.article-block {
  margin-top: 10px;
}

.article-block p {
  max-width: 78ch;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 8px;
}

.benefit-grid section {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(33,27,24,.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,250,241,.94)),
    linear-gradient(135deg, rgba(232,93,69,.08), rgba(38,92,255,.06));
}

.benefit-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
}

.benefit-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.cms-feature-summary {
  margin-top: 48px;
  padding-top: 8px;
}

.cms-feature-summary > p:not(.kicker) {
  max-width: 78ch;
}

.feature-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.feature-section-grid section {
  padding: 22px;
  border: 1px solid rgba(33,27,24,.1);
  border-radius: 16px;
  background: #fffdf8;
  box-shadow: 0 16px 42px rgba(33,27,24,.08);
}

.feature-section-grid h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.18;
}

.feature-section-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-section-grid li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
}

.feature-section-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--cobalt);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid rgba(33,27,24,.1);
  border-radius: 12px;
  background: #fffdf8;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--coral), var(--champagne));
  box-shadow: 0 0 0 5px rgba(232,93,69,.1);
}

.content-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.aside-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,250,241,.9);
  box-shadow: 0 20px 60px rgba(33, 27, 24, .12);
}

.aside-audit {
  color: var(--cream);
  border-color: rgba(255,250,241,.15);
  background: linear-gradient(145deg, var(--aubergine), #221719 58%, #244cc7);
}

.aside-audit span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.aside-audit strong { font-size: 22px; line-height: 1.16; }
.aside-audit p { margin: 0; color: rgba(255,250,241,.72); line-height: 1.55; }
.aside-audit .button { margin-top: 6px; justify-content: center; }
.aside-links a { color: var(--muted); font-weight: 850; }
.aside-links a:hover { color: var(--coral); }

details {
  margin-bottom: 10px;
  border: 1px solid rgba(33,27,24,.1);
  border-radius: 12px;
  background: #fffdf8;
}
summary { padding: 16px 18px; cursor: pointer; font-weight: 900; }
details p { padding: 0 18px 18px; }

.audit-form-section {
  color: var(--cream);
  background: linear-gradient(135deg, #17120f, #4b2434 50%, #265cff);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 40px;
  align-items: center;
}

.form-grid h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
}

.form-grid p { color: rgba(255,250,241,.74); line-height: 1.7; }

.audit-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255,250,241,.18);
  border-radius: 18px;
  background: rgba(255,250,241,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}

.audit-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,250,241,.82);
  font-size: 13px;
  font-weight: 850;
}

.audit-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255,250,241,.2);
  border-radius: 12px;
  color: var(--cream);
  background: rgba(23,18,15,.28);
  outline: none;
}

.audit-form input::placeholder {
  color: rgba(255,250,241,.66);
  opacity: 1;
}

.audit-form input:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(216,179,106,.16);
}

.audit-form small { color: rgba(255,250,241,.58); line-height: 1.5; }

.legal-hero {
  padding-bottom: 62px;
  background:
    linear-gradient(120deg, rgba(23,18,15,.94), rgba(43,43,50,.9) 54%, rgba(75,36,52,.82)),
    url("../img/studio-audit-hero-v3.png") center / cover;
}

.legal-section {
  background: linear-gradient(180deg, rgba(246,239,227,1), rgba(255,250,241,.96));
}

.legal-shell {
  width: min(1040px, calc(100% - 44px));
}

.legal-document {
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid rgba(33,27,24,.12);
  border-radius: 18px;
  background: rgba(255,250,241,.92);
  box-shadow: 0 24px 80px rgba(33,27,24,.12);
}

.legal-document h1 {
  margin: 0 0 28px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.legal-document h2 {
  margin: 34px 0 12px;
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.12;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.legal-document a {
  color: var(--cobalt);
  font-weight: 850;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-document .legal-note {
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(33,27,24,.12);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--muted);
  font-weight: 800;
}

.footer {
  padding: 58px 0;
  color: rgba(255,250,241,.66);
  background: #15110f;
}

.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr .6fr; gap: 42px; }
.footer .brand { color: var(--cream); margin-bottom: 18px; }
.footer p { max-width: 540px; color: rgba(255,250,241,.62); }
.footer h3 { color: var(--cream); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer a:not(.brand) { display: block; padding: 5px 0; color: rgba(255,250,241,.62); font-weight: 750; }

.footer-cookie-button {
  display: block;
  padding: 5px 0;
  border: 0;
  color: rgba(255,250,241,.62);
  background: transparent;
  font: inherit;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.footer-cookie-button:hover { color: var(--cream); }

.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 22px;
  right: 22px;
  bottom: 22px;
  width: min(980px, calc(100% - 44px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,250,241,.18);
  border-radius: 16px;
  color: var(--cream);
  background: rgba(23,18,15,.94);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255,250,241,.72);
  line-height: 1.55;
}

.cookie-banner a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--champagne);
  font-weight: 850;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .main-nav, .nav-actions .button-dark { display: none; }
  .menu-button { display: block; }
  .nav-shell { grid-template-columns: auto auto; }
  .nav-actions { justify-self: end; }
  .atelier-hero-content, .editorial-head, .lab-grid, .cms-grid, .page-hero-grid, .content-layout, .form-grid, .benefit-grid, .feature-section-grid { grid-template-columns: 1fr; }
  .audit-board { grid-template-columns: repeat(3, 1fr); }
  .authority-grid, .footer-grid { grid-template-columns: 1fr; }
  .industry-list { grid-template-columns: repeat(2, 1fr); }
  .final-grid { grid-template-columns: 1fr; }
  .cms-card { position: static; }
  .content-aside { position: static; }
}

@media (max-width: 720px) {
  .shell, .narrow { width: min(100% - 24px, 1240px); }
  .brand small, .language-link { display: none; }
  .site-header { top: 10px; }
  .atelier-hero { min-height: auto; padding: 118px 0 30px; }
  .hero-photo { position: relative; height: 56vh; min-height: 390px; order: 1; margin-bottom: 22px; }
  .hero-photo::after { background: linear-gradient(0deg, rgba(246,239,227,.92), rgba(246,239,227,.18)); }
  .atelier-hero-content { display: flex; flex-direction: column; }
  .hero-statement h1 { font-size: clamp(34px, 10vw, 52px); line-height: .98; }
  .hero-intro { padding: 18px; }
  .hero-intro .audit-console { grid-template-columns: 1fr; }
  .hero-intro .audit-console label:first-child,
  .hero-intro .audit-console button { grid-column: auto; }
  .proof-grid { justify-content: flex-start; }
  .proof-grid strong { min-height: 38px; white-space: normal; }
  .atelier-section { padding: 76px 0; }
  .audit-board, .industry-list { grid-template-columns: 1fr; }
  .audit-tile { min-height: 104px; }
  .authority-card { min-height: 430px; }
  .page-hero { padding: 124px 0 56px; }
  .page-hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .page-signal-card, .content-main, .aside-card, .audit-form { border-radius: 14px; }
  .section { padding: 72px 0; }
  .form-grid { gap: 24px; }
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .button {
    flex: 1;
  }
}

.cms-card > .cms-universal:not(.cms-visible):not(.cms-rental):not(.cms-replace):not(.cms-new-company),
.industry-index .editorial-head > p:not(.atelier-label):not(.industry-all),
.audit-more b:not(.audit-more-visible) {
  display: none;
}
