/*
 * ANALYSE DES RÉFÉRENCES DESIGN
 * --------------------------------
 * Sources traitées    : Aucune référence design fournie dans le brief.
 * Palette             : Définie à partir des directives brief — verts profonds, blanc calcaire,
 *                       bois naturel, touche de bleu lac (Léman).
 * Typographie         : Cormorant Garamond (titres, serif élégant évoquant la nature et l'artisanat)
 *                       + Nunito (corps, sans-serif doux et lisible).
 * Structure / layout  : Hero pleine largeur, sections alternées, grille 3 colonnes services,
 *                       grille galerie masonry-like, formulaire centré.
 * Ambiance générale   : Naturaliste, aéré, lumière de plateau alpin — ni corporate ni rustique.
 * Mode appliqué       : Design original guidé par la palette et le métier.
 * Décisions prises    : Séparateurs de section diagonaux pour rompre la monotonie.
 *                       Couleur bois en accent sur hover. Bleu lac réservé aux liens et détails.
 *                       Menu sticky avec fond semi-transparent au scroll.
 */

/* ======================
   VARIABLES & RESET
   ====================== */
:root {
  --color-primary:   #2D5016; /* vert forêt profond */
  --color-primary-light: #3d6b1e;
  --color-accent:    #5B8E2D; /* vert prairie */
  --color-stone:     #F7F3EC; /* blanc calcaire / beige clair */
  --color-stone-dark:#EDE7DB;
  --color-wood:      #8B6B4A; /* bois naturel */
  --color-lake:      #3E7E9A; /* bleu lac Léman */
  --color-text:      #2A2A2A;
  --color-text-light:#5a5a5a;
  --color-white:     #FFFFFF;

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Nunito', Arial, sans-serif;

  --max-width: 1200px;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-lake);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul { list-style: none; }

/* ======================
   TYPOGRAPHY
   ====================== */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ======================
   LAYOUT HELPERS
   ====================== */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section--stone {
  background: var(--color-stone);
}

.section--primary {
  background: var(--color-primary);
  color: var(--color-stone);
}

.section--primary h2,
.section--primary h3 {
  color: var(--color-stone);
}

/* Séparateur diagonal — élément non-conventionnel */
.diagonal-bottom {
  position: relative;
}

.diagonal-bottom::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  z-index: 1;
}

/* ======================
   HEADER & NAV
   ====================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--color-stone-dark);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(45, 80, 22, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border: 1.5px solid var(--color-stone-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--color-stone);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.logo-tagline-small {
  font-size: 0.72rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--color-primary);
  background: var(--color-stone);
}

.nav-links a.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
}

.nav-links .nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 9px 20px;
  border-radius: 24px;
  margin-left: 8px;
}

.nav-links .nav-cta:hover {
  background: var(--color-primary-light);
  color: var(--color-white) !important;
}

.nav-links .nav-cta.active {
  background: var(--color-accent);
  border-bottom: none;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ======================
   HERO
   ====================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 0.8s ease;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(45, 80, 22, 0.88) 0%,
    rgba(45, 80, 22, 0.55) 60%,
    rgba(62, 126, 154, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 120px;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  animation: fadeSlideUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(91, 142, 45, 0.15);
  border: 1px solid rgba(91, 142, 45, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.2rem;
  max-width: 720px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: rgba(247, 243, 236, 0.88);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ======================
   BUTTONS
   ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: #4a7a24;
  border-color: #4a7a24;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-dark:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: var(--color-white);
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ======================
   HOME INTRO STRIP
   ====================== */
.intro-strip {
  background: var(--color-stone);
  padding: 60px 0;
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-stone-dark);
  border-radius: 8px;
  overflow: hidden;
}

.intro-item {
  background: var(--color-stone);
  padding: 32px 28px;
  text-align: center;
}

.intro-item-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.intro-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.intro-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ======================
   HOME — SECTIONS APERÇU
   ====================== */
.home-preview {
  padding: 80px 0;
}

.home-preview--alt {
  background: var(--color-stone);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.preview-grid--reverse .preview-text { order: 2; }
.preview-grid--reverse .preview-visual { order: 1; }

.preview-text h2 {
  margin-bottom: 1rem;
}

.preview-text p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.preview-visual {
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  background: var(--color-stone-dark);
  position: relative;
}

.preview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder {
  width: 100%;
  height: 300px;
  background: var(--color-stone-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  border: 2px dashed var(--color-wood);
  border-radius: 8px;
}

.img-placeholder span {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: block;
}

/* ======================
   SERVICES PAGE
   ====================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--color-accent);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(45, 80, 22, 0.16);
}

.service-card-visual {
  height: 200px;
  background: var(--color-stone);
  overflow: hidden;
}

.service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.service-card .service-price {
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-wood);
  background: var(--color-stone);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
}

/* Zone d'intervention */
.zone-section {
  background: var(--color-primary);
  color: var(--color-stone);
  padding: 60px 0;
  text-align: center;
}

.zone-section h2 { color: var(--color-stone); }
.zone-section p { color: rgba(247, 243, 236, 0.82); margin-bottom: 1.5rem; }

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.zone-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ======================
   RÉALISATIONS PAGE
   ====================== */
.realisations-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  color: var(--color-text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-stone);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(45, 80, 22, 0.88));
  color: var(--color-white);
  padding: 32px 16px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Gallery placeholder */
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-stone-dark);
  border: 2px dashed var(--color-wood);
  aspect-ratio: 4/3;
  border-radius: 6px;
  color: var(--color-text-light);
  font-size: 0.8rem;
  text-align: center;
  padding: 16px;
}

.gallery-placeholder span {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

/* Témoignages */
.testimonials {
  background: var(--color-stone);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 22px;
  font-family: var(--font-title);
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
  padding-top: 20px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-wood);
}

/* ======================
   À PROPOS PAGE
   ====================== */
.apropos-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.apropos-portrait {
  position: sticky;
  top: 100px;
}

.apropos-portrait-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.apropos-portrait-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.apropos-facts {
  background: var(--color-stone);
  border-radius: 8px;
  padding: 24px;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-stone-dark);
}

.fact-item:last-child { border-bottom: none; }

.fact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.fact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  line-height: 1.1;
}

.fact-value {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
}

.apropos-text p {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
}

.apropos-text p:first-child {
  font-size: 1.15rem;
  font-family: var(--font-title);
  color: var(--color-primary);
  font-weight: 500;
}

.apropos-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2.5rem;
}

.value-item {
  background: var(--color-stone);
  border-left: 3px solid var(--color-accent);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
}

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.value-item p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ======================
   CONTACT PAGE
   ====================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.2rem;
}

.contact-info p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--color-stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--color-primary);
}

.contact-detail-text a {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.05rem;
}

.contact-detail-text a:hover {
  color: var(--color-accent);
}

.contact-detail-text small {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--color-accent);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-stone-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-stone);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(91, 142, 45, 0.15);
  background: var(--color-white);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 12px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ======================
   MENTIONS LÉGALES /
   POLITIQUE CONF.
   ====================== */
.legal-page {
  padding: 80px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.97rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* ======================
   FOOTER
   ====================== */
.site-footer {
  background: var(--color-primary);
  color: rgba(247, 243, 236, 0.82);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-name {
  color: var(--color-stone);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact h4,
.footer-nav-col h4 {
  color: var(--color-stone);
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-contact ul,
.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a,
.footer-nav-col a {
  color: rgba(247, 243, 236, 0.75);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-contact a:hover,
.footer-nav-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(247, 243, 236, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(247, 243, 236, 0.5);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--color-accent);
}

/* ======================
   ANIMATIONS
   ====================== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   RESPONSIVE — 1024px
   ====================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .apropos-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .apropos-portrait {
    position: static;
  }

  .apropos-portrait-img img {
    height: 320px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ======================
   RESPONSIVE — 768px
   ====================== */
@media (max-width: 768px) {
  /* Nav mobile */
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    transition: right var(--transition);
    z-index: 150;
    gap: 4px;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1.05rem;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 80px 0 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-strip-inner {
    grid-template-columns: 1fr;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .preview-grid--reverse .preview-text { order: 0; }
  .preview-grid--reverse .preview-visual { order: 0; }

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

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

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

  .apropos-values {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
