/* ================================================================
   PIGACHE Patrimoine — style.css
   Design : premium, chaleureux, patrimonial
   ================================================================ */

/* ----- RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

/* ----- VARIABLES ---------------------------------------------- */
:root {
  /* Palette */
  --cream:       #f7f0e5;
  --linen:       #f0e6d6;
  --sand:        #e5d3bb;
  --sand-mid:    #c8a882;
  --cognac:      #8b5e35;
  --brown:       #2d1f0f;
  --brown-mid:   #4a3020;
  --night:       #0a0806;
  --night-warm:  #120e08;
  --gold:        #c9a76a;
  --gold-soft:   rgba(201, 167, 106, 0.16);
  --gold-line:   rgba(201, 167, 106, 0.28);
  --white:       #ffffff;
  --body-text:   #4a3826;
  --body-muted:  #7a6050;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.25, .46, .45, .94);
  --dur:  260ms;

  /* Spacing */
  --gutter:    clamp(20px, 6vw, 96px);
  --section-v: clamp(80px, 10vw, 140px);
}

/* ----- BASE --------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--night);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; }
button { font: inherit; appearance: none; }
blockquote { quotes: none; }

/* ----- TYPOGRAPHY --------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
}

h1 { font-size: clamp(46px, 7vw, 88px); color: var(--cream); letter-spacing: -0.5px; }
h2 { font-size: clamp(30px, 4vw, 50px); color: var(--brown); }
h3 { font-size: clamp(18px, 2.2vw, 23px); color: var(--brown); }
h4 { font-size: 14px; font-weight: 600; color: var(--brown); margin-bottom: 5px; }

.section-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--cognac);
  font-family: var(--sans);
}
.section-label.light { color: var(--gold); }

.section-header {
  max-width: 700px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-header h2 { margin: 10px 0 16px; }
.section-intro { font-size: 17px; color: var(--body-text); max-width: 580px; }

.label-opt { font-size: 11px; font-weight: 400; color: var(--cognac); text-transform: none; letter-spacing: 0; }

/* ----- BUTTONS ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn.primary {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn.primary:hover {
  background: var(--cognac);
  border-color: var(--cognac);
  box-shadow: 0 8px 28px rgba(45, 31, 15, .3);
}

.btn.outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 240, 229, .38);
}
.btn.outline:hover {
  border-color: rgba(247, 240, 229, .75);
  background: rgba(247, 240, 229, .07);
}

.btn.large { padding: 17px 40px; font-size: 14px; }
.btn.full  { width: 100%; }

/* ----- NAVBAR ------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(10, 8, 6, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201, 167, 106, .1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--cream);
  flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}
.logo-mark.small { width: 36px; height: 36px; font-size: 18px; }
.brand:hover .logo-mark { background: var(--gold-soft); }

.brand-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  letter-spacing: .3px;
  color: var(--cream);
}
.brand-text span {
  display: block;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201, 167, 106, .8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  font-size: 12.5px; font-weight: 500; letter-spacing: .3px;
  color: rgba(247, 240, 229, .72);
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--cream); }

/* LinkedIn icon in nav */
.nav-linkedin {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(247, 240, 229, .6) !important;
  transition: color var(--dur) var(--ease) !important;
}
.nav-linkedin svg { width: 16px; height: 16px; }
.nav-linkedin-label { font-size: 12px; }
.nav-linkedin:hover { color: var(--gold) !important; }

/* Nav CTA button */
.nav-cta {
  color: var(--cream) !important;
  border: 1px solid rgba(247, 240, 229, .32);
  padding: 9px 18px;
  font-size: 12px !important;
  letter-spacing: .7px;
  text-transform: uppercase;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease) !important;
}
.nav-cta:hover {
  background: rgba(247, 240, 229, .08);
  border-color: rgba(247, 240, 229, .6);
  color: var(--cream) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----- HERO --------------------------------------------------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--night);
  background-image:
    radial-gradient(ellipse at 18% 88%, rgba(201, 167, 106, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse at 84% 12%, rgba(201, 167, 106, 0.04) 0%, transparent 38%);
  display: grid;
  grid-template-columns: 1fr 42%;
  position: relative;
  overflow: hidden;
}

/* Vignette périphérique subtile */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 160px rgba(10, 8, 6, 0.25);
  pointer-events: none;
  z-index: 2;
}

/* Lueur dorée bas-gauche — chaleur et profondeur */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 0;
  width: 650px; height: 380px;
  background: radial-gradient(ellipse at 22% 100%, rgba(201, 167, 106, 0.10) 0%, transparent 62%);
  pointer-events: none;
  z-index: 2;
}

/* Colonne texte gauche */
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 13vh, 140px) clamp(16px, 3vw, 52px) clamp(64px, 9vh, 100px) var(--gutter);
  position: relative;
  z-index: 3;
}

/* Colonne portrait droite */
.hero-portrait {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  filter: brightness(0.92) contrast(1.05) sepia(0.08);
}

/* Fusion portrait : fondu gauche pour raccord avec la colonne texte, ancrage bas/haut */
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      var(--night) 0%,
      rgba(10, 8, 6, 0.90) 8%,
      rgba(10, 8, 6, 0.48) 26%,
      rgba(10, 8, 6, 0.12) 48%,
      transparent 70%
    ),
    linear-gradient(to top,
      rgba(10, 8, 6, 0.80) 0%,
      rgba(10, 8, 6, 0.22) 24%,
      transparent 44%
    ),
    linear-gradient(to bottom,
      rgba(10, 8, 6, 0.42) 0%,
      transparent 20%
    );
  z-index: 2;
  pointer-events: none;
}

/* Lisibilité renforcée sur fond photo */
.hero h1    { text-shadow: 0 2px 44px rgba(10, 8, 6, 0.52); }
.hero .lead { text-shadow: 0 1px 22px rgba(10, 8, 6, 0.42); }

.eyebrow {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: .9;
}

h1 { margin-bottom: 28px; }

.lead {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(247, 240, 229, .86);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.68;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 44px;
}
.trust-bar li {
  font-size: 11px; letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(247, 240, 229, .52);
}
.trust-bar li + li::before {
  content: '·';
  margin: 0 14px;
  color: rgba(201, 167, 106, .6);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  color: rgba(247, 240, 229, .38);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.hero-scroll svg { width: 18px; height: 18px; }
.hero-scroll:hover { color: rgba(247, 240, 229, .75); }

/* ----- PILLARS ------------------------------------------------ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 3px solid var(--brown);
}
.pillar {
  padding: clamp(36px, 4.5vw, 68px) clamp(22px, 3.5vw, 50px);
  text-align: center;
  border-right: 1px solid var(--sand);
  transition: background var(--dur) var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--linen); }
.pillar-icon { width: 40px; height: 40px; margin: 0 auto 20px; color: var(--gold); }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h2 { font-size: clamp(20px, 2.2vw, 26px); margin-bottom: 10px; }
.pillar p { font-size: 14px; color: var(--body-text); max-width: 260px; margin: 0 auto; }

/* ----- WHY ---------------------------------------------------- */
.why { padding: var(--section-v) var(--gutter); background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--sand);
}
.why-card {
  background: var(--cream);
  padding: clamp(32px, 4vw, 58px);
  transition: background var(--dur) var(--ease);
}
.why-card:hover { background: var(--white); }
.why-num {
  display: block;
  font-family: var(--serif);
  font-size: 56px; font-weight: 400;
  color: var(--gold); opacity: .45;
  line-height: 1; margin-bottom: 14px;
}
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p  { font-size: 14.5px; color: var(--body-text); line-height: 1.75; }

/* ----- APPROACH ----------------------------------------------- */
.approach { background: var(--white); padding: var(--section-v) var(--gutter); }
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.approach-text h2 { margin: 10px 0 22px; }

.approach-quote {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  color: var(--cognac);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 22px;
  line-height: 1.55;
}

.approach-body {
  font-size: 15.5px;
  color: var(--body-text);
  margin-bottom: 36px;
  line-height: 1.75;
}

.approach-values { display: flex; flex-direction: column; gap: 22px; }
.approach-value {
  padding-left: 18px;
  border-left: 2px solid var(--sand);
  transition: border-color var(--dur) var(--ease);
}
.approach-value:hover { border-color: var(--gold); }
.approach-value h4 {
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  color: var(--brown); margin-bottom: 5px;
}
.approach-value p { font-size: 13.5px; color: var(--body-text); line-height: 1.65; }

/* Portrait card */
.approach-card {
  position: sticky;
  top: 100px;
  overflow: hidden;
  border: 1px solid var(--sand);
}

.approach-portrait {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg,
    #f2e5d0 0%,
    #d8b888 28%,
    #c09060 58%,
    #8b6040 100%
  );
  overflow: hidden;
}
.approach-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 14%;
  filter: brightness(0.95) contrast(1.04) sepia(0.06);
}

.portrait-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 22px 22px;
  background: linear-gradient(transparent, rgba(8, 5, 2, 0.62) 36%, rgba(8, 5, 2, 0.93));
}
.signature {
  font-family: var(--serif);
  font-size: 28px; font-style: italic;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 5px;
}
.portrait-role {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); opacity: .9;
}

.approach-card-footer {
  background: var(--brown);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px; letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(247, 240, 229, .5);
}
.approach-card-footer .sep { color: var(--gold); opacity: .5; }

/* ----- SERVICES ----------------------------------------------- */
.services { padding: var(--section-v) var(--gutter); background: var(--linen); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--sand);
}
.service-card {
  background: var(--white);
  padding: clamp(28px, 3.5vw, 48px);
  transition: background var(--dur) var(--ease);
}
.service-card:hover { background: var(--cream); }
.service-icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: 18px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p  { font-size: 13.5px; color: var(--body-text); line-height: 1.7; }

/* ----- METHOD ------------------------------------------------- */
.method { background: var(--night); padding: var(--section-v) var(--gutter); color: var(--cream); }
.method-header { max-width: 700px; margin-bottom: clamp(48px, 7vw, 80px); }
.method-header h2 { color: var(--cream); margin: 10px 0 14px; }
.method-header p  { font-size: 15px; color: rgba(247, 240, 229, .58); line-height: 1.7; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.05);
}
.step {
  background: var(--night);
  padding: clamp(28px, 3.5vw, 46px);
  transition: background var(--dur) var(--ease);
}
.step:hover { background: #18120a; }
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 56px; font-weight: 400;
  color: var(--gold); opacity: .28;
  line-height: 1; margin-bottom: 18px;
}
.step h3 { color: var(--cream); font-size: 19px; margin-bottom: 12px; }
.step p  { font-size: 13.5px; color: rgba(247, 240, 229, .56); line-height: 1.75; }

/* ----- BOOKING ------------------------------------------------ */
.booking {
  background: var(--night-warm);
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(201, 167, 106, .10) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(201, 167, 106, .06) 0%, transparent 40%);
  padding: var(--section-v) var(--gutter);
  color: var(--cream);
  border-top: 1px solid rgba(201, 167, 106, .12);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.booking-text h2 { color: var(--cream); margin: 10px 0 18px; }
.booking-text > p {
  font-size: 15.5px;
  color: rgba(247, 240, 229, .65);
  margin-bottom: 32px;
  line-height: 1.75;
}

.booking-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.booking-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(247, 240, 229, .8);
}
.booking-features svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.booking-tagline {
  margin-top: 14px;
  font-size: 12.5px;
  font-style: italic;
  color: rgba(247, 240, 229, 0.42);
  letter-spacing: 0.15px;
}

.booking-alt {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(247, 240, 229, .4);
}
.booking-alt a {
  color: var(--gold);
  text-decoration: none;
  opacity: .9;
  transition: opacity var(--dur) var(--ease);
}
.booking-alt a:hover { opacity: 1; }

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 18px rgba(45, 31, 15, 0.22); }
  55%       { box-shadow: 0 6px 32px rgba(201, 167, 106, 0.18), 0 0 0 1px rgba(201, 167, 106, 0.07); }
}

.booking-text .btn.primary {
  animation: ctaGlow 4s ease-in-out infinite;
}

/* ----- BOOKING CARD (Cal.com) --------------------------------- */
.booking-card {
  border: 1px solid var(--gold-line);
  background: rgba(201, 167, 106, 0.04);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.booking-card-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 6px;
}

.booking-card-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.booking-card-sep {
  border: none;
  border-top: 1px solid rgba(201, 167, 106, 0.15);
  margin: 0;
}

.booking-card-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
}

.booking-card-meta li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.5px;
  color: rgba(247, 240, 229, 0.62);
}

.booking-card-meta svg {
  width: 15px; height: 15px;
  color: var(--gold);
  opacity: 0.75;
  flex-shrink: 0;
}

.booking-card-note {
  font-size: 11px;
  text-align: center;
  color: rgba(247, 240, 229, 0.28);
  letter-spacing: 0.3px;
}

.booking-card-note strong { color: rgba(247, 240, 229, 0.42); font-weight: 500; }
.booking-card-note-sep { color: rgba(201, 167, 106, 0.5); margin: 0 6px; }

/* ----- CAL.COM MODAL ------------------------------------------ */
.cal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  cursor: pointer;
}

.cal-overlay.open .cal-backdrop { opacity: 1; }

.cal-panel {
  position: relative;
  z-index: 1;
  background: var(--night-warm);
  border: 1px solid var(--gold-line);
  border-bottom: none;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 340ms var(--ease), opacity 340ms var(--ease);
}

.cal-overlay.open .cal-panel { transform: none; opacity: 1; }

.cal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: none;
  border: 1px solid rgba(201, 167, 106, 0.22);
  color: rgba(247, 240, 229, 0.50);
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.cal-close:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 167, 106, 0.06); }
.cal-close svg { width: 15px; height: 15px; }

.cal-panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 56px 24px 28px;
  border-bottom: 1px solid rgba(201, 167, 106, 0.10);
}

.cal-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.80;
  margin-bottom: 5px;
}

.cal-panel-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.cal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(201, 167, 106, 0.10);
  margin: 0;
}

.cal-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(247, 240, 229, 0.62);
}

.cal-features svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.cal-body {
  flex: 1;
  padding: 28px;
}

.cal-body [data-cal-inline],
.cal-body iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  background: transparent;
}

.cal-pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 12px 0 8px;
}

.cal-pending-icon {
  width: 50px; height: 50px;
  color: var(--gold);
  opacity: 0.28;
  display: block;
  margin: 0 auto;
}

.cal-pending-msg {
  font-size: 14px;
  color: rgba(247, 240, 229, 0.45);
  max-width: 280px;
  line-height: 1.72;
}

@media (min-width: 641px) {
  .cal-overlay { align-items: center; padding: 24px; }
  .cal-panel {
    border-bottom: 1px solid var(--gold-line);
    transform: translateY(20px) scale(0.98);
  }
  .cal-overlay.open .cal-panel { transform: none; }
}

/* ----- CONTACT ----------------------------------------------- */
.contact { background: var(--white); padding: var(--section-v) var(--gutter); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.contact-text h2  { margin: 10px 0 16px; }
.contact-text > p {
  font-size: 15px; color: var(--body-text);
  margin-bottom: 36px; line-height: 1.75;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--cognac);
}
.contact-item svg   { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact-item a     { text-decoration: none; transition: opacity var(--dur) var(--ease); }
.contact-item a:hover { opacity: .75; }

/* Form */
.contact-form   { display: flex; flex-direction: column; gap: 18px; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group     { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--brown);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--sand);
  background: var(--linen);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--night);
  border-radius: 0;
  appearance: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cognac);
  box-shadow: 0 0 0 3px rgba(139, 94, 53, .1);
}
.form-group input.error,
.form-group textarea.error,
.form-consent input.error { border-color: #b04040; box-shadow: 0 0 0 2px rgba(176, 64, 64, .1); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-consent { flex-direction: row; align-items: flex-start; gap: 12px; }
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  padding: 0; margin-top: 2px;
  accent-color: var(--brown);
  cursor: pointer;
}
.form-consent label {
  font-size: 12px; text-transform: none;
  letter-spacing: 0; font-weight: 400;
  color: var(--body-text);
  cursor: pointer; line-height: 1.6;
}

button.btn { border-width: 1.5px; }
button[type="submit"]:disabled { opacity: .55; cursor: not-allowed; }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(201, 167, 106, 0.07);
  border-left: 3px solid var(--gold);
  color: var(--body-text);
}
.form-success svg { width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0; margin-top: 1px; }
.form-success p   { font-size: 14.5px; line-height: 1.55; color: var(--body-text); }

/* ----- FOOTER ------------------------------------------------- */
.footer { background: var(--brown); color: var(--cream); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 48px;
  padding: clamp(48px, 6vw, 80px) var(--gutter) 40px;
  align-items: start;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .logo-mark { color: var(--gold); }
.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  color: var(--cream);
}
.footer-brand p { font-size: 12px; color: rgba(247,240,229,.48); margin-top: 3px; }

.footer-nav { display: flex; flex-direction: column; gap: 13px; }
.footer-nav a {
  font-size: 13px;
  color: rgba(247, 240, 229, .62);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer-nav a:hover { color: var(--cream); }

.footer-right { display: flex; flex-direction: column; gap: 24px; }

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .3px;
  color: rgba(247, 240, 229, .65);
  text-decoration: none;
  border: 1px solid rgba(247, 240, 229, .18);
  padding: 10px 16px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  width: fit-content;
}
.footer-linkedin svg { width: 16px; height: 16px; }
.footer-linkedin:hover {
  background: rgba(247, 240, 229, .07);
  border-color: rgba(247, 240, 229, .35);
  color: var(--cream);
}

.footer-legal p { font-size: 12px; color: rgba(247, 240, 229, .4); line-height: 1.85; }

.footer-bottom {
  border-top: 1px solid rgba(247, 240, 229, .1);
  padding: 20px var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p   { font-size: 12px; color: rgba(247, 240, 229, .38); }
.footer-bottom a   { color: rgba(247, 240, 229, .38); text-decoration: none; transition: color var(--dur) var(--ease); }
.footer-bottom a:hover { color: rgba(247, 240, 229, .72); }

/* ----- SCROLL-REVEAL ----------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}
.fade-in.visible { opacity: 1; transform: none; }

/* Décalage en cascade pour les grilles */
.pillars   .pillar:nth-child(2),
.why-grid  .fade-in:nth-child(2),
.steps     .fade-in:nth-child(2),
.services-grid .fade-in:nth-child(2) { transition-delay:  90ms; }

.pillars   .pillar:nth-child(3),
.why-grid  .fade-in:nth-child(3),
.steps     .fade-in:nth-child(3),
.services-grid .fade-in:nth-child(3) { transition-delay: 180ms; }

.why-grid  .fade-in:nth-child(4),
.steps     .fade-in:nth-child(4)     { transition-delay: 270ms; }

.services-grid .fade-in:nth-child(4) { transition-delay:  90ms; }
.services-grid .fade-in:nth-child(5) { transition-delay: 180ms; }
.services-grid .fade-in:nth-child(6) { transition-delay: 270ms; }

/* ----- RESPONSIVE : tablette ------------------------------- */

/* Hero : passage en une colonne dès 900px */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    background-image:
      linear-gradient(
        to bottom,
        rgba(10, 8, 6, 0.46) 0%,
        rgba(10, 8, 6, 0.30) 22%,
        rgba(10, 8, 6, 0.78) 60%,
        rgba(10, 8, 6, 0.97) 100%
      ),
      url('guillaume-pigache.PNG') center 8% / cover no-repeat;
  }
  .hero-inner {
    justify-content: flex-end;
    padding: 100px var(--gutter) 64px;
  }
  .hero-portrait { display: none; }
}

@media (max-width: 1024px) {
  .approach-inner { grid-template-columns: 1fr 240px; }
}

@media (max-width: 880px) {
  .approach-inner { grid-template-columns: 1fr; }
  .approach-card  { position: static; max-width: 300px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps          { grid-template-columns: repeat(2, 1fr); }
  .booking-inner  { grid-template-columns: 1fr; }
  .contact-inner  { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

/* ----- RESPONSIVE : mobile ------------------------------------- */
@media (max-width: 640px) {
  h1 { font-size: clamp(36px, 11vw, 54px); }
  h2 { font-size: clamp(26px, 8.5vw, 36px); }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10, 8, 6, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px var(--gutter) 22px;
    border-top: 1px solid rgba(201, 167, 106, .12);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 0;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta {
    border: none; padding: 13px 0;
    color: var(--gold) !important;
  }
  .nav-toggle { display: flex; }
  .nav-linkedin-label { display: inline; }

  /* Hero mobile : une colonne, portrait caché, fond = photo portrait */
  .hero {
    grid-template-columns: 1fr;
    background-image:
      linear-gradient(
        to bottom,
        rgba(10, 8, 6, 0.40) 0%,
        rgba(10, 8, 6, 0.26) 24%,
        rgba(10, 8, 6, 0.82) 62%,
        rgba(10, 8, 6, 0.97) 100%
      ),
      url('guillaume-pigache.PNG') center 6% / cover no-repeat;
  }
  .hero-inner {
    justify-content: flex-end;
    padding: 100px var(--gutter) 64px;
  }
  .hero-portrait { display: none; }

  /* Pillars */
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--sand); }
  .pillar:last-child { border-bottom: none; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

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

  /* Steps */
  .steps { grid-template-columns: 1fr; }

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

  /* Footer */
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ----- FOCUS ACCESSIBILITY ----------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
