:root {
  --ink: #17221d;
  --ink-soft: #26332d;
  --forest: #0f2b22;
  --forest-light: #183a2f;
  --paper: #f3f0e9;
  --paper-warm: #e7e0d3;
  --white: #fffdf8;
  --gold: #b6945f;
  --gold-light: #d7bd91;
  --line: rgba(23, 34, 29, 0.16);
  --muted: #68716c;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(13, 25, 20, 0.14);
  --radius: 2px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(56px, 8.8vw, 138px);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 76px);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -0.025em;
}

.lead {
  max-width: 690px;
  color: #52605a;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.section {
  padding: 120px 0;
}

.section-dark {
  color: var(--white);
  background: var(--forest);
}

.section-dark .lead,
.section-dark .muted {
  color: rgba(255, 253, 248, 0.66);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-header > :first-child {
  max-width: 780px;
}

.section-header h2 {
  margin-bottom: 0;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2197";
  font-size: 16px;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.button-light {
  color: var(--forest);
  border-color: var(--white);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  border-color: var(--gold);
  background: var(--gold);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement {
  position: relative;
  z-index: 50;
  padding: 8px 20px;
  color: var(--paper);
  background: var(--ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 33px;
  left: 0;
  width: 100%;
  color: var(--white);
}

.site-header.inner-header {
  position: relative;
  top: 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.nav-shell {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand span {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.33em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
  margin-left: auto;
}

.nav-links > a {
  position: relative;
  padding: 34px 0 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links > a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links > a:hover::after,
.nav-links > a.active::after {
  transform: scaleX(1);
}

.nav-links > .nav-quote {
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.inner-header .nav-links > .nav-quote {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

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

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

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 13, 0.86) 0%, rgba(7, 17, 13, 0.48) 42%, rgba(7, 17, 13, 0.08) 78%),
    linear-gradient(0deg, rgba(7, 17, 13, 0.48), transparent 52%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 900px;
  padding-top: 170px;
  padding-bottom: 70px;
  align-items: end;
}

.hero-copy {
  width: min(770px, 76%);
}

.hero-copy h1 span {
  display: block;
  color: var(--gold-light);
  font-size: 0.58em;
  font-style: italic;
  letter-spacing: -0.035em;
}

.hero-copy .lead {
  max-width: 560px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-side-note {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(8, 18, 14, 0.42);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-bar {
  color: var(--white);
  background: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 110px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-number {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(15, 43, 34, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-list {
  display: grid;
  margin: 42px 0;
  border-top: 1px solid var(--line);
}

.feature-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-item b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.slab-preview {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.slab-preview a {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
}

.slab-preview a:first-child,
.slab-preview a:nth-child(4) {
  grid-column: span 8;
}

.slab-preview img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.slab-preview a:hover img {
  transform: scale(1.03);
}

.slab-preview-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(9, 20, 16, 0.76);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.application-card {
  position: relative;
  min-height: 560px;
  color: var(--white);
  overflow: hidden;
}

.application-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.application-card:hover img {
  transform: scale(1.025);
}

.application-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 17, 13, 0.76), transparent 58%);
  content: "";
}

.application-copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.application-copy h3 {
  margin-bottom: 7px;
}

.application-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.visualization-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.91);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step {
  min-height: 290px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step:last-child {
  border-right: 0;
}

.process-step .step-number {
  display: block;
  margin-bottom: 68px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 32px;
}

.process-step h3 {
  font-size: 30px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.cta {
  position: relative;
  padding: 130px 0;
  color: var(--white);
  background: var(--forest-light);
  overflow: hidden;
}

.cta::before {
  position: absolute;
  top: -300px;
  right: -200px;
  width: 750px;
  height: 750px;
  border: 1px solid rgba(215, 189, 145, 0.15);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.cta h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.page-hero {
  padding: 110px 0 90px;
  color: var(--white);
  background: var(--forest);
}

.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(58px, 8vw, 116px);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 80px;
  align-items: end;
}

.page-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero-stats div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero-stats strong,
.page-hero-stats span {
  display: block;
}

.page-hero-stats strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 28px;
}

.page-hero-stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.spec-item {
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-item span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.spec-item strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
}

.note-panel {
  padding: 36px;
  border-left: 3px solid var(--gold);
  background: var(--paper-warm);
}

.note-panel strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 27px;
}

.note-panel p:last-child {
  margin-bottom: 0;
}

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

.filter-button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button.active {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

.slab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 22px;
}

.slab-card[hidden] {
  display: none;
}

.slab-image {
  position: relative;
  margin-bottom: 20px;
  background: var(--paper-warm);
  overflow: hidden;
}

.slab-image img {
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transition: transform 420ms ease;
}

.slab-card:hover .slab-image img {
  transform: scale(1.018);
}

.slab-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(15, 43, 34, 0.87);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.slab-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.slab-card h3 {
  margin: 0;
  font-size: 31px;
}

.slab-card-header span {
  padding-top: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slab-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}

.slab-card .button {
  min-height: 44px;
}

.slab-disclaimer {
  margin-top: 52px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  min-height: 650px;
  color: var(--white);
  overflow: hidden;
}

.project-card.wide {
  grid-column: 1 / -1;
  min-height: 720px;
}

.project-card img {
  height: 100%;
  object-fit: cover;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 16, 12, 0.82), transparent 58%);
  content: "";
}

.project-card-content {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 38px;
  left: 42px;
}

.project-card-content p {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-table td:first-child {
  font-weight: 700;
}

.price-factors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-factor {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.price-factor b {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
}

.price-factor strong {
  display: block;
  margin-bottom: 8px;
}

.price-factor p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

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

.faq-question {
  display: flex;
  width: 100%;
  padding: 28px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 27px;
  text-align: left;
}

.faq-question::after {
  content: "+";
  color: var(--gold);
  font-family: var(--sans);
  font-size: 22px;
}

.faq-item.open .faq-question::after {
  content: "\2212";
}

.faq-answer {
  display: none;
  max-width: 800px;
  padding: 0 0 28px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 120px);
}

.quote-aside {
  position: sticky;
  top: 40px;
  align-self: start;
}

.contact-method {
  display: flex;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.contact-method span:first-child {
  color: var(--muted);
}

.quote-form {
  padding: clamp(28px, 5vw, 62px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
}

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

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

.form-note {
  margin: 24px 0;
  color: var(--muted);
  font-size: 11px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  color: var(--forest);
  background: #e4eee8;
  font-size: 12px;
}

.site-footer {
  padding: 78px 0 32px;
  color: var(--white);
  background: #0a1712;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 72px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.footer-column h3 {
  margin-bottom: 24px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-top: 28px;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 50%;
  background: #1e6d50;
  box-shadow: 0 12px 34px rgba(10, 23, 18, 0.24);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(86vw, 430px);
    padding: 110px 42px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--white);
    background: var(--forest);
    transform: translateX(100%);
    transition: transform 240ms ease;
  }

  .menu-open .nav-links {
    transform: none;
  }

  .nav-links > a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 13px;
  }

  .nav-links > a::after {
    display: none;
  }

  .nav-links > .nav-quote {
    margin-top: 24px;
    padding: 0 18px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-open .inner-header .menu-toggle {
    color: var(--white);
  }

  .hero,
  .hero-content {
    min-height: 780px;
  }

  .hero-copy {
    width: 100%;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

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

  .split-media {
    max-width: 720px;
  }

  .application-grid,
  .price-factors {
    grid-template-columns: 1fr;
  }

  .application-card {
    min-height: 620px;
  }

  .process-grid,
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .page-hero-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-aside {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .section {
    padding: 82px 0;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 82px);
  }

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

  .announcement {
    padding-inline: 12px;
    font-size: 8px;
    letter-spacing: 0.11em;
  }

  .site-header {
    top: 29px;
  }

  .site-header.inner-header {
    top: 0;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand {
    font-size: 22px;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 140px;
    padding-bottom: 55px;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(7, 17, 13, 0.82), rgba(7, 17, 13, 0.32));
  }

  .hero-copy .lead {
    font-size: 17px;
  }

  .hero-side-note {
    right: 15px;
    bottom: 15px;
  }

  .trust-item {
    min-height: 96px;
    padding: 20px 18px;
  }

  .trust-item strong {
    font-size: 22px;
  }

  .slab-preview {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .slab-preview a,
  .slab-preview a:first-child,
  .slab-preview a:nth-child(4) {
    grid-column: auto;
  }

  .application-card {
    min-height: 480px;
  }

  .process-grid,
  .spec-grid,
  .slab-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
  }

  .process-step .step-number {
    margin-bottom: 38px;
  }

  .cta {
    padding: 90px 0;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-hero {
    padding: 80px 0 70px;
  }

  .page-hero h1 {
    font-size: clamp(52px, 17vw, 82px);
  }

  .project-card,
  .project-card.wide {
    grid-column: auto;
    min-height: 520px;
  }

  .project-card-content {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .comparison-scroll {
    margin-right: -15px;
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 680px;
  }

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

  .field.full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
