/*
Theme Name: Photographe Minorque
Theme URI: https://photographe-minorque.com
Author: Manon Dubar
Author URI: https://manondubar.com
Description: Thème sur mesure pour photographe-minorque.com — Shooting photo souvenir & professionnel à Minorque
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: photo-minorque
Tags: photography, full-width, custom-menu, featured-images
*/

/* =========================================================
   DESIGN SYSTEM — Palette méditerranéenne (identique manondubar.com)
   ========================================================= */
:root {
  --sand:            #F5EFE0;
  --sand-light:      #FAF6EE;
  --terracotta:      #7B4A2D;
  --terracotta-dark: #5C3218;
  --terracotta-light:#B07850;
  --gold:            #D4A843;
  --gold-light:      #EDD28A;
  --olive:           #6B7A3E;
  --olive-light:     #A8B56A;
  --sea:             #3B7A8C;
  --sea-light:       #7BB8C8;
  --ink:             #1E1A14;
  --ink-soft:        #3D3425;
  --muted:           #7A6E5F;
  --white:           #FFFFFF;
  --border:          rgba(196,98,45,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-warm: 0 4px 24px rgba(196,98,45,0.10);
  --shadow-card: 0 2px 16px rgba(30,26,20,0.08);

  --max-width: 1200px;
  --content-width: 780px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sand-light);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terracotta-dark); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}
p { margin-bottom: 1.25rem; }

/* =========================================================
   UTILITAIRES
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 2rem;
}
.section     { padding-block: 5rem; }
.section--sm { padding-block: 3rem; }
.section--lg { padding-block: 7rem; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 99px;
  background: rgba(196,98,45,.10);
  color: var(--terracotta-dark);
}
.tag--sea  { background: rgba(59,122,140,.10); color: var(--sea); }
.tag--gold { background: rgba(212,168,67,.15); color: #8B6A18; }
.tag--olive{ background: rgba(107,122,62,.12); color: var(--olive); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .85rem 2rem;
  border-radius: 99px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,98,45,.30);
}
.btn--outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--sand);
  color: var(--ink);
  border-color: rgba(196,98,45,.30);
}
.btn--white {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
}

/* =========================================================
   HEADER — transparent sur hero, fond au scroll
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s, box-shadow .35s;
  padding-block: 1.25rem;
}
.site-header.scrolled {
  background: rgba(250,246,238,.97);
  box-shadow: 0 2px 20px rgba(30,26,20,.08);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  transition: color .2s;
  text-decoration: none;
}
.site-logo span { color: var(--gold); }
.site-header.scrolled .site-logo { color: var(--ink); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color .2s;
  text-decoration: none;
}
.main-nav a:hover { color: var(--white); }
.site-header.scrolled .main-nav a { color: var(--ink-soft); }
.site-header.scrolled .main-nav a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: .55rem 1.4rem !important;
  border-radius: 99px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--terracotta-dark) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: .25rem;
}
.site-header.scrolled .menu-toggle { color: var(--ink); }

/* =========================================================
   HERO — plein écran avec photo Minorque
   ========================================================= */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .75;
  transition: opacity .5s;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,26,20,.15) 0%,
    rgba(30,26,20,.40) 60%,
    rgba(30,26,20,.70) 100%
  );
}
.hero-fullscreen .container { position: relative; z-index: 2; }
.hero-fullscreen-inner {
  max-width: 760px;
  text-align: center;
  color: var(--white);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero-fullscreen h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-fullscreen h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-fullscreen .hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero-scroll svg { opacity: .7; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
}
.stats-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */
.section-header { margin-bottom: 3rem; }
.section-header .tag { margin-bottom: .75rem; }
.section-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: .75rem; }
.section-header p  { color: var(--muted); max-width: 560px; }

/* =========================================================
   PRESTATIONS
   ========================================================= */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.prestation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.prestation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.prestation-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.prestation-card h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.prestation-card p  { color: var(--muted); font-size: .95rem; flex: 1; }
.prestation-tags    { display: flex; flex-wrap: wrap; gap: .5rem; }
.prestation-card .btn { margin-top: auto; align-self: flex-start; }

/* =========================================================
   BLOG GRID (L'île en images / Mes séances)
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.blog-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}
.blog-card-body h3 { font-size: 1.1rem; }
.blog-card-body h3 a { color: var(--ink); }
.blog-card-body h3 a:hover { color: var(--terracotta); }
.blog-card-body p  { color: var(--muted); font-size: .9rem; flex: 1; }
.blog-card-meta    { font-size: .8rem; color: var(--muted); margin-top: auto; }

/* =========================================================
   À PROPOS — encart photo + texte
   ========================================================= */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-warm);
}
.about-text .section-header { margin-bottom: 1.5rem; }
.about-text .section-header h2 { font-size: clamp(1.6rem,2.5vw,2.2rem); }
.about-highlights {
  display: flex;
  gap: 1.25rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  min-width: 130px;
}
.highlight-icon {
  font-size: 1.4rem;
  margin-bottom: .15rem;
}
.highlight strong {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.highlight span {
  font-size: .78rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-main { aspect-ratio: 1/1; max-width: 320px; margin-inline: auto; }
}

/* =========================================================
   L'ÎLE EN IMAGES — feed adaptatif portrait / paysage
   ========================================================= */
.ile-feed {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

/* Paysage : photo à gauche, texte à droite */
.ile-card--landscape {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.ile-card--landscape:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.ile-card--landscape .ile-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ile-card--landscape .ile-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.ile-card--landscape:hover .ile-card-img img { transform: scale(1.03); }
.ile-card--landscape .ile-card-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  justify-content: center;
}

/* Portrait : photo en haut pleine largeur, texte en dessous */
.ile-card--portrait {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.ile-card--portrait:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.ile-card--portrait .ile-card-img {
  overflow: hidden;
  min-height: 320px;
}
.ile-card--portrait .ile-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s;
}
.ile-card--portrait:hover .ile-card-img img { transform: scale(1.03); }
.ile-card--portrait .ile-card-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  justify-content: center;
}

.ile-card-body h3 { font-size: 1.25rem; }
.ile-card-body h3 a { color: var(--ink); transition: color .2s; }
.ile-card-body h3 a:hover { color: var(--terracotta); }
.ile-card-body p  { color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* Responsive : tout en colonne sur mobile */
@media (max-width: 700px) {
  .ile-card--landscape,
  .ile-card--portrait {
    grid-template-columns: 1fr;
  }
  .ile-card--portrait .ile-card-img { min-height: 240px; }
}

/* =========================================================
   GUIDE LOCAL
   ========================================================= */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.guide-card-img { aspect-ratio: 4/3; overflow: hidden; }
.guide-card-img img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.guide-card:hover .guide-card-img img { transform: scale(1.04); }
.guide-card-body { padding: 1.25rem 1.5rem; }
.guide-card-body h3 { font-size: 1rem; margin-bottom: .35rem; }
.guide-card-body h3 a { color: var(--ink); }
.guide-card-body p  { color: var(--muted); font-size: .88rem; }

/* =========================================================
   AVIS CLIENTS
   ========================================================= */
.reviews-bg {
  background: var(--sand);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .1em; }
.review-text  { color: var(--ink-soft); font-size: .95rem; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 1rem; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-info strong { display: block; font-size: .9rem; color: var(--ink); }
.review-info span   { font-size: .8rem; color: var(--muted); }

/* =========================================================
   ACTUALITÉS (encart accueil)
   ========================================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.news-card-img { aspect-ratio: 16/9; overflow: hidden; }
.news-card-img img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.news-card-body h3 { font-size: 1rem; }
.news-card-body h3 a { color: var(--ink); }
.news-card-meta { font-size: .8rem; color: var(--muted); margin-top: auto; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--terracotta);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem,2.5vw,2.2rem); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,.85); max-width: 520px; margin-inline: auto; margin-bottom: 2rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding-block: 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .site-logo { color: var(--white); font-size: 1.2rem; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: .9rem; margin-bottom: 1rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--terracotta); color: var(--white); }

/* =========================================================
   CTA FLOTTANT
   ========================================================= */
.cta-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--terracotta);
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: 0 4px 20px rgba(123,74,45,.35);
  z-index: 50;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.cta-floating:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(123,74,45,.45);
  color: var(--white);
}

/* =========================================================
   PAGE INTÉRIEURE — hero simple
   ========================================================= */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: .75rem; }
.page-hero p  { color: var(--muted); max-width: 560px; margin-inline: auto; }

/* =========================================================
   PAGE ARTICLE SINGLE
   ========================================================= */
.single-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}
.single-hero-img img { width:100%;height:100%;object-fit:cover; }
.single-content {
  max-width: var(--content-width);
  margin-inline: auto;
}
.single-content h2,
.single-content h3 { margin-top: 2rem; margin-bottom: .75rem; }
.single-content p  { margin-bottom: 1.25rem; }
.single-content img { border-radius: var(--radius-md); margin-block: 2rem; }

/* =========================================================
   PAGE CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p  { color: var(--muted); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(196,98,45,.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: .9rem; color: var(--ink); }
.contact-detail span   { font-size: .88rem; color: var(--muted); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--sand-light);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(123,74,45,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: rgba(107,122,62,.12);
  border: 1px solid rgba(107,122,62,.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  color: var(--olive);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}
.form-error {
  display: none;
  background: rgba(196,98,45,.10);
  border: 1px solid rgba(196,98,45,.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  color: var(--terracotta-dark);
  text-align: center;
  margin-top: 1rem;
}

/* =========================================================
   PORTFOLIO / MES SÉANCES
   ========================================================= */
.seances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.seance-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ink);
  cursor: pointer;
}
.seance-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: opacity .35s, transform .4s;
}
.seance-card:hover img { opacity: .6; transform: scale(1.04); }
.seance-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(30,26,20,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.seance-card:hover .seance-card-overlay { opacity: 1; }
.seance-card-overlay h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .25rem; }
.seance-card-overlay span { color: rgba(255,255,255,.7); font-size: .85rem; }
.seance-card-overlay a {
  margin-top: .75rem;
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .contact-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews-bg        { padding: 2.5rem 1.5rem; }
  .cta-band          { padding: 2.5rem 1.5rem; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--sand-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a     { font-size: 1.2rem; color: var(--ink-soft) !important; }
  .menu-toggle    { display: block; z-index: 100; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item       { min-width: 120px; border: none; }
  .form-row        { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .cta-floating { bottom: 1rem; right: 1rem; padding: .65rem 1.1rem; font-size: .8rem; }
}

/* =========================================================
   LAYOUT AVEC SIDEBAR (Guide local)
   ========================================================= */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--sand);
  color: var(--ink);
}
.blog-card-footer {
  padding: .75rem 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
}
.post-header {
  background: var(--sand);
  padding-block: 4rem;
  text-align: center;
  padding-top: 8rem;
}
.post-header p { max-width: 560px; margin-inline: auto; }
.post-header h1 { font-size: clamp(2rem,4vw,3rem); }

/* =========================================================
   HEADER — fond crème sur les pages intérieures
   ========================================================= */
.site-header.scrolled {
  background: rgba(245,239,224,.97) !important;
  box-shadow: 0 2px 20px rgba(30,26,20,.08);
}
.site-header.scrolled .main-nav a {
  color: var(--ink-soft) !important;
  font-weight: 600 !important;
}
.site-header.scrolled .main-nav a:hover {
  color: var(--terracotta) !important;
}
.site-header.scrolled .site-logo {
  color: var(--ink) !important;
}

@media (max-width: 1024px) {
  .layout-with-sidebar { grid-template-columns: 1fr; }
}

/* =========================================================
   HERO BANDEAU — pages intérieures
   ========================================================= */
.page-hero-photo {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,26,20,.50) 0%,
    rgba(30,26,20,.70) 100%
  );
  z-index: 1;
}
.page-hero-photo .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 5rem;
}
.page-hero-photo h1 {
  color: #FFFFFF;
  font-size: clamp(2rem,4vw,3rem);
  margin-top: .75rem;
  margin-bottom: .75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.page-hero-photo p {
  color: rgba(255,255,255,.90);
  max-width: 580px;
  margin-inline: auto;
  font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}
.page-hero-photo .tag {
  background: rgba(255,255,255,.18) !important;
  color: var(--gold-light) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
  backdrop-filter: blur(4px);
}
