:root {
  --bg: #11100d;
  --bg-deep: #090907;
  --panel: #181510;
  --paper: #f2eadc;
  --paper-2: #e4d5c0;
  --ink: #fbf4e8;
  --muted: #b8ad9b;
  --dark-text: #18140f;
  --soft-text: #5d5247;
  --line: rgba(242, 234, 220, 0.15);
  --line-dark: rgba(24, 20, 15, 0.15);
  --accent: #a91f18;
  --brass: #c89b46;
  --green: #35594f;
  --blue: #22343f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Aptos", "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(242, 234, 220, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(242, 234, 220, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, #0b0b09 0%, #11100d 54%, #1a150f 100%);
  background-size: 56px 56px, 56px 56px, auto;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  margin-bottom: 28px;
  color: var(--paper);
  font-size: clamp(42px, 4.9vw, 68px);
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

.h1-method {
  font-size: 0.9em;
}

.h1-method span {
  display: inline;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5.1vw, 72px);
}

h3 {
  font-size: clamp(30px, 3.3vw, 48px);
}

h4 {
  font-size: 31px;
}

#method,
#experience,
#products,
#cases,
#faq,
#lead {
  scroll-margin-top: 92px;
}

.site-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(200, 155, 70, 0.08) 42% 43%, transparent 43% 100%),
    linear-gradient(30deg, transparent 0 62%, rgba(169, 31, 24, 0.08) 62% 63%, transparent 63% 100%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.section-shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav a,
.header-cta,
.telegram-link,
.text-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 155, 70, 0.55);
  color: var(--brass);
  font-family: var(--serif);
  font-size: 18px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  line-height: 1;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.header-cta:hover,
.telegram-link:hover,
.text-link:hover {
  color: var(--paper);
}

.header-cta {
  justify-self: end;
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: 58px;
  align-items: center;
  min-height: min(820px, calc(100vh - 72px));
  padding: 58px 0 72px;
}

.hero-copy {
  max-width: 760px;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--paper-2);
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 44px rgba(169, 31, 24, 0.34);
}

.button.secondary {
  border-color: rgba(242, 234, 220, 0.28);
  color: var(--paper);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 44px 0 0;
  border: 1px solid var(--line);
  background: rgba(242, 234, 220, 0.045);
}

.hero-metrics div {
  min-width: 0;
  padding: 18px;
}

.hero-metrics div + div {
  border-left: 1px solid var(--line);
}

.hero-metrics dt {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(200, 155, 70, 0.34);
  padding: 16px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 586px;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.06) saturate(0.92);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: -22px;
  bottom: 42px;
  width: min(300px, calc(100% - 34px));
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.9);
  backdrop-filter: blur(16px);
}

.hero-card span,
.case-card span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.05;
}

.signature-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--dark-text);
}

.signature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: 34px 0;
}

.signature-layout p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.06;
}

.signature-layout ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signature-layout li {
  padding: 8px 10px;
  border: 1px solid var(--line-dark);
  color: var(--soft-text);
  font-size: 13px;
  font-weight: 800;
}

.wayfinder,
.authority,
.reviews-section,
.faq {
  padding: 104px 0;
}

.section-title {
  display: block;
  max-width: 980px;
  margin-bottom: 36px;
}

.section-title h2 {
  max-width: 940px;
  font-size: clamp(40px, 4.7vw, 66px);
}

.section-title.light h2 {
  color: var(--paper);
}

.cases-section .section-title h2,
.faq .section-title h2 {
  font-size: clamp(36px, 4.9vw, 64px);
}

.wayfinder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(242, 234, 220, 0.055);
  overflow: hidden;
}

.route-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-right: 1px solid rgba(200, 155, 70, 0.45);
  border-bottom: 1px solid rgba(200, 155, 70, 0.45);
  content: "";
}

.route-card.accent {
  background: linear-gradient(135deg, rgba(169, 31, 24, 0.22), rgba(242, 234, 220, 0.055));
}

.route-card span,
.method-board span,
.product-tab span,
.product-kicker {
  color: var(--brass);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.route-card h3 {
  margin: 58px 0 16px;
}

.route-card p,
.method-statement p,
.method-board p,
.authority-copy p,
.field-layout p,
.faq p {
  color: var(--paper-2);
}

.route-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brass);
  font-weight: 900;
  text-decoration: none;
}

.route-card a::after,
.text-link::after {
  margin-left: 8px;
  content: "→";
}

.method-section {
  padding: 112px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(53, 89, 79, 0.22), transparent 34%),
    linear-gradient(180deg, #1a1712 0%, #0d0c0a 100%);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.08fr);
  gap: 44px;
  align-items: start;
}

.method-statement {
  position: sticky;
  top: 100px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(242, 234, 220, 0.055);
}

.method-statement p:last-child {
  margin-bottom: 0;
  font-size: 18px;
}

.method-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.method-board article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(242, 234, 220, 0.06);
}

.method-board h3 {
  margin: 50px 0 14px;
  font-size: 32px;
}

.authority {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: stretch;
}

.authority-media {
  min-height: 660px;
  background: var(--panel);
}

.authority-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  filter: saturate(0.9);
}

.authority-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.proof-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(242, 234, 220, 0.055);
}

.proof-grid strong {
  display: block;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.07;
}

.proof-grid p {
  margin: 16px 0 0;
}

.product-section {
  padding: 108px 0 92px;
  background: linear-gradient(180deg, #f3ecdf 0%, #e3d3bd 100%);
  color: var(--dark-text);
}

.product-section .eyebrow,
.lead-section .eyebrow,
.signature-band .eyebrow {
  color: var(--accent);
}

.product-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 32px;
}

.product-top p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--soft-text);
  font-size: 18px;
}

.product-studio {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 30px 100px rgba(24, 20, 15, 0.13);
}

.product-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  background: var(--panel);
}

.product-tab {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(242, 234, 220, 0.14);
  background: transparent;
  color: var(--paper-2);
  cursor: pointer;
  text-align: left;
}

.product-tab.is-active {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--dark-text);
}

.product-tab.is-active span {
  color: var(--accent);
}

.product-panels {
  min-width: 0;
  padding: 26px;
}

.product-panel {
  display: none;
}

.product-panel.is-active {
  display: block;
  animation: panelIn 220ms ease both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.panel-head {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.panel-head h3 {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--dark-text);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.offer-card,
.library-card,
.choice-grid article {
  padding: 24px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.48);
}

.offer-card.hero-offer {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(169, 31, 24, 0.18), transparent 44%),
    var(--panel);
  color: var(--paper);
}

.offer-card h4,
.library-card h4,
.choice-grid h4 {
  margin: 10px 0 14px;
}

.offer-card p,
.offer-card li,
.library-card p,
.library-card li,
.choice-grid p,
.product-note {
  color: var(--soft-text);
}

.offer-card.hero-offer p,
.offer-card.hero-offer li {
  color: var(--paper-2);
}

.offer-card ul,
.library-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.offer-card dl {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.offer-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid var(--line-dark);
}

.offer-card dt {
  color: #6a5c4e;
  font-weight: 900;
}

.offer-card dd {
  margin: 0;
  text-align: right;
}

.price-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.price-pills span {
  padding: 8px 10px;
  border: 1px solid rgba(242, 234, 220, 0.2);
  color: var(--paper-2);
  font-size: 13px;
  font-weight: 900;
}

.product-cta {
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-weight: 900;
}

.library-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.8fr));
  gap: 14px;
}

.library-card.feature {
  background:
    linear-gradient(135deg, rgba(53, 89, 79, 0.22), transparent 46%),
    var(--panel);
  color: var(--paper);
}

.library-card.feature p,
.library-card.feature li {
  color: var(--paper-2);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-note {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.36);
  font-size: 14px;
}

.cases-section {
  padding: 108px 0;
  background: var(--bg);
}

.cases-section .section-title h2 {
  max-width: 920px;
  font-size: clamp(40px, 4.8vw, 64px);
}

.cases-board {
  display: grid;
  grid-template-columns: minmax(340px, 0.98fr) repeat(2, minmax(260px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.case-brief,
.case-card {
  border: 1px solid var(--line);
  background: rgba(242, 234, 220, 0.055);
}

.case-brief {
  grid-row: span 2;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(20, 18, 15, 0.82), rgba(20, 18, 15, 0.96)),
    url("/assets/field-project.jpg") center / cover;
}

.case-brief h3 {
  max-width: 650px;
  margin: 18px 0 22px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 0.94;
}

.case-brief p {
  max-width: 520px;
  margin: 0;
  color: var(--paper-2);
}

.case-brief-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 34px;
}

.case-brief-points span {
  border: 1px solid rgba(242, 234, 220, 0.24);
  padding: 12px 14px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card > div {
  position: relative;
  z-index: 1;
}

.case-card h3 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 2.05vw, 36px);
  line-height: 0.96;
}

.case-card p {
  margin-bottom: 0;
  color: var(--paper-2);
}

.case-card {
  position: relative;
  display: flex;
  min-height: 216px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(190, 150, 73, 0.16), transparent 32%),
    rgba(242, 234, 220, 0.055);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(190, 150, 73, 0.74);
  pointer-events: none;
}

.case-card img {
  display: none;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.review-feature,
.review-card {
  border: 1px solid var(--line);
  background: rgba(242, 234, 220, 0.055);
}

.review-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.56fr);
  min-height: 380px;
  overflow: hidden;
}

.review-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.review-feature-copy span,
.review-card span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.review-feature-copy h3 {
  margin: 38px 0 24px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.95;
}

.review-feature-copy p {
  margin: 0;
  color: var(--paper-2);
  font-size: 17px;
}

.review-shot {
  display: grid;
  min-height: 380px;
  place-items: center;
  padding: 18px;
  background: var(--bg-deep);
}

.review-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.review-quotes {
  display: grid;
  gap: 14px;
}

.review-card {
  display: flex;
  min-height: 134px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.review-card p {
  margin: 0 0 22px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.04;
}

.review-card-wide {
  min-height: 172px;
}

.field-proof {
  padding: 100px 0;
  background: var(--paper);
  color: var(--dark-text);
}

.field-proof .eyebrow {
  color: var(--accent);
}

.field-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.field-layout p {
  color: var(--soft-text);
  font-size: 18px;
}

.field-layout img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(24, 20, 15, 0.2);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  background: rgba(242, 234, 220, 0.055);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0;
  padding: 0 24px 22px;
}

.lead-section {
  padding: 106px 0;
  background: linear-gradient(180deg, #f2eadc 0%, #dfcfb8 100%);
  color: var(--dark-text);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.76fr);
  gap: 46px;
  align-items: stretch;
}

.lead-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.lead-copy h2 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(46px, 4.7vw, 70px);
  line-height: 0.98;
}

.lead-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--soft-text);
  font-size: 18px;
}

.lead-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 46px;
}

.lead-points span {
  border-top: 1px solid rgba(24, 20, 15, 0.22);
  padding-top: 12px;
  color: var(--dark-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(242, 234, 220, 0.14);
  background: var(--panel);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(242, 234, 220, 0.22);
  border-radius: 0;
  background: rgba(242, 234, 220, 0.075);
  color: var(--paper);
  outline: none;
  padding: 13px 14px;
}

.lead-form select option {
  background: var(--panel);
}

.lead-form textarea {
  resize: vertical;
}

.checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  column-gap: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.checkbox input {
  width: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.checkbox a,
.telegram-link {
  color: var(--brass);
  font-weight: 900;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--paper-2);
}

.legal-disclaimer {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 40px;
  margin-bottom: 70px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(242, 234, 220, 0.045);
}

.legal-disclaimer strong {
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-disclaimer p {
  margin: 0;
  color: var(--paper-2);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 28px 98px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 24;
  display: flex;
  align-items: center;
  max-width: calc(100% - 36px);
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.sticky-cta span {
  display: none;
}

.sticky-cta .button {
  min-height: 38px;
  padding: 9px 18px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible,
.site-header[data-reveal],
.hero [data-reveal] {
  opacity: 1;
  transform: none;
}

.legal-page {
  background: var(--paper);
  color: var(--dark-text);
}

.legal-page .site-header {
  background: rgba(242, 234, 220, 0.92);
}

.legal-page .brand,
.legal-page .nav,
.legal-page .header-cta {
  color: var(--dark-text);
}

.legal-page .brand small,
.legal-page .nav {
  color: var(--soft-text);
}

.legal-doc {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-doc h1 {
  color: var(--dark-text);
  font-size: clamp(40px, 6vw, 78px);
}

.legal-doc h2 {
  margin-top: 44px;
  color: var(--dark-text);
  font-size: 34px;
}

.legal-doc p,
.legal-doc li {
  color: #423b34;
  font-size: 18px;
}

.legal-doc a {
  color: #8e1611;
}

.legal-box {
  padding: 20px;
  border: 1px solid var(--line-dark);
  background: rgba(24, 20, 15, 0.05);
}

@media (max-width: 1060px) {
  .hero,
  .signature-layout,
  .method-layout,
  .authority,
  .product-top,
  .field-layout,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .method-statement {
    position: static;
  }

  .product-studio {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .product-tab {
    min-width: 0;
  }

  .section-title,
  .offer-card.hero-offer,
  .library-grid,
  .cases-board {
    grid-template-columns: 1fr;
  }

  .case-brief {
    grid-row: auto;
    min-height: 420px;
  }

  .reviews-layout,
  .review-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .legal-doc {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 11px 14px;
  }

  .brand-copy small,
  .nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    gap: 32px;
    padding: 44px 0 58px;
  }

  h1 {
    font-size: clamp(38px, 10.6vw, 48px);
  }

  .h1-method {
    font-size: 0.72em;
    white-space: nowrap;
  }

  .h1-method span {
    display: inline;
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section-title h2 {
    font-size: clamp(32px, 8.5vw, 40px);
  }

  h3 {
    font-size: 31px;
  }

  h4 {
    font-size: 28px;
  }

  .hero-lead,
  .lead-copy p,
  .field-layout p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-media {
    order: -1;
    min-height: 450px;
    padding: 10px;
  }

  .hero-media img {
    min-height: 430px;
  }

  .hero-card {
    right: 4px;
    bottom: 20px;
    width: min(270px, calc(100% - 20px));
  }

  .wayfinder,
  .authority,
  .reviews-section,
  .faq,
  .method-section,
  .product-section,
  .cases-section,
  .lead-section,
  .field-proof {
    padding: 70px 0;
  }

  .wayfinder-grid,
  .method-board,
  .proof-grid,
  .offer-grid,
  .choice-grid,
  .faq-grid,
  .reviews-layout,
  .review-feature,
  .lead-points {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 0;
  }

  .route-card h3 {
    margin-top: 40px;
  }

  .method-board article {
    min-height: 0;
  }

  .authority-media,
  .authority-media img,
  .review-shot {
    min-height: 420px;
  }

  .review-feature-copy {
    padding: 24px;
  }

  .review-feature-copy h3 {
    margin-top: 26px;
  }

  .product-panels {
    padding: 16px;
  }

  .product-tabs {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .product-tab {
    grid-template-columns: 28px 1fr;
    gap: 9px;
    min-height: 62px;
    min-width: 0;
    padding: 10px;
  }

  .product-tab span {
    font-size: 13px;
  }

  .lead-copy h2 {
    font-size: clamp(38px, 10vw, 50px);
    margin-bottom: 20px;
  }

  .lead-points {
    padding-top: 28px;
  }

  .case-brief {
    min-height: 0;
    padding: 24px;
  }

  .case-brief h3 {
    font-size: 34px;
  }

  .case-brief-points {
    grid-template-columns: 1fr;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-card img {
    height: 220px;
  }

  .field-layout img {
    height: 330px;
  }

  .legal-disclaimer {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: none;
  }

  .site-footer {
    display: grid;
    padding: 28px 18px 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
