@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600&display=swap');

:root{
  --ivory:#f4f0e9;
  --ivory-deep:#ece5d8;
  --ink:#2b2926;
  --ink-soft:#5c5648;
  --wood:#a56a3d;
  --wood-deep:#7d4e2a;
  --line:#d8cfbe;
  --dark:#1A1A18;
  --dark-soft:#242420;
  --white-soft:#c9c2b3;
  --danger:#d9534f;
  --max:1100px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:90px;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--ivory);
  color:var(--ink);
  line-height:1.6;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button, input, select, textarea{
  font:inherit;
}

img{
  display:block;
  max-width:100%;
}

.wrap{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 32px;
}

h1, h2, h3{
  font-family:'Fraunces',serif;
  font-weight:500;
  color:var(--ink);
}

h2{
  font-size:clamp(30px,4vw,42px);
  line-height:1.1;
}

p{
  color:var(--ink-soft);
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--wood);
  outline-offset:3px;
}

/* --- Animations d'apparition (Subtiles & Rapides) --- */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- Header --- */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(26,26,24,.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(201,194,179,.14);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background:rgba(26,26,24,.99);
}

.nav{
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo-badge{
  display:inline-flex;
  align-items:center;
  line-height:0;
  flex-shrink:0;
}

.logo-badge img{
  height:48px;
  width:auto;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  font-size:13.5px;
}

.nav-links a{
  color:var(--white-soft);
  transition:color .2s;
}

.nav-links a:hover{
  color:var(--ivory);
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 20px;
  border-radius:2px;
  background:var(--wood-deep);
  color:var(--ivory);
  font-size:13.5px;
  white-space:nowrap;
  transition:background .2s,transform .2s;
}

.nav-cta:hover{
  background:var(--wood);
  transform:translateY(-1px);
}

.menu-toggle{
  display:none;
  width:36px;
  height:36px;
  padding:0;
  border:0;
  background:none;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:var(--white-soft);
  transition:.25s;
}

.mobile-panel{
  display:none;
}

/* --- HERO IMMERSIF --- */
.hero {
  position: relative;
  min-height: 90vh; 
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  background: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-background.webp');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.4;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,24, 0.8) 0%, rgba(26,26,24, 0.2) 50%, var(--ivory) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--wood);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--wood);
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--ivory);
  font-weight: 300;
}

.hero h1 strong {
  font-weight: 500;
  color: #FFF;
}

.hero-lead {
  max-width: 50ch;
  font-size: 18px;
  line-height: 1.8;
  color: var(--white-soft);
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--wood);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--wood-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(165, 106, 61, 0.25);
}

.hero .btn-secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: #FFF;
}

.hero .btn-secondary:hover {
  background: #FFF;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255,255,255,0.15);
}

/* --- BANDEAU TRUST --- */
.trust {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-item strong {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.trust-item span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* --- SECTIONS --- */
.section{
  padding:96px 0;
}

.section-alt{
  background:var(--ivory-deep);
}

.section-head{
  max-width:690px;
  margin-bottom:52px;
}

.section-kicker{
  display:block;
  margin-bottom:9px;
  color:var(--wood-deep);
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.section-head p{
  margin-top:15px;
  font-size:16px;
  max-width:60ch;
}

/* Pourquoi 2k+ */
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.why-card{
  padding:30px 24px 34px;
  border-left:1px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.why-card:first-child{
  border-left:0;
}

.why-card:hover {
  transform: translateY(-4px);
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  z-index: 2;
  border-radius: 4px;
  border-left-color: transparent;
}

.why-number{
  color:var(--wood-deep);
  font-size:12px;
  margin-bottom:26px;
  letter-spacing:.08em;
}

.why-card h3{
  font-size:21px;
  margin-bottom:10px;
}

.why-card p{
  font-size:14px;
  line-height:1.65;
}

/* Services */
.services{
  display:flex;
  flex-direction:column;
}

.service-row{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:48px;
  padding:36px 0;
  border-top:1px solid var(--line);
  transition: transform 0.3s ease;
}

.service-row:hover {
  transform: translateX(4px);
}

.service-row:last-child{
  border-bottom:1px solid var(--line);
}

.service-head{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.service-number {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--wood);
  line-height: 1;
  width: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-row:hover .service-number {
  transform: translateX(3px);
  color: var(--ink);
}

.service-row h3{
  font-size:23px;
  margin-bottom:3px;
}

.tag{
  color:var(--wood-deep);
  font-size:12.5px;
  font-weight:500;
}

.service-row p{
  font-size:15px;
  max-width:65ch;
}

/* Réalisations */
.gallery{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:18px;
}

.gallery-item{
  grid-column:span 6;
  position:relative;
  aspect-ratio:5/4;
  border-radius:3px;
  overflow:hidden;
  background:var(--dark-soft);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:nth-child(3){
  grid-column:span 5;
}

.gallery-item:nth-child(4){
  grid-column:span 7;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}

.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 42%,rgba(0,0,0,.65) 100%);
  border: 3px solid transparent;
  border-radius: 3px;
  transition: border-color 0.3s ease;
}

.gallery-item:hover img{
  transform:scale(1.03); 
}

.gallery-item:hover::after{
  border-color: var(--wood-deep);
}

.gallery-caption{
  position:absolute;
  left:18px;
  right:18px;
  bottom:17px;
  z-index:2;
  color:var(--ivory);
}

.gallery-caption strong{
  display:block;
  font-family:'Fraunces',serif;
  font-size:19px;
  font-weight:500;
}

.gallery-caption span{
  font-size:12.5px;
  color:#ddd6cb;
}

/* Méthode */
.method{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
}

.step{
  padding:32px 24px 24px;
  border-left:1px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.step:first-child{
  border-left:0;
}

.step:hover {
  transform: translateY(-4px);
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  z-index: 2;
  border-radius: 4px;
  border-left-color: transparent;
}

.step-number{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--wood-deep);
  font-size:12px;
  margin-bottom:24px;
  transition: color 0.3s ease;
}

.step:hover .step-number {
  color: var(--wood);
}

.step-number::after{
  content:"";
  height:1px;
  flex:1;
  background:var(--line);
}

.step h3{
  font-size:21px;
  margin-bottom:10px;
}

.step p{
  font-size:14px;
  line-height:1.7;
}

/* À propos */
.about-grid{
  display:grid;
  grid-template-columns:1.03fr .8fr;
  gap:72px;
  align-items:center;
}

.about-copy p{
  font-size:16px;
  max-width:62ch;
  margin-bottom:18px;
}

.about-facts{
  margin-top:28px;
  border-top:1px solid var(--line);
}

.fact{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:15px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
}

.fact .k{
  color:var(--ink-soft);
}

.fact .v{
  text-align:right;
  font-weight:500;
}

.about-visual{
  position:relative;
  min-height:420px;
}

.about-card{
  position:absolute;
  inset:0 18px 18px 0;
  background:var(--dark);
  border-radius:3px;
  overflow:hidden;
}

.about-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.8;
  transition: transform 0.8s ease;
}

.about-card:hover img {
  transform: scale(1.03);
}

.about-card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 25%,rgba(26,26,24,.78) 100%);
}

.about-card-text{
  position:absolute;
  left:26px;
  right:26px;
  bottom:24px;
  color:var(--ivory);
}

.about-card-text small{
  display:block;
  color:#d0a27e;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:5px;
}

.about-card-text strong{
  font-family:'Fraunces',serif;
  font-size:25px;
  font-weight:500;
}

.about-visual::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:110px;
  height:110px;
  border-right:1px solid var(--wood);
  border-bottom:1px solid var(--wood);
}

/* Avis */
.testimonials-head{
  display:flex;
  justify-content:space-between;
  gap:28px;
  align-items:end;
  margin-bottom:44px;
}

.review-note{
  max-width:360px;
  font-size:13px;
  text-align:right;
}

.reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.review{
  background:var(--ivory);
  border:1px solid var(--line);
  padding:28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border-color: transparent;
  background-color: #ffffff;
}

.stars{
  letter-spacing:2px;
  color:var(--wood);
  font-size:14px;
  margin-bottom:16px;
}

.review p{
  font-size:14px;
  line-height:1.7;
}

.review strong{
  display:block;
  margin-top:22px;
  font-size:13px;
}

/* Zone d'intervention */
.zone-grid{
  display:grid;
  grid-template-columns:1fr .8fr;
  gap:64px;
  align-items:start;
}

.zone-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border-top:1px solid var(--line);
}

.zone-item{
  padding:20px 0;
  border-bottom:1px solid var(--line);
  font-size:15px;
  font-weight:500;
}

.zone-item:first-child{
  padding-right:20px;
}

.zone-item:last-child{
  padding-left:20px;
  border-left:1px solid var(--line);
}

.zone-highlight{
  background:var(--dark);
  color:var(--ivory);
  padding:30px;
  border-radius:3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zone-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 26, 24, 0.15);
}

.zone-highlight h3{
  color:var(--ivory);
  font-size:23px;
  margin-bottom:10px;
}

.zone-highlight p{
  color:var(--white-soft);
  font-size:14px;
}

.zone-highlight a{
  display:inline-flex;
  margin-top:20px;
  color:var(--ivory);
  border-bottom:1px solid var(--wood);
  padding-bottom:3px;
  transition: opacity .2s;
}

.zone-highlight a:hover{
  opacity: 0.8;
}

/* --- CONTACT & FLOATING LABELS UX --- */
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:64px;
}

.contact-copy p{
  max-width:47ch;
  margin:16px 0 30px;
}

.contact-details{
  display:grid;
  gap:20px;
}

.contact-detail small{
  display:block;
  color:var(--wood-deep);
  font-size:12px;
  font-weight:500;
  margin-bottom:4px;
}

.contact-detail a{
  font-size:16px;
  transition: color 0.2s;
}

.contact-detail a:hover{
  color: var(--wood);
}

.form{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.field.floating {
  position: relative;
  display: flex;
  flex-direction: column;
}

.field.floating label {
  position: absolute;
  top: 18px;
  left: 0;
  font-size: 15px;
  color: var(--ink-soft);
  pointer-events: none;
  transition: all 0.2s ease;
}

.field.floating input,
.field.floating select,
.field.floating textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 24px 0 8px 0;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.field.floating input:focus,
.field.floating select:focus,
.field.floating textarea:focus {
  outline: 0;
  border-bottom-color: var(--wood);
}

.field.floating input:focus ~ label,
.field.floating input:not(:placeholder-shown) ~ label,
.field.floating textarea:focus ~ label,
.field.floating textarea:not(:placeholder-shown) ~ label,
.field.floating select:focus ~ label,
.field.floating select:valid ~ label {
  top: 0px;
  font-size: 11px;
  color: var(--wood);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field.floating input:invalid:not(:placeholder-shown),
.field.floating textarea:invalid:not(:placeholder-shown) {
  border-bottom-color: var(--danger);
}

.field.floating textarea {
  min-height: 120px;
  resize: vertical;
}

.field.floating select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b2926' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0px bottom 12px;
  background-size: 16px;
  cursor: pointer;
}

.field.floating select:invalid {
  color: transparent; 
}

.field.floating select option {
  color: var(--ink);
}

.form-submit{
  align-self:flex-start;
  border:0;
  cursor:pointer;
  background:var(--ink);
  color:var(--ivory);
  padding:14px 28px;
  margin-top: 8px;
  border-radius:2px;
  font-weight:600;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover{
  background:var(--wood-deep);
  transform:translateY(-2px);
  box-shadow: 0 4px 12px rgba(125, 78, 42, 0.2);
}

/* --- Filtres de la Galerie --- */
.gallery-filters {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--wood);
  color: var(--ink);
}

.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}

.gallery-item.hide {
  display: none;
}

/* --- Message de retour du formulaire --- */
.form-feedback {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-feedback.show {
  display: block;
  opacity: 1;
}

.form-feedback.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-feedback.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* Footer */
footer{
  background:var(--dark);
  color:var(--white-soft);
  padding:52px 0 28px;
}

.footer-top{
  display:grid;
  grid-template-columns:1.1fr 1fr .75fr;
  gap:34px;
  align-items:start;
  padding-bottom:32px;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.footer-logo-image{
  height:48px;
  width:auto;
}

.footer-brand p{
  margin-top:13px;
  max-width:280px;
  font-size:12.5px;
  color:var(--white-soft);
}

.footer-links{
  display:grid;
  grid-template-columns:repeat(2,auto);
  gap:11px 24px;
  justify-content:start;
  font-size:13px;
}

.footer-links a{
  transition: color 0.2s;
}

.footer-links a:hover{
  color:var(--ivory);
}

.footer-social{
  min-width:0;
}

.social-title{
  font-size:12px;
  color:#9f988a;
  margin-bottom:11px;
}

.social-links{
  display:flex;
  gap:10px;
}

.social-links a{
  width:35px;
  height:35px;
  border:1px solid rgba(201,194,179,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white-soft);
  transition:transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover{
  background:var(--wood-deep);
  border-color:var(--wood-deep);
  color:var(--ivory);
  transform:translateY(-2px);
}

.social-links svg{
  width:16px;
  height:16px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding-top:22px;
  font-size:12px;
}

/* Tablette & Mobile */
@media (max-width:1000px){
  .service-row{grid-template-columns:210px 1fr;gap:34px;}
  .about-grid{gap:48px;}
  .contact-grid{gap:44px;}
  .footer-top{grid-template-columns:1fr 1fr;}
  .footer-social{grid-column:2;}
}

@media (max-width:800px){
  .nav{min-height:72px;}
  .nav-links, .nav>.nav-cta{display:none;}
  .menu-toggle{display:flex;}
  .mobile-panel{
    display:none;
    padding:7px 20px 22px;
    border-top:1px solid rgba(201,194,179,.14);
  }
  header.menu-open .mobile-panel{display:flex; flex-direction: column;}
  .mobile-panel a{
    padding:13px 0;
    color:var(--white-soft);
    border-bottom:1px solid rgba(201,194,179,.12);
    font-size:13.5px;
  }
  .mobile-panel .nav-cta{margin-top:14px; border:none;}
  header.menu-open .menu-toggle span:nth-child(1){transform:translateY(8px) rotate(45deg);}
  header.menu-open .menu-toggle span:nth-child(2){opacity:0;}
  header.menu-open .menu-toggle span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
  
  .hero { min-height: auto; padding: 160px 0 100px; text-align: center; }
  .hero-copy { max-width: 700px; margin: 0 auto; }
  .hero h1 { max-width: none; font-size: clamp(38px,8vw,54px); margin-left: auto; margin-right: auto;}
  .eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  
  .trust .wrap { grid-template-columns: 1fr 1fr; gap: 24px; }
  
  .section{padding:72px 0;}
  .why-grid{grid-template-columns:1fr 1fr;}
  .why-card:nth-child(3){border-left:0;border-top:1px solid var(--line);}
  .why-card:nth-child(4){border-top:1px solid var(--line);}
  .service-row{grid-template-columns:1fr;gap:16px;}
  .service-row:hover{ transform: translateY(-2px); }
  .gallery-item, .gallery-item:nth-child(3), .gallery-item:nth-child(4){grid-column:span 6;}
  .method{grid-template-columns:1fr 1fr;}
  .step:nth-child(3), .step:nth-child(4){border-top:1px solid var(--line);}
  .step:nth-child(3){border-left:0;}
  .about-grid{grid-template-columns:1fr;gap:42px;}
  .about-visual{min-height:380px;}
  .testimonials-head{display:block;}
  .review-note{margin-top:16px;text-align:left;}
  .reviews{grid-template-columns:1fr 1fr;}
  .review:last-child{grid-column:span 2;}
  .zone-grid{grid-template-columns:1fr;gap:32px;}
  .contact-grid{grid-template-columns:1fr;gap:42px;}
  .footer-top{grid-template-columns:1fr;}
  .footer-social{grid-column:auto;}
}

@media (max-width:600px){
  .wrap{padding:0 20px;}
  .logo-badge img, .footer-logo-image{height:46px;}
  
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(34px,10vw,44px); }
  
  .trust .wrap { grid-template-columns: 1fr; }
  
  .section{padding:60px 0;}
  .section-head{margin-bottom:38px;}
  .why-grid{grid-template-columns:1fr;}
  .why-card, .why-card:nth-child(3), .why-card:nth-child(4){border-left:0;border-top:1px solid var(--line);}
  .why-card:first-child{border-top:0;}
  .gallery{grid-template-columns:1fr;}
  .gallery-item, .gallery-item:nth-child(3), .gallery-item:nth-child(4){grid-column:auto;}
  .method{grid-template-columns:1fr;}
  .step, .step:nth-child(3), .step:nth-child(4){border-left:0;border-top:1px solid var(--line);}
  .step:first-child{border-top:0;}
  .about-visual{min-height:300px;}
  .about-card{inset:0 10px 10px 0;}
  .reviews{grid-template-columns:1fr;}
  .review:last-child{grid-column:auto;}
  .zone-list{grid-template-columns:1fr;}
  .zone-item:first-child, .zone-item:last-child{padding-left:0;padding-right:0;border-left:0;}
  .zone-item:last-child{border-top:0;}
  .form-row{grid-template-columns:1fr;}
  .form-submit{width:100%;}
  .footer-links{grid-template-columns:1fr 1fr;}
  .footer-bottom{flex-direction:column;gap:7px;}
  .gallery-filters { justify-content: center; }
}

@media (max-width:420px){
  .hero-actions{flex-direction:column;width:100%;max-width:320px;margin:0 auto;}
  .btn-primary, .hero .btn-secondary{width:100%;}
  .footer-links{gap:11px 16px;}
}