/* =========================================================
   Deux-Quatre Studio Photo — Guebwiller
   Charte graphique élégante & épurée
   ========================================================= */

/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}

:root {
  --cream: #f5f1ea;
  --cream-2: #eee7da;
  --paper: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --muted: #6b6258;
  --muted-2: #9a9088;
  --line: #d8d2c5;
  --gold: #b89668;
  --gold-dark: #9a7d54;
  --shadow-sm: 0 2px 8px rgba(26,26,26,.06);
  --shadow-md: 0 8px 30px rgba(26,26,26,.08);
  --shadow-lg: 0 20px 60px rgba(26,26,26,.12);
  --maxw: 1240px;
  --radius: 4px;
  --t: cubic-bezier(.22,.61,.36,1);
}

img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--t); }
a:hover { color: var(--gold-dark); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ----- Typo ----- */
h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--muted); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 880px; }
section { padding: clamp(60px, 9vw, 130px) 0; }
section.tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ----- Header / Nav ----- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(245,241,234,0);
  backdrop-filter: blur(0);
  transition: background .35s var(--t), padding .35s var(--t), backdrop-filter .35s var(--t), box-shadow .35s var(--t);
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(250,249,245,.62);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(28,25,22,.09);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.logo img { height: 44px; width: auto; }
.logo span { display: none; }
@media (min-width: 540px) { .logo span { display: inline; } }

.nav-menu {
  display: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 1024px) { .nav-menu { display: flex; } }
.nav-menu a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 6px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--t);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--t);
}
.nav-cta:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-right: -8px;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--t), opacity .25s;
}
body.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--t);
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
}
.mobile-menu a:hover { color: var(--gold-dark); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid transparent;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--t);
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--gold-dark); color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--gold); color: var(--paper); }
.btn-ghost { color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--ink); border-radius: 0; }
.btn-ghost:hover { color: var(--gold-dark); border-color: var(--gold-dark); }
.btn-arrow::after { content: "→"; transition: transform .25s var(--t); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text h1 .ital { font-style: italic; color: var(--gold-dark); display: block; }
.hero-text .lead {
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-text .signature {
  font-size: 14px;
  color: var(--muted-2);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s var(--t);
}
.hero-visual:hover img { transform: scale(1.04); }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,26,26,.15));
}
.hero-meta {
  position: absolute;
  left: -28px; bottom: 30px;
  background: var(--paper);
  padding: 14px 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

/* ----- Stats ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-num .accent { color: var(--gold); }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ----- Section title block ----- */
.section-title { margin-bottom: 60px; text-align: center; }
.section-title h2 { margin-bottom: 1rem; }
.section-title p { max-width: 600px; margin: 0 auto; }

/* ----- Prestations grid ----- */
.presta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .presta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .presta-grid { grid-template-columns: repeat(3, 1fr); } }
.presta-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-radius: 2px;
  display: block;
  aspect-ratio: 4/5;
  isolation: isolate;
}
.presta-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--t), filter .6s;
  filter: brightness(.92) saturate(.95);
}
.presta-card:hover img { transform: scale(1.06); filter: brightness(.85); }
.presta-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.55) 90%);
  z-index: 1;
}
.presta-card .info {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  z-index: 2;
  color: #fff;
}
.presta-card .info .eyebrow {
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.presta-card .info .eyebrow::before { background: rgba(255,255,255,.7); }
.presta-card .info h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.presta-card .info .from {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.85);
}
.presta-card .info .desc {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  margin-top: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--t), opacity .35s, margin-top .35s;
}
.presta-card:hover .info .desc { max-height: 120px; opacity: 1; margin-top: 12px; }

/* ----- Steps / process ----- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.step h4 { font-size: 1.3rem; font-weight: 400; margin-bottom: 10px; color: var(--ink); }
.step p { font-size: 14.5px; }

/* ----- Studio block ----- */
.studio-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) { .studio-block { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.studio-block.reverse > *:first-child { order: 2; }
@media (min-width: 900px) { .studio-block.reverse > *:first-child { order: 1; } }
.studio-block .image-stack {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.studio-block .image-stack img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.studio-block ul.feature-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .studio-block ul.feature-list { grid-template-columns: 1fr 1fr; } }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

/* ----- Testimonials ----- */
.testimonials { background: var(--cream-2); }
.t-rating {
  text-align: center;
  margin-bottom: 50px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 4px; }
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 720px) { .t-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.t-card::before {
  content: "\201C";
  position: absolute;
  top: 16px; left: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
}
.t-card blockquote {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1;
}
.t-card cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-weight: 500;
}
.t-card cite small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}

/* ----- Pricing ----- */
.pricing-section {
  background: var(--paper);
}
.pricing-group { margin-top: 60px; }
.pricing-group + .pricing-group { margin-top: 80px; }
.pricing-group-title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}
.pricing-group-title h3 {
  font-size: 1.8rem;
  font-weight: 400;
  white-space: nowrap;
}
.pricing-group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .pricing-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.price-card {
  border: 1px solid var(--line);
  padding: 28px 26px;
  border-radius: 2px;
  background: var(--paper);
  position: relative;
  transition: transform .3s var(--t), box-shadow .3s, border-color .3s;
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.price-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1;
}
.price-card .price .currency { font-size: 1.4rem; color: var(--gold); vertical-align: top; margin-left: 2px; }
.price-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.price-card .desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.55;
}
.price-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.price-card .cta:hover { color: var(--gold-dark); border-color: var(--gold-dark); }
.price-card.highlight { background: var(--cream); border-color: var(--gold); }
.price-card .badge {
  position: absolute;
  top: -10px; right: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

/* ----- Galerie / portfolio ----- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-radius: 30px;
  transition: all .25s var(--t);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1080px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 4/5;
  cursor: zoom-in;
}
.gallery-item.wide { aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--t);
}
.gallery-item:hover img { transform: scale(1.07); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,18,15,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 5vh 6vw;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background .25s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.18); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ----- FAQ ----- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.25rem;
}
.faq-q .plus {
  display: inline-block;
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .3s var(--t);
}
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after  { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--t), padding .3s;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  padding: 0 0 0 0;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 0 24px 0; }

/* ----- Contact / Forms ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 80px; } }
.contact-info p { margin-bottom: 1.2rem; line-height: 1.75; }
.contact-info .info-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.contact-info .info-block .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-info .info-block .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ink);
}
.contact-info .info-block a { color: var(--ink); }
.contact-info .info-block a:hover { color: var(--gold-dark); }

.form {
  display: grid;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { position: relative; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,104,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-consent {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}
.form-consent input { margin-right: 8px; }

/* ----- Banner / CTA ----- */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(184,150,104,.18), transparent 70%);
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--paper); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto 32px; }
.cta-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-banner .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.cta-banner .btn-outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ----- Footer ----- */
.site-footer {
  background: #0e0d0b;
  color: #d8d2c5;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 22px;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { color: #b8b1a2; font-size: 14px; }
.footer-grid ul a:hover { color: var(--gold); }
.footer-intro p { color: #8e8779; font-size: 14px; line-height: 1.7; }
.footer-intro img { height: 50px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid #2a2826;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e8779;
  transition: all .25s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-socials svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid #1f1d1a;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #6b6258;
}
.footer-bottom a:hover { color: var(--gold); }

/* ----- Page header (sub pages) ----- */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { display: inline-block; }
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 1.2rem;
}
.page-header p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.page-header.with-img {
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
  color: #fff;
  background: #1a1a1a;
}
.page-header.with-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-img) center/cover no-repeat;
  opacity: .45;
}
.page-header.with-img > .container { position: relative; z-index: 1; }
.page-header.with-img h1 { color: #fff; }
.page-header.with-img p { color: rgba(255,255,255,.85); }
.page-header.with-img .eyebrow { color: var(--gold); }

/* ----- Two-column block ----- */
.text-image-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media (min-width: 900px) { .text-image-block { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.text-image-block .img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.text-image-block .img img { width: 100%; height: 100%; object-fit: cover; }
.text-image-block .txt h2 { margin-bottom: 1.5rem; }

/* ----- Map ----- */
.map-section {
  position: relative;
}
.map-frame {
  width: 100%;
  aspect-ratio: 21/9;
  border: 0;
  filter: grayscale(.35);
}

/* ----- Blog cards ----- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  display: block;
  background: var(--paper);
  transition: transform .3s var(--t), box-shadow .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--t);
}
.blog-card:hover .img img { transform: scale(1.05); }
.blog-card .content { padding: 28px 26px; }
.blog-card .meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.blog-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.blog-card p {
  font-size: 14.5px;
  margin-bottom: 18px;
}

/* ----- Animation utilities ----- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--t), transform .8s var(--t); }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 1s; }
.fade-in.in { opacity: 1; }

/* ----- Utilities ----- */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.gold { color: var(--gold-dark); }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; }

/* ----- Tarifs page extra ----- */
.note-block {
  background: var(--cream-2);
  padding: 32px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
}
.note-block h4 { font-family: 'Cormorant Garamond', serif; margin-bottom: 10px; font-size: 1.3rem; }
.note-block ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.note-block ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ----- Form submit/loading state ----- */
.form-status { font-size: 14px; padding: 12px 0; }
.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

/* ----- Scroll bar minor ----- */
::selection { background: var(--gold); color: #fff; }

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
