/* ============================================
   ÉLITE CONCIERGERIE — Feuille de style
   Bordeaux · Bassin d'Arcachon · Saint-Émilion
   ============================================ */

:root {
  --navy: #1a2b4a;
  --navy-deep: #12203a;
  --navy-soft: #2a3e5f;
  --gold: #c9a961;
  --gold-light: #d9bf7d;
  --gold-dark: #a68a4a;
  --cream: #faf6ee;
  --cream-soft: #f5eee0;
  --ivory: #fdfbf5;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-soft: #5a5a5a;
  --border: rgba(26, 43, 74, 0.12);
  --shadow: 0 20px 60px rgba(26, 43, 74, 0.08);
  --shadow-strong: 0 30px 80px rgba(26, 43, 74, 0.18);
  --shadow-soft: 0 8px 24px rgba(26, 43, 74, 0.06);
}

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

html, body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); line-height: 1.25; }
h4 { font-size: 1.15rem; }

.script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
}

a { color: var(--navy); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold-dark); }

img, svg { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ============ HEADER ============ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  border-radius: 10px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); letter-spacing: 0.08em; }
.brand-sub { font-size: 0.68rem; letter-spacing: 0.25em; color: var(--gold-dark); text-transform: uppercase; margin-top: 2px; }

nav.main-nav { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s, left .3s;
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 36px); left: 18px; }
.nav-link.active { color: var(--gold-dark); }

.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: background .25s, transform .25s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }

.burger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  color: var(--navy);
}

@media (max-width: 900px) {
  .header-inner { padding: 14px 0; }
  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 12px 0; border-bottom: 1px solid var(--border); }
  nav.main-nav.open { display: flex; }
  .nav-link { width: 100%; text-align: left; padding: 14px 24px; }
  .nav-link::after { display: none; }
  .nav-link.active { background: var(--cream-soft); }
  .burger { display: block; }
  .nav-cta { display: none; }
  .brand-name { font-size: 1.05rem; }
  .brand-logo { height: 50px; }
}

/* ============ HERO AVEC PHOTO ============ */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26, 43, 74, 0.55) 0%, rgba(26, 43, 74, 0.78) 100%);
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--cream);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .gold {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
  display: inline-block;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(250, 246, 238, 0.9);
  max-width: 640px;
  margin: 0 auto 44px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-page { padding: 120px 0 100px; }

/* ============ BOUTONS ============ */
.btn {
  padding: 16px 32px;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all .3s;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.btn-primary { background: var(--gold-dark); color: var(--white); }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(166, 138, 74, 0.5); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-ghost-dark { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost-dark:hover { background: var(--navy); color: var(--cream); }
.btn svg { width: 14px; height: 14px; }

/* ============ SECTIONS ============ */
section.block { padding: clamp(70px, 10vw, 110px) 0; }
.block-alt { background: var(--white); }
.block-navy { background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.block-navy::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,169,97,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201,169,97,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.block-navy > * { position: relative; }
.block-navy h2, .block-navy h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-header h2 { margin-bottom: 18px; }
.section-header p { max-width: 620px; margin: 0 auto; color: var(--text-soft); font-size: 1.05rem; }
.block-navy .section-eyebrow { color: var(--gold-light); }
.block-navy .section-header p { color: rgba(250, 246, 238, 0.75); }

/* Séparateur clé */
.key-divider { display: flex; justify-content: center; margin: 30px auto; opacity: 0.9; }
.key-divider img { width: 240px; height: auto; }

/* ============ UNIVERS (3 grandes cartes photo) ============ */
.universe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.universe-card {
  position: relative;
  height: 460px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  isolation: isolate;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.universe-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.19, 1, .22, 1);
}
.universe-card:hover img { transform: scale(1.08); }
.universe-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 32, 58, 0.92) 100%);
}
.universe-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 30px;
  color: var(--cream);
  z-index: 2;
}
.universe-content .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
}
.universe-content h3 { color: var(--white); font-family: 'Playfair Display', serif; margin-bottom: 10px; }
.universe-content p {
  color: rgba(250, 246, 238, 0.9);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
}

/* ============ 3 VALUES ============ */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.value-card {
  text-align: center;
  padding: 40px 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-icon {
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
  color: var(--gold-dark);
  background: var(--cream-soft);
  border-radius: 50%;
}
.value-icon svg { width: 40px; height: 40px; }
.value-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.value-card .script { font-size: 1.15rem; display: block; margin-bottom: 12px; }
.value-card p { color: var(--text-soft); line-height: 1.7; }

/* ============ SERVICES avec images ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  overflow: hidden;
  transition: all .35s;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-image { height: 220px; overflow: hidden; position: relative; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.19, 1, .22, 1); }
.service-card:hover .service-image img { transform: scale(1.1); }
.service-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.service-body { padding: 34px 30px; }
.service-icon {
  width: 60px; height: 60px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: -60px 0 20px;
  border: 4px solid var(--white);
  position: relative;
  z-index: 2;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.service-card p { color: var(--text-soft); font-size: 0.95rem; }

/* ============ SPLIT (image+texte) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 850px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
}
.split-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 2;
}
.split-media::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  z-index: 2;
}
.split-text h2 { margin-bottom: 20px; }
.split-text .script { font-size: 1.4rem; margin-bottom: 20px; display: block; }
.split-text p { color: var(--text-soft); margin-bottom: 18px; }
.split-text ul { list-style: none; margin: 20px 0; }
.split-text ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text);
  border-bottom: 1px dotted var(--border);
}
.split-text ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 20px; height: 1px;
  background: var(--gold);
}

/* ============ TARIFS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  transition: all .35s;
  position: relative;
}
.price-card.featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured:hover { transform: translateY(-4px) scale(1.03); }
.price-icon {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  color: var(--gold-dark);
  display: grid; place-items: center;
  background: var(--cream-soft);
  border-radius: 50%;
}
.price-card.featured .price-icon { color: var(--gold-light); background: rgba(201,169,97,0.15); }
.price-type {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 600;
}
.price-card.featured .price-type { color: var(--cream); }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}
.price-card.featured .price-amount { color: var(--gold-light); }
.price-unit {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
}
.price-card.featured .price-unit { color: rgba(250, 246, 238, 0.7); }
.price-note { font-size: 0.8rem; color: var(--text-soft); margin-top: 12px; font-style: italic; }
.price-card.featured .price-note { color: rgba(250, 246, 238, 0.75); }

.extras {
  background: var(--cream-soft);
  padding: 50px 40px;
  border-left: 3px solid var(--gold);
}
.extras h3 { margin-bottom: 30px; }
.extras-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px 40px;
  list-style: none;
}
.extras-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(26, 43, 74, 0.2);
  gap: 20px;
}
.extras-list .label { color: var(--navy); }
.extras-list .label small { display: block; font-size: 0.8rem; color: var(--text-soft); font-weight: 400; }
.extras-list .amount {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 1.15rem;
  white-space: nowrap;
}

.devis-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 60px 40px;
  text-align: center;
  margin-top: 50px;
  border: 1px solid var(--gold);
  position: relative;
}
.devis-cta::before, .devis-cta::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
}
.devis-cta::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.devis-cta::after { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.devis-cta h3 { color: var(--white); margin-bottom: 14px; }
.devis-cta p { color: rgba(250, 246, 238, 0.85); max-width: 500px; margin: 0 auto 26px; }

/* ============ ZONES avec carte ============ */
.zones-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .zones-layout { grid-template-columns: 1fr; } }

.map-visual {
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}
.map-visual .map-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 600;
}
.map-visual .map-sub {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 20px;
  font-size: 1rem;
}
.map-visual img { width: 100%; height: auto; }
.map-legend {
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }

.zones-list-full { display: flex; flex-direction: column; gap: 24px; }
.zone-card {
  background: var(--white);
  padding: 34px 30px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
  transition: transform .3s;
  overflow: hidden;
  position: relative;
}
.zone-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(201,169,97,0.08) 0%, transparent 70%);
}
.zone-card:hover { transform: translateY(-4px); }
.zone-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.zone-card h3 svg { width: 22px; height: 22px; color: var(--gold-dark); flex-shrink: 0; }
.zone-card .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 22px;
  font-size: 1.05rem;
}
.zone-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
@media (max-width: 500px) { .zone-list { grid-template-columns: 1fr; } }
.zone-list li {
  padding: 8px 0 8px 20px;
  color: var(--text);
  border-bottom: 1px dotted var(--border);
  position: relative;
  font-size: 0.92rem;
}
.zone-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--gold);
}

.transport-note {
  background: var(--cream-soft);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 3px solid var(--gold);
  margin-top: 20px;
}
.transport-note svg { width: 48px; height: 48px; color: var(--gold-dark); flex-shrink: 0; }
.transport-note h4 { color: var(--navy); margin-bottom: 6px; }
.transport-note p { color: var(--text-soft); margin: 0; }

/* ============ GARANTIES ============ */
.garanties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.garantie {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--gold);
}
.garantie-check {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-light);
}
.garantie-check svg { width: 16px; height: 16px; }
.garantie h4 { color: var(--white); margin-bottom: 6px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 500; }
.garantie p { color: rgba(250, 246, 238, 0.75); font-size: 0.9rem; margin: 0; }

/* ============ GALERIE ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 30px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(150deg, var(--cream-soft) 0%, #e7ddc9 100%);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,43,74,0.5) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
@media (max-width: 700px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
@media (max-width: 850px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h2 { margin-bottom: 12px; }
.contact-info .script { font-size: 1.4rem; display: block; margin-bottom: 30px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item .label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); font-weight: 500; margin-bottom: 4px; }
.contact-item .value { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); }
.contact-item .value a { color: var(--navy); }
.contact-item .value a:hover { color: var(--gold-dark); }

.socials { display: flex; gap: 12px; margin-top: 30px; }
.social-btn {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all .25s;
}
.social-btn:hover { background: var(--navy); color: var(--gold); }
.social-btn svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--white);
  padding: 50px 40px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form .form-intro { color: var(--text-soft); margin-bottom: 30px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group label .req { color: var(--gold-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--ivory);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color .25s, background .25s;
  border-radius: 2px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 24px; font-size: 0.85rem; color: var(--text-soft); }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold-dark); }
.form-submit { width: 100%; justify-content: center; }
.form-success {
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  color: var(--navy);
  display: none;
  margin-bottom: 24px;
}
.form-success.show { display: block; }

/* ============ INTRO / QUOTE ============ */
.intro-block {
  padding: clamp(70px, 10vw, 110px) 0;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.intro-block::before, .intro-block::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,0.08) 0%, transparent 70%);
}
.intro-block::before { top: -100px; left: -100px; }
.intro-block::after { bottom: -100px; right: -100px; }
.intro-block > .container { position: relative; }
.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.4;
  max-width: 820px;
  margin: 30px auto;
  position: relative;
}
.intro-quote::before, .intro-quote::after {
  content: '"';
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 3rem;
  font-style: normal;
  line-height: 0;
  vertical-align: middle;
}
.intro-quote::before { margin-right: 12px; }
.intro-quote::after { margin-left: 12px; }

/* ============ CHIFFRES CLÉS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-top: 50px;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.75);
  margin-top: 12px;
}
.stat-divider {
  width: 30px; height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* ============ BANDEAU IMAGE ============ */
.banner {
  height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,43,74,0.78) 0%, rgba(18,32,58,0.65) 100%);
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 20px;
  color: var(--cream);
}
.banner-content .script { color: var(--gold-light); font-size: 1.6rem; display: block; margin-bottom: 20px; }
.banner-content h2 { color: var(--white); margin-bottom: 30px; }
.banner-content p { color: rgba(250, 246, 238, 0.9); margin-bottom: 30px; font-size: 1.05rem; }

/* ============ FOOTER ============ */
footer.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 246, 238, 0.75);
  padding: 70px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.footer-brand .footer-sub { font-size: 0.72rem; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
footer h5 {
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; font-size: 0.9rem; }
footer ul li a { color: rgba(250, 246, 238, 0.75); cursor: pointer; }
footer ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(250, 246, 238, 0.7); }
.footer-bottom a:hover { color: var(--gold-light); }

/* CTA téléphone flottante mobile */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 14px;
  text-align: center;
  z-index: 50;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.mobile-call a { color: var(--gold-light); font-weight: 600; }
@media (max-width: 700px) {
  .mobile-call { display: block; }
  body { padding-bottom: 70px; }
}

/* Utility */
.gold-accent { color: var(--gold-dark); }
.center { text-align: center; }

/* --- Section terroir Saint-Émilion --- */
.terroir { padding: clamp(60px, 8vw, 100px) 0; background: var(--cream); }
.terroir-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.terroir-photo img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: block;
}
.terroir-text { text-align: left; }
.terroir-text h2 { margin: 4px 0 10px; }
.terroir-text .key-divider { justify-content: flex-start; margin: 0 0 22px; }
.terroir-text .key-divider img { width: 180px; }
.terroir-text p { color: var(--text-soft); line-height: 1.8; margin-bottom: 26px; max-width: 56ch; }
@media (max-width: 780px) {
  .terroir-grid { grid-template-columns: 1fr; }
  .terroir-photo img { max-height: 440px; }
}
