:root {
  --ink: #26190f;
  --espresso: #160f0a;
  --brown: #3a2618;
  --warm: #8c663e;
  --gold: #c69a54;
  --cream: #f7f0e5;
  --silk: #fffaf2;
  --line: rgba(68, 42, 25, 0.18);
  --green: #173b33;
  --wine: #622520;
  --shadow: 0 24px 80px rgba(29, 17, 9, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--silk);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  background: var(--silk);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--silk);
  background: linear-gradient(180deg, rgba(22, 15, 10, 0.82), rgba(22, 15, 10, 0.34));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand img,
.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand small {
  display: block;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.78;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(12px, 1.6vw, 22px);
  font-size: 0.77rem;
}

.nav a,
.header-cta,
.text-link {
  text-decoration: none;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover,
.header-cta:hover,
.text-link:hover {
  color: var(--gold);
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 250, 242, 0.36);
  border-radius: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--silk);
  padding: 132px 0 56px;
}

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

.hero-media {
  background-image: url("assets/charme-landscape-house.png");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 9, 5, 0.88) 0%, rgba(14, 9, 5, 0.7) 38%, rgba(14, 9, 5, 0.22) 72%, rgba(14, 9, 5, 0.46) 100%),
    linear-gradient(0deg, rgba(14, 9, 5, 0.82) 0%, rgba(14, 9, 5, 0.08) 46%, rgba(14, 9, 5, 0.62) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
}

.hero-copy {
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 5.2vw, 5.15rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2.15rem, 4.6vw, 4.7rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.lead {
  margin: 24px 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.32rem);
  max-width: 650px;
  color: rgba(255, 250, 242, 0.88);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--gold);
  color: #17100a;
}

.btn.secondary {
  background: rgba(255, 250, 242, 0.08);
  color: var(--silk);
  border-color: rgba(255, 250, 242, 0.32);
}

.btn.whatsapp {
  color: var(--green);
  background: rgba(23, 59, 51, 0.08);
  border-color: rgba(23, 59, 51, 0.2);
}

.hero-note {
  border-left: 1px solid rgba(255, 250, 242, 0.34);
  padding: 24px 0 24px 26px;
  color: rgba(255, 250, 242, 0.86);
}

.hero-note p {
  margin: 0 0 10px;
}

.hero-note p:last-child {
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
}

.section {
  padding: clamp(74px, 11vw, 140px) 0;
}

section[id] {
  scroll-margin-top: 92px;
}

.intro-band {
  background: var(--silk);
}

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

.brown,
.section-dark {
  background: var(--espresso);
  color: var(--silk);
}

.light-silk {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(247, 240, 229, 0.96)),
    url("assets/subdivision-estate-landscape.png");
  background-size: cover;
  background-position: center;
}

.section-intro {
  max-width: 780px;
}

.section-intro.narrow {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-intro p:not(.eyebrow),
.copy-block p,
.editorial-copy p,
.lifestyle-copy p,
.office-grid p,
.contact-copy p,
.value-grid p {
  font-size: 1.02rem;
  color: rgba(38, 25, 15, 0.76);
}

.dark-panel .section-intro p,
.brown p {
  color: rgba(255, 250, 242, 0.78);
}

.two-doors,
.split,
.editorial-grid,
.score-layout,
.value-grid,
.lifestyle-grid,
.office-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.trust-first {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 240, 229, 0.98)),
    url("assets/charme-landscape-house.png");
  background-size: cover;
  background-position: center;
}

.protection-section {
  background:
    linear-gradient(180deg, rgba(247, 240, 229, 0.97), rgba(255, 250, 242, 0.95)),
    url("assets/subdivision-estate-landscape.png");
  background-size: cover;
  background-position: center;
}

.protection-layout,
.protection-promise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.classic-seal-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 18px 60px rgba(38, 25, 15, 0.1);
}

.classic-seal-card p {
  margin: 24px 0 0;
  color: rgba(38, 25, 15, 0.72);
}

.protection-seal {
  transform: none;
}

.protection-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.protection-flow article,
.protection-promise > div {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 10px 40px rgba(38, 25, 15, 0.06);
}

.protection-flow article span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.protection-flow article h3,
.protection-promise h3 {
  margin-bottom: 14px;
}

.protection-flow article p,
.protection-promise p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(38, 25, 15, 0.72);
}

.protection-promise {
  align-items: stretch;
  margin-top: 16px;
}

.door-grid,
.service-list,
.difference-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.door-card,
.difference-grid article,
.faq-grid article,
.service-list article,
.range-card,
.score-card,
.room-preview article,
.steps article {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 10px 40px rgba(38, 25, 15, 0.06);
  overflow: visible;
}

.difference-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(198, 154, 84, 0.44);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 18px;
}

.difference-grid article h3,
.faq-grid article h3 {
  margin-top: 0;
}

.region-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.8);
}

.region-strip strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-right: 6px;
}

.region-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(198, 154, 84, 0.36);
  border-radius: 999px;
  color: var(--wine);
  font-weight: 800;
  background: #fffaf2;
}

.door-card.warm {
  background: #f1e4d1;
}

.principle-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.principle-strip p {
  margin: 0;
  min-height: 116px;
  padding: 22px;
  background: rgba(255, 250, 242, 0.82);
}

.principle-strip strong,
.principle-strip span {
  display: block;
}

.principle-strip strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.12;
}

.principle-strip span {
  margin-top: 8px;
  color: rgba(38, 25, 15, 0.68);
  font-size: 0.92rem;
}

.door-number {
  display: block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 30px;
}

.door-card p,
.difference-grid p,
.faq-grid p,
.service-list p,
.steps p,
.score-card p,
.range-card p {
  color: rgba(38, 25, 15, 0.72);
  overflow-wrap: anywhere;
}

.faq-grid article {
  background: rgba(255, 250, 242, 0.9);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  color: var(--wine);
}

.copy-block {
  max-width: 640px;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--brown);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-panel.tall img {
  min-height: 570px;
}

.editorial-copy {
  align-self: center;
}

.quiet-callout {
  margin-top: 24px;
  border-left: 2px solid var(--gold);
  padding: 16px 0 16px 20px;
}

.quiet-callout strong,
.quiet-callout span {
  display: block;
}

.quiet-callout span {
  margin-top: 8px;
  color: rgba(38, 25, 15, 0.72);
}

.charme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.charme-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(198, 154, 84, 0.42);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--brown);
  background: rgba(255, 250, 242, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.dark-panel {
  background:
    linear-gradient(180deg, rgba(22, 15, 10, 0.94), rgba(39, 25, 15, 0.96)),
    url("assets/subdivision-estate-landscape.png");
  background-size: cover;
  background-position: center;
  color: var(--silk);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-grid article {
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.06);
}

.stat-grid span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--gold);
  line-height: 1;
}

.stat-grid p {
  min-height: 86px;
  color: rgba(255, 250, 242, 0.85);
}

.stat-grid small,
.source-note {
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.78rem;
}

.source-note {
  margin-top: 18px;
}

.source-note a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.source-note.light {
  color: rgba(38, 25, 15, 0.58);
  text-align: center;
}

.score-card {
  background: #fffaf2;
}

.score-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.score-top span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--warm);
  font-weight: 800;
}

.score-top strong {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--green);
}

.score-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  align-items: center;
  margin: 14px 0;
  font-size: 0.9rem;
}

.score-row div {
  height: 8px;
  border-radius: 99px;
  background: rgba(38, 25, 15, 0.12);
  overflow: hidden;
}

.score-row i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.micro-disclaimer {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 14px;
  font-size: 0.86rem !important;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-seal-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin: 0 0 36px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(247, 240, 229, 0.76)),
    url("assets/charme-landscape-house.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 60px rgba(38, 25, 15, 0.08);
}

.review-seal {
  width: 230px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: var(--brown);
  border: 2px solid rgba(58, 38, 24, 0.58);
  box-shadow:
    inset 0 0 0 9px rgba(255, 250, 242, 0.62),
    inset 0 0 0 11px rgba(58, 38, 24, 0.3),
    0 18px 46px rgba(38, 25, 15, 0.18);
  background: rgba(255, 250, 242, 0.62);
  transform: rotate(-4deg);
}

.review-seal span,
.review-seal em {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
}

.review-seal strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1;
  margin: 8px 0;
  color: var(--brown);
}

.review-seal-copy h3 {
  max-width: 660px;
  margin-bottom: 16px;
}

.review-seal-copy p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(38, 25, 15, 0.74);
}

.steps article {
  min-height: 240px;
}

.steps span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.steps strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
}

.value-grid {
  align-items: center;
}

.range-card {
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.16);
  color: var(--silk);
}

.range-card > span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.range-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
  padding: 17px 0;
}

.range-line strong {
  color: var(--silk);
}

.range-line em {
  color: var(--gold);
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.42rem;
}

.room-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.room-preview article span {
  display: block;
  color: var(--warm);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  margin-bottom: 12px;
}

.room-preview article strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.18;
}

.service-grid {
  display: grid;
  gap: 40px;
}

.office-section {
  background: #efe3d2;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(22, 15, 10, 0.96), rgba(22, 15, 10, 0.85)),
    url("assets/charme-landscape-house.png");
  background-size: cover;
  background-position: center;
  color: var(--silk);
}

.contact-copy p {
  color: rgba(255, 250, 242, 0.82);
}

.quote {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 242, 0.22);
  font-family: var(--serif);
  font-size: 1.5rem !important;
  line-height: 1.2;
}

.quote span {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.client-form {
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: block;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--brown);
  margin-bottom: 14px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(58, 38, 24, 0.22);
  border-radius: 6px;
  background: #fffdfa;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
  font-size: 0.94rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(198, 154, 84, 0.38);
  border-color: var(--gold);
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 600;
  line-height: 1.45;
}

.consent input {
  margin-top: 2px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-note {
  color: rgba(38, 25, 15, 0.58);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  font-weight: 800;
}

.contact-lines a {
  color: var(--wine);
  text-decoration: none;
}

.site-footer {
  background: var(--espresso);
  color: rgba(255, 250, 242, 0.78);
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.footer-grid strong {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.5rem;
}

.footer-grid p {
  margin: 6px 0 0;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.footer-links a {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-page {
  background: var(--cream);
  color: var(--ink);
}

.legal-header {
  padding: 42px 0 24px;
  border-bottom: 1px solid var(--line);
}

.legal-header a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
}

.legal-content {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 70px;
}

.legal-content h1,
.legal-content h2 {
  font-family: var(--serif);
  font-weight: 500;
}

.legal-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
  margin: 0 0 22px;
}

.legal-content h2 {
  font-size: 1.55rem;
  margin: 34px 0 10px;
}

.legal-content p,
.legal-content li {
  color: rgba(38, 25, 15, 0.78);
}

.legal-content ul {
  padding-left: 20px;
}

@media (max-width: 1120px) {
  .nav,
  .header-cta {
    display: none;
  }
}

@media (max-width: 940px) {
  .site-header {
    position: absolute;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 44px;
  }

  .hero-grid,
  .two-doors,
  .split,
  .protection-layout,
  .protection-promise,
  .editorial-grid,
  .score-layout,
  .value-grid,
  .lifestyle-grid,
  .office-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 242, 0.3);
    padding: 22px 0 0;
  }

  .stat-grid,
  .steps,
  .difference-grid,
  .faq-grid,
  .review-seal-grid,
  .room-preview,
  .protection-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-panel.tall img {
    min-height: 360px;
  }
}

@media (max-width: 660px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.05rem);
    line-height: 1.03;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.5rem);
    line-height: 1.08;
    max-width: 100%;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-copy,
  .hero-note,
  .section-intro,
  .editorial-copy,
  .lifestyle-copy,
  .contact-copy {
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
  }

  .section {
    padding: 62px 0;
  }

  .door-grid,
  .principle-strip,
  .service-list,
  .difference-grid,
  .faq-grid,
  .stat-grid,
  .steps,
  .review-seal-grid,
  .room-preview,
  .protection-flow,
  .form-row {
    grid-template-columns: 1fr;
  }

  .door-card,
  .service-list article,
  .difference-grid article,
  .faq-grid article,
  .range-card,
  .score-card,
  .room-preview article,
  .steps article,
  .protection-flow article {
    min-height: auto;
  }

  .hero-grid,
  .two-doors,
  .split,
  .protection-layout,
  .protection-promise,
  .editorial-grid,
  .score-layout,
  .value-grid,
  .lifestyle-grid,
  .office-grid,
  .contact-grid,
  .footer-grid,
  .door-grid,
  .principle-strip,
  .service-list,
  .difference-grid,
  .faq-grid,
  .stat-grid,
  .steps,
  .review-seal-grid,
  .room-preview,
  .protection-flow {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-grid > *,
  .two-doors > *,
  .split > *,
  .protection-layout > *,
  .protection-promise > *,
  .editorial-grid > *,
  .score-layout > *,
  .value-grid > *,
  .lifestyle-grid > *,
  .office-grid > *,
  .contact-grid > *,
  .footer-grid > *,
  .door-grid > *,
  .principle-strip > *,
  .service-list > *,
  .difference-grid > *,
  .faq-grid > *,
  .stat-grid > *,
  .steps > *,
  .review-seal-grid > *,
  .room-preview > *,
  .protection-flow > * {
    min-width: 0;
    max-width: 100%;
  }

  .score-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .range-line {
    display: block;
  }

  .range-line em {
    display: block;
    margin-top: 4px;
  }

  .btn {
    width: 100%;
  }
}

@media print {
  .site-header {
    position: static;
  }

  .door-card,
  .service-list article,
  .difference-grid article,
  .faq-grid article,
  .range-card,
  .score-card,
  .review-seal-grid,
  .room-preview article,
  .protection-flow article,
  .protection-promise > div,
  .steps article,
  .client-form,
  .image-panel {
    break-inside: avoid;
    page-break-inside: avoid;
    overflow: visible;
  }

  .hero,
  .section {
    break-inside: auto;
    page-break-inside: auto;
  }

  h1,
  h2,
  h3,
  p,
  a,
  label,
  strong,
  span {
    overflow-wrap: break-word;
  }
}
