:root {
  --paper: #f7f3ea;
  --paper-soft: #fbf9f4;
  --sand: #d8c7ad;
  --travertine: #b89c78;
  --sage: #8e9b82;
  --sage-soft: #e6e7de;
  --olive: #30352f;
  --ink: #1e2421;
  --muted: #676b64;
  --line: rgba(48, 53, 47, 0.18);
  --white-line: rgba(247, 243, 234, 0.22);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  --font-ui: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

button,
input,
textarea {
  font: inherit;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
}

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

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

::selection {
  background: var(--sage);
  color: var(--paper);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 112px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(48, 53, 47, 0.12);
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.95;
}

.brand-caption {
  margin-top: 7px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3.6vw, 4.5rem);
  font-size: 0.91rem;
}

.desktop-nav a,
.header-meta a {
  position: relative;
}

.desktop-nav a::after,
.header-meta a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.header-meta a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1.3rem, 2.5vw, 3.5rem);
  font-size: 0.72rem;
}

.header-meta a {
  font-size: 0.91rem;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: var(--paper);
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  animation: hero-scale 10s ease-out both;
}

.hero-wash {
  background:
    linear-gradient(
      90deg,
      rgba(247, 243, 234, 1) 0%,
      rgba(247, 243, 234, 0.99) 27%,
      rgba(247, 243, 234, 0.78) 43%,
      rgba(247, 243, 234, 0.14) 62%,
      rgba(247, 243, 234, 0) 78%
    ),
    linear-gradient(
      180deg,
      rgba(247, 243, 234, 0.42) 0,
      rgba(247, 243, 234, 0) 28%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 55vw);
  padding: 205px 0 200px 4.3vw;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  line-height: 1.5;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 5.7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero-copy {
  max-width: 600px;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 520;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--olive);
  box-shadow: 0 12px 26px rgba(48, 53, 47, 0.15);
  color: var(--paper);
}

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

.button-outline {
  border-color: var(--travertine);
  background: rgba(247, 243, 234, 0.48);
  backdrop-filter: blur(8px);
}

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

.control-strip {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 58px;
  left: 4vw;
  display: grid;
  max-width: 1000px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(216, 199, 173, 0.8);
  border-radius: 20px;
  background: rgba(247, 243, 234, 0.82);
  box-shadow: 0 16px 46px rgba(30, 36, 33, 0.1);
  backdrop-filter: blur(22px);
}

.control-strip > div {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 18px;
  padding: 22px 27px;
}

.control-strip > div + div {
  border-left: 1px solid rgba(48, 53, 47, 0.17);
}

.strip-index {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(142, 155, 130, 0.65);
  border-radius: 50%;
  background: rgba(142, 155, 130, 0.14);
  color: var(--olive);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
}

.section {
  padding: 130px 5vw;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 72px;
}

.section-heading h2,
.quality-heading h2,
.fit-panel h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 9vw;
}

.split-heading > p:last-child {
  margin: 0 0 8px;
}

.research {
  background: var(--paper-soft);
}

.research-grid {
  display: grid;
  max-width: 1450px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.research-grid article {
  min-height: 320px;
  padding: 42px;
  background: var(--paper-soft);
}

.research-grid strong {
  display: block;
  margin-bottom: 70px;
  color: var(--travertine);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.research-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
}

.research-grid p {
  max-width: 340px;
  margin: 14px 0 0;
  color: var(--muted);
}

.research-grid .research-note {
  display: flex;
  min-height: 220px;
  grid-column: 1 / -1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  background: var(--olive);
  color: var(--paper);
}

.research-note p {
  max-width: 820px;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  line-height: 1.25;
}

.research-links {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}

.research-note a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--paper);
  color: rgba(247, 243, 234, 0.75);
  font-size: 0.78rem;
}

.section-stone {
  background:
    radial-gradient(circle at 85% 10%, rgba(184, 156, 120, 0.16), transparent 34%),
    var(--paper);
}

.concern-list {
  border-top: 1px solid var(--line);
}

.concern-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(260px, 0.65fr) minmax(
      520px,
      1.5fr
    );
  gap: 4vw;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.concern-title {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
}

.concern-title > span,
.team-grid article > span {
  color: var(--travertine);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
}

.concern-title h3 {
  max-width: 430px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  font-weight: 400;
  line-height: 1.08;
}

.concern-pain {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.concern-answer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px;
}

.concern-answer span,
.stage-body span,
.stage-rule > span,
.quality-comparison article > span,
.control-layers article > span {
  display: block;
  margin-bottom: 10px;
  color: var(--travertine);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.concern-answer p {
  margin: 0;
  line-height: 1.65;
}

.control {
  background: var(--paper-soft);
}

.dashboard-shell {
  overflow: hidden;
  max-width: 1450px;
  border: 1px solid rgba(48, 53, 47, 0.16);
  border-radius: 26px;
  background: #ede9df;
  box-shadow: 0 28px 80px rgba(48, 53, 47, 0.1);
}

.dashboard-topline {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.dashboard-topline > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(142, 155, 130, 0.15);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
}

.dashboard-main {
  min-height: 460px;
  padding: clamp(30px, 4vw, 62px);
}

.dashboard-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.dashboard-title span {
  color: var(--muted);
  font-size: 0.75rem;
}

.dashboard-title h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.dashboard-title > strong {
  color: var(--sage);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.9;
}

.progress-track {
  height: 7px;
  margin: 55px 0 50px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(48, 53, 47, 0.12);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--sage);
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.dashboard-kpis > div {
  display: flex;
  min-height: 140px;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 24px;
}

.dashboard-kpis > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.dashboard-kpis span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.dashboard-kpis strong {
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 560;
}

.dashboard-kpis small {
  margin-top: 5px;
  color: var(--muted);
}

.dashboard-decisions {
  padding: 45px 36px;
  border-left: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.7);
}

.decision-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.decision-header strong {
  color: var(--travertine);
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 400;
}

.dashboard-decisions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-decisions li {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.dashboard-decisions li span {
  color: var(--muted);
  font-size: 0.68rem;
}

.dashboard-decisions li p {
  margin: 7px 0 0;
  line-height: 1.5;
}

.control-layers {
  display: grid;
  max-width: 1450px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.control-layers article {
  min-height: 260px;
  padding: 36px 30px;
}

.control-layers article + article {
  border-left: 1px solid var(--line);
}

.control-layers h3 {
  margin: 56px 0 13px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.control-layers p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.section-ink {
  background:
    radial-gradient(circle at 12% 0%, rgba(142, 155, 130, 0.15), transparent 35%),
    var(--ink);
  color: var(--paper);
}

.section-ink .eyebrow,
.section-ink .section-heading > p:last-child {
  color: rgba(247, 243, 234, 0.62);
}

.stage-list {
  border-top: 1px solid var(--white-line);
}

.stage-item {
  border-bottom: 1px solid var(--white-line);
}

.stage-item summary {
  display: grid;
  min-height: 112px;
  grid-template-columns: 70px 1fr auto 36px;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

.stage-item summary::-webkit-details-marker {
  display: none;
}

.stage-number,
.stage-time {
  color: rgba(247, 243, 234, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.stage-time {
  min-width: 105px;
  text-align: right;
}

.stage-item summary h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  font-weight: 400;
}

.stage-toggle {
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.stage-item[open] .stage-toggle {
  transform: rotate(45deg);
}

.stage-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 6vw;
  padding: 8px 60px 50px 94px;
}

.stage-body p {
  margin: 0;
  color: rgba(247, 243, 234, 0.76);
  line-height: 1.7;
}

.stage-body > div p {
  color: var(--paper);
  font-size: 0.92rem;
}

.stage-rule {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  margin-top: 70px;
  padding: 38px;
  border: 1px solid rgba(184, 156, 120, 0.46);
  border-radius: 16px;
  background: rgba(184, 156, 120, 0.06);
}

.stage-rule p {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.35vw, 2.5rem);
  line-height: 1.3;
}

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

.quality-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7vw;
  align-items: start;
}

.quality-heading {
  position: sticky;
  top: 40px;
}

.quality-heading h2 {
  font-size: clamp(3rem, 4.5vw, 5rem);
}

.quality-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.quality-comparison article {
  min-height: 520px;
  padding: clamp(30px, 4vw, 58px);
  background: var(--paper-soft);
}

.quality-comparison article:last-child {
  background: var(--sage-soft);
}

.quality-comparison h3 {
  margin: 100px 0 45px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  font-weight: 400;
  line-height: 1.05;
}

.quality-comparison ul,
.fit-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-comparison li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.section-sage {
  background: var(--sage-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-grid article {
  min-height: 300px;
  padding: 34px 28px;
}

.team-grid article + article {
  border-left: 1px solid var(--line);
}

.team-grid h3 {
  min-height: 76px;
  margin: 65px 0 18px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
}

.team-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.fit {
  background: var(--paper-soft);
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  gap: 9vw;
  padding: clamp(50px, 7vw, 110px);
  border-radius: 30px;
  background:
    linear-gradient(rgba(30, 36, 33, 0.82), rgba(30, 36, 33, 0.9)),
    var(--hero-image) center / cover;
  color: var(--paper);
}

.fit-panel h2 {
  font-size: clamp(2.8rem, 4.6vw, 5rem);
}

.fit-panel .eyebrow {
  color: rgba(247, 243, 234, 0.62);
}

.fit-panel li {
  padding: 21px 0;
  border-top: 1px solid rgba(247, 243, 234, 0.22);
  font-size: 1.05rem;
}

.fit-panel li:last-child {
  border-bottom: 1px solid rgba(247, 243, 234, 0.22);
}

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

.faq-list {
  max-width: 1450px;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: grid;
  min-height: 104px;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span:first-child {
  color: var(--travertine);
  font-size: 0.7rem;
}

.faq-list summary > span:last-child {
  font-family: var(--font-display);
  font-size: 2rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary > span:last-child {
  transform: rotate(45deg);
}

.faq-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2.25rem);
  font-weight: 400;
}

.faq-list details > p {
  max-width: 920px;
  margin: 0;
  padding: 0 40px 38px 60px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.contact {
  padding-top: 50px;
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  gap: 8vw;
  padding: clamp(55px, 8vw, 120px);
  border-radius: 30px;
  background: var(--olive);
  color: var(--paper);
}

.contact h2 {
  max-width: 900px;
}

.contact .eyebrow {
  color: rgba(247, 243, 234, 0.58);
}

.contact-copy {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(247, 243, 234, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

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

.button-ghost {
  border-color: rgba(247, 243, 234, 0.38);
  color: var(--paper);
}

.button-ghost:hover {
  background: rgba(247, 243, 234, 0.08);
}

.text-link {
  width: fit-content;
  margin: 16px auto 0;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.5);
  color: rgba(247, 243, 234, 0.7);
  font-size: 0.84rem;
}

.contact-meta {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 50px;
  border-top: 1px solid rgba(247, 243, 234, 0.18);
  color: rgba(247, 243, 234, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.17em;
}

footer {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: end;
  gap: 40px;
  padding: 55px 5vw;
  background: var(--paper);
}

.footer-brand .brand-name {
  font-size: 2.3rem;
}

footer p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

footer > span {
  color: var(--muted);
  font-size: 0.72rem;
}

@keyframes hero-scale {
  from {
    transform: scale(1.025);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-content {
    width: 68vw;
  }

  .concern-card {
    grid-template-columns: minmax(280px, 0.9fr) minmax(220px, 0.6fr);
  }

  .concern-answer {
    grid-column: 1 / -1;
    padding-left: 54px;
  }

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

  .team-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .team-grid article:nth-child(5) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 88px;
  }

  .header-meta span {
    display: none;
  }

  .brand-name {
    font-size: 2rem;
  }

  .brand-caption {
    font-size: 0.48rem;
  }

  .hero {
    min-height: 840px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-wash {
    background:
      linear-gradient(
        90deg,
        rgba(247, 243, 234, 0.98) 0,
        rgba(247, 243, 234, 0.88) 62%,
        rgba(247, 243, 234, 0.25) 100%
      ),
      linear-gradient(0deg, rgba(247, 243, 234, 0.48), transparent 48%);
  }

  .hero-content {
    width: 84vw;
    padding-top: 170px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 9vw, 5.3rem);
  }

  .control-strip {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .control-strip > div {
    min-height: 65px;
    padding: 12px 18px;
  }

  .control-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .strip-index {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 95px 5vw;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .split-heading,
  .quality-grid,
  .fit-panel,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .research-grid .research-note {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .research-links {
    align-items: flex-start;
  }

  .concern-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .concern-answer {
    grid-column: auto;
    padding-left: 54px;
  }

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

  .dashboard-decisions {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .control-layers article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .control-layers article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .stage-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 70px;
  }

  .quality-heading {
    position: static;
  }

  .fit-panel {
    padding: 55px 40px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 20px;
  }

  .header-meta a {
    font-size: 0.76rem;
  }

  .hero {
    min-height: 850px;
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero-wash {
    background:
      linear-gradient(
        180deg,
        rgba(247, 243, 234, 0.98) 0,
        rgba(247, 243, 234, 0.94) 54%,
        rgba(247, 243, 234, 0.24) 100%
      ),
      linear-gradient(90deg, rgba(247, 243, 234, 0.75), transparent);
  }

  .hero-content {
    width: auto;
    padding: 145px 20px 270px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.5rem);
  }

  .hero-copy {
    font-size: 0.96rem;
  }

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

  .button {
    width: 100%;
  }

  .control-strip {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .section {
    padding: 78px 20px;
  }

  .section-heading h2,
  .quality-heading h2,
  .fit-panel h2,
  .contact h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .research-grid article {
    min-height: auto;
    padding: 32px 26px;
  }

  .research-grid strong {
    margin-bottom: 42px;
  }

  .research-grid .research-note {
    min-height: 280px;
  }

  .research-note p {
    font-size: 1.45rem;
  }

  .concern-answer {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .dashboard-topline {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .dashboard-main {
    min-height: auto;
    padding: 28px 22px;
  }

  .dashboard-title {
    flex-direction: column;
  }

  .dashboard-title > strong {
    order: -1;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-kpis > div {
    min-height: 110px;
  }

  .dashboard-kpis > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .dashboard-decisions {
    padding: 30px 24px;
  }

  .control-layers {
    grid-template-columns: 1fr;
  }

  .control-layers article {
    min-height: 220px;
  }

  .control-layers article + article,
  .control-layers article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stage-item summary {
    min-height: 98px;
    grid-template-columns: 35px 1fr 25px;
    gap: 12px;
  }

  .stage-time {
    display: none;
  }

  .stage-item summary h3 {
    font-size: 1.45rem;
  }

  .stage-body {
    gap: 24px;
    padding: 0 0 38px 47px;
  }

  .stage-rule {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .quality-comparison {
    grid-template-columns: 1fr;
  }

  .quality-comparison article {
    min-height: auto;
    padding: 38px 28px;
  }

  .quality-comparison h3 {
    margin-top: 60px;
  }

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

  .team-grid article {
    min-height: 230px;
  }

  .team-grid article + article,
  .team-grid article:nth-child(4),
  .team-grid article:nth-child(5) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .team-grid h3 {
    min-height: auto;
    margin-top: 45px;
  }

  .fit-panel {
    padding: 42px 24px;
  }

  .faq-list summary {
    grid-template-columns: 38px 1fr 24px;
    gap: 6px;
  }

  .faq-list details > p {
    padding: 0 0 34px 38px;
  }

  .contact-card {
    padding: 46px 24px;
  }

  .contact-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  footer {
    padding: 45px 20px;
  }
}

@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;
  }
}
