/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --beige: #F3E1C7;
  --green: #1C4B32;
  --gold: #C18B40;
  --brown: #3F3A32;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: #e8e0d5;
  color: var(--brown);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
}
.font-montserrat { font-family: 'Montserrat', sans-serif; }

/* ===== LAYOUT ===== */
.site-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--beige);
  box-shadow: 0 0 60px rgba(0,0,0,0.18);
  flex: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--beige);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.site-logo { height: 72px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.main-nav a, .dropdown-toggle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: var(--green);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0;
}

.main-nav a:hover, .dropdown-toggle:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a.active { font-weight: 700; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--beige);
  border: 1px solid rgba(193,139,64,0.3);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: var(--shadow);
  z-index: 200;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(193,139,64,0.15); color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.78rem !important;
}
.nav-cta:hover { background: #a8763a !important; color: var(--white) !important; }

/* Mobile nav */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  background: var(--beige);
  border-top: 1px solid rgba(193,139,64,0.2);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.55rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--green);
  border-bottom: 1px solid rgba(193,139,64,0.1);
}
.mobile-nav a:hover { color: var(--gold); }

@media (max-width: 1023px) {
  .main-nav { display: none; }
  .burger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background: center/cover no-repeat;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
}
.hero-content { position: relative; max-width: 860px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero p {
  font-size: 1.1rem;
  color: var(--beige);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero p a { color: var(--beige); text-decoration: underline; }
.hero p a:hover { color: var(--white); }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-beige { background: var(--beige); color: var(--green); }
.btn-beige:hover { background: #e8cba8; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #a8763a; }
.btn-green { background: var(--green); color: var(--beige); }
.btn-green:hover { background: #153a26; }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--green);
  padding: 3rem 1.5rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: var(--beige); font-size: 1rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 0.7rem 1.5rem;
  background: rgba(193,139,64,0.08);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: var(--brown);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--brown); }

/* ===== SECTIONS ===== */
section { padding: 4rem 1.5rem; }
.section-white { background: var(--white); }
.section-beige { background: var(--beige); }
.section-green { background: var(--green); color: var(--white); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green);
  margin-bottom: 1rem;
  text-align: center;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--brown);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.section-title-white { color: var(--white); }

/* ===== GRID SERVICE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--beige);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.service-card .card-icon {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.service-card .card-icon svg { color: var(--gold); }
.service-card h3 { font-size: 1.15rem; color: var(--green); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; color: var(--brown); line-height: 1.6; }

/* ===== FABRIC EDITORS ===== */
.editors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.editor-badge {
  background: var(--white);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--green);
}
.editor-badge:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

/* ===== TWO COLUMNS ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { border-radius: 12px; box-shadow: var(--shadow); }
.two-col h2 { color: var(--green); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.two-col p { font-size: 0.98rem; line-height: 1.8; color: var(--brown); margin-bottom: 1rem; }

/* ===== REALISATION GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}
.gallery-grid img:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: scale(1.02); }

/* ===== SERVICE AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.area-card {
  background: var(--beige);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.area-card h3 { color: var(--green); font-size: 1.2rem; margin-bottom: 0.7rem; }
.area-card p { font-size: 0.83rem; line-height: 1.7; color: var(--brown); }

/* ===== INFO BOX ===== */
.info-box {
  background: var(--green);
  border-radius: 10px;
  padding: 1.5rem;
  color: var(--beige);
}
.info-box h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.info-box p { font-size: 0.88rem; line-height: 1.7; }

.info-box-beige {
  background: var(--beige);
  border-radius: 10px;
  padding: 1.5rem;
}
.info-box-beige h3 { font-size: 1.2rem; color: var(--green); margin-bottom: 0.7rem; }
.info-box-beige p { font-size: 0.88rem; line-height: 1.7; color: var(--brown); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  background: var(--green);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: var(--gold); }
.contact-label { font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--green); font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.contact-value { font-size: 0.95rem; color: var(--brown); transition: color 0.2s; }
.contact-value:hover { color: var(--gold); }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.2rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(28,75,50,0.2);
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-alert {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: none;
}
.form-alert.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.form-alert.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

.btn-loading { opacity: 0.7; pointer-events: none; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green);
  color: var(--white);
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(243,225,199,0.2);
  margin-bottom: 1.5rem;
}
.footer-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--beige);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-icon-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer-col .footer-icon-row svg { color: var(--gold); flex-shrink: 0; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(243,225,199,0.1);
  color: var(--white);
  transition: background 0.2s, color 0.2s;
  margin-right: 0.5rem;
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-copy { text-align: center; font-size: 0.8rem; color: rgba(243,225,199,0.6); max-width: 1100px; margin: 0 auto; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== ZONE INTRO ===== */
.zone-intro {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--brown);
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.zone-intro a { color: var(--gold); text-decoration: underline; }
.zone-intro a:hover { color: var(--green); }

.zone-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.zone-card h2 { font-size: 1.5rem; color: var(--green); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.zone-card .zone-desc { font-size: 0.95rem; line-height: 1.8; color: var(--brown); margin-bottom: 1rem; }
.zone-card .zone-cities { font-size: 0.83rem; color: #666; font-style: italic; line-height: 1.7; }

/* ===== SPINNER ===== */
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  section { padding: 2.5rem 1rem; }
  .hero { padding: 3.5rem 1rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { padding: 0.75rem 1.4rem; font-size: 0.88rem; }
}

/* ===== GALERIE PAGE ===== */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,75,50,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: var(--beige);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
}

/* ===== PROCESS STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 1.5rem; max-width: 700px; margin: 0 auto; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num {
  background: var(--gold);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step h4 { font-size: 1.05rem; color: var(--green); margin-bottom: 0.3rem; }
.step p { font-size: 0.9rem; color: var(--brown); line-height: 1.6; }

/* ===== TEXT CONTENT ===== */
.text-content { max-width: 820px; margin: 0 auto; font-size: 1rem; line-height: 1.85; color: var(--brown); }
.text-content p { margin-bottom: 1.1rem; }
.text-content h2 { color: var(--green); font-size: 1.7rem; margin: 2rem 0 0.8rem; }
.text-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.text-content ul li { margin-bottom: 0.4rem; }

/* ===== ITALIC LEAD ===== */
.lead-italic {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1rem;
  line-height: 1.8;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 85vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: -2rem;
  right: 0;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ===== CORRECTIF RESPONSIVE MOBILE - VERSION STABILISÉE ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

.site-wrapper {
  width: 100%;
  max-width: 1100px;
  min-width: 0;
}

.container,
.header-inner,
.footer-grid {
  width: 100%;
  min-width: 0;
}

section,
header,
footer,
nav,
main,
.hero,
.page-hero,
.breadcrumb,
.site-footer {
  max-width: 100%;
}

.cards-grid,
.editors-grid,
.gallery-grid,
.gallery-page-grid,
.areas-grid,
.two-col,
.contact-grid,
.footer-grid,
.hero-btns {
  min-width: 0;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.editors-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
}

.gallery-grid,
.gallery-page-grid,
.areas-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.service-card,
.area-card,
.zone-card,
.info-box,
.info-box-beige,
.editor-badge,
.gallery-item,
.contact-info-item,
.step,
.footer-col {
  min-width: 0;
}

p,
li,
a,
h1,
h2,
h3,
h4,
span,
.contact-value,
.footer-col a,
.zone-cities,
.area-card p {
  overflow-wrap: anywhere;
}

.btn {
  max-width: 100%;
  text-align: center;
  justify-content: center;
  white-space: normal;
}

.site-logo {
  max-width: min(210px, 58vw);
  object-fit: contain;
}

.burger {
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
  touch-action: manipulation;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .site-header {
    z-index: 1001;
  }

  .header-inner {
    gap: 1rem;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    padding: 0 1rem;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    background: var(--beige);
    border-top: 1px solid rgba(193,139,64,0.28);
    box-shadow: 0 18px 30px rgba(0,0,0,0.14);
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
  }

  .mobile-nav.open {
    padding: 0.65rem 1rem 1rem;
    max-height: calc(100dvh - 74px);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .site-wrapper {
    box-shadow: none;
  }

  .header-inner {
    padding: 0.55rem 1rem;
  }

  .site-logo {
    height: 58px;
  }

  section {
    padding: 2.75rem 0;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding: 3.25rem 1rem 3rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
    line-height: 1.08;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.35rem;
  }

  .page-hero {
    padding: 2.25rem 1rem;
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .breadcrumb {
    padding: 0.65rem 1rem;
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .section-title {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
    line-height: 1.12;
  }

  .section-subtitle,
  .lead-italic,
  .zone-intro {
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }

  .cards-grid,
  .areas-grid,
  .gallery-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .editors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .service-card,
  .area-card,
  .zone-card,
  .info-box,
  .info-box-beige {
    padding: 1.35rem 1rem;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .two-col h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .two-col p,
  .text-content,
  .zone-card .zone-desc {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .gallery-grid img,
  .gallery-page-grid img,
  .gallery-item img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-info-item {
    gap: 0.75rem;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .step {
    gap: 0.85rem;
  }

  .step-num {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

@media (max-width: 640px) {
  .hero-btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn,
  .section-green .btn,
  .contact-grid .btn,
  .gallery-page-grid + div .btn,
  .areas-grid + div .btn {
    width: 100%;
    max-width: 330px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section-green .btn + .btn {
    margin-top: 0.75rem;
  }

  .btn {
    min-height: 46px;
    padding: 0.76rem 1.05rem;
    font-size: 0.88rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .header-inner {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .site-logo {
    height: 52px;
    max-width: 64vw;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .editors-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col .footer-icon-row {
    align-items: flex-start;
  }
}
