@font-face {
  font-family: "Neue Kabel";
  src: url("assets/fonts/Neue_Kabel_ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Kabel";
  src: url("assets/fonts/Neue_Kabel_ExtraBold_Italic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
:root {
  --bg: #e8d8be;
  --bg-soft: #f5ecdf;
  --surface: #fbf6ef;
  --surface-strong: #e2bb88;
  --surface-muted: #8b7564;
  --ink: #213026;
  --ink-soft: #556760;
  --line: rgba(33, 48, 38, 0.11);
  --line-strong: rgba(33, 48, 38, 0.22);
  --olive: #6F6B45;
  --olive-deep: #6F6B45;
  --olive-soft: #6F6B45;
  --sand: #d7b07b;
  --amber: #6F6B45;
  --amber-soft: #6F6B45;
  --sky: #6F6B45;
  --sky-soft: #E7E1CF;
  --taupe: #b9a594;
  --mist: #fffaf3;
  --clay: #6F6B45;
  --white: #fffdf8;
  --shadow-sm: 0 14px 28px rgba(31, 45, 36, 0.08);
  --shadow-md: 0 24px 52px rgba(31, 45, 36, 0.12);
  --shadow-lg: 0 40px 84px rgba(31, 45, 36, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --content: min(1240px, calc(100% - 9vw));
  --nav-h: 84px;
  --title: "Neue Kabel", "Sora", sans-serif;
  --body: "Manrope", sans-serif;
}
/*
Background variants:
- Default: Sunset roadtrip (active)
- Add body[data-bg-variant="coastal"] for a fresher sky / horizon feel
- Add body[data-bg-variant="dune"] for a warmer green / dune feel
*/
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--body);
  background:
    radial-gradient(circle at 8% 14%, rgba(111,107,69,.15), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(111,107,69,.12), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(111,107,69,.14), transparent 22%),
    linear-gradient(180deg, #fff6ea 0%, #f2e2ca 22%, #efddc5 54%, #f7eee2 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -2;
  inset: auto auto 0 0;
  width: 46vw;
  height: 30vw;
  background: radial-gradient(circle at 20% 30%, rgba(111,107,69,.16), rgba(111,107,69,0) 72%);
  opacity: .95;
  filter: blur(12px);
}
body::after {
  inset: 16vh 0 auto auto;
  width: 38vw;
  height: 24vw;
  background: radial-gradient(circle at 70% 20%, rgba(111,107,69,.12), rgba(111,107,69,0) 74%);
}
body[data-bg-variant="coastal"] {
  background:
    radial-gradient(circle at 10% 14%, rgba(111,107,69,.17), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(111,107,69,.12), transparent 26%),
    radial-gradient(circle at 76% 74%, rgba(111,107,69,.12), transparent 22%),
    linear-gradient(180deg, #f7f1e8 0%, #dceaf0 18%, #f2e2c9 52%, #fbf3e8 100%);
}
body[data-bg-variant="coastal"]::before {
  background: radial-gradient(circle at 20% 30%, rgba(111,107,69,.18), rgba(111,107,69,0) 72%);
}
body[data-bg-variant="coastal"]::after {
  background: radial-gradient(circle at 70% 20%, rgba(111,107,69,.12), rgba(111,107,69,0) 74%);
}
body[data-bg-variant="coastal"] .page-banner {
  background:
    radial-gradient(circle at 12% 14%, rgba(111,107,69,.13), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(111,107,69,.08), transparent 22%),
    linear-gradient(180deg, rgba(255,253,248,.54), rgba(255,253,248,.08));
}
body[data-bg-variant="coastal"] .section-alt {
  background:
    radial-gradient(circle at 12% 22%, rgba(111,107,69,.12), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(111,107,69,.08), transparent 24%),
    linear-gradient(180deg, rgba(246,249,247,.98), rgba(233,239,235,.98));
}
body[data-bg-variant="coastal"] .section-olive {
  background:
    radial-gradient(circle at 10% 16%, rgba(111,107,69,.13), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(255,253,248,.08), transparent 18%),
    linear-gradient(135deg, #6F6B45 0%, #6F6B45 46%, #6F6B45 100%);
}
body[data-bg-variant="dune"] {
  background:
    radial-gradient(circle at 8% 14%, rgba(111,107,69,.12), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(214,176,123,.22), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(111,107,69,.1), transparent 22%),
    linear-gradient(180deg, #fff4e6 0%, #f0d7b5 22%, #e4c39c 54%, #f8ecdc 100%);
}
body[data-bg-variant="dune"]::before {
  background: radial-gradient(circle at 20% 30%, rgba(111,107,69,.12), rgba(111,107,69,0) 72%);
}
body[data-bg-variant="dune"]::after {
  background: radial-gradient(circle at 70% 20%, rgba(111,107,69,.1), rgba(111,107,69,0) 74%);
}
body[data-bg-variant="dune"] .page-banner {
  background:
    radial-gradient(circle at 12% 14%, rgba(111,107,69,.12), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(214,176,123,.14), transparent 22%),
    linear-gradient(180deg, rgba(255,249,241,.55), rgba(255,249,241,.08));
}
body[data-bg-variant="dune"] .section-alt {
  background:
    radial-gradient(circle at 12% 22%, rgba(111,107,69,.08), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(214,176,123,.14), transparent 24%),
    linear-gradient(180deg, rgba(252,244,234,.98), rgba(240,223,201,.98));
}
body[data-bg-variant="dune"] .section-olive {
  background:
    radial-gradient(circle at 10% 16%, rgba(111,107,69,.1), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(255,253,248,.08), transparent 18%),
    linear-gradient(135deg, #6F6B45 0%, #6F6B45 46%, #6F6B45 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: 84px !important;
  min-height: 84px !important;
  max-height: 84px !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  font-size: 16px !important;
  line-height: 1;
  padding: 0 clamp(1.5rem, 3.4vw, 4.2rem) !important;
  transform: none !important;
  zoom: 1;
  background: rgba(255, 249, 241, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(21, 29, 23, 0.12);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header *,
.site-header *::before,
.site-header *::after {
  box-sizing: border-box;
}
.site-header.scrolled {
  height: 84px !important;
  min-height: 84px !important;
  max-height: 84px !important;
  background: rgba(255, 249, 241, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 38px rgba(21, 29, 23, 0.12);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: .72rem;
  min-width: 0;
}
.brand img {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  object-fit: contain;
}
.brand-name {
  font-family: var(--title);
  font-size: .8rem !important;
  letter-spacing: .16em !important;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: .12rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  padding: .72rem .72rem !important;
  font-size: .68rem !important;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: .72rem;
  right: .72rem;
  bottom: .5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), var(--sky));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: .65rem;
}
.nav-phone {
  font-size: .74rem !important;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav-right .btn {
  height: 44px !important;
  box-sizing: border-box;
  min-height: 44px !important;
  max-height: 44px !important;
  padding: .82rem 1.2rem !important;
  font-size: .68rem !important;
  letter-spacing: .11em !important;
  line-height: 1;
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--amber), #6F6B45 58%, var(--olive) 100%);
  color: var(--white);
  border-color: rgba(0,0,0,0);
  box-shadow: 0 14px 30px rgba(111,107,69,.22);
  text-shadow: 0 1px 10px rgba(0,0,0,.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #5F5B36, #6F6B45 52%, #6F6B45 100%);
  border-color: rgba(0,0,0,0);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover {
  background: rgba(111,107,69,.08);
  border-color: rgba(111,107,69,.34);
}
.btn-light {
  background: rgba(255,253,248,.14);
  color: var(--white);
  border-color: rgba(255,255,255,.24);
}
.btn-light:hover {
  background: rgba(255,253,248,.26);
}
.btn-block { width: 100%; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 1100;
  display: none;
  padding: 1rem 4.5vw 1.2rem;
  background: rgba(255,249,241,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(20, 28, 24, 0.06);
}
.mobile-menu.open { display: grid; gap: .2rem; }
.mobile-menu a {
  padding: .95rem 0;
  border-bottom: 1px solid rgba(36,48,40,.08);
  font-size: .95rem;
  font-weight: 700;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: .4rem; }
.main-flow {
  overflow: hidden;
  position: relative;
}
.main-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,253,248,.12), rgba(255,253,248,0) 12%, rgba(255,253,248,0) 86%, rgba(255,253,248,.14)),
    radial-gradient(circle at 50% 0%, rgba(255,253,248,.32), transparent 26%);
  z-index: -1;
}
.container { width: var(--content); margin: 0 auto; }
.section,
.section-tight {
  position: relative;
  isolation: isolate;
}
.section { padding: 6.2rem 0; }
.section-tight { padding: 4.4rem 0; }
.section::before,
.section-tight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,253,248,.18), rgba(255,253,248,0) 32%, rgba(111,107,69,.05) 100%);
  z-index: -1;
}
.page-banner {
  padding: calc(var(--nav-h) + 3rem) 0 2.4rem;
  background:
    radial-gradient(circle at 12% 14%, rgba(111,107,69,.1), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(111,107,69,.1), transparent 22%),
    linear-gradient(180deg, rgba(255,253,248,.5), rgba(255,253,248,.06));
  border-bottom: 1px solid rgba(84,97,80,.08);
}
.page-banner .copy { max-width: 760px; margin-top: 1rem; }
.page-banner.compact {
  padding: calc(var(--nav-h) + 2.3rem) 0 1.8rem;
}
.page-banner .banner-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}
.back-button {
  position: fixed;
  top: calc(var(--nav-h) + 12px);
  left: 18px;
  z-index: 1001;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(111,107,69,.2);
  background: rgba(250,247,240,.78);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.back-button:hover { background: var(--surface); }
.section-alt {
  background:
    radial-gradient(circle at 12% 22%, rgba(111,107,69,.1), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(111,107,69,.09), transparent 24%),
    linear-gradient(180deg, rgba(252,246,236,.98), rgba(238,228,213,.98));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-olive {
  background:
    linear-gradient(135deg, #6F6B45 0%, #6F6B45 100%);
  color: #f7f3ea;
}
.section-olive .copy,
.section-olive .body-copy,
.section-olive > .container > p {
  color: rgba(255,253,248,.92);
}
.section-wave-top::before,
.section-wave-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 88px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .75;
}
.section-wave-top::before {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23fbf4e9' d='M0,15 C90,95 170,105 260,58 C330,22 382,3 440,35 C520,79 618,108 735,74 C825,48 877,0 953,36 C1019,67 1085,96 1181,74 C1272,53 1329,24 1440,58 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
}
.section-wave-bottom::after {
  bottom: -1px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23fbf4e9' d='M0,15 C90,95 170,105 260,58 C330,22 382,3 440,35 C520,79 618,108 735,74 C825,48 877,0 953,36 C1019,67 1085,96 1181,74 C1272,53 1329,24 1440,58 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .95rem;
  color: var(--olive);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.display-title {
  font-family: var(--title);
  font-size: clamp(2.55rem, 6vw, 5.75rem);
  line-height: .95;
  letter-spacing: -.04em;
  max-width: 11ch;
}
.section-title {
  font-family: var(--title);
  font-size: clamp(1.8rem, 3.4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.lead,
.body-copy,
.copy {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--ink-soft);
}
.hero {
  position: relative;
  min-height: 88vh;
  padding-top: calc(var(--nav-h) + 4rem);
  display: flex;
  align-items: center;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img { object-position: center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18,20,16,.72) 0%, rgba(18,20,16,.36) 48%, rgba(18,20,16,.18) 100%),
    linear-gradient(180deg, rgba(18,20,16,.12), rgba(18,20,16,.64));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding-left: clamp(1.4rem, 4vw, 5.5rem);
  padding-right: clamp(1.4rem, 4vw, 5.5rem);
  padding-bottom: 1.2rem;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: end;
}
.hero-copy {
  max-width: 680px;
  padding-bottom: .35rem;
}
.hero-brand-mark {
  width: clamp(170px, 15vw, 270px);
  height: auto;
  object-fit: contain;
  margin-bottom: 1.15rem;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.32));
}
.hero-side-card {
  display: grid;
  gap: .85rem;
  padding: 1.2rem;
  border: 1px solid rgba(255,253,248,.2);
  border-radius: 18px;
  background: rgba(247,243,234,.14);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}
.hero-side-card span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,253,248,.72);
}
.hero-side-card strong {
  font-family: var(--title);
  font-size: 1.42rem;
  line-height: 1.02;
}
.hero-side-card p {
  color: rgba(255,253,248,.82);
  font-size: .92rem;
  line-height: 1.62;
}
.hero-mini-list {
  display: grid;
  gap: .48rem;
  padding-top: .35rem;
  border-top: 1px solid rgba(255,253,248,.16);
}
.hero-mini-list div {
  color: rgba(255,253,248,.9);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .display-title,
.hero .section-title,
.hero .eyebrow,
.hero .lead { color: var(--white); }
.hero .display-title {
  font-size: clamp(3.7rem, 8vw, 7.6rem);
  max-width: 9ch;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 5px 28px rgba(0,0,0,.48);
}
.hero .lead {
  max-width: 620px;
  margin-top: .55rem;
  color: rgba(255,255,255,.94);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,.42);
}
.hero-sublead {
  max-width: 620px;
  margin-top: .75rem;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  line-height: 1.65;
  text-shadow: 0 2px 16px rgba(0,0,0,.42);
}
.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}
.hero-bottom-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 2.1rem;
  border: 1px solid rgba(255,253,248,.16);
  border-radius: 18px;
  background: rgba(255,253,248,.12);
  box-shadow: 0 20px 58px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.hero-bottom-strip div {
  display: grid;
  gap: .25rem;
  padding: .9rem 1rem;
  background: rgba(20,24,19,.18);
}
.hero-bottom-strip strong {
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-bottom-strip span {
  color: rgba(255,253,248,.8);
  font-size: .86rem;
  line-height: 1.4;
}
.hero-note {
  margin-top: 1.15rem;
  font-size: .92rem;
  color: rgba(255,255,255,.7);
}
.hero-stats-band {
  padding: 1.05rem 0;
  background: rgba(251,246,239,.94);
  border-bottom: 1px solid var(--line);
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(111,107,69,.14);
  border-radius: 16px;
  background: rgba(111,107,69,.14);
}
.hero-stats-grid div {
  display: grid;
  gap: .2rem;
  padding: 1rem 1.15rem;
  background: rgba(255,253,248,.72);
}
.hero-stats-grid strong {
  font-family: var(--title);
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
}
.hero-stats-grid span {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--olive);
}
.home-entry-grid,
.offer-grid,
.contact-chooser,
.gallery-feature-grid,
.service-overview-grid,
.split-grid,
.info-grid,
.process-grid,
.mini-grid,
.footer-top,
.form-grid,
.project-grid { display: grid; gap: 1.35rem; }
.home-entry-grid,
.offer-grid,
.service-overview-grid,
.split-grid,
.info-grid,
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.offer-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.offer-grid.three-up { align-items: stretch; }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-feature-grid { grid-template-columns: 1.24fr .76fr; }
.home-entry,
.offer-panel,
.side-note,
.contact-choice,
.contact-info,
.form-shell,
.project-card,
.gallery-card,
.service-cluster,
.service-feature,
.detail-panel,
.gallery-hero-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,250,243,.96), rgba(246,237,223,.94));
  box-shadow: 0 18px 36px rgba(24,31,25,.1);
}
.home-entry,
.offer-panel,
.contact-choice,
.form-shell,
.project-card,
.gallery-card,
.service-cluster,
.service-feature,
.detail-panel,
.gallery-hero-panel {
  border-radius: var(--radius-md);
}
.side-note,
.contact-info { border-radius: 0; }
.home-entry {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 340px;
}
.home-entry-visual {
  min-height: 100%;
  overflow: hidden;
  background: #d9ceb1;
}
.home-entry-visual img {
  image-rendering: auto;
  filter: contrast(1.05) saturate(1.03) brightness(1.01);
  backface-visibility: hidden;
  transform: translateZ(0);
}
.home-entry-visual-complet img {
  object-position: center 48%;
}
.home-entry-visual-service img {
  object-position: center 52%;
  filter: contrast(1.08) saturate(1.02) brightness(1.02);
}
.home-entry-copy {
  padding: 2rem;
  display: grid;
  align-content: center;
  gap: .9rem;
}
.home-entry-copy .eyebrow { margin-bottom: 0; }
.home-entry-title {
  font-family: var(--title);
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  line-height: .98;
  letter-spacing: -.03em;
}
.home-entry-subtitle {
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
}
.home-entry-copy p,
.offer-panel p,
.side-note p,
.service-item p,
.service-feature p,
.contact-choice p,
.contact-info p,
.form-shell p,
.project-copy p,
.detail-panel p,
.gallery-card p,
.footer-brand p,
.footer-col a,
.footer-col span,
.footer-bottom a,
.footer-bottom span {
  color: var(--ink-soft);
  line-height: 1.76;
  font-size: .94rem;
}
.home-entry-copy h3,
.offer-panel h3,
.service-item h3,
.service-feature h3,
.contact-choice h3,
.contact-info h3,
.project-copy h3,
.detail-panel h3,
.gallery-card h3 {
  font-family: var(--title);
  font-size: 1.45rem;
  line-height: 1.02;
}
.home-entry-copy .btn { margin-top: .25rem; }
.home-estimate-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.15rem;
  padding: clamp(1rem, 2.2vw, 1.45rem);
  border: 1px solid rgba(111,107,69,.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,253,248,.8), transparent 30%),
    linear-gradient(135deg, rgba(241,232,211,.94), rgba(255,253,248,.9));
  box-shadow: 0 18px 38px rgba(24,31,25,.1);
}
.home-estimate-kicker {
  display: block;
  margin-bottom: .35rem;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
}
.home-estimate-promo h3 {
  font-family: var(--title);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}
.home-estimate-promo p {
  max-width: 660px;
  margin-top: .45rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.atelier-block {
  display: grid;
  grid-template-columns: 1.08fr .74fr .86fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}
.atelier-media {
  height: clamp(470px, 34vw, 620px);
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.atelier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.atelier-copy {
  padding: 0;
  max-width: none;
}
.eyebrow-stack { display: grid; gap: .55rem; margin-top: 1.4rem; }
.inline-note {
  font-size: .88rem;
  color: var(--ink-soft);
}
.atelier-map-card {
  padding: 0;
  background: transparent;
}
.atelier-map-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(30,38,31,.08));
}
.split-band {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, rgba(255,249,241,.98), rgba(239,227,212,.94));
  border: 1px solid rgba(84,97,80,.08);
}
.band-media { min-height: 100%; }
.band-copy {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.band-copy.soft {
  background:
    radial-gradient(circle at 84% 18%, rgba(111,107,69,.12), transparent 22%),
    radial-gradient(circle at 12% 82%, rgba(111,107,69,.08), transparent 24%),
    linear-gradient(160deg, rgba(255,253,248,.97), rgba(247,240,226,.95) 58%, rgba(231,221,198,.9) 100%);
  color: var(--ink);
}
.band-copy.olive {
  background:
    linear-gradient(145deg, #6F6B45, #6F6B45 100%);
  color: var(--white);
}
.band-copy.soft .section-title,
.band-copy.soft .eyebrow,
.band-copy.soft .copy {
  color: var(--ink);
}
.band-copy.olive p { color: rgba(255,255,255,.92); }
.band-copy.olive .section-title,
.band-copy.olive .eyebrow,
.section-olive .section-title,
.section-olive .eyebrow {
  text-shadow: 0 2px 18px rgba(0,0,0,.18);
}
.gallery-head,
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.65rem;
}
.gallery-showcase {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 1rem;
}
.gallery-large,
.gallery-stack a {
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 340px;
  box-shadow: var(--shadow-sm);
}
.gallery-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.gallery-large img,
.gallery-stack img,
.home-entry img,
.atelier-media img,
.band-media img,
.offer-panel img,
.project-card img,
.gallery-mosaic img,
.project-main img,
.project-side img,
.project-more img,
.detail-gallery img,
.detail-hero-media img,
.service-banner img {
  transition: transform .45s ease;
}
.gallery-large:hover img,
.gallery-stack a:hover img,
.offer-panel:hover img,
.project-card:hover img,
.detail-gallery div:hover img { transform: scale(1.03); }
.home-entry:hover img { transform: none; }
.offer-panel:hover .offer-panel-image img { transform: none; }
.gallery-cta-centered {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}
.home-reviews-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(111,107,69,.12), transparent 26%),
    linear-gradient(180deg, rgba(247,240,226,.98), rgba(236,222,202,.94));
}
.reviews-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.4rem;
  align-items: stretch;
}
.reviews-intro {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.google-rating-card,
.review-feature-card {
  border: 1px solid rgba(111,107,69,.14);
  background: linear-gradient(180deg, rgba(255,253,248,.94), rgba(247,240,226,.92));
  box-shadow: 0 18px 42px rgba(30,38,31,.1);
}
.google-rating-card {
  display: grid;
  gap: .65rem;
  padding: 1.35rem;
  border-radius: 18px;
}
.google-rating-kicker,
.review-source {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
}
.google-rating-card strong {
  font-family: var(--title);
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: .9;
  color: var(--ink);
}
.google-rating-stars {
  color: var(--olive);
  letter-spacing: .2em;
  font-size: .9rem;
}
.google-rating-card p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: .95rem;
}
.google-rating-card .btn {
  width: fit-content;
  margin-top: .25rem;
}
.reviews-showcase {
  display: block;
}
.review-feature-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 1.6rem;
  min-height: 430px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 14%, rgba(111,107,69,.12), transparent 24%),
    linear-gradient(145deg, rgba(255,253,248,.97), rgba(242,232,216,.94));
}
.review-feature-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.review-counter {
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--olive);
}
.review-feature-card p {
  position: relative;
  max-width: 44rem;
  color: var(--ink);
  font-family: var(--title);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}
.review-feature-card p::before {
  content: "“";
  display: block;
  margin-bottom: .15rem;
  color: rgba(111,107,69,.5);
  font-size: 3rem;
  line-height: .7;
}
.review-feature-bottom {
  display: grid;
  gap: .25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(111,107,69,.14);
}
.review-feature-bottom strong {
  font-family: var(--title);
  font-size: 1.1rem;
  color: var(--ink);
}
.review-feature-bottom span {
  color: var(--ink-soft);
  font-size: .9rem;
}
.review-carousel-nav {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  gap: .55rem;
}
.review-carousel-nav button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(111,107,69,.18);
  background: rgba(255,253,248,.88);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(30,38,31,.1);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.review-carousel-nav button:hover {
  transform: translateY(-1px);
  border-color: rgba(111,107,69,.34);
  background: rgba(255,253,248,1);
}
@media (max-width: 760px) {
  .review-feature-card {
    min-height: 280px;
  }
}
.process-list {
  display: grid;
  gap: 1rem;
}
.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
}
.process-item:first-child { border-top: none; }
.process-count {
  font-family: var(--title);
  font-size: 1.2rem;
  color: var(--olive);
}
.process-item h3 {
  font-family: var(--title);
  font-size: 1.1rem;
  margin-bottom: .25rem;
}
.process-list-upgraded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 1.35rem;
}
.process-card {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-content: start;
  min-height: 244px;
  padding: 1.5rem;
  border-top: 1px solid rgba(63, 79, 58, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,250,243,.98), rgba(247,238,226,.96));
  box-shadow: 0 16px 36px rgba(27, 36, 29, 0.14);
  transition: transform .22s ease, box-shadow .22s ease;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(27, 36, 29, 0.18);
}
.process-card:first-child { border-top: 1px solid rgba(63, 79, 58, 0.12); }
.process-card .process-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111,107,69,.14), rgba(111,107,69,.1));
  color: var(--olive-deep);
  font-size: 1rem;
  letter-spacing: .08em;
}
.process-card h3 {
  font-size: 1.28rem;
  line-height: 1.08;
  margin-bottom: .45rem;
  color: #23301f;
}
.process-card .copy {
  color: #4d5a48;
}
.section-olive .section-title,
.section-olive .eyebrow {
  color: #f7f3ea;
}
.process-timeline {
  position: relative;
  display: grid;
  gap: 1.1rem;
  margin-top: 1.45rem;
  padding: .35rem 0;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(245,243,239,.22), rgba(245,243,239,.58), rgba(245,243,239,.22));
  transform: translateX(-50%);
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 118px;
}
.timeline-step:nth-child(even) .timeline-card {
  grid-column: 3;
}
.timeline-step:nth-child(odd) .timeline-card {
  grid-column: 1;
}
.timeline-number {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255,248,236,.34);
  background: linear-gradient(180deg, rgba(255,245,229,.18), rgba(111,107,69,.08));
  backdrop-filter: blur(8px);
  font-family: var(--title);
  font-size: .95rem;
  letter-spacing: .08em;
  color: #f7f3ea;
  box-shadow: 0 12px 28px rgba(20, 24, 18, .18);
  z-index: 1;
}
.timeline-card {
  padding: 1rem 0;
  max-width: 420px;
}
.timeline-card h3 {
  font-family: var(--title);
  font-size: 1.18rem;
  line-height: 1.04;
  margin-bottom: .35rem;
  color: #f7f3ea;
}
.timeline-card .copy {
  color: rgba(247,243,234,.82);
  line-height: 1.72;
  max-width: 38ch;
}
.timeline-step:nth-child(odd) .timeline-card {
  text-align: right;
  margin-left: auto;
}
.timeline-step:nth-child(odd) .timeline-card .copy {
  margin-left: auto;
}
.process-showcase-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(231,217,196,.72), transparent 42%),
    linear-gradient(180deg, #F8F3E9 0%, #F1E5D2 100%);
}
.process-showcase-head {
  max-width: 880px;
  margin: 0 auto 2rem;
  text-align: center;
}
.process-showcase-head .eyebrow {
  justify-content: center;
  color: var(--olive);
}
.process-showcase-head .section-title {
  max-width: none;
  color: #14271f;
}
.process-showcase-head p {
  max-width: 48rem;
  margin: .8rem auto 0;
  color: rgba(31,36,33,.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}
.process-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.process-flow-card {
  position: relative;
  min-height: 260px;
  padding: 2rem 1.55rem 1.45rem;
  border-radius: 22px;
  border: 1px solid rgba(111,107,69,.1);
  background: rgba(255,253,248,.58);
  box-shadow: 0 18px 46px rgba(54,48,31,.11);
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  overflow: visible;
}
.process-badge {
  position: absolute;
  top: -28px;
  left: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 24%, #8C875B, #5F603C 72%);
  color: #fffaf0;
  font-family: var(--title);
  font-size: 1.34rem;
  letter-spacing: .02em;
  box-shadow: 0 14px 28px rgba(61,61,39,.22);
}
.process-flow-icon {
  width: 112px;
  height: 90px;
  margin-bottom: 1.05rem;
  display: grid;
  place-items: center;
}
.process-flow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.process-flow-icon svg,
.process-start-icon svg {
  width: 100%;
  height: 100%;
  stroke: #77724A;
  fill: none;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-flow-card h3 {
  width: 100%;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(111,107,69,.18);
  font-family: var(--title);
  font-size: 1.18rem;
  line-height: 1.05;
  color: #1f2d25;
}
.process-flow-card p {
  max-width: 31ch;
  margin-top: .55rem;
  color: rgba(31,36,33,.78);
  line-height: 1.62;
}
.process-start-cta {
  width: min(480px, 100%);
  min-height: 74px;
  margin: 1.65rem auto 0;
  padding: .75rem 1.2rem;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: center;
  border-radius: 999px;
  background: radial-gradient(circle at 12% 15%, #8B875A, #6F6B45 72%);
  color: #fffaf0;
  box-shadow: 0 18px 42px rgba(61,61,39,.24);
}
.process-start-icon {
  width: 50px;
  height: 50px;
  padding-right: .9rem;
  border-right: 1px solid rgba(255,250,240,.34);
}
.process-start-icon svg {
  stroke: #fffaf0;
  stroke-width: 2.6;
}
.process-start-cta strong,
.process-start-cta em {
  display: block;
  font-style: normal;
}
.process-start-cta strong {
  font-family: var(--title);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .9rem;
}
.process-start-cta em {
  margin-top: .15rem;
  color: rgba(255,250,240,.82);
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .68s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    transform .68s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
.home-entry.reveal-on-scroll,
.offer-panel.reveal-on-scroll,
.project-card.reveal-on-scroll,
.detail-panel.reveal-on-scroll,
.service-item.reveal-on-scroll {
  transform: translateY(26px) scale(.985);
}
.home-entry.reveal-on-scroll.is-visible,
.offer-panel.reveal-on-scroll.is-visible,
.project-card.reveal-on-scroll.is-visible,
.detail-panel.reveal-on-scroll.is-visible,
.service-item.reveal-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}
.gallery-large.reveal-on-scroll,
.gallery-stack a.reveal-on-scroll,
.atelier-media.reveal-on-scroll,
.model-focus-media.reveal-on-scroll,
.detail-hero-media.reveal-on-scroll,
.roof-single-visual.reveal-on-scroll {
  transform: translateY(18px) scale(1.015);
}
.gallery-large.reveal-on-scroll.is-visible,
.gallery-stack a.reveal-on-scroll.is-visible,
.atelier-media.reveal-on-scroll.is-visible,
.model-focus-media.reveal-on-scroll.is-visible,
.detail-hero-media.reveal-on-scroll.is-visible,
.roof-single-visual.reveal-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none !important;
  }
}
.contact-chooser { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-home-shell {
  display: grid;
  gap: 1.35rem;
}
.contact-home-simple {
  padding: clamp(1.1rem, 2.6vw, 1.8rem);
  border: 1px solid rgba(111,107,69,.14);
  background:
    radial-gradient(circle at 88% 14%, rgba(111,107,69,.1), transparent 24%),
    linear-gradient(180deg, rgba(255,249,241,.96), rgba(245,234,218,.92));
  box-shadow: 0 20px 48px rgba(30,38,31,.1);
  border-radius: 22px;
}
.contact-home-intro p {
  max-width: 760px;
  color: var(--ink-soft);
  line-height: 1.72;
}
.home-form-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.home-form-choice {
  display: grid;
  gap: .45rem;
  min-height: 178px;
  padding: 1.15rem;
  border: 1px solid rgba(111,107,69,.14);
  border-radius: 18px;
  background: rgba(255,253,248,.66);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 12px 28px rgba(30,38,31,.07);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.home-form-choice:hover,
.home-form-choice.active {
  transform: translateY(-2px);
  border-color: rgba(111,107,69,.38);
  background: linear-gradient(180deg, rgba(255,253,248,.96), rgba(234,224,203,.94));
  box-shadow: 0 18px 38px rgba(30,38,31,.13);
}
.home-form-choice-kicker {
  width: fit-content;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: rgba(111,107,69,.1);
  color: var(--olive);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-form-choice strong {
  font-family: var(--title);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.02;
}
.home-form-choice small {
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.55;
}
.contact-home-simple .contact-home-copy-pane {
  padding-top: 0;
}
.contact-home-simple .contact-home-copy-pane h3 {
  font-family: var(--title);
  font-size: 1.4rem;
  line-height: 1.02;
  margin-bottom: .55rem;
}
.contact-home-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}
.contact-home-links [data-pane-group] { display: none; }
.contact-home-links [data-pane-group].active { display: inline-flex; }
.contact-home-copy {
  padding: 1.35rem;
  background: linear-gradient(135deg, rgba(111,107,69,.16), rgba(255,253,248,.72));
  border: 1px solid rgba(111,107,69,.18);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(30,38,31,.07);
}
.contact-home-copy-pane { display: none; }
.contact-home-copy-pane.active { display: block; }
.contact-home-tabs {
  display: grid;
  gap: .9rem;
}
.contact-choice {
  padding: 1.55rem;
  display: grid;
  gap: .75rem;
}
.contact-choice .btn { margin-top: .2rem; }
.contact-choice small {
  color: var(--ink-soft);
  font-size: .82rem;
}
.contact-choice.active {
  border-color: rgba(111,107,69,.28);
  background: rgba(250,247,240,.96);
  box-shadow: var(--shadow-md);
}
.contact-choice-list {
  list-style: none;
  display: grid;
  gap: .55rem;
  margin-top: 1rem;
}
.contact-choice-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: .9rem;
}
.contact-choice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
.offer-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.2rem;
  align-items: end;
}
.offer-panel {
  overflow: hidden;
  display: grid;
}
.offer-panel.compact {
  grid-template-rows: auto 1fr;
  height: 100%;
}
.offer-panel-image { height: 320px; }
.offer-panel.compact .offer-panel-image { height: 230px; }
.offer-panel-image img {
  backface-visibility: hidden;
  transform: translateZ(0);
}
.offer-panel-image-ventoux img { object-position: center 48%; }
.offer-panel-image-surmesure img { object-position: center 46%; }
.offer-panel-image-kit img { object-position: center 52%; }
.offer-panel-body { padding: 1.5rem; display: grid; gap: .95rem; }
.offer-panel-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.kit-single-offer {
  grid-template-columns: minmax(0, 520px);
}
.offer-kicker {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
}
.offer-subtitle {
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
}
.offer-panel-actions {
  margin-top: auto;
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  width: 100%;
}
.offer-panel-actions .btn {
  flex: 1 1 0;
  justify-content: center;
}
.offer-bullets,
.detail-list,
.info-list {
  list-style: none;
  display: grid;
  gap: .58rem;
}
.offer-bullets li,
.detail-list li,
.info-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: .9rem;
}
.offer-bullets li::before,
.detail-list li::before,
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--amber), var(--sky));
}
.service-page-layout {
  display: grid;
  gap: 2.4rem;
}
.service-page-layout.compact { gap: 1.45rem; }
.service-form-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
  gap: 1.6rem;
  align-items: stretch;
  padding: 1.95rem 2rem;
  border: 1px solid rgba(33,48,38,.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,248,236,.24), transparent 20%),
    linear-gradient(135deg, rgba(255,239,214,.96), rgba(236,183,130,.74) 56%, rgba(111,107,69,.16) 100%);
  box-shadow: 0 20px 46px rgba(31,45,36,.1);
}
.service-form-callout-copy {
  display: grid;
  align-content: start;
  gap: .9rem;
  max-width: 42rem;
}
.service-form-callout-title {
  font-size: clamp(1.95rem, 2.8vw, 2.7rem);
  max-width: 14ch;
}
.service-form-callout .copy {
  max-width: 56ch;
  color: rgba(33,48,38,.84);
}
.service-form-callout-side {
  display: flex;
  align-items: stretch;
}
.service-form-callout-panel {
  width: 100%;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(255,250,243,.58);
  border: 1px solid rgba(255,253,248,.46);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
}
.service-form-callout-panel .btn-primary {
  width: 100%;
  min-height: 58px;
  padding-inline: 1.65rem;
  justify-content: center;
}
.service-form-callout-note {
  font-size: .92rem;
  line-height: 1.68;
  color: rgba(33,48,38,.72);
  max-width: 28ch;
}
.service-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.service-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}
.service-compact-card {
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,251,245,.96), rgba(246,237,225,.95));
  box-shadow: 0 15px 32px rgba(30,38,31,.09);
  border-radius: 14px;
  display: grid;
  gap: .65rem;
  align-content: start;
}
.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(111,107,69,.22);
  background: #8B875E;
  box-shadow: 0 10px 20px rgba(30,38,31,.12);
}
.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform-origin: center;
}
.service-compact-card h3 {
  font-family: var(--title);
  font-size: 1.04rem;
  line-height: 1.05;
}
.service-compact-card p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: .88rem;
}
.service-compact-card.large {
  padding: 1.5rem;
}
.service-compact-card.large .service-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}
.service-compact-card .service-item-link {
  margin-top: .25rem;
}
.model-focus {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 1.45rem;
  align-items: start;
}
.model-focus-media,
.model-focus-copy {
  display: grid;
  gap: .95rem;
}
.model-focus-main,
.model-focus-strip img,
.model-focus-block {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,250,243,.94), rgba(246,237,225,.92));
  box-shadow: var(--shadow-sm);
}
.model-focus-main {
  min-height: 430px;
  overflow: hidden;
}
.model-focus-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.model-focus-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}
.model-focus-strip img {
  height: 164px;
  overflow: hidden;
}
.model-focus-title {
  font-family: var(--title);
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  line-height: 1;
}
.model-focus-block {
  padding: 1.35rem;
}
.model-focus-block p {
  color: var(--ink-soft);
  line-height: 1.72;
}
.surmesure-step-grid {
  display: grid;
  gap: .8rem;
}
.surmesure-step-grid article {
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,250,243,.96), rgba(246,237,223,.94));
  box-shadow: var(--shadow-sm);
}
.surmesure-step-grid span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(111,107,69,.12);
  color: var(--olive-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.surmesure-step-grid strong {
  font-family: var(--title);
  font-size: 1.06rem;
  color: var(--ink);
}
.surmesure-step-grid p {
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.62;
}
.surmesure-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 1.35rem;
  align-items: stretch;
}
.surmesure-gallery,
.surmesure-content-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,250,243,.96), rgba(246,237,223,.94));
  box-shadow: var(--shadow-md);
}
.surmesure-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: .75rem;
  padding: .75rem;
  min-height: 100%;
}
.surmesure-gallery-main {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(241,232,211,.72);
}
.surmesure-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}
.surmesure-gallery-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,253,248,.42);
  border-radius: 999px;
  background: rgba(20,24,19,.24);
  color: var(--white);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.surmesure-gallery-arrow.prev { left: .8rem; }
.surmesure-gallery-arrow.next { right: .8rem; }
.surmesure-gallery-count {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  padding: .34rem .55rem;
  border-radius: 999px;
  background: rgba(20,24,19,.32);
  color: rgba(255,253,248,.9);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.surmesure-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .55rem;
}
.surmesure-gallery-thumbs button {
  height: 86px;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255,253,248,.82);
  border-radius: 14px;
  background: rgba(255,253,248,.72);
  opacity: .76;
  box-shadow: 0 10px 20px rgba(24,31,25,.08);
}
.surmesure-gallery-thumbs button.active {
  border-color: var(--olive);
  opacity: 1;
  transform: translateY(-1px);
}
.surmesure-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.surmesure-content-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 2.7vw, 2rem);
}
.surmesure-content-panel .section-title {
  max-width: 12ch;
}
.surmesure-intro {
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.72;
}
.surmesure-price-inline {
  display: grid;
  gap: .25rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(111,107,69,.2);
  border-radius: 18px;
  background: rgba(111,107,69,.08);
}
.surmesure-price-inline span {
  color: var(--olive);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.surmesure-price-inline strong {
  font-family: var(--title);
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: .95;
}
.surmesure-price-inline p {
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.55;
}
.surmesure-includes-compact {
  display: grid;
  gap: .75rem;
  padding-top: .3rem;
}
.surmesure-includes-compact h2 {
  font-family: var(--title);
  font-size: 1.2rem;
  line-height: 1.05;
}
.surmesure-includes-compact ul {
  list-style: none;
  display: grid;
  gap: .42rem;
}
.surmesure-includes-compact li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.48;
}
.surmesure-includes-compact li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--olive);
}
.surmesure-note {
  padding-top: .9rem;
  border-top: 1px solid rgba(63,79,58,.12);
  color: var(--ink-soft);
  line-height: 1.68;
  font-size: .94rem;
}
.model-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
}
.model-estimate-note {
  width: fit-content;
  max-width: 100%;
  padding: .72rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(111,107,69,.18);
  background: rgba(111,107,69,.1);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.4;
}
.btn-phone {
  border-color: rgba(111,107,69,.24);
  background: rgba(255,253,248,.72);
}
.model-phone-note {
  display: grid;
  gap: .25rem;
  padding: .95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(111,107,69,.14);
  background: linear-gradient(135deg, rgba(255,253,248,.82), rgba(231,217,196,.44));
}
.model-phone-note strong {
  font-family: var(--title);
  line-height: 1.05;
  color: var(--ink);
}
.model-phone-note span {
  color: rgba(31,36,33,.76);
  line-height: 1.6;
  font-size: .93rem;
}
.model-phone-note a {
  font-weight: 900;
  color: var(--olive-deep);
  text-decoration: underline;
  text-underline-offset: .18em;
}
.surmesure-budget-one {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(111,107,69,.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 10%, rgba(111,107,69,.14), transparent 22%),
    linear-gradient(180deg, rgba(255,250,243,.98), rgba(246,237,223,.95));
  box-shadow: var(--shadow-md);
}
.surmesure-budget-one-head {
  display: grid;
  gap: .85rem;
}
.surmesure-budget-one-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: end;
}
.surmesure-budget-one-title .section-title {
  max-width: 13ch;
}
.surmesure-budget-one-title p {
  max-width: 58ch;
  margin-top: .75rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.68;
}
.surmesure-budget-one-price {
  min-width: 260px;
  display: grid;
  gap: .2rem;
  padding: 1.15rem 1.25rem;
  border-radius: 22px;
  background: #6F6B45;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(24,31,25,.16);
}
.surmesure-budget-one-price span {
  color: rgba(255,253,248,.75);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.surmesure-budget-one-price strong {
  font-family: var(--title);
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  line-height: .9;
}
.surmesure-budget-one-body {
  display: grid;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(63,79,58,.14);
}
.surmesure-budget-one-body h2 {
  font-family: var(--title);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.02;
}
.surmesure-budget-one-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
}
.surmesure-budget-one-grid span {
  position: relative;
  min-height: 76px;
  padding: .82rem .78rem .78rem 2rem;
  border: 1px solid rgba(36,48,40,.09);
  border-radius: 15px;
  background: rgba(255,253,248,.78);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
}
.surmesure-budget-one-grid span::before {
  content: "";
  position: absolute;
  left: .8rem;
  top: 1.08rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--olive);
}
.surmesure-budget-one-body p {
  max-width: 72ch;
  color: var(--ink-soft);
  line-height: 1.68;
}
.surmesure-budget-one-body .btn {
  justify-self: start;
}
.surmesure-clean-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}
.surmesure-clean-price,
.surmesure-clean-included {
  border: 1px solid rgba(111,107,69,.18);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.surmesure-clean-price {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3.4vw, 2.5rem);
  background: #6F6B45;
  color: var(--white);
}
.surmesure-clean-price .eyebrow,
.surmesure-clean-price .section-title {
  color: var(--white);
}
.surmesure-clean-price .section-title {
  max-width: 10ch;
}
.surmesure-clean-price p {
  max-width: 44ch;
  color: rgba(255,253,248,.9);
  line-height: 1.72;
}
.surmesure-clean-amount {
  display: grid;
  gap: .25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,253,248,.18);
  border-bottom: 1px solid rgba(255,253,248,.18);
}
.surmesure-clean-amount span {
  color: rgba(255,253,248,.72);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.surmesure-clean-amount strong {
  font-family: var(--title);
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  line-height: .88;
}
.surmesure-clean-price .btn {
  justify-self: start;
  background: rgba(255,253,248,.96);
  color: var(--ink);
}
.surmesure-clean-included {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(255,250,243,.98), rgba(246,237,223,.94));
}
.surmesure-clean-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}
.surmesure-clean-grid span {
  position: relative;
  padding: .78rem .85rem .78rem 2.05rem;
  border: 1px solid rgba(36,48,40,.08);
  border-radius: 14px;
  background: rgba(255,253,248,.75);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
}
.surmesure-clean-grid span::before {
  content: "";
  position: absolute;
  left: .82rem;
  top: 1.1rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--olive);
}
.surmesure-clean-included p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: .94rem;
}
.surmesure-photo-section {
  padding-top: 1.1rem;
}
.surmesure-photo-strip {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: .85rem;
}
.surmesure-photo-strip img {
  height: 260px;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}
.surmesure-top-section {
  padding-top: calc(var(--nav-h) + 2rem);
}
.surmesure-offer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(111,107,69,.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,253,248,.28), transparent 22%),
    linear-gradient(135deg, #6F6B45 0%, #6F6B45 42%, rgba(244,235,220,.98) 42%, rgba(255,250,243,.98) 100%);
  box-shadow: 0 26px 70px rgba(24,31,25,.16);
}
.surmesure-offer-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}
.surmesure-offer-copy .eyebrow,
.surmesure-offer-copy .section-title {
  color: var(--white);
}
.surmesure-offer-copy .section-title {
  max-width: 12ch;
  text-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.surmesure-offer-lead {
  max-width: 52ch;
  color: rgba(255,253,248,.9);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.72;
}
.surmesure-price-block {
  display: grid;
  gap: .45rem;
  max-width: 520px;
  padding: 1.25rem;
  border: 1px solid rgba(255,253,248,.34);
  border-radius: 22px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.surmesure-price-block span {
  color: var(--olive);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.surmesure-price-block strong {
  font-family: var(--title);
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .92;
}
.surmesure-price-block p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.62;
}
.surmesure-included-mini {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  max-width: 560px;
}
.surmesure-included-mini span {
  padding: .5rem .72rem;
  border: 1px solid rgba(255,253,248,.24);
  border-radius: 999px;
  background: rgba(255,253,248,.13);
  color: rgba(255,253,248,.92);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.surmesure-cta-row {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}
.surmesure-offer-copy .btn,
.surmesure-cta-row .btn {
  justify-self: start;
  min-height: 54px;
}
.surmesure-offer-media {
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto;
  gap: .8rem;
}
.surmesure-offer-main,
.surmesure-offer-thumbs img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(241,232,211,.72);
  box-shadow: var(--shadow-sm);
}
.surmesure-offer-main img,
.surmesure-offer-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.surmesure-offer-main img {
  object-position: center;
}
.surmesure-offer-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}
.surmesure-offer-thumbs img {
  height: 132px;
  border-radius: 16px;
}
.surmesure-included-section {
  padding-top: 1.8rem;
}
.surmesure-included-head {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 1.2rem;
}
.surmesure-included-head p {
  max-width: 440px;
  color: var(--ink);
  line-height: 1.65;
  font-weight: 700;
}
.surmesure-included-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
}
.surmesure-included-grid article {
  position: relative;
  min-height: 108px;
  padding: 1rem .95rem .95rem 2.65rem;
  border: 1px solid rgba(111,107,69,.18);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,250,243,.96), rgba(246,237,223,.94));
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.48;
  box-shadow: var(--shadow-sm);
}
.surmesure-included-grid article::before {
  content: "✓";
  position: absolute;
  left: .9rem;
  top: .85rem;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--olive);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
}
.surmesure-budget-section {
  padding-top: 1.1rem;
}
.surmesure-budget-card {
  display: grid;
  gap: 1.35rem;
  padding: 1.65rem;
  border: 1px solid rgba(36,48,40,.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 14%, rgba(111,107,69,.13), transparent 22%),
    linear-gradient(180deg, rgba(255,250,243,.98), rgba(244,235,220,.96));
  box-shadow: var(--shadow-md);
}
.surmesure-budget-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: end;
}
.surmesure-budget-head .copy {
  max-width: 56ch;
  margin-top: .7rem;
}
.surmesure-budget-head .btn {
  min-height: 54px;
  justify-content: center;
}
.surmesure-budget-body {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid rgba(63,79,58,.12);
}
.surmesure-budget-intro {
  display: grid;
  gap: .5rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(111,107,69,.09);
}
.surmesure-budget-intro h3 {
  font-family: var(--title);
  font-size: 1.22rem;
  line-height: 1.04;
}
.surmesure-budget-intro p {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.68;
}
.surmesure-budget-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.surmesure-budget-grid div {
  position: relative;
  min-height: 64px;
  padding: .86rem .9rem .86rem 2rem;
  border: 1px solid rgba(36,48,40,.09);
  border-radius: 15px;
  background: rgba(255,253,248,.72);
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.45;
}
.surmesure-budget-grid div::before {
  content: "";
  position: absolute;
  left: .9rem;
  top: 1.15rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--olive);
}
.surmesure-budget-note {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(111,107,69,.18);
  border-radius: 16px;
  background: rgba(111,107,69,.08);
  color: var(--ink);
  line-height: 1.68;
  font-size: .94rem;
}
.model-price-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
}
.model-bottom-action {
  display: flex;
  justify-content: center;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 1.2rem;
  align-items: end;
}
.service-banner {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-banner.short { min-height: 260px; }
.service-overview-grid { margin-top: 1.25rem; }
.service-feature {
  padding: 1.6rem;
  display: grid;
  gap: .8rem;
}
.service-feature .service-icon,
.service-item .service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(111,107,69,.18);
  background: rgba(111,107,69,.07);
  border-radius: 12px;
}
.service-feature svg,
.service-item svg { width: 20px; height: 20px; stroke: var(--olive); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-cluster {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}
.service-cluster-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}
.service-cluster h2 {
  font-family: var(--title);
  font-size: 1.45rem;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.service-list.dense { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-item {
  padding: 1.05rem 0;
  border-top: 1px solid rgba(36,48,40,.08);
  display: grid;
  gap: .65rem;
}
.service-item:first-child,
.service-list .service-item:nth-child(-n+3) { border-top: none; }
.service-item-link {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive);
}
.info-strip {
  padding: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  color: var(--ink-soft);
  font-size: .9rem;
}
.gallery-page-head {
  display: grid;
  gap: 1.2rem;
}
.gallery-filter-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.search-box { min-width: min(100%, 300px); }
.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .95rem 1.1rem;
  background: rgba(250,247,240,.88);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.filter-chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  padding: .72rem .9rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.filter-chip.active { background: var(--olive); border-color: var(--olive); color: var(--white); }
.project-list { display: grid; gap: 1.35rem; }
.project-card {
  padding: 1.3rem;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.project-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.project-header h3 {
  font-family: var(--title);
  font-size: 1.3rem;
}
.project-grid { grid-template-columns: 1.22fr .78fr; }
.project-main,
.project-side div,
.project-more div {
  overflow: hidden;
  border-radius: 16px;
}
.project-main { height: 430px; }
.project-side { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.project-side div { height: 208px; }
.project-more {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin-top: .9rem;
}
.project-more.open {
  display: grid;
  animation: softReveal .34s ease both;
}
.project-more div { height: 170px; }
.project-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.project-actions span {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: .86rem;
  line-height: 1.74;
}
.contact-layout,
.contact-row { display: grid; gap: 1.25rem; }
.contact-layout { grid-template-columns: .82fr 1.18fr; }
.contact-layout.dynamic-copy { grid-template-columns: .88fr 1.12fr; }
.contact-page-simple-head {
  max-width: 780px;
}
.contact-estimate-shell {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1.05rem;
  overflow: visible;
}
.contact-estimate-shell.form-open {
  gap: .75rem;
}
.estimate-dedicated .page-banner {
  display: none;
}
.estimate-dedicated .main-flow {
  padding-top: 112px;
}
.estimate-dedicated .section-tight {
  padding-top: clamp(1.4rem, 3vw, 2.4rem) !important;
}
.estimate-dedicated-shell {
  max-width: 860px;
}
.estimate-dedicated-shell .contact-estimate-switch,
.estimate-dedicated-shell .contact-direct-inline {
  display: none !important;
}
.estimate-dedicated-shell .estimate-choice-intro {
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,253,248,.9), transparent 30%),
    linear-gradient(135deg, rgba(241,232,211,.96), rgba(255,253,248,.92));
}
.estimate-dedicated-shell .estimate-choice-intro h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.estimate-dedicated-shell .estimate-choice-intro p {
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  color: rgba(31,36,33,.82);
}
.estimate-dedicated-shell .estimate-choice-note {
  max-width: 680px;
  background: rgba(111,107,69,.14);
}
.contact-estimate-shell.form-open .contact-estimate-forms {
  order: 3;
}
.contact-estimate-shell.form-open .contact-direct-inline {
  order: 4;
}
.contact-estimate-forms {
  position: relative;
  z-index: 3;
  display: grid;
  overflow: visible;
}
.contact-estimate-forms[hidden] {
  display: none !important;
}
.contact-estimate-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.estimate-choice-intro {
  display: grid;
  grid-template-columns: 1fr minmax(220px, .36fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1.25rem;
  border: 1px solid rgba(36,48,40,.1);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,253,248,.78), rgba(231,217,196,.46));
  box-shadow: 0 16px 34px rgba(30,38,31,.08);
}
.estimate-choice-intro h2 {
  margin-top: .25rem;
  font-family: var(--title);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1;
  color: var(--ink);
}
.estimate-choice-intro p {
  max-width: 62ch;
  margin-top: .65rem;
  color: rgba(31,36,33,.78);
  line-height: 1.7;
}
.estimate-choice-note {
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(111,107,69,.12);
  border: 1px solid rgba(111,107,69,.14);
}
.estimate-choice-note strong {
  font-family: var(--title);
  font-size: 1.08rem;
  line-height: 1;
}
.estimate-choice-note span {
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: .92rem;
}
.contact-estimate-option {
  display: grid;
  gap: .55rem;
  padding: 1.45rem;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(241,232,211,.92);
  box-shadow: var(--shadow-sm);
  min-height: 300px;
  align-content: start;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.contact-estimate-option-icon {
  width: 68px;
  height: 68px;
  margin-bottom: .35rem;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(111,107,69,.22);
  background: #8B875E;
  box-shadow: 0 12px 24px rgba(30,38,31,.14);
}
.contact-estimate-option-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform-origin: center;
}
.contact-estimate-option-icon,
.estimate-form-icon,
.form-mini-icon,
.service-quick-picks img {
  display: none !important;
}
.contact-direct-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(36,48,40,.1);
  border-radius: 20px;
  background: rgba(255,253,248,.74);
  box-shadow: 0 14px 30px rgba(30,38,31,.08);
}
.contact-direct-inline-head {
  display: grid;
  gap: .35rem;
  max-width: 620px;
}
.contact-direct-inline-head h2 {
  margin-top: .25rem;
  font-family: var(--title);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1;
}
.contact-direct-inline-head p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: .94rem;
}
.contact-direct-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.estimate-result-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: clamp(1.15rem, 2.2vw, 1.75rem);
  min-height: min(780px, calc(100vh - 126px));
  margin-top: 1.2rem;
  padding: clamp(1.65rem, 4.4vw, 4rem);
  border-radius: 32px;
  border: 1px solid rgba(255,253,248,.22);
  background:
    linear-gradient(135deg, rgba(23,32,25,.58), rgba(23,32,25,.24)),
    url("assets/home-hero/hero-main.before-13.jpg") center 50% / cover;
  color: var(--white);
  box-shadow: 0 34px 84px rgba(21,29,23,.28);
}
.estimate-result-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,253,248,.2), transparent 31%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28));
}
.estimate-result-panel > * {
  position: relative;
  z-index: 1;
}
.estimate-result-panel[hidden],
.estimate-followup-form[hidden] {
  display: none !important;
}
.live-estimate-inline {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  margin-top: .1rem;
  padding: .5rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(111,107,69,.16);
  background: rgba(255,253,248,.52);
  color: rgba(31,36,33,.74);
  font-size: .82rem;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(30,38,31,.06);
}
.live-estimate-inline[hidden] {
  display: none !important;
}
.live-estimate-inline strong {
  font-family: var(--title);
  font-size: .92rem;
  line-height: 1;
  font-weight: 800;
  color: var(--ink);
}
.estimate-result-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(.95rem, 2.1vw, 1.5rem);
  align-items: start;
}
.estimate-result-copy {
  max-width: 860px;
}
.estimate-result-hero .eyebrow {
  color: rgba(255,253,248,.84);
}
.estimate-result-hero h2 {
  margin-top: .25rem;
  font-family: var(--title);
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 18px 42px rgba(0,0,0,.34);
}
.estimate-result-hero p,
.estimate-result-note {
  color: rgba(255,253,248,.88);
  line-height: 1.7;
}
.estimate-result-price {
  display: inline-grid;
  justify-self: start;
  align-content: center;
  gap: .45rem;
  width: fit-content;
  max-width: 100%;
  padding: clamp(.9rem, 1.8vw, 1.25rem) clamp(1rem, 2.6vw, 1.7rem);
  border-radius: 22px;
  border: 1px solid rgba(255,253,248,.18);
  background: rgba(18,26,20,.26);
  backdrop-filter: blur(12px);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.estimate-result-price span {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,253,248,.78);
}
.estimate-result-price strong {
  font-family: var(--title);
  font-size: clamp(1.75rem, 3.8vw, 3.45rem);
  line-height: 1.02;
}
.estimate-result-summary {
  padding: clamp(1.05rem, 2.2vw, 1.55rem);
  border-radius: 26px;
  background: rgba(255,253,248,.86);
  border: 1px solid rgba(255,253,248,.3);
  backdrop-filter: blur(16px);
  color: var(--ink);
}
.estimate-result-summary h3 {
  font-family: var(--title);
  font-size: 1.3rem;
  margin-bottom: .75rem;
}
.estimate-result-summary ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  list-style: none;
}
.estimate-result-summary li {
  display: grid;
  gap: .25rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(255,253,248,.78);
  border: 1px solid rgba(111,107,69,.12);
  color: var(--ink-soft);
  line-height: 1.45;
}
.estimate-result-summary li strong {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive);
}
.estimate-result-summary li span {
  color: var(--ink);
  font-weight: 700;
}
.estimate-result-note {
  max-width: 760px;
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(18,26,20,.38);
  border: 1px solid rgba(255,253,248,.16);
  backdrop-filter: blur(14px);
}
.estimate-result-cta {
  justify-self: start;
  min-width: min(100%, 320px);
  box-shadow: 0 20px 46px rgba(0,0,0,.28);
}
.estimate-followup-form {
  margin-top: .75rem;
}
.estimate-consent {
  justify-content: flex-start;
  text-align: left;
}
.estimate-inline-warning {
  padding: .8rem 1rem;
  border-radius: 14px;
  background: rgba(150, 60, 44, .1);
  color: #673329;
  border: 1px solid rgba(150, 60, 44, .2);
}
.configurator-help {
  padding: .9rem 1rem;
  border-radius: 16px;
  background: rgba(111,107,69,.09);
  border: 1px solid rgba(111,107,69,.16);
  color: var(--ink-soft);
}
.contact-estimate-option:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: rgba(111,107,69,.32);
}
.contact-estimate-option.active {
  border-color: rgba(111,107,69,.44);
  background: linear-gradient(135deg, rgba(239,228,191,.96), rgba(213,197,138,.88));
}
.contact-estimate-shell.form-open .contact-estimate-option {
  padding: 1rem 1rem;
  gap: .2rem;
  min-height: auto;
}
.contact-estimate-shell.form-open .contact-estimate-option-icon,
.contact-estimate-shell.form-open .contact-estimate-option-kicker,
.contact-estimate-shell.form-open .contact-estimate-list {
  display: none;
}
.contact-estimate-shell.form-open .contact-estimate-option-title {
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
}
.contact-estimate-shell.form-open .contact-estimate-option-text {
  font-size: .88rem;
  line-height: 1.4;
}
.contact-estimate-option-title {
  font-family: var(--title);
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  line-height: 1;
}
.contact-estimate-option-kicker {
  width: fit-content;
  padding: .34rem .55rem;
  border-radius: 999px;
  background: rgba(255,253,248,.72);
  color: var(--olive-deep);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-estimate-option-text {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.6;
}
.contact-estimate-list {
  display: grid;
  gap: .35rem;
  margin-top: .25rem;
}
.contact-estimate-list span {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(31,36,33,.8);
  font-size: .88rem;
  line-height: 1.45;
}
.contact-estimate-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--olive);
}
.estimate-choice-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.estimate-choice-card {
  position: relative;
  display: grid;
  gap: .8rem;
  padding: .7rem;
  border: 1px solid rgba(36,48,40,.12);
  border-radius: 20px;
  background: rgba(255,253,248,.74);
  box-shadow: 0 12px 28px rgba(27,36,29,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  cursor: pointer;
}
.estimate-choice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(27,36,29,.12);
}
.estimate-choice-cards-simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.estimate-choice-card-simple {
  min-height: 150px;
  align-content: center;
  padding: 1.15rem;
}
.form-mini-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(111,107,69,.22);
  background: #8B875E;
  box-shadow: 0 10px 20px rgba(30,38,31,.12);
}
.form-mini-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform-origin: center;
}
.form-mini-icon img[src*="process-icons"] {
  transform: scale(1.12);
}
.estimate-choice-card-simple .estimate-choice-body {
  padding: 0;
  gap: .55rem;
}
.estimate-choice-card-simple .estimate-choice-body strong {
  font-size: 1.28rem;
}
.estimate-choice-card-simple .estimate-choice-body span {
  font-size: .95rem;
}
.estimate-choice-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.estimate-choice-card:has(input:checked) {
  border-color: rgba(111,107,69,.42);
  background: linear-gradient(180deg, rgba(255,253,248,.98), rgba(213,197,138,.46));
  box-shadow: 0 22px 40px rgba(27,36,29,.14);
}
.estimate-choice-media {
  min-height: 190px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(191,157,76,.12);
}
.estimate-choice-body {
  display: grid;
  gap: .35rem;
  padding: 0 .2rem .2rem;
}
.estimate-choice-body strong {
  font-family: var(--title);
  font-size: 1.15rem;
  line-height: 1.02;
  color: var(--ink);
}
.estimate-choice-body span {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.62;
}
.estimate-choice-link {
  width: fit-content;
  margin-top: .15rem;
  color: var(--olive-deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(111,107,69,.34);
}
.estimate-choice-link:hover {
  color: var(--ink);
  border-bottom-color: rgba(33,48,38,.55);
}
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.inspiration-grid-large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.inspiration-card {
  position: relative;
  display: grid;
  gap: .7rem;
  padding: .6rem;
  border: 1px solid rgba(36,48,40,.1);
  border-radius: 18px;
  background: rgba(255,253,248,.88);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor: pointer;
}
.inspiration-grid-large .inspiration-card {
  padding: .8rem;
}
.inspiration-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(27,36,29,.08);
}
.inspiration-card input {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 18px;
  height: 18px;
  accent-color: var(--olive);
}
.inspiration-card:has(input:checked) {
  border-color: rgba(111,107,69,.38);
  box-shadow: 0 18px 30px rgba(27,36,29,.1);
}
.inspiration-media {
  min-height: 118px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(191,157,76,.12);
}
.inspiration-grid-large .inspiration-media {
  min-height: 240px;
}
.inspiration-media-slider {
  position: relative;
}
.inspiration-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  background: rgba(27,36,29,.38);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
}
.inspiration-nav-prev {
  left: 10px;
}
.inspiration-nav-next {
  right: 10px;
}
.inspiration-name {
  display: block;
  padding: 0 .1rem .1rem;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}
.inspiration-card-text {
  align-content: center;
  min-height: 100%;
  padding: 1rem;
}
.inspiration-card-text .inspiration-name {
  padding-right: 1.4rem;
}
.service-multi-shell {
  display: grid;
  gap: .85rem;
}
.service-multi-list {
  display: grid;
  gap: .85rem;
}
.service-repeat-card {
  display: grid;
  gap: .85rem;
  padding: 1rem;
  border: 1px solid rgba(36,48,40,.1);
  border-radius: 18px;
  background: rgba(255,253,248,.72);
}
.service-quick-picks {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.service-quick-picks button {
  display: grid;
  justify-items: center;
  gap: .25rem;
  min-width: 62px;
  padding: .48rem .42rem;
  border: 1px solid rgba(36,48,40,.1);
  border-radius: 14px;
  background: rgba(255,253,248,.78);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.service-quick-picks button:hover,
.service-quick-picks button.active {
  transform: translateY(-1px);
  border-color: rgba(111,107,69,.38);
  background: rgba(247,243,234,.98);
  box-shadow: 0 10px 20px rgba(30,38,31,.1);
}
.service-quick-picks img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  background: #8B875E;
  transform-origin: center;
}
.service-row {
  align-items: end;
}
.contact-add-service {
  width: fit-content;
}
.service-remove {
  justify-self: start;
  min-height: 46px;
  padding: .85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(241,232,211,.84);
  color: var(--ink);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-estimate-pane { display: none; }
.contact-estimate-pane.active {
  display: block;
  position: relative;
  z-index: 4;
  overflow: visible;
}
.contact-estimate-form {
  position: relative;
  z-index: 5;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(241,232,211,.94);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}
.contact-estimate-form[data-wizard-form="complet"] {
  padding: 1.15rem 1.2rem 1rem;
  overflow: visible;
}
.estimate-wizard {
  position: relative;
  z-index: 5;
  display: grid;
  gap: .9rem;
  align-content: start;
  grid-template-rows: auto auto auto;
  min-height: 0;
  overflow: visible;
}
.wizard-progress {
  display: grid;
  gap: .45rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(36,48,40,.1);
}
.wizard-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}
.wizard-kicker,
.wizard-step-count {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.wizard-progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(36,48,40,.08);
  overflow: hidden;
}
.wizard-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--olive), var(--sand));
  transition: width .26s ease;
}
.wizard-step-title {
  font-family: var(--title);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.02;
}
.wizard-step-note {
  margin: 0;
  color: var(--ink);
  font-size: .97rem;
  line-height: 1.5;
  max-width: 66ch;
}
.wizard-stage {
  position: relative;
  z-index: 8;
  min-height: 0;
  overflow: visible;
  padding-right: 0;
  scrollbar-gutter: auto;
}
.wizard-step {
  position: relative;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  overflow: visible;
}
.wizard-step.active {
  z-index: 10;
  display: grid;
  gap: .8rem;
  align-content: start;
  opacity: 1;
  transform: translateY(0);
  animation: wizardFade .28s ease;
}
.wizard-step.estimate-form-section {
  padding: .15rem 0 .25rem;
  border-bottom: 0;
}
.wizard-step .estimate-form-head {
  display: flex;
  justify-content: center;
  gap: .3rem;
}
.wizard-step .estimate-form-icon {
  width: 78px;
  height: 78px;
  border-radius: 16px;
}
.wizard-step .estimate-form-head h2 {
  display: none;
}
.wizard-step .estimate-form-head .copy {
  margin: 0;
  color: var(--ink);
  font-size: .97rem;
  line-height: 1.5;
}
.wizard-step .form-group,
.wizard-step .form-row,
.wizard-step .choice-grid,
.wizard-step .estimate-choice-cards,
.wizard-step .service-multi-shell,
.wizard-step .inspiration-grid-large {
  gap: .8rem;
}
.wizard-step textarea {
  min-height: 120px;
}
@keyframes wizardFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .9rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(36,48,40,.08);
  background: rgba(241,232,211,.96);
}
.wizard-nav .btn,
.wizard-nav .submit-btn {
  width: auto;
  min-width: 190px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.45rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.wizard-submit {
  display: none;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(30,38,31,.16);
}
.estimate-form-section {
  position: relative;
  overflow: visible;
  display: grid;
  gap: 1rem;
  padding: 1.15rem 0 1.25rem;
  border-bottom: 1px solid rgba(36,48,40,.1);
}
.estimate-form-section[hidden] {
  display: none !important;
}
.estimate-form-section:last-of-type {
  border-bottom: none;
  padding-bottom: .25rem;
}
.estimate-form-head {
  display: grid;
  gap: .25rem;
}
.estimate-form-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(111,107,69,.22);
  background: #8B875E;
  box-shadow: 0 10px 22px rgba(30,38,31,.12);
}
.estimate-form-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform-origin: center;
}
.estimate-form-icon img[src*="process-icons"] {
  transform: scale(1.12);
}
.estimate-form-head h2 {
  font-family: var(--title);
  font-size: 1.15rem;
  line-height: 1;
}
.form-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.choice-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  overflow: visible;
}
.systeme-froid-choice {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.choice-or {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.choice-grid-2 .choice-pill {
  min-width: min(100%, 230px);
}
[hidden].choice-pill,
.choice-pill[hidden],
[hidden].configurator-line,
.configurator-line[hidden] {
  display: none !important;
}
.choice-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.compact-choice-grid {
  max-width: 420px;
}
.choice-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .82rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(36,48,40,.12);
  background: rgba(255,253,248,.8);
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.35;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.choice-pill:hover {
  z-index: 12;
  border-color: rgba(111,107,69,.32);
  background: rgba(255,253,248,.96);
  transform: translateY(-1px);
}
.choice-pill:has(.context-info:hover),
.choice-pill:has(.context-info:focus-visible),
.choice-pill:has(.context-info.is-open),
.configurator-line:has(.context-info:hover),
.configurator-line:has(.context-info:focus-visible),
.configurator-line:has(.context-info.is-open),
.form-label:has(.context-info:hover),
.form-label:has(.context-info:focus-visible),
.form-label:has(.context-info.is-open),
.estimate-form-head:has(.context-info:hover),
.estimate-form-head:has(.context-info:focus-visible),
.estimate-form-head:has(.context-info.is-open) {
  position: relative;
  z-index: 500;
}
.choice-pill:has(input:checked) {
  border-color: rgba(111,107,69,.45);
  background: linear-gradient(180deg, rgba(255,253,248,.98), rgba(231,217,196,.56));
  box-shadow: 0 12px 24px rgba(30,38,31,.1);
}
.context-info {
  position: relative;
  z-index: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  margin-left: .34rem;
  border-radius: 999px;
  border: 1px solid rgba(111,107,69,.38);
  background: rgba(255,253,248,.88);
  color: var(--olive);
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: middle;
  cursor: help;
  box-shadow: 0 6px 16px rgba(30,38,31,.1);
}
.context-info::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 900;
  left: 50%;
  bottom: calc(100% + 12px);
  width: min(280px, 76vw);
  padding: .78rem .88rem;
  border-radius: 14px;
  background: rgba(33,48,38,.96);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  box-shadow: 0 18px 40px rgba(20,28,22,.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.context-info::before {
  content: "";
  position: absolute;
  z-index: 899;
  left: 50%;
  bottom: calc(100% + 5px);
  width: 12px;
  height: 12px;
  background: rgba(33,48,38,.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px) rotate(45deg);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.context-info:hover,
.context-info:focus-visible,
.context-info.is-open {
  border-color: rgba(111,107,69,.65);
  background: var(--white);
  color: var(--ink);
}
.context-info:hover::after,
.context-info:focus-visible::after,
.context-info.is-open::after,
.context-info:hover::before,
.context-info:focus-visible::before,
.context-info.is-open::before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.context-info:hover::before,
.context-info:focus-visible::before,
.context-info.is-open::before {
  transform: translate(-50%, 0) rotate(45deg);
}
.context-info-wide::after {
  width: min(340px, 78vw);
}
.choice-pill input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--olive);
  box-shadow: none;
}
.checkbox-pill input {
  border-radius: 5px;
}
.radio-pill input {
  border-radius: 999px;
}
.configurator-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .75rem;
  overflow: visible;
}
.configurator-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
  padding: .9rem;
  border: 1px solid rgba(36,48,40,.1);
  border-radius: 16px;
  background: rgba(255,253,248,.64);
  overflow: visible;
}
.configurator-line > span:first-child {
  font-weight: 800;
  color: var(--ink);
}
.yes-no-group {
  display: inline-flex;
  gap: .45rem;
}
.yes-no-group .choice-pill {
  min-width: 74px;
  justify-content: center;
  padding: .65rem .78rem;
}
.field-optional {
  letter-spacing: 0;
  text-transform: none;
  font-size: .76rem;
  font-weight: 600;
}
.text-link-inline {
  width: fit-content;
  color: var(--olive-deep);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .18em;
}
.conditional-block {
  display: none;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(36,48,40,.09);
  border-radius: 18px;
  background: rgba(255,253,248,.55);
}
.conditional-block.visible {
  display: grid;
}
.contact-info,
.form-shell {
  padding: 1.55rem;
}
.contact-info {
  background: linear-gradient(180deg, rgba(111,107,69,.44), rgba(207,173,92,.24));
  border: 1px solid rgba(111,107,69,.34);
}
.contact-links {
  display: grid;
  gap: .7rem;
  margin-top: 1.2rem;
}
.contact-info-pane { display: none; }
.contact-info-pane.active { display: block; }
.contact-info-pane h3 {
  max-width: 18ch;
}
.contact-info-pane p {
  color: var(--ink);
  font-size: .98rem;
}
.form-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1rem;
}
.form-tab {
  padding: .72rem .95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-tab.active {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.form-pane { display: none; }
.form-pane.active { display: block; }
form { display: grid; gap: .85rem; overflow: visible; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; overflow: visible; }
.form-group { display: grid; gap: .35rem; overflow: visible; }
.service-other-field { display: none; }
.service-other-field.visible { display: grid; }
.form-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(36,48,40,.14);
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  padding: .92rem 1rem;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(111,107,69,.52);
  box-shadow: 0 0 0 4px rgba(111,107,69,.09);
}
textarea { min-height: 128px; resize: vertical; }
input[type="file"] {
  padding: .78rem .9rem;
  background: rgba(255,253,248,.92);
}
.form-status-message {
  margin-top: 1rem;
  padding: .95rem 1.1rem;
  border: 1px solid rgba(111,107,69,.24);
  border-radius: 18px;
  background: rgba(255,253,248,.82);
  color: var(--ink);
  font-weight: 800;
}
.form-status-message.is-error {
  border-color: rgba(143,63,44,.32);
  color: #7a2f22;
}
.submit-btn {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 14px;
  background: var(--olive);
  color: var(--white);
  font-family: var(--title);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  white-space: normal;
}
.note { font-size: .8rem; color: var(--ink-soft); text-align: center; }
.map-shell {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-frame { width: 100%; height: 360px; border: none; }
.detail-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 1.2rem;
  align-items: end;
}
.detail-hero-media {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.detail-price {
  font-family: var(--title);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}
.detail-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.detail-gallery div {
  height: 176px;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
}
.detail-panel { padding: 1.4rem; }
.ventoux-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ventoux-gallery .ventoux-main {
  grid-column: span 2;
  grid-row: span 2;
  height: 360px;
}
.ventoux-top-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 1.45rem;
  align-items: start;
}
.ventoux-photo-panel {
  display: grid;
  gap: .85rem;
}
.ventoux-photo-main {
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: rgba(241,232,211,.72);
}
.ventoux-photo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(241,232,211,.86);
}
.ventoux-photo-bar span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ventoux-photo-controls {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.ventoux-photo-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.9);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
}
.ventoux-photo-count {
  min-width: 72px;
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ventoux-summary-panel {
  display: grid;
  gap: 1.15rem;
}
.ventoux-summary-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  max-width: 12ch;
}
.ventoux-summary-block {
  display: grid;
  gap: .6rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(63,79,58,.12);
}
.ventoux-summary-block h3 {
  font-size: 1.1rem;
}
.ventoux-price-row {
  display: grid;
  gap: 1rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(63,79,58,.12);
}
.ventoux-reel-card {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(250px, 340px);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,250,243,.96), rgba(246,237,223,.94));
  box-shadow: var(--shadow-sm);
}
.ventoux-reel-copy {
  display: grid;
  gap: .75rem;
}
.ventoux-reel-copy .section-title {
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  max-width: 12ch;
}
.ventoux-reel-copy .btn {
  justify-self: start;
}
.ventoux-reel-frame {
  display: grid;
  justify-items: center;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,253,248,.72);
  box-shadow: 0 14px 28px rgba(24,31,25,.08);
}
.ventoux-reel-frame iframe {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 320px !important;
  aspect-ratio: 9 / 16;
  margin: 0 auto !important;
  border: 0;
  border-radius: 14px !important;
  background: #111;
}
.ventoux-note {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.6rem;
}
.detail-list-spaced {
  gap: .8rem;
}
.section-olive .detail-panel {
  background: rgba(245,243,239,.96);
}
.section-olive .detail-panel .eyebrow,
.section-olive .detail-panel h3 {
  color: #23301f;
}
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin-top: 1rem; }
.option-item {
  padding: 1rem;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(36,48,40,.08);
}
.option-item h4 {
  font-family: var(--title);
  font-size: .96rem;
  margin-bottom: .3rem;
}
.roof-hero-band {
  padding-top: .4rem;
}
.roof-page-intro {
  padding-top: calc(var(--nav-h) + 1.2rem);
}
.roof-page-flow {
  display: grid;
  gap: 1rem;
}
.roof-intro-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1.2rem;
  align-items: center;
}
.roof-top-copy {
  max-width: 660px;
  justify-self: start;
}
.roof-page-title,
.roof-page-subtitle {
  max-width: 11ch;
}
.roof-single-visual {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, rgba(239,228,191,.92), rgba(213,197,138,.82));
  padding: .45rem;
}
.roof-single-visual img {
  object-fit: contain;
  object-position: center center;
}
.roof-carousel {
  display: grid;
  gap: .65rem;
}
.roof-carousel-main {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,253,248,.72);
  cursor: zoom-in;
}
.roof-carousel-main img {
  object-fit: contain;
  object-position: center center;
}
.roof-carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
}
.roof-carousel-thumbs button {
  height: 76px;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(63,79,58,.18);
  background: rgba(255,253,248,.62);
  cursor: pointer;
  opacity: .78;
  transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
}
.roof-carousel-thumbs button:hover,
.roof-carousel-thumbs button.active {
  opacity: 1;
  border-color: rgba(111,107,69,.62);
}
.roof-carousel-thumbs button:hover {
  transform: translateY(-1px);
}
.roof-carousel-thumbs img {
  object-fit: cover;
  object-position: center center;
}
.roof-plate-blur::after {
  content: "";
  position: absolute;
  right: 18.5%;
  bottom: 14%;
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background: rgba(236,225,199,.88);
  filter: blur(6px);
  box-shadow: 0 0 0 1px rgba(236,225,199,.42);
  pointer-events: none;
}
.roof-top-copy .eyebrow {
  margin-bottom: .5rem;
}
.roof-intro-lead {
  font-family: var(--title);
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  line-height: 1.08;
  color: #283523;
  margin: .35rem 0 .9rem;
}
.roof-top-copy .copy {
  color: #1f2a1c;
  font-size: 1.06rem;
  line-height: 1.76;
  max-width: 48ch;
}
.roof-top-copy .banner-actions {
  margin-top: 1.15rem;
}
.roof-benefits-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.roof-benefits-inline article {
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(63,79,58,.16);
}
.roof-benefits-inline h3 {
  font-family: var(--title);
  font-size: 1.04rem;
  line-height: 1.05;
  margin-bottom: .45rem;
}
.roof-benefits-inline p {
  color: var(--ink-soft);
  line-height: 1.72;
}
.roof-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: .95rem;
}
.roof-photo {
  min-height: 220px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.3);
}
.roof-photo-main {
  grid-row: span 2;
  min-height: 456px;
}
.roof-photo img {
  transition: transform .42s ease;
}
.roof-photo:hover img {
  transform: scale(1.03);
}
.roof-intro-card,
.roof-support-card,
.roof-contact-card {
  background: rgba(241,232,211,.96);
}
.roof-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.roof-advantage-card {
  padding: 1.35rem;
  border-radius: 18px;
  background: #F5F3EF;
  border: 1px solid rgba(63,79,58,.12);
  box-shadow: 0 14px 34px rgba(27,36,29,.12);
  min-height: 190px;
}
.roof-advantage-card h3,
.roof-faq-item h3 {
  font-family: var(--title);
  font-size: 1.18rem;
  line-height: 1.06;
  margin-bottom: .55rem;
  color: #23301f;
}
.roof-advantage-card p,
.roof-faq-item p {
  color: #4d5a48;
  line-height: 1.74;
}
.roof-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.roof-faq-list.compact {
  grid-template-columns: 1fr;
  gap: .8rem;
}
.roof-faq-item {
  padding: 1.3rem;
  border-radius: 18px;
  background: rgba(245,243,239,.9);
  border: 1px solid rgba(63,79,58,.08);
  box-shadow: 0 12px 28px rgba(27,36,29,.08);
}
.roof-gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: .9rem;
}
.roof-strip-photo {
  min-height: 250px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.roof-strip-photo.wide {
  min-height: 360px;
}
.roof-strip-photo img {
  transition: transform .42s ease;
}
.roof-strip-photo:hover img {
  transform: scale(1.03);
}
.roof-support-block {
  max-width: 880px;
}
.roof-contact-strip {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
footer {
  background:
    linear-gradient(180deg, #6F6B45 0%, #6F6B45 100%);
  color: rgba(255,253,248,.9);
  padding: 3.1rem 0 1.6rem;
}
.footer-brand p,
.footer-col a,
.footer-col span,
.footer-bottom a,
.footer-bottom span {
  color: rgba(255,251,242,.88);
}
.footer-col a:hover,
.footer-bottom a:hover {
  color: #fff7db;
}
.footer-top {
  width: var(--content);
  margin: 0 auto;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { width: auto; height: 48px; object-fit: contain; margin-bottom: .8rem; }
.footer-col h4 {
  font-family: var(--title);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,253,248,.96);
  margin-bottom: .8rem;
}
.footer-col ul { list-style: none; display: grid; gap: .42rem; }
.footer-bottom {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}
.legal-shell {
  display: grid;
  gap: 1rem;
}
.legal-intro {
  max-width: 760px;
}
.legal-card,
.legal-note {
  background: rgba(255, 251, 241, 0.82);
  border: 1px solid rgba(84, 94, 71, 0.1);
  border-radius: 22px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 18px 40px rgba(43, 49, 38, 0.05);
  backdrop-filter: blur(8px);
}
.legal-note {
  background: rgba(223, 214, 176, 0.34);
  color: var(--ink);
}
.legal-card h2 {
  margin-bottom: 0.7rem;
}
.legal-card p + p {
  margin-top: 0.7rem;
}
.legal-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.legal-list a {
  word-break: break-word;
}
  .lightbox {
    display: none;
    position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  background: rgba(14,16,14,.94);
}
.lightbox.open { display: flex; }
.lightbox.open {
  animation: lightboxFade .18s ease both;
}
.lightbox img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  animation: softReveal .22s ease both;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-radius: 50%;
}
.lightbox-close {
  top: 1.3rem;
  right: 1.3rem;
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
}
.lightbox-prev { left: 1.3rem; }
.lightbox-next { right: 1.3rem; }
.lightbox-count {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .74rem;
  letter-spacing: .14em;
}
.model-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2200;
  align-items: center;
  justify-content: center;
  background: rgba(14,16,14,.94);
}
.model-lightbox.open {
  display: flex;
  animation: lightboxFade .18s ease both;
}
.model-lightbox img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
  animation: softReveal .22s ease both;
}
.model-lightbox-close,
.model-lightbox-nav {
  position: absolute;
  border: none;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-radius: 50%;
}
.model-lightbox-close {
  top: 1.3rem;
  right: 1.3rem;
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
}
.model-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
}
.model-lightbox-prev { left: 1.3rem; }
.model-lightbox-next { right: 1.3rem; }
.model-lightbox-count {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .74rem;
  letter-spacing: .14em;
}
@keyframes softReveal {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Claude design polish - CSS only. No navigation, form or JavaScript behavior changed. */
:root {
  --shadow-sm: 0 18px 38px rgba(31, 45, 36, 0.09);
  --shadow-md: 0 30px 70px rgba(31, 45, 36, 0.14);
  --shadow-lg: 0 52px 110px rgba(31, 45, 36, 0.2);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 34px;
}
.section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.section-tight {
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
}
.home-entry-grid,
.offer-grid,
.service-overview-grid,
.gallery-feature-grid,
.split-grid,
.info-grid,
.process-grid,
.mini-grid,
.project-grid {
  gap: clamp(1.35rem, 2.2vw, 2.05rem);
}
.home-entry,
.offer-panel,
.side-note,
.contact-choice,
.contact-info,
.form-shell,
.project-card,
.gallery-card,
.service-cluster,
.service-feature,
.detail-panel,
.gallery-hero-panel,
.process-card,
.process-flow-card,
.home-form-choice,
.contact-estimate-option,
.estimate-choice-card,
.inspiration-card,
.service-repeat-card,
.roof-photo,
.roof-feature,
.legal-card {
  border-color: rgba(33,48,38,.12);
  box-shadow: 0 18px 42px rgba(24,31,25,.08), 0 1px 0 rgba(255,255,255,.54) inset;
  transition:
    transform .34s cubic-bezier(.2,.8,.2,1),
    box-shadow .34s cubic-bezier(.2,.8,.2,1),
    border-color .34s ease,
    background .34s ease;
}
.home-entry,
.offer-panel,
.project-card,
.gallery-card,
.service-cluster,
.service-feature,
.detail-panel,
.gallery-hero-panel,
.contact-estimate-option,
.estimate-choice-card,
.inspiration-card,
.service-repeat-card,
.roof-photo,
.roof-feature,
.legal-card {
  border-radius: var(--radius-md);
}
.home-entry:hover,
.offer-panel:hover,
.project-card:hover,
.gallery-card:hover,
.service-feature:hover,
.service-cluster:hover,
.detail-panel:hover,
.process-card:hover,
.process-flow-card:hover,
.home-form-choice:hover,
.contact-estimate-option:hover,
.estimate-choice-card:hover,
.inspiration-card:hover,
.service-repeat-card:hover,
.roof-photo:hover,
.roof-feature:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(111,107,69,.26);
  box-shadow: 0 34px 78px rgba(24,31,25,.16), 0 1px 0 rgba(255,255,255,.66) inset;
}
.home-entry-visual,
.offer-panel-image,
.service-banner,
.atelier-media,
.detail-hero-media,
.gallery-large,
.gallery-stack a,
.project-main,
.project-side div,
.project-more div,
.surmesure-gallery-main,
.model-focus-main,
.roof-photo-main,
.roof-strip-photo {
  border-radius: inherit;
}
.home-entry img,
.offer-panel img,
.project-card img,
.gallery-card img,
.detail-gallery div img,
.service-banner img,
.roof-photo img,
.roof-strip-photo img,
.surmesure-gallery-main img {
  transition: transform .72s cubic-bezier(.2,.8,.2,1), filter .72s ease;
}
.home-entry:hover img,
.offer-panel:hover img,
.project-card:hover img,
.gallery-card:hover img,
.detail-gallery div:hover img,
.service-banner:hover img,
.roof-photo:hover img,
.roof-strip-photo:hover img,
.surmesure-gallery-main:hover img {
  transform: scale(1.045);
  filter: contrast(1.06) saturate(1.04) brightness(1.015);
}
.btn,
.submit-btn,
.service-item-link,
.estimate-choice-link,
.review-carousel-nav button,
.surmesure-gallery-arrow,
.model-lightbox-nav,
.model-lightbox-close {
  transition:
    transform .26s cubic-bezier(.2,.8,.2,1),
    box-shadow .26s cubic-bezier(.2,.8,.2,1),
    background .26s ease,
    border-color .26s ease,
    color .26s ease;
}
.btn {
  min-height: 50px;
  padding: 1rem 1.65rem;
  box-shadow: 0 10px 24px rgba(24,31,25,.07);
}
.btn:hover,
.submit-btn:hover {
  transform: translateY(-3px);
}
.btn-primary,
.submit-btn {
  background:
    linear-gradient(135deg, rgba(255,253,248,.16), rgba(255,253,248,0) 30%),
    linear-gradient(135deg, #77734c 0%, #66623d 52%, #4e553a 100%);
  box-shadow: 0 18px 38px rgba(74,78,48,.22);
}
.btn-primary:hover,
.submit-btn:hover {
  box-shadow: 0 24px 52px rgba(74,78,48,.3);
}
.btn-secondary {
  background: rgba(255,253,248,.56);
  box-shadow: 0 10px 24px rgba(24,31,25,.06);
}
.btn-secondary:hover {
  background: rgba(255,253,248,.88);
  box-shadow: 0 18px 34px rgba(24,31,25,.1);
}
.hero-brand-mark {
  transform-origin: center;
  animation: ventouxLogoFloat 6.4s ease-in-out infinite;
  will-change: transform;
}
.hero-brand-mark:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.025);
}
.hero-side-card,
.hero-bottom-strip,
.hero-stats-band,
.home-estimate-promo,
.google-rating-card,
.review-card-featured,
.service-form-callout,
.surmesure-offer-hero,
.estimate-result-panel {
  box-shadow: 0 30px 80px rgba(20,28,22,.18), 0 1px 0 rgba(255,255,255,.42) inset;
}
.home-entry-copy,
.offer-panel-body,
.service-feature,
.service-cluster,
.detail-panel,
.contact-choice,
.contact-info,
.form-shell,
.gallery-card,
.project-copy {
  padding: clamp(1.45rem, 2.25vw, 2.25rem);
}
.choice-pill,
.configurator-line,
input,
select,
textarea {
  transition:
    transform .24s cubic-bezier(.2,.8,.2,1),
    box-shadow .24s cubic-bezier(.2,.8,.2,1),
    border-color .24s ease,
    background .24s ease;
}
.choice-pill:hover,
.configurator-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(30,38,31,.1);
}
@keyframes ventouxLogoFloat {
  0%, 100% {
    transform: translateY(0) rotate(-.4deg) scale(1);
  }
  50% {
    transform: translateY(-7px) rotate(.5deg) scale(1.018);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-brand-mark {
    animation: none;
  }
}

/* Visual premium pass v2 - stronger Claude-style proportions, CSS only. */
@media (min-width: 761px) {
  :root {
    --content: min(1320px, calc(100% - 10vw));
  }
  .section {
    padding-top: clamp(7.4rem, 8.2vw, 9.6rem);
    padding-bottom: clamp(7.4rem, 8.2vw, 9.6rem);
  }
  .section-tight {
    padding-top: clamp(5.7rem, 6.4vw, 7.4rem);
    padding-bottom: clamp(5.7rem, 6.4vw, 7.4rem);
  }
  .section-title {
    font-size: clamp(2.7rem, 4.8vw, 5.35rem);
    line-height: .9;
  }
  .display-title {
    font-size: clamp(4.4rem, 8.2vw, 9.8rem);
    line-height: .84;
  }
  .hero {
    min-height: calc(100vh - var(--nav-h));
  }
  .hero-content {
    padding-top: clamp(2rem, 4vw, 4.2rem);
    padding-bottom: clamp(2rem, 5vw, 5.4rem);
  }
  .hero-layout {
    align-items: end;
  }
  .hero-copy {
    max-width: 820px;
  }
  .hero-brand-mark {
    width: clamp(190px, 15vw, 330px);
    margin-bottom: clamp(1.4rem, 2.2vw, 2.4rem);
    filter: drop-shadow(0 26px 44px rgba(0,0,0,.32));
  }
  .hero .lead,
  .hero-sublead {
    max-width: 740px;
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    line-height: 1.75;
  }
  .hero-actions {
    gap: 1rem;
    margin-top: 1.35rem;
  }
  .home-entry-grid {
    gap: clamp(1.7rem, 2.6vw, 2.5rem);
  }
  .home-entry {
    min-height: clamp(430px, 35vw, 560px);
    grid-template-columns: 1.08fr .92fr;
    border-radius: 30px;
  }
  .home-entry-copy {
    padding: clamp(2.35rem, 3.2vw, 3.4rem);
    gap: 1.12rem;
  }
  .home-entry-title {
    font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  }
  .home-entry-subtitle {
    font-size: 1.08rem;
  }
  .home-entry-copy p {
    font-size: 1.02rem;
    line-height: 1.85;
  }
  .home-estimate-promo {
    margin-top: clamp(1.45rem, 2.3vw, 2.25rem);
    padding: clamp(1.55rem, 2.8vw, 2.45rem);
    border-radius: 30px;
  }
  .home-estimate-promo h3 {
    font-size: clamp(1.85rem, 3.2vw, 3rem);
  }
  .atelier-block {
    gap: clamp(2rem, 4vw, 4.8rem);
  }
  .atelier-media {
    height: clamp(560px, 40vw, 700px);
    border-radius: 30px;
  }
  .atelier-copy .section-title {
    font-size: clamp(2.8rem, 4.5vw, 5rem);
  }
  .atelier-map-card img {
    transform: scale(1.08);
  }
  .process-card-grid {
    gap: clamp(1.35rem, 2.2vw, 2rem);
  }
  .process-flow-card {
    min-height: clamp(285px, 19vw, 360px);
    padding: clamp(2.3rem, 3vw, 3.1rem) clamp(1.6rem, 2.3vw, 2.4rem);
    border-radius: 30px;
  }
  .process-flow-icon {
    width: clamp(112px, 8vw, 148px);
    height: clamp(92px, 7vw, 120px);
  }
  .offer-panel {
    border-radius: 30px;
  }
  .offer-panel-image {
    height: clamp(340px, 25vw, 450px);
  }
  .offer-panel.compact .offer-panel-image {
    height: clamp(265px, 20vw, 360px);
  }
  .offer-panel-body {
    padding: clamp(1.8rem, 2.6vw, 2.7rem);
  }
  .service-feature,
  .service-cluster,
  .gallery-card,
  .project-card,
  .detail-panel,
  .contact-estimate-option,
  .estimate-choice-card {
    border-radius: 28px;
  }
  .service-banner {
    min-height: clamp(380px, 30vw, 520px);
  }
  .gallery-large {
    min-height: clamp(460px, 38vw, 640px);
  }
  .gallery-stack a {
    min-height: clamp(220px, 18vw, 300px);
  }
  .surmesure-page-grid,
  .model-focus,
  .ventoux-top-layout,
  .roof-intro-layout {
    gap: clamp(1.8rem, 3vw, 3.2rem);
  }
  .surmesure-gallery-main,
  .model-focus-main,
  .ventoux-photo-main,
  .roof-photo-main {
    min-height: clamp(500px, 38vw, 690px);
    border-radius: 30px;
  }
  .contact-estimate-form,
  .form-shell {
    border-radius: 30px;
  }
  .btn,
  .submit-btn {
    min-height: 56px;
    padding: 1.08rem 1.9rem;
  }
}

@media (max-width: 760px) {
  .home-entry,
  .offer-panel,
  .service-feature,
  .service-cluster,
  .detail-panel,
  .gallery-card,
  .project-card,
  .contact-estimate-option,
  .estimate-choice-card {
    border-radius: 22px;
  }
  .home-entry:hover,
  .offer-panel:hover,
  .project-card:hover,
  .gallery-card:hover,
  .service-feature:hover,
  .service-cluster:hover,
  .detail-panel:hover,
  .contact-estimate-option:hover,
  .estimate-choice-card:hover {
    transform: translateY(-3px);
  }
  .home-entry:hover img,
  .offer-panel:hover img,
  .project-card:hover img,
  .gallery-card:hover img {
    transform: scale(1.025);
  }
  .section {
    padding-top: 5.2rem;
    padding-bottom: 5.2rem;
  }
  .section-tight {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.hide-mobile { display: inline-flex; }
@media (max-width: 1160px) {
  .nav-links,
  .nav-phone,
  .nav-right .btn { display: none; }
  .menu-toggle { display: flex; }
  .home-entry-grid,
  .offer-grid,
  .service-overview-grid,
  .service-highlight-grid,
  .service-compact-grid,
  .split-grid,
  .info-grid,
  .atelier-block,
  .split-band,
  .offer-hero-grid,
  .service-hero-grid,
  .gallery-showcase,
  .reviews-layout,
  .reviews-showcase,
  .gallery-feature-grid,
  .contact-home-shell,
  .home-form-choice-grid,
  .contact-chooser,
  .contact-layout,
  .contact-estimate-switch,
  .estimate-choice-intro,
  .service-row,
  .form-grid,
  .project-grid,
  .detail-hero,
  .detail-gallery,
  .option-grid,
  .footer-top,
  .service-list,
  .process-grid,
  .model-focus,
  .surmesure-page-grid,
  .surmesure-budget-one-title,
  .surmesure-clean-layout,
  .surmesure-offer-hero,
  .surmesure-included-head,
  .surmesure-budget-head,
  .surmesure-budget-body,
  .hero-layout,
  .hero-bottom-strip,
  .hero-stats-grid { grid-template-columns: 1fr; }
  .service-form-callout {
    grid-template-columns: 1fr;
    padding: 1.55rem;
  }
  .service-form-callout-title {
    max-width: none;
  }
  .service-form-callout-panel {
    padding: 1.15rem;
  }
  .estimate-choice-cards,
  .inspiration-grid { grid-template-columns: 1fr; }
  .estimate-choice-cards-simple,
  .inspiration-grid-large { grid-template-columns: 1fr; }
  .estimate-result-hero {
    grid-template-columns: 1fr;
  }
  .estimate-result-summary ul {
    grid-template-columns: 1fr;
  }
  .home-estimate-promo {
    grid-template-columns: 1fr;
  }
  .contact-direct-inline-head {
    grid-template-columns: 1fr;
  }
  .process-list-upgraded { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roof-gallery-grid,
  .roof-advantages-grid,
  .roof-faq-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roof-photo-main { grid-row: span 1; min-height: 320px; }
  .ventoux-top-layout { grid-template-columns: 1fr; }
  .ventoux-reel-card { grid-template-columns: 1fr; }
  .ventoux-photo-main { min-height: 380px; }
  .model-focus-main { min-height: 360px; }
  .roof-intro-layout { grid-template-columns: 1fr; }
  .roof-top-copy { justify-self: start; max-width: none; }
  .roof-benefits-inline,
  .roof-gallery-strip { grid-template-columns: 1fr; }
  .roof-contact-strip {
    flex-direction: column;
    align-items: stretch;
  }
  .process-timeline::before { left: 27px; transform: none; }
  .timeline-step {
    grid-template-columns: 54px 1fr;
    gap: .9rem;
    min-height: auto;
  }
  .timeline-number { grid-column: 1; }
  .timeline-step:nth-child(odd) .timeline-card,
  .timeline-step:nth-child(even) .timeline-card {
    grid-column: 2;
    text-align: left;
    margin-left: 0;
  }
  .timeline-step:nth-child(odd) .timeline-card .copy {
    margin-left: 0;
  }
  .process-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
  }
  .process-flow-card {
    min-height: 248px;
  }
  .project-side { grid-template-columns: repeat(2, 1fr); }
  .project-more { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  :root { --nav-h: 84px; --content: calc(100% - 8vw); }
  .brand img { height: 50px; }
  .brand-name { font-size: .76rem; letter-spacing: .14em; }
  .section { padding: 4.7rem 0; }
  .section-tight { padding: 3.6rem 0; }
  .hero { min-height: 80vh; padding-top: calc(var(--nav-h) + 2.8rem); align-items: flex-end; }
  .hero-content {
    width: 100%;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-bottom: 2.8rem;
  }
  .hero-layout { gap: 1rem; }
  .hero-brand-mark { width: clamp(130px, 32vw, 180px); }
  .hero .display-title { font-size: clamp(2.45rem, 13vw, 4rem); max-width: 9.5ch; }
  .hero-side-card { padding: 1rem; }
  .hero-bottom-strip { margin-top: 1rem; }
  .display-title { max-width: 12ch; }
  .back-button {
    width: 38px;
    height: 38px;
    left: 12px;
    top: calc(var(--nav-h) + 10px);
  }
  .hero-actions,
  .gallery-head,
  .section-head,
  .gallery-filter-bar,
  .project-actions,
  .footer-bottom { flex-direction: column; align-items: stretch; }
  .home-entry { grid-template-columns: 1fr; min-height: auto; }
  .home-entry-visual,
  .offer-panel-image,
  .service-banner,
  .atelier-media,
  .detail-hero-media,
  .gallery-large,
  .gallery-stack a { min-height: 240px; height: 240px; }
  .band-copy,
  .home-entry-copy,
  .offer-panel-body,
  .service-feature,
  .service-cluster,
  .contact-choice,
  .contact-info,
  .form-shell,
  .detail-panel { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-2,
  .form-row-3 { grid-template-columns: 1fr; }
  .gallery-stack { grid-template-columns: 1fr; }
  .project-main { height: 270px; }
  .project-side div { height: 148px; }
  .project-more div { height: 128px; }
  .contact-estimate-form { padding: 1.2rem; }
  .contact-estimate-form[data-wizard-form="complet"] { padding: 1rem; }
  .estimate-result-panel {
    min-height: auto;
    padding: 1.35rem;
    border-radius: 24px;
  }
  .live-estimate-inline {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
    white-space: normal;
  }
  .live-estimate-inline strong {
    font-size: .9rem;
  }
  .estimate-result-hero h2 {
    font-size: clamp(2rem, 10.5vw, 3.35rem);
  }
  .estimate-result-price strong {
    font-size: clamp(1.55rem, 8vw, 2.45rem);
  }
  .estimate-result-cta,
  .home-estimate-promo .btn {
    width: 100%;
  }
  .choice-grid-3 {
    grid-template-columns: 1fr;
  }
  .configurator-line {
    grid-template-columns: 1fr;
  }
  .yes-no-group {
    width: 100%;
  }
  .yes-no-group .choice-pill {
    flex: 1;
  }
  .estimate-wizard { height: auto; min-height: auto; }
  .wizard-stage {
    min-height: 0;
    overflow: visible;
    padding-right: 0;
    scrollbar-gutter: auto;
  }
  .wizard-progress-top,
  .wizard-nav { flex-direction: column; align-items: stretch; }
  .wizard-nav .btn,
  .wizard-nav .submit-btn { width: 100%; }
  .wizard-nav {
    padding-top: .8rem;
    background: rgba(241,232,211,.98);
  }
  .contact-estimate-shell.form-open .contact-estimate-option {
    padding: 1.1rem 1rem;
  }
  .estimate-choice-intro {
    padding: 1rem;
  }
  .contact-estimate-option {
    min-height: auto;
  }
  .estimate-choice-card,
  .service-repeat-card { padding: .85rem; }
  .estimate-choice-media { min-height: 170px; }
  .inspiration-media { min-height: 150px; }
  .process-list-upgraded { grid-template-columns: 1fr; }
  .process-card-grid {
    grid-template-columns: 1fr;
    gap: 1.55rem;
  }
  .process-showcase-head {
    text-align: left;
  }
  .process-showcase-head .eyebrow {
    justify-content: flex-start;
  }
  .process-flow-card {
    min-height: auto;
    padding: 1.75rem 1.2rem 1.25rem;
  }
  .process-badge {
    width: 52px;
    height: 52px;
    top: -25px;
    font-size: 1.14rem;
  }
  .process-flow-icon {
    width: 94px;
    height: 76px;
  }
  .process-start-cta {
    grid-template-columns: 46px 1fr;
    border-radius: 24px;
  }
  .process-start-icon {
    width: 42px;
    height: 42px;
    padding-right: .65rem;
  }
  .surmesure-included-grid { grid-template-columns: 1fr; }
  .surmesure-clean-grid { grid-template-columns: 1fr; }
  .surmesure-budget-one-grid { grid-template-columns: 1fr; }
  .surmesure-budget-one-price { min-width: 0; }
  .surmesure-gallery-main { min-height: 310px; }
  .surmesure-gallery-thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .surmesure-gallery-thumbs button { height: 84px; }
  .roof-carousel-main { min-height: 270px; }
  .roof-carousel-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roof-carousel-thumbs button { height: 74px; }
  .surmesure-photo-strip { grid-template-columns: 1fr; }
  .surmesure-photo-strip img { height: 210px; }
  .surmesure-offer-media { grid-template-rows: auto auto; }
  .surmesure-offer-main { min-height: 280px; }
  .surmesure-offer-thumbs { grid-template-columns: 1fr; }
  .surmesure-offer-thumbs img { height: 160px; }
  .process-card { min-height: auto; padding: 1.3rem; }
  .roof-gallery-grid,
  .roof-advantages-grid,
  .roof-faq-list,
  .model-focus-strip { grid-template-columns: 1fr; }
  .roof-photo,
  .roof-photo-main { min-height: 240px; }
  .ventoux-photo-main { min-height: 280px; }
  .model-focus-main { min-height: 280px; }
  .surmesure-budget-card { padding: 1.15rem; }
  .surmesure-budget-grid { grid-template-columns: 1fr; }
  .model-price-row {
    flex-direction: column;
    align-items: start;
  }
  .ventoux-photo-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .ventoux-photo-controls {
    justify-content: space-between;
  }
  .ventoux-summary-title { max-width: none; }
  .roof-single-visual,
  .roof-strip-photo,
  .roof-strip-photo.wide { min-height: 240px; }
  .roof-page-title,
  .roof-page-subtitle { max-width: none; }
  .roof-top-copy .copy { font-size: 1rem; }
  .timeline-card { max-width: none; padding: .6rem 0 1rem; }
  .timeline-card h3 { font-size: 1.08rem; }
  .btn { width: 100%; }
  .contact-home-links { flex-direction: column; }
  .hide-mobile { display: none; }
}
