: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-web.jpg");
  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-web.jpg");
  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-web.jpg");
  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-web.jpg");
  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 {
  position: relative;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(212, 169, 97, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.94), rgba(236, 217, 184, 0.84)),
    radial-gradient(circle at 82% 12%, rgba(212, 169, 97, 0.22), transparent 34%);
  box-shadow:
    0 28px 86px rgba(38, 25, 15, 0.18),
    inset 0 0 0 1px rgba(255, 250, 242, 0.78);
}

.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);
}

.subdivision-attention {
  border-left: 0;
  padding: 24px 26px;
  background: #21170f;
  color: var(--silk);
  box-shadow: 0 24px 60px rgba(38, 25, 15, 0.18);
}

.subdivision-attention strong {
  color: #f3d59e;
  font-weight: 800;
}

.subdivision-attention span {
  color: rgba(255, 250, 242, 0.9);
  font-weight: 800;
}

.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-web.jpg");
  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: 310px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin: 0 0 36px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(212, 169, 97, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(231, 209, 173, 0.82)),
    url("assets/charme-landscape-house-web.jpg");
  background-size: cover;
  background-position: center;
  box-shadow:
    0 28px 86px rgba(38, 25, 15, 0.16),
    inset 0 0 0 1px rgba(255, 250, 242, 0.72);
}

.review-seal {
  position: relative;
  width: 258px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  color: var(--silk);
  border: 4px solid #d4a961;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 250, 242, 0.18), transparent 24%),
    radial-gradient(circle at 58% 62%, rgba(212, 169, 97, 0.18), transparent 38%),
    linear-gradient(145deg, #7a2f2c 0%, #4a1815 58%, #24100d 100%);
  box-shadow:
    inset 0 0 0 8px rgba(255, 250, 242, 0.09),
    inset 0 0 0 13px rgba(212, 169, 97, 0.84),
    inset 0 0 0 17px rgba(58, 38, 24, 0.72),
    inset 0 0 44px rgba(0, 0, 0, 0.35),
    0 22px 58px rgba(38, 25, 15, 0.32);
  transform: rotate(-4deg);
}

.review-seal::before,
.review-seal::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.review-seal::before {
  inset: 25px;
  border: 1px solid rgba(255, 250, 242, 0.72);
  box-shadow:
    0 0 0 6px rgba(212, 169, 97, 0.22),
    inset 0 0 0 1px rgba(212, 169, 97, 0.58);
}

.review-seal::after {
  inset: 42px;
  border: 1px solid rgba(212, 169, 97, 0.7);
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(212, 169, 97, 0.34) 12% 88%, transparent 88% 100%),
    linear-gradient(0deg, transparent 0 47%, rgba(255, 250, 242, 0.16) 47% 53%, transparent 53% 100%);
  opacity: 0.86;
}

.review-seal > * {
  position: relative;
  z-index: 1;
}

.review-seal span,
.review-seal em {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  color: #f1d7a4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
}

.review-seal strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.55rem;
  line-height: 1;
  margin: 10px 0;
  color: #fffaf2;
  text-shadow:
    0 2px 0 rgba(58, 38, 24, 0.72),
    0 8px 16px rgba(0, 0, 0, 0.26);
}

.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(5, 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-web.jpg");
  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);
}

.contact-card-inline {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(212, 169, 97, 0.38);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.08);
}

.contact-card-inline p {
  margin: 0;
}

.contact-card-inline strong,
.contact-card-inline span,
.contact-card-inline a {
  display: block;
}

.contact-card-inline strong {
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.contact-card-inline a,
.contact-card-inline span {
  margin-top: 4px;
  color: var(--silk);
  text-decoration: none;
  font-weight: 800;
}

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

.budget-reassurance {
  margin: -8px 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(94, 65, 38, 0.18);
  color: rgba(45, 32, 22, 0.78);
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.48;
}

.form-status {
  margin: 16px 0 0;
  min-height: 1.4em;
  color: var(--green);
  font-weight: 800;
}

.form-status.error {
  color: var(--wine);
}

.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-trust-note {
  max-width: 850px;
  padding: 18px 20px;
  border: 1px solid rgba(212, 169, 97, 0.28);
  background: rgba(255, 250, 242, 0.045);
  color: rgba(255, 250, 242, 0.86);
  font-family: var(--serif);
  font-size: 1.05rem !important;
  line-height: 1.38;
}

.footer-trust-note::first-sentence {
  color: #f3d59e;
}

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

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

.footer-links button,
.legal-cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.legal-cookie-button {
  color: var(--wine);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(212, 169, 97, 0.5);
  background: rgba(27, 17, 13, 0.98);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  color: #f7f0e5;
}

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

.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
  color: #d4a961;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.cookie-banner p {
  max-width: 760px;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: #f7f0e5;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-banner .btn {
  min-width: 96px;
  padding: 11px 14px;
  border-radius: 0;
  cursor: pointer;
}

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

/* Mediterranean maison redesign */
:root {
  --ink: #24180f;
  --espresso: #14100c;
  --brown: #392519;
  --warm: #8a6843;
  --gold: #c9a061;
  --cream: #efe2cf;
  --silk: #fbf4e8;
  --paper: #f4ead8;
  --stone: #b69a73;
  --olive: #5f6647;
  --line: rgba(68, 42, 25, 0.22);
  --green: #314538;
  --wine: #6d2119;
  --shadow: 0 30px 90px rgba(25, 14, 8, 0.2);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

body {
  background:
    repeating-linear-gradient(90deg, rgba(68, 42, 25, 0.028) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 22px),
    var(--paper);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  background-image:
    linear-gradient(90deg, rgba(68, 42, 25, 0.08), transparent 18%, transparent 82%, rgba(68, 42, 25, 0.08)),
    repeating-radial-gradient(circle at 12% 18%, rgba(68, 42, 25, 0.035) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

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

.site-header {
  padding: 20px clamp(22px, 4vw, 62px);
  background:
    linear-gradient(180deg, rgba(18, 15, 12, 0.92), rgba(18, 15, 12, 0.55) 68%, rgba(18, 15, 12, 0));
  border-bottom: 1px solid rgba(245, 226, 190, 0.16);
  backdrop-filter: blur(10px);
}

.brand {
  gap: 14px;
  min-width: 250px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand strong {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
  font-weight: 500;
}

.brand small {
  letter-spacing: 0.18em;
  color: rgba(255, 250, 242, 0.72);
}

.nav {
  gap: clamp(13px, 1.7vw, 28px);
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  white-space: nowrap;
}

.nav a,
.header-cta {
  white-space: nowrap;
}

.header-cta {
  border-radius: 0;
  border-color: rgba(212, 169, 97, 0.54);
  background: rgba(255, 250, 242, 0.07);
  padding: 10px 18px;
}

.hero {
  min-height: 100vh;
  padding: 146px 0 64px;
}

.hero-media {
  background-image: url("assets/charme-landscape-house-web.jpg");
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 10, 7, 0.9) 0%, rgba(13, 10, 7, 0.72) 34%, rgba(13, 10, 7, 0.2) 70%, rgba(13, 10, 7, 0.52) 100%),
    linear-gradient(0deg, rgba(13, 10, 7, 0.82) 0%, rgba(13, 10, 7, 0.1) 42%, rgba(13, 10, 7, 0.54) 100%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 420px);
  align-items: end;
}

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

h1 {
  font-size: clamp(4.8rem, 9.2vw, 9.4rem);
  max-width: 920px;
  line-height: 0.86;
}

h2 {
  font-size: clamp(3rem, 6vw, 6.7rem);
  line-height: 0.92;
}

h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.65rem);
}

.hero-script {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-style: italic;
  color: #ead3a2;
  line-height: 1;
}

.lead {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.88);
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.22em;
}

.btn {
  border-radius: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn.primary {
  background: #d1a96a;
}

.btn.secondary {
  border-color: rgba(255, 250, 242, 0.38);
}

.hero-note {
  border-left: 1px solid rgba(212, 169, 97, 0.52);
}

.hero-wax-seal {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 0 24px;
  border-radius: 50%;
  border: 3px solid #b36a43;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: #f8dfb1;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.22), transparent 20%),
    radial-gradient(circle at 70% 76%, rgba(76, 9, 6, 0.65), transparent 31%),
    linear-gradient(145deg, #9b3f2b, #4e160f 65%, #2a0d09);
  box-shadow:
    inset 0 0 0 7px rgba(255, 216, 150, 0.13),
    inset 0 0 0 11px rgba(75, 16, 11, 0.75),
    0 18px 34px rgba(0, 0, 0, 0.38);
}

.section {
  position: relative;
  padding: clamp(86px, 11vw, 152px) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(68, 42, 25, 0.055), transparent 16%, transparent 84%, rgba(68, 42, 25, 0.055));
}

.intro-band,
.cream,
.light-silk,
.trust-first,
.protection-section,
.interior-direction-section,
.office-section {
  background:
    repeating-linear-gradient(90deg, rgba(68, 42, 25, 0.035) 0 1px, transparent 1px 20px),
    linear-gradient(180deg, rgba(255, 250, 242, 0.86), rgba(239, 226, 207, 0.9)),
    var(--paper);
}

.trust-first,
.protection-section {
  background:
    linear-gradient(180deg, rgba(248, 238, 221, 0.92), rgba(239, 226, 207, 0.92)),
    url("assets/subdivision-estate-landscape-web.jpg");
  background-size: cover;
  background-position: center;
}

.dark-panel,
.brown,
.verified-workflow-section {
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.035) 0 1px, transparent 1px 21px),
    linear-gradient(180deg, #17120e, #0f0d0a);
  color: var(--silk);
}

.section-intro.narrow {
  max-width: 850px;
}

.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.08rem;
}

.editorial-manifesto {
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(68, 42, 25, 0.22);
  font-family: var(--serif);
}

.editorial-manifesto p {
  font-size: clamp(1.55rem, 2.2vw, 2.35rem) !important;
  line-height: 1.12;
  color: var(--brown) !important;
}

.difference-grid,
.protection-flow,
.steps,
.service-list,
.faq-grid,
.room-preview,
.design-directions,
.score-criteria {
  gap: 1px;
}

.difference-grid article,
.protection-flow article,
.service-list article,
.faq-grid article,
.room-preview article,
.design-directions article,
.stat-grid article {
  border-radius: 0;
  border-color: rgba(68, 42, 25, 0.18);
  background: rgba(255, 250, 242, 0.52);
  box-shadow: none;
}

.image-panel {
  border-radius: 0;
  border: 1px solid rgba(68, 42, 25, 0.16);
  box-shadow: 0 22px 60px rgba(38, 25, 15, 0.16);
}

.image-panel img {
  filter: sepia(0.13) saturate(0.9) contrast(1.03);
}

.classic-seal-card,
.score-card,
.range-card,
.client-form {
  border-radius: 0;
}

.classic-seal-card {
  max-width: 420px;
}

.review-seal {
  clip-path: polygon(50% 0%, 57% 4%, 64% 1%, 70% 7%, 78% 7%, 83% 15%, 91% 18%, 93% 27%, 99% 34%, 96% 42%, 100% 50%, 96% 58%, 99% 66%, 93% 73%, 91% 82%, 83% 85%, 78% 93%, 70% 93%, 64% 99%, 57% 96%, 50% 100%, 43% 96%, 36% 99%, 30% 93%, 22% 93%, 17% 85%, 9% 82%, 7% 73%, 1% 66%, 4% 58%, 0% 50%, 4% 42%, 1% 34%, 7% 27%, 9% 18%, 17% 15%, 22% 7%, 30% 7%, 36% 1%, 43% 4%);
}

.protection-seal {
  transform: rotate(-7deg);
}

.verified-workflow-section .section-intro p:not(.eyebrow),
.dark-panel .section-intro p,
.brown p,
.verified-workflow-section p {
  color: rgba(255, 250, 242, 0.76);
}

.verified-workflow-section .review-seal-grid {
  background:
    linear-gradient(135deg, rgba(22, 18, 14, 0.96), rgba(22, 18, 14, 0.86)),
    url("assets/charme-landscape-house-web.jpg");
  border-color: rgba(212, 169, 97, 0.28);
}

.verified-workflow-section .review-seal-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.78);
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.steps article {
  min-height: 270px;
  padding: 28px 22px;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(212, 169, 97, 0.2);
  color: rgba(255, 250, 242, 0.78);
}

.steps span {
  width: 74px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: #f4d39a;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.2), transparent 20%),
    linear-gradient(145deg, #8d3527, #46120e 70%);
  box-shadow:
    inset 0 0 0 5px rgba(212, 169, 97, 0.28),
    inset 0 0 0 9px rgba(63, 18, 13, 0.86),
    0 10px 24px rgba(0, 0, 0, 0.32);
  clip-path: polygon(50% 0%, 60% 7%, 72% 4%, 81% 14%, 93% 19%, 92% 32%, 100% 42%, 94% 53%, 98% 66%, 87% 74%, 84% 88%, 70% 91%, 60% 100%, 50% 94%, 40% 100%, 30% 91%, 16% 88%, 13% 74%, 2% 66%, 6% 53%, 0% 42%, 8% 32%, 7% 19%, 19% 14%, 28% 4%, 40% 7%);
}

.workflow-statement,
.source-note.light:first-of-type {
  margin-top: 26px;
  text-align: center;
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.soul-score-section {
  background:
    linear-gradient(180deg, rgba(251, 244, 232, 0.94), rgba(239, 226, 207, 0.92)),
    url("assets/subdivision-estate-landscape-web.jpg");
  background-size: cover;
  background-position: center;
}

.soul-score-card {
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(68, 42, 25, 0.2);
}

.soul-score-card .score-top {
  display: block;
  border-bottom: 1px solid rgba(68, 42, 25, 0.18);
  padding-bottom: 18px;
}

.soul-score-card .score-top strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  color: var(--brown);
  line-height: 0.92;
}

.score-criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
}

.score-criteria span {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(68, 42, 25, 0.13);
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--brown);
}

.raw-acquisition-section .range-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0.03));
  border-color: rgba(212, 169, 97, 0.34);
  color: var(--silk);
}

.raw-acquisition-section .value-grid > div:first-child p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.94) !important;
  font-weight: 650;
  line-height: 1.72;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
}

.raw-acquisition-section .value-grid > div:first-child p:last-child {
  color: #fffaf2 !important;
  padding: 18px 20px;
  border: 1px solid rgba(212, 169, 97, 0.32);
  background: rgba(255, 250, 242, 0.075);
}

.raw-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid rgba(212, 169, 97, 0.22);
}

.raw-principles span {
  padding: 13px;
  color: #f2d39a;
  background: rgba(255, 250, 242, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.interior-direction-section {
  overflow: hidden;
}

.written-before-purchase {
  margin-top: 30px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(98, 37, 32, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.88), rgba(239, 226, 207, 0.76)),
    var(--paper);
  box-shadow: 0 24px 60px rgba(38, 25, 15, 0.12);
}

.written-before-purchase p:not(.eyebrow) {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.7vw, 1.85rem) !important;
  line-height: 1.18;
  color: var(--brown) !important;
}

.design-directions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.design-directions article {
  min-height: 180px;
  padding: 24px;
}

.design-directions span {
  color: var(--gold);
  font-weight: 900;
}

.private-room {
  background: var(--paper);
}

#private-room {
  background:
    repeating-linear-gradient(90deg, rgba(68, 42, 25, 0.035) 0 1px, transparent 1px 20px),
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(239, 226, 207, 0.9)),
    var(--paper);
}

.room-preview article {
  background: rgba(255, 250, 242, 0.7);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(20, 16, 12, 0.96), rgba(20, 16, 12, 0.76), rgba(20, 16, 12, 0.92)),
    url("assets/charme-landscape-house-web.jpg");
  background-size: cover;
  background-position: center;
}

.clarity-note {
  margin: 30px 0 28px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(212, 169, 97, 0.46);
}

.clarity-note p {
  margin: 0;
}

.clarity-note p + p {
  margin-top: 12px;
}

.clarity-note strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 500;
  color: #f3dfb3;
}

.client-form {
  background: rgba(251, 244, 232, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

input,
select,
textarea {
  border-radius: 0;
  background: rgba(255, 253, 250, 0.86);
}

.site-footer {
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 242, 0.035) 0 1px, transparent 1px 22px),
    #11100d;
}

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

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 88vh;
  }
}

@media (max-width: 760px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 16px;
  }

  .cookie-banner-actions {
    margin-top: 14px;
  }

  .cookie-banner .btn {
    flex: 1 1 0;
  }

  .container {
    width: min(100% - 28px, 1240px);
  }

  h1 {
    font-size: clamp(4rem, 19vw, 5.9rem);
  }

  h2 {
    font-size: clamp(2.6rem, 12vw, 4.6rem);
  }

  .hero-grid,
  .two-doors,
  .split,
  .editorial-grid,
  .score-layout,
  .value-grid,
  .lifestyle-grid,
  .office-grid,
  .contact-grid,
  .review-seal-grid,
  .design-directions,
  .steps,
  .score-criteria,
  .raw-principles {
    grid-template-columns: 1fr;
  }

  .hero-note {
    border-left: 0;
    border-top: 1px solid rgba(212, 169, 97, 0.52);
  }

  .review-seal {
    width: min(250px, 78vw);
  }

  .steps article {
    min-height: auto;
  }
}

/* Reference wax seal: copied from the provided Soul & Domus visual direction. */
h1 {
  font-size: clamp(4.1rem, 7.2vw, 7.55rem);
  line-height: 0.88;
}

.hero {
  min-height: 92vh;
  padding: 130px 0 50px;
}

.hero-actions {
  gap: 8px;
  margin-top: 24px;
}

.hero-actions .btn {
  padding: 14px 18px;
  font-size: 0.78rem;
}

img.wax-seal-img,
.review-seal.wax-seal-img,
.hero-wax-seal.wax-seal-img {
  display: block;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 26px rgba(0, 0, 0, 0.48))
    drop-shadow(0 2px 0 rgba(255, 223, 166, 0.12));
}

.hero-note .hero-wax-seal.wax-seal-img {
  width: clamp(126px, 10vw, 156px);
  margin: 0 0 24px -8px;
}

.mobile-hero-seal {
  display: none !important;
}

.review-seal.wax-seal-img {
  width: min(262px, 74vw);
  aspect-ratio: 1;
  margin: 0 auto;
}

.protection-seal.wax-seal-img {
  transform: rotate(-7deg);
}

.steps span {
  width: 86px;
  color: rgba(255, 232, 188, 0.96);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  background: url("assets/soul-domus-wax-seal.png") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  clip-path: none;
  text-shadow:
    0 1px 0 rgba(79, 18, 10, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.65);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(3.65rem, 16vw, 5.25rem);
  }

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

  .hero-note .hero-wax-seal.wax-seal-img {
    width: 126px;
    margin-left: 0;
  }
}

/* Clean hero surface: remove the thin guide lines that looked like file defects. */
.site-header {
  border-bottom: 0;
}

.hero::before,
.hero.section::before {
  content: none;
  display: none;
}

.hero-note {
  border-left: 0;
  padding-left: 0;
}

@media (max-width: 760px) {
  .hero-note {
    border-top: 0;
    padding-top: 10px;
  }
}

.private-room-principle {
  padding: 22px 24px;
  border: 1px solid rgba(98, 37, 32, 0.22);
  background: rgba(255, 250, 242, 0.62);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem) !important;
  line-height: 1.18;
  color: var(--brown) !important;
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 1240px);
    padding-left: 0;
    padding-right: 0;
  }

  .site-header {
    padding: 22px 18px 0;
    background: linear-gradient(180deg, rgba(18, 15, 12, 0.82), rgba(18, 15, 12, 0));
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .section {
    padding: clamp(84px, 18vw, 118px) 0;
  }

  .hero {
    min-height: 96svh;
    padding: 128px 0 66px;
  }

  .hero-media {
    background-position: center top;
    transform: scale(1.04);
  }

  .hero-grid {
    gap: 44px;
  }

  h1 {
    font-size: clamp(3.2rem, 13.2vw, 4.9rem);
    line-height: 0.88;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(3rem, 12.5vw, 4.9rem);
    line-height: 0.96;
  }

  h3 {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
    line-height: 1.05;
  }

  .hero-script {
    font-size: clamp(1.9rem, 7.8vw, 2.85rem);
    max-width: 11.5ch;
  }

  .hero .eyebrow {
    max-width: 26ch;
    white-space: normal;
    letter-spacing: 0.16em;
    line-height: 1.45;
  }

  .lead,
  .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.07rem;
    line-height: 1.68;
  }

  .hero-note {
    margin-top: 2px;
    padding-top: 0;
  }

  .hero-note .hero-wax-seal.wax-seal-img {
    display: none;
  }

  .mobile-hero-seal {
    display: block !important;
    width: 146px;
    margin: 24px 0 28px -6px;
  }

  .review-seal.wax-seal-img {
    width: min(282px, 82vw);
  }

  .hero-actions {
    gap: 14px;
    margin-top: 34px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
  }

  .image-panel img {
    min-height: 330px;
    object-fit: cover;
  }

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

  .room-preview,
  .design-directions,
  .steps,
  .score-criteria,
  .raw-principles {
    gap: 12px;
  }

  .difference-grid article,
  .protection-flow article,
  .service-list article,
  .faq-grid article,
  .room-preview article,
  .design-directions article,
  .steps article {
    padding: 26px 22px;
  }

  .private-room-principle,
  .written-before-purchase {
    padding: 26px 22px;
  }
}

@media (max-width: 760px) {
  .hero-grid,
  .hero-grid > *,
  .hero-copy,
  .lead {
    min-width: 0;
    max-width: 100%;
  }

  .hero .lead {
    max-width: 31ch;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions .btn {
    padding: 12px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.055em;
    overflow-wrap: anywhere;
  }
}
