:root {
  --green: #123427;
  --green-soft: #1e4a38;
  --ink: #17211b;
  --muted: #677069;
  --cream: #f5f1e8;
  --paper: #fbf8f0;
  --sand: #d6c5a5;
  --wood: #8c6846;
  --line: rgba(23, 33, 27, 0.14);
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(10, 24, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--green);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 22px 42px;
  color: var(--white);
  transition: background 0.35s ease, color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  padding: 14px 42px;
  color: var(--green);
  background: rgba(251, 248, 240, 0.92);
  box-shadow: 0 18px 60px rgba(17, 34, 27, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand-logo {
  border-color: rgba(18, 52, 39, 0.18);
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  padding: 3px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid currentColor;
  padding: 13px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

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

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

.button-primary.light {
  color: var(--green);
  border-color: var(--paper);
  background: var(--paper);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled .button-ghost,
.site-header.is-scrolled .header-cta {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 1px;
  margin: 0 auto 6px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1772040942277-b194d9d0b648?auto=format&fit=crop&w=2200&q=84");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroLift 1.3s ease both;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(9, 22, 16, 0.72), rgba(9, 22, 16, 0.42) 42%, rgba(9, 22, 16, 0.16)), linear-gradient(0deg, rgba(9, 22, 16, 0.56), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 84px));
  margin: 0 0 118px 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sand);
}

.eyebrow.dark,
.section-kicker {
  color: var(--wood);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  font-size: 6.8rem;
}

h2 {
  font-size: 4.2rem;
}

h3 {
  font-size: 3.6rem;
}

.hero-text {
  max-width: 590px;
  margin: 28px 0 0;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.hero-footer {
  position: absolute;
  right: 42px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.value-section,
.services-intro,
.gallery-section,
.before-after-section,
.zone-section,
.reviews-section,
.contact-section {
  padding: 128px 42px;
}

.value-section {
  background: var(--paper);
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 70px;
  align-items: center;
}

.value-copy p,
.services-intro p,
.before-after-copy p,
.zone-copy p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.value-image {
  height: 620px;
  box-shadow: var(--shadow);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 980px;
  margin-top: 86px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-row div {
  padding: 32px 34px;
  border-right: 1px solid var(--line);
}

.proof-row div:last-child {
  border-right: 0;
}

.proof-row strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--green);
}

.proof-row span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
  color: var(--ink);
  background: #eee5d7;
}

.services-intro p {
  margin: 0;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 78px;
  align-items: center;
  padding: 95px 42px;
  background: var(--paper);
}

.service-feature.reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  background: #f0eadf;
}

.service-feature.reverse .service-image {
  order: 2;
}

.service-image {
  height: 560px;
  overflow: hidden;
}

.service-image.tall {
  height: 690px;
}

.service-image.wide {
  height: 470px;
}

.service-image img {
  transform: scale(1.01);
  transition: transform 0.8s ease;
}

.service-feature:hover .service-image img {
  transform: scale(1.055);
}

.service-copy {
  max-width: 560px;
}

.service-copy span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--wood);
  font-weight: 800;
}

.service-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-copy a {
  display: inline-flex;
  margin-top: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-weight: 800;
}

.gallery-section {
  background: var(--green);
  color: var(--white);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.45fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.gallery-heading .eyebrow {
  color: var(--sand);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide-item {
  grid-column: span 2;
}

.gallery-item img {
  transition: transform 0.8s ease, filter 0.8s ease;
}

.gallery-item:hover img {
  filter: saturate(1.05);
  transform: scale(1.07);
}

.gallery-item figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(12, 26, 20, 0.58);
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.before-after-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  background: var(--paper);
}

.comparison {
  position: relative;
  height: 620px;
  overflow: hidden;
  box-shadow: var(--shadow);
  --position: 58%;
}

.comparison img,
.comparison-after {
  position: absolute;
  inset: 0;
}

.comparison-after {
  overflow: hidden;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-after img {
  width: 100%;
  max-width: 100%;
}

.comparison::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  content: "";
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.02);
}

.comparison input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-label {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(13, 29, 22, 0.66);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.comparison-label.before {
  left: 22px;
}

.comparison-label.after {
  right: 22px;
}

.zone-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 76px;
  align-items: center;
  background: #eee5d7;
}

.zone-image {
  height: 680px;
  box-shadow: var(--shadow);
}

.local-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.local-list li {
  border: 1px solid rgba(18, 52, 39, 0.24);
  padding: 9px 13px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
}

.reviews-section {
  background: var(--paper);
}

.reviews-heading {
  max-width: 780px;
  margin-bottom: 56px;
}

.reviews {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

blockquote {
  margin: 0;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}

blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.18;
}

blockquote cite {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}

.final-cta {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 120px 42px;
  color: var(--white);
  overflow: hidden;
  background: var(--green);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
}

.final-cta::before {
  background-image: var(--final-cta-image, url("https://images.unsplash.com/photo-1643063231577-959abf98b59c?auto=format&fit=crop&w=2200&q=84"));
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.final-cta::after {
  background: linear-gradient(90deg, rgba(12, 28, 21, 0.82), rgba(12, 28, 21, 0.46), rgba(12, 28, 21, 0.24));
}

.final-cta > div {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.final-cta h2 {
  margin-bottom: 34px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  background: var(--paper);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin: 32px 0;
}

.contact-actions a {
  width: fit-content;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.map-frame {
  height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e4ded1;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.22) contrast(0.98);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 44px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label.full,
.contact-form label.form-trap,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 14px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.12);
}

.form-button {
  width: 100%;
  border-color: var(--sand);
  color: var(--green);
  background: var(--sand);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #0d241a;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(170px, 0.55fr));
  gap: 58px;
  padding: 72px 42px 58px;
}

.footer-brand {
  max-width: 470px;
}

.footer-logo {
  width: fit-content;
  color: var(--white);
}

.footer-logo .brand-logo {
  width: 96px;
  height: 96px;
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--paper);
}

.footer-brand p {
  max-width: 420px;
  margin: 24px 0 0;
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer a {
  width: fit-content;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--sand);
  transform: translateX(3px);
}

.footer-contact span {
  max-width: 220px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 190px 24px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 600;
}

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

.footer-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.artisan-login-button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: var(--sand);
  background: transparent;
  font-weight: 800;
  transition: color 0.22s ease, transform 0.22s ease;
}

.artisan-login-button:hover,
.artisan-login-button:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

/* Modale de connexion artisan */
.artisan-modal[hidden],
.edit-toolbar[hidden],
.image-edit-input[hidden] {
  display: none;
}

.artisan-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 22px;
}

.artisan-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 13, 0.74);
  backdrop-filter: blur(10px);
}

.artisan-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(460px, 100%);
  gap: 18px;
  padding: 42px;
  background: var(--paper);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.35);
}

.artisan-modal-panel h2 {
  font-size: 2.8rem;
}

.artisan-modal-panel label {
  display: grid;
  gap: 8px;
}

.artisan-modal-panel label span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.artisan-modal-panel input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.artisan-modal-panel input:focus {
  border-color: var(--green);
}

.artisan-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--green);
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
}

.artisan-error {
  min-height: 22px;
  margin: 0;
  color: #9d2f21;
  font-size: 0.92rem;
  font-weight: 700;
}

/* Indicateurs du mode édition */
.edit-toolbar {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 260;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 44px);
  padding: 12px 14px 12px 18px;
  color: var(--green);
  background: var(--sand);
  box-shadow: 0 20px 60px rgba(10, 24, 18, 0.24);
  font-size: 0.88rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.edit-toolbar button {
  border: 1px solid rgba(18, 52, 39, 0.35);
  padding: 10px 12px;
  color: var(--white);
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

body.is-editing .floating-call {
  bottom: 92px;
}

body.is-editing img[data-edit-key],
body.is-editing [data-edit-bg] {
  cursor: pointer;
  outline: 3px solid var(--sand);
  outline-offset: -6px;
}

body.is-editing img[data-edit-key]:hover,
body.is-editing [data-edit-bg]:hover {
  filter: saturate(1.08) brightness(1.03);
}

body.is-editing .comparison input {
  pointer-events: none;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 52px rgba(10, 24, 18, 0.24);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.floating-call svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-call:hover,
.floating-call:focus-visible {
  background: var(--green-soft);
  box-shadow: 0 22px 62px rgba(10, 24, 18, 0.3);
  transform: translateY(-3px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  h3 {
    font-size: 3rem;
  }

  .site-header {
    gap: 18px;
    padding: 18px 28px;
  }

  .site-header.is-scrolled {
    padding: 12px 28px;
  }

  .site-nav {
    gap: 16px;
  }

  .value-section,
  .services-intro,
  .gallery-section,
  .before-after-section,
  .zone-section,
  .reviews-section,
  .contact-section,
  .service-feature,
  .final-cta {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-content {
    width: min(760px, calc(100% - 56px));
    margin-left: 28px;
  }

  .hero-footer {
    right: 28px;
  }

  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .masonry-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    color: var(--green);
    background: rgba(251, 248, 240, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 2.95rem;
  }

  h3 {
    font-size: 2.55rem;
  }

  .hero {
    min-height: 92vh;
    min-height: 92dvh;
  }

  .hero-content {
    margin-bottom: 128px;
  }

  .hero-footer {
    left: 28px;
    right: auto;
    flex-wrap: wrap;
    gap: 14px;
  }

  .value-grid,
  .services-intro,
  .service-feature,
  .service-feature.reverse,
  .before-after-section,
  .zone-section,
  .contact-section,
  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .service-feature.reverse .service-image {
    order: 0;
  }

  .value-image,
  .zone-image,
  .service-image,
  .service-image.tall,
  .service-image.wide,
  .comparison {
    height: 520px;
  }

  .services-intro {
    gap: 28px;
  }

  .proof-row,
  .reviews {
    grid-template-columns: 1fr;
  }

  .proof-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-row div:last-child {
    border-bottom: 0;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

  .contact-copy {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 64px 28px 50px;
  }

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

  .footer-bottom {
    padding-left: 28px;
    padding-right: 180px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-header.is-scrolled {
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 150px;
    white-space: normal;
    line-height: 1.05;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .footer-logo .brand-logo {
    width: 78px;
    height: 78px;
  }

  .hero {
    min-height: 92vh;
    min-height: 92dvh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 120px;
  }

  .hero-footer {
    left: 16px;
    right: 16px;
    bottom: 24px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 2.18rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .value-section,
  .services-intro,
  .gallery-section,
  .before-after-section,
  .zone-section,
  .reviews-section,
  .contact-section,
  .service-feature,
  .final-cta {
    padding: 86px 16px;
  }

  .value-image,
  .zone-image,
  .service-image,
  .service-image.tall,
  .service-image.wide,
  .comparison {
    height: 420px;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide-item {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 16px 42px;
  }

  .footer-bottom {
    display: grid;
    padding: 22px 16px 82px;
  }

  .footer-bottom-actions {
    display: grid;
    gap: 12px;
  }

  .artisan-modal {
    padding: 16px;
  }

  .artisan-modal-panel {
    padding: 32px 22px;
  }

  .artisan-modal-panel h2 {
    font-size: 2.3rem;
  }

  .edit-toolbar {
    left: 16px;
    right: 16px;
    bottom: 82px;
    display: grid;
    max-width: none;
    transform: none;
  }

  .floating-call {
    right: 16px;
    bottom: 16px;
    min-height: 50px;
    padding: 0 15px;
  }

  body.is-editing .floating-call {
    bottom: 16px;
  }
}

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