/* ===================================================================
   Gabin Peillet — Arboriste grimpeur
   Charte graphique appliquée (charte v1.0 février 2026)
   =================================================================== */

:root {
  /* Vert */
  --gp-vert-foret: #2D5A3D;
  --gp-vert-profond: #1E3D2A;
  --gp-vert-doux: #4A7C5C;
  /* Beige */
  --gp-beige-chaud: #F5F0E8;
  --gp-beige-soutenu: #E8DFD0;
  --gp-brun-bois: #A68B6A;
  /* Neutres */
  --gp-blanc: #FFFFFF;
  --gp-charbon: #2C2C2C;
  --gp-gris-moyen: #6B7280;
  --gp-gris-clair: #E5E7EB;

  --gp-font-title: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gp-font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --gp-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --gp-ease-out-back: cubic-bezier(0.34, 1.36, 0.64, 1);
}

/* Reset léger scoped à la page prototype */
.gp-page *,
.gp-page *::before,
.gp-page *::after {
  box-sizing: border-box;
}

.gp-page {
  font-family: var(--gp-font-body);
  color: var(--gp-charbon);
  background: var(--gp-blanc);
  line-height: 1.6;
  font-size: 16px;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden !important;
  position: relative;
  display: flex;
  flex-direction: column;
}
.gp-page-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  scrollbar-gutter: stable;
}

.gp-page h1, .gp-page h2, .gp-page h3, .gp-page h4 {
  font-family: var(--gp-font-title);
  color: var(--gp-vert-foret);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.gp-page p { margin: 0; }
.gp-page a { color: inherit; text-decoration: none; }
.gp-page button { font-family: inherit; cursor: pointer; }
.gp-page button:not(.gp-btn) { border: none; padding: 0; background: transparent; }
.gp-page img { max-width: 100%; display: block; }

/* ============ NAVBAR ============ */
.gp-nav {
  position: relative;
  flex-shrink: 0;
  z-index: 100;
  background: var(--gp-vert-foret);
  color: var(--gp-blanc);
  padding: 14px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s var(--gp-ease);
}
.gp-nav.is-scrolled {
  background: rgba(30, 61, 42, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gp-nav-brand {
  font-family: var(--gp-font-title);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
}
.gp-nav-links {
  display: flex;
  gap: 42px;
  align-items: center;
}
.gp-nav-link {
  font-family: var(--gp-font-title);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s var(--gp-ease);
  color: var(--gp-blanc);
}
.gp-nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gp-blanc);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--gp-ease);
}
.gp-nav-link:hover::after,
.gp-nav-link.is-active::after {
  transform: scaleX(1);
}
.gp-nav-link.is-active {
  opacity: 1;
}

/* ============ BUTTONS — Direction A: élévation + soulignement ============ */
.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--gp-font-title);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.01em;
  border: none;
  transition: transform 0.35s var(--gp-ease), box-shadow 0.35s var(--gp-ease);
}
/* Shared thin underline that sweeps in under the label */
.gp-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: calc(100% - 64px);
  height: 1.5px;
  background: currentColor;
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: opacity 0.35s var(--gp-ease), transform 0.45s var(--gp-ease);
  pointer-events: none;
}
.gp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, 0.25);
}
.gp-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}
.gp-btn:active { transform: translateY(-1px); transition: transform 0.1s; }

/* Primary — green solid */
.gp-btn-primary {
  background: var(--gp-vert-foret);
  color: var(--gp-blanc);
  box-shadow: 0 2px 6px -2px rgba(30, 61, 42, 0.3);
}
.gp-btn-primary:hover {
  box-shadow: 0 16px 34px -10px rgba(30, 61, 42, 0.5);
}

/* White — on dark/photo backgrounds */
.gp-btn-white {
  background: var(--gp-blanc);
  color: var(--gp-vert-foret);
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.25);
}
.gp-hero .gp-btn-white {
  padding: 18px 36px;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.4);
}
.gp-hero .gp-btn-white::after {
  width: calc(100% - 72px);
}
.gp-btn-white:hover {
  box-shadow: 0 18px 38px -12px rgba(0, 0, 0, 0.45);
}

/* Ghost — transparent with outline, stays outlined on hover */
.gp-btn-ghost {
  background: transparent;
  color: var(--gp-vert-foret);
  border: 1.5px solid var(--gp-vert-foret);
}
.gp-btn-ghost:hover {
  box-shadow: 0 16px 34px -14px rgba(30, 61, 42, 0.35);
}

/* Arrow icon — glides right on hover */
.gp-btn .gp-btn-arrow {
  display: inline-block;
  transition: transform 0.4s var(--gp-ease);
}
.gp-btn:hover .gp-btn-arrow {
  transform: translateX(6px);
}

/* ============ REVEAL ANIMATIONS (fade in on scroll) ============ */
.gp-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--gp-ease), transform 0.9s var(--gp-ease);
  will-change: opacity, transform;
}
.gp-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.gp-reveal[data-delay="1"] { transition-delay: 0.08s; }
.gp-reveal[data-delay="2"] { transition-delay: 0.16s; }
.gp-reveal[data-delay="3"] { transition-delay: 0.24s; }
.gp-reveal[data-delay="4"] { transition-delay: 0.32s; }
.gp-reveal[data-delay="5"] { transition-delay: 0.40s; }
.gp-reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ============ PHOTO PLACEHOLDERS ============ */
/* Remplacer le background-image pour intégrer les vraies photos.
   Chaque placeholder affiche une pastille avec le slot attendu. */
.gp-photo {
  position: relative;
  background: var(--gp-beige-soutenu);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.gp-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(45, 90, 61, 0.06) 0 1px,
      transparent 1px 14px
    );
  pointer-events: none;
}
.gp-photo[data-slot]::after {
  content: '📷 ' attr(data-slot);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gp-vert-foret);
  background: rgba(255,255,255,0.92);
  padding: 10px 16px;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* Quand une image réelle est fournie via --gp-photo, la pastille disparaît */
.gp-photo.has-image::before,
.gp-photo.has-image::after { display: none; }

/* ============ HERO ============ */
.gp-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--gp-blanc);
  text-align: center;
}
.gp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 61, 42, 0.35) 0%, rgba(30, 61, 42, 0.55) 100%),
    linear-gradient(135deg, #1E3D2A 0%, #2D5A3D 50%, #4A7C5C 100%);
  background-size: cover;
  background-position: center;
  transition: transform 6s linear;
}
.gp-hero-bg.is-zoomed { transform: scale(1.08); }
.gp-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 900px;
}
.gp-hero-eyebrow {
  font-family: var(--gp-font-title);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 48px;
}
.gp-page .gp-hero-title,
.gp-hero-title {
  font-family: var(--gp-font-title);
  font-size: 84px;
  font-weight: 700;
  color: var(--gp-blanc);
  margin-bottom: 48px;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-shadow: 0 4px 28px rgba(0,0,0,0.45);
}
.gp-page p.gp-hero-tagline,
.gp-hero-tagline {
  font-family: var(--gp-font-body);
  font-size: 18px;
  font-style: italic;
  opacity: 0.88;
  margin: 0 auto 48px;
  max-width: 620px;
  line-height: 1.6;
}

/* ============ SECTION CHROME ============ */
.gp-section {
  padding: 110px 60px;
  position: relative;
}
.gp-section-beige { background: var(--gp-beige-chaud); }
.gp-section-dark { background: var(--gp-vert-foret); color: var(--gp-blanc); }
.gp-section-dark h2 { color: var(--gp-blanc); }
.gp-container {
  max-width: 1200px;
  margin: 0 auto;
}
.gp-section-eyebrow {
  display: inline-block;
  font-family: var(--gp-font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gp-vert-doux);
  margin-bottom: 16px;
}
.gp-page h2.gp-section-title,
.gp-section-title {
  font-family: var(--gp-font-title);
  font-size: 44px;
  font-weight: 600;
  color: var(--gp-vert-foret);
  margin-bottom: 96px;
  letter-spacing: -0.01em;
}
.gp-section-title-center {
  text-align: center;
}
.gp-section-lead {
  font-size: 19px;
  color: var(--gp-gris-moyen);
  max-width: 640px;
  margin: -36px auto 56px;
  text-align: center;
  line-height: 1.7;
}
.gp-section-dark .gp-section-lead,
.gp-hero .gp-hero-tagline {
  color: inherit;
}

/* ============ VALUES ============ */
.gp-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.gp-value {
  text-align: center;
  padding: 16px;
  transition: transform 0.4s var(--gp-ease);
}
.gp-value:hover {
  transform: translateY(-6px);
}
.gp-value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--gp-vert-foret);
  transition: transform 0.5s var(--gp-ease-out-back), color 0.3s var(--gp-ease);
}
.gp-value:hover .gp-value-icon {
  transform: scale(1.12) rotate(-3deg);
  color: var(--gp-vert-doux);
}
.gp-value h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--gp-vert-foret);
  margin-bottom: 12px;
}
.gp-value p {
  font-size: 15px;
  color: var(--gp-gris-moyen);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============ SERVICES GRID ============ */
.gp-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.gp-service-card {
  background: var(--gp-blanc);
  border: 1px solid var(--gp-gris-clair);
  border-radius: 14px;
  padding: 38px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--gp-ease), border-color 0.3s, box-shadow 0.45s var(--gp-ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.gp-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gp-vert-foret);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--gp-ease);
}
.gp-service-card:hover {
  border-color: var(--gp-vert-foret);
  box-shadow: 0 20px 40px -20px rgba(45, 90, 61, 0.25);
}
.gp-service-card:hover::before {
  transform: scaleY(1);
}
.gp-service-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--gp-charbon);
  margin-bottom: 12px;
}
.gp-service-card p {
  font-size: 15.5px;
  color: var(--gp-gris-moyen);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}
.gp-service-card .gp-btn {
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 14px;
}
.gp-service-card .gp-btn::after {
  width: calc(100% - 48px);
  bottom: 7px;
}

/* ============ ABOUT ============ */
.gp-about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.gp-about-photo {
  aspect-ratio: 4/5;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35);
}
.gp-about-content h2 {
  margin-bottom: 28px;
}
.gp-about-content p {
  font-size: 17px;
  color: var(--gp-gris-moyen);
  line-height: 1.75;
  margin-bottom: 18px;
}
.gp-about-content .gp-btn {
  margin-top: 20px;
}

/* ============ CTA BAND ============ */
.gp-cta-band {
  background: var(--gp-vert-foret);
  color: var(--gp-blanc);
  padding: 100px 60px;
  text-align: center;
}
.gp-cta-band h2 {
  color: var(--gp-blanc);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
}
.gp-cta-band p {
  font-size: 18px;
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ FOOTER ============ */
.gp-footer {
  background: var(--gp-vert-profond);
  color: var(--gp-blanc);
  padding: 68px 60px 36px;
}
.gp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 44px;
}
.gp-footer h4 {
  font-family: var(--gp-font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--gp-blanc);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.gp-footer p, .gp-footer a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}
.gp-footer a {
  transition: color 0.25s var(--gp-ease);
  display: inline-block;
}
.gp-footer a:hover {
  color: var(--gp-blanc);
}
.gp-footer-col ul { list-style: none; padding: 0; margin: 0; }
.gp-footer-col li { margin-bottom: 4px; }
.gp-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.gp-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s var(--gp-ease-out-back);
}
.gp-social-link:hover {
  background: var(--gp-blanc);
  color: var(--gp-vert-profond);
  transform: translateY(-3px);
}
.gp-social-link:hover svg { color: var(--gp-vert-profond); }
.gp-social-link svg {
  width: 17px;
  height: 17px;
  color: var(--gp-blanc);
  transition: color 0.3s;
}
.gp-footer-cta {
  padding: 12px 22px !important;
  font-size: 14px !important;
  white-space: nowrap;
}
.gp-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ SERVICES PAGE ============ */
.gp-page-header {
  background: var(--gp-vert-foret);
  color: var(--gp-blanc);
  padding: 110px 60px 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gp-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(74,124,92,0.35) 0%, transparent 60%),
    linear-gradient(180deg, #1E3D2A 0%, #2D5A3D 100%);
}
.gp-page-header > * { position: relative; z-index: 1; }
.gp-page-header .gp-hero-eyebrow { color: rgba(255,255,255,0.85); }
.gp-page-header h1 {
  color: var(--gp-blanc);
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.gp-page-header-lead {
  font-size: 19px;
  opacity: 0.9;
  max-width: 620px;
  margin: 0 auto !important;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}

/* Services detail list */
.gp-services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.gp-service-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
  padding: 32px;
  background: var(--gp-blanc);
  border-radius: 14px;
  transition: transform 0.4s var(--gp-ease), box-shadow 0.4s var(--gp-ease);
}
.gp-service-row:nth-child(even) {
  grid-template-columns: 1.3fr 1fr;
}
.gp-service-row:nth-child(even) .gp-service-row-photo { order: 2; }
.gp-service-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -24px rgba(0,0,0,0.18);
}
.gp-service-row-photo {
  aspect-ratio: 4/3;
  border-radius: 8px;
}
.gp-service-row-content .gp-section-eyebrow {
  margin-bottom: 8px;
}
.gp-service-row-content h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--gp-vert-foret);
  margin-bottom: 14px;
}
.gp-service-row-content p {
  font-size: 16px;
  color: var(--gp-gris-moyen);
  line-height: 1.7;
  margin-bottom: 14px;
}
.gp-service-row-content ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.gp-service-row-content li {
  font-size: 15px;
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--gp-charbon);
}
.gp-service-row-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: var(--gp-vert-doux);
}

/* ============ CONTACT PAGE ============ */
.gp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.gp-contact-info h2 { margin-bottom: 18px; }
.gp-contact-info-lead {
  font-size: 17px;
  color: var(--gp-gris-moyen);
  line-height: 1.7;
  margin-bottom: 36px;
}
.gp-contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gp-gris-clair);
  transition: padding 0.3s var(--gp-ease);
}
.gp-contact-item:hover { padding-left: 6px; }
.gp-contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gp-beige-chaud);
  color: var(--gp-vert-foret);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--gp-ease), color 0.3s var(--gp-ease);
}
.gp-contact-item:hover .gp-contact-item-icon {
  background: var(--gp-vert-foret);
  color: var(--gp-blanc);
}
.gp-contact-item-icon svg { width: 18px; height: 18px; }
.gp-contact-item-label {
  font-family: var(--gp-font-title);
  font-size: 12px;
  font-weight: 600;
  color: var(--gp-gris-moyen);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gp-contact-item-value {
  font-size: 17px;
  color: var(--gp-charbon);
  font-weight: 500;
}
.gp-contact-item a.gp-contact-item-value:hover {
  color: var(--gp-vert-foret);
}

/* Form */
.gp-form {
  background: var(--gp-blanc);
  border-radius: 14px;
  padding: 44px;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.18);
  border: 1px solid var(--gp-gris-clair);
}
.gp-form-title {
  font-family: var(--gp-font-title);
  font-size: 24px;
  font-weight: 600;
  color: var(--gp-vert-foret);
  margin-bottom: 4px;
}
.gp-form-subtitle {
  font-size: 14px;
  color: var(--gp-gris-moyen);
  margin-bottom: 28px;
}
.gp-field {
  margin-bottom: 20px;
  position: relative;
}
.gp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.gp-label {
  display: block;
  font-family: var(--gp-font-title);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gp-charbon);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.gp-input, .gp-textarea, .gp-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gp-gris-clair);
  border-radius: 8px;
  font-family: var(--gp-font-body);
  font-size: 15.5px;
  color: var(--gp-charbon);
  background: var(--gp-blanc);
  transition: border-color 0.25s var(--gp-ease), box-shadow 0.25s var(--gp-ease), transform 0.15s;
  outline: none;
}
.gp-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}
.gp-input:focus, .gp-textarea:focus, .gp-select:focus {
  border-color: var(--gp-vert-foret);
  box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.10);
}
.gp-input.is-error { border-color: #c0392b; }
.gp-input.is-error + .gp-field-error { display: block; }
.gp-field-error {
  display: none;
  font-size: 13px;
  color: #c0392b;
  margin-top: 6px;
}
.gp-form .gp-btn {
  width: 100%;
  padding: 17px 32px;
  font-size: 15px;
  margin-top: 8px;
}
.gp-form-sent {
  text-align: center;
  padding: 32px 16px;
  animation: gpPop 0.5s var(--gp-ease-out-back);
}
.gp-form-sent-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gp-vert-foret);
  color: var(--gp-blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.gp-form-sent-icon svg { width: 32px; height: 32px; }
.gp-form-sent h3 {
  color: var(--gp-vert-foret);
  font-size: 24px;
  margin-bottom: 8px;
}
.gp-form-sent p {
  color: var(--gp-gris-moyen);
  margin-bottom: 24px;
}
@keyframes gpPop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ============ VARIATION B (artisanale chaleureuse) ============ */
.gp-vB {
  background: var(--gp-beige-chaud);
}
.gp-vB .gp-nav {
  background: transparent;
  color: var(--gp-charbon);
  padding: 24px 60px;
  border-bottom: 1px solid transparent;
}
.gp-vB .gp-nav.is-scrolled {
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--gp-beige-soutenu);
}
.gp-vB .gp-nav-brand { color: var(--gp-vert-foret); }
.gp-vB .gp-nav-link { color: var(--gp-charbon); }
.gp-vB .gp-nav-link::after { background: var(--gp-vert-foret); }

.gp-vB .gp-hero {
  background: var(--gp-beige-chaud);
  color: var(--gp-charbon);
  min-height: 720px;
  padding: 80px 60px;
  text-align: left;
}
.gp-vB .gp-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.gp-vB .gp-hero-bg { display: none; }
.gp-vB .gp-hero-content { padding: 0; max-width: none; }
.gp-vB .gp-hero-eyebrow {
  color: var(--gp-brun-bois);
  opacity: 1;
}
.gp-vB .gp-hero-title {
  font-family: var(--gp-font-title);
  color: var(--gp-vert-foret);
  font-size: 78px;
  line-height: 1.05;
  text-align: left;
}
.gp-vB .gp-hero-tagline {
  color: var(--gp-gris-moyen);
  margin: 0 0 36px;
  text-align: left;
}
.gp-vB .gp-hero-photo {
  aspect-ratio: 4/5;
  border-radius: 4px;
  box-shadow: 0 40px 80px -40px rgba(30, 61, 42, 0.45);
}
.gp-vB .gp-hero-quote {
  position: relative;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--gp-vert-doux);
  max-width: 560px;
  margin-bottom: 36px;
  font-family: var(--gp-font-title);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  color: var(--gp-vert-foret);
  line-height: 1.35;
  text-align: left;
}

.gp-vB .gp-section { background: var(--gp-blanc); }
.gp-vB .gp-section-beige { background: var(--gp-beige-chaud); }
.gp-vB .gp-service-card {
  background: var(--gp-beige-chaud);
  border: none;
  padding: 44px;
}
.gp-vB .gp-service-card:hover {
  background: var(--gp-blanc);
}
.gp-vB .gp-service-row { background: var(--gp-beige-chaud); }

/* ============ small screens fallback within artboards ============ */
@media (max-width: 900px) {
  .gp-services { grid-template-columns: 1fr; }
  .gp-values { grid-template-columns: 1fr; gap: 32px; }
  .gp-about { grid-template-columns: 1fr; gap: 40px; }
  .gp-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gp-service-row, .gp-service-row:nth-child(even) { grid-template-columns: 1fr; }
  .gp-service-row:nth-child(even) .gp-service-row-photo { order: 0; }
  .gp-hero-title { font-size: 44px; }
  .gp-vB .gp-hero-inner { grid-template-columns: 1fr; }
  .gp-vB .gp-hero-title { font-size: 52px; }
}
