/* ============================================================
   VANESSA B — PHOTOGRAPHE
   Design system: earthy, warm, minimal
   Palette: cream / sage / dark charcoal / warm sand
   ============================================================ */

:root {
  --cream:  #D8D2C4;   /* Coconut Flour — warm medium beige */
  --white:  #E8E3D9;   /* body background — warm parchment */
  --dark:   #252422;   /* Slate */
  --sage:   #8B5230;   /* Cinnamon Stick */
  --sand:   #B8B2A4;   /* Burlap */
  --stone:  #D9D4C8;   /* light Burlap */
  --muted:  #525240;   /* Olive Branch */

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --nav-h: 80px;
  --max-w: 1100px;
  --max-w-wide: 1400px;
  --gap: 1rem;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 6vw, 5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.9rem); }
p { max-width: 65ch; }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  font-family: var(--font-sans);
  font-weight: 500;
}
.serif { font-family: var(--font-serif); }
.muted { color: var(--muted); }

/* ── Layout helpers ─────────────────────────────────────────── */
.container      { max-width: var(--max-w);      margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 2rem; }
.section        { padding: 6rem 0; }
.section-sm     { padding: 3.5rem 0; }
.text-center    { text-align: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  transition: background 0.25s, color 0.25s;
  font-family: var(--font-sans);
}
.btn:hover            { background: var(--dark);  color: var(--white); }
.btn-sage             { border-color: var(--sage); color: var(--sage); }
.btn-sage:hover       { background:  var(--sage);  color: var(--white); }
.btn-cream            { border-color: var(--cream); color: var(--cream); }
.btn-cream:hover      { background:  var(--cream);  color: var(--dark); }

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: var(--nav-h);
  transition: background 0.35s, height 0.35s, box-shadow 0.35s;
}
.site-nav.scrolled {
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 64px;
  box-shadow: 0 1px 0 var(--stone);
}
/* Logo */
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--dark);
  transition: color 0.2s;
}
.site-nav:not(.scrolled) .nav-logo { color: var(--white); }
.site-nav:not(.scrolled) .nav-logo,
.site-nav:not(.scrolled) .nav-links a,
.site-nav:not(.scrolled) .lang-btn,
.site-nav:not(.scrolled) .hamburger span { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6)); }
/* Nav links */
.nav-links {
  display: flex; gap: 2rem;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  color: var(--dark);
  transition: color 0.2s;
  padding-bottom: 2px;
}
.site-nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1px;
  background: var(--sage);
  transition: right 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after  { right: 0; }
.nav-links a:hover,
.nav-links a.active          { color: var(--sage); }
.site-nav:not(.scrolled) .nav-links a:hover,
.site-nav:not(.scrolled) .nav-links a.active { color: var(--white); }
/* Right side */
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.lang-btn {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 0.3rem 0.7rem;
  transition: all 0.2s;
  color: var(--dark);
}
.site-nav:not(.scrolled) .lang-btn { color: rgba(255,255,255,0.85); }
.lang-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 32px; height: 32px;
}
.hamburger span {
  display: block; width: 100%; height: 1px;
  background: var(--dark);
  transition: transform 0.3s, opacity 0.3s;
}
.site-nav:not(.scrolled) .hamburger span { background: white; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 199;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-nav.open  { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 8vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--dark);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--sage); }
.mobile-lang {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--sand);
  padding: 0.4rem 1rem;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   HERO — FULL-SCREEN SLIDESHOW
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.0)  35%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 4.5rem; left: 4rem;
  color: white;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.hero-content h1 { font-weight: 300; line-height: 1.1; }
.hero-content .sub {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero-dots {
  position: absolute; bottom: 4.5rem; right: 4rem;
  display: flex; gap: 0.6rem; align-items: center;
}
.hero-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.hero-dot.active { background: white; transform: scale(1.5); }

/* ════════════════════════════════════════════════════════════
   INTRO SECTION
   ════════════════════════════════════════════════════════════ */
.intro-section {
  padding: 7rem 2rem;
  text-align: center;
  background: var(--white);
}
.intro-section .eyebrow { margin-bottom: 1.25rem; }
.intro-section h2 { margin-bottom: 1.5rem; }
.intro-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}
.intro-section .btn { margin-top: 2.5rem; }

/* ════════════════════════════════════════════════════════════
   MANIFESTO SECTION
   ════════════════════════════════════════════════════════════ */
.manifesto-section {
  padding: 6rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-location {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.manifesto-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1rem;
}
.manifesto-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.manifesto-section > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.manifesto-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  text-align: left;
}
.manifesto-col h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.manifesto-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.manifesto-col ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.manifesto-col ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sand);
}
@media (max-width: 640px) {
  .manifesto-cols { grid-template-columns: 1fr; gap: 2rem; }
}

/* ════════════════════════════════════════════════════════════
   SPLIT LAYOUT (image + text)
   ════════════════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
}
.split-img {
  overflow: hidden;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-text {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4.5rem;
}
.split-text .eyebrow { margin-bottom: 1rem; }
.split-text h2 { margin-bottom: 1.5rem; }
.split-text p { color: var(--muted); margin-bottom: 1.2rem; max-width: 48ch; }
.split-text .btn { margin-top: 1.5rem; }
.split.reverse .split-img { order: 2; }
.split.reverse .split-text { order: 1; background: var(--stone); }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO PREVIEW GRID (homepage)
   ════════════════════════════════════════════════════════════ */
.portfolio-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 400px 400px;
  gap: var(--gap);
}
.portfolio-tile {
  position: relative;
  overflow: hidden;
}
.portfolio-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.portfolio-tile:hover img { transform: scale(1.06); }
.portfolio-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: white;
}
.portfolio-tile-label .eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.portfolio-tile-label h3 { font-weight: 300; }
.portfolio-tile.large { grid-row: span 2; }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--muted);   /* Olive Branch — bold dark section */
  padding: 7rem 2rem;
  text-align: center;
  color: var(--cream);
}
.testimonials .eyebrow { margin-bottom: 1.25rem; color: var(--sand); }
.testimonials h2 { margin-bottom: 3.5rem; color: var(--cream); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.55s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 4rem;
}
.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 300;
  line-height: 1.95;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 1.75rem;
}
.testimonial-slide blockquote::before { content: ''; }
.testimonial-slide blockquote::after  { content: ''; }
.testimonial-slide cite {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
}
.t-dots {
  display: flex; justify-content: center; gap: 0.75rem; margin-top: 3rem;
}
.t-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.t-dot.active { background: var(--cream); transform: scale(1.4); }

/* ════════════════════════════════════════════════════════════
   PHOTO GALLERY (portfolio pages)
   ════════════════════════════════════════════════════════════ */
.gallery {
  columns: 3;
  column-gap: 0.75rem;
  padding: 0 2rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* ════════════════════════════════════════════════════════════
   BLOG GRID
   ════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.blog-card { cursor: default; }
.blog-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card .eyebrow { margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; line-height: 1.3; }
.blog-card p  { font-size: 0.9rem; color: var(--muted); }
.blog-card a.read-more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 1px;
  color: var(--sage);
}

/* ════════════════════════════════════════════════════════════
   BLOG POST (article page)
   ════════════════════════════════════════════════════════════ */
.post-header {
  padding: calc(var(--nav-h) + 4rem) 2rem 3rem;
  background: var(--cream);
  text-align: center;
}
.post-header .eyebrow { margin-bottom: 1rem; }
.post-header h1 { max-width: 18ch; margin: 0 auto; }
.post-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.post-body p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  max-width: 100%;
  font-size: 1.05rem;
}
.post-body h2 { margin: 2.5rem 0 1rem; }
.post-body figure { margin: 2.5rem 0; }
.post-body figure img { width: 100%; }
.post-body .img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2.5rem 0;
}
.post-body .img-grid img { width: 100%; height: 300px; object-fit: cover; }

/* ════════════════════════════════════════════════════════════
   PAGE HERO (non-home pages)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 65vh; min-height: 350px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 3.5rem 3rem;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.5) 100%);
}
.page-hero-content { position: relative; z-index: 1; color: white; }
.page-hero-content .eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; }

.page-header {
  padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  background: var(--cream);
}
.page-header .eyebrow { margin-bottom: 0.85rem; }

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════ */
.about-quote {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
}
.about-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
  color: var(--dark);
}
.about-text { padding: 5rem 2rem; }
.about-text .inner { max-width: 680px; margin: 0 auto; }
.about-text p { color: var(--muted); margin-bottom: 1.25rem; font-size: 1.05rem; max-width: 100%; }
.signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--sage);
  margin-top: 2rem;
  display: block;
}

/* ════════════════════════════════════════════════════════════
   PRESS PAGE
   ════════════════════════════════════════════════════════════ */
.press-intro { max-width: 740px; margin: 0 auto 4rem; }
.press-intro p { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.25rem; max-width: 100%; }
.press-highlight {
  background: var(--cream);
  border-left: 3px solid var(--sage);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   CONTACT / TARIFS PAGES
   ════════════════════════════════════════════════════════════ */
.contact-intro { max-width: 580px; margin: 0 auto 3rem; text-align: center; }
.contact-intro p { color: var(--muted); }
.fs-embed { width: 100%; min-height: 720px; border: none; display: block; }
.tarifs-note {
  max-width: 620px; margin: 0 auto;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 2rem;
  display: block;
}
.footer-links {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 1rem 2rem;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-social {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.footer-social a {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: white; }
.footer-copy { font-size: 0.72rem; letter-spacing: 0.06em; }

/* ════════════════════════════════════════════════════════════
   BILINGUAL — JS swaps textContent via data-fr / data-en attrs
   No CSS show/hide needed; elements are always visible.
   ════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .portfolio-preview { grid-template-rows: 320px 320px; }
}

@media (max-width: 900px) {
  .site-nav { padding: 0 1.75rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .split { grid-template-columns: 1fr; }
  .split.reverse .split-img { order: 0; }
  .split.reverse .split-text { order: 1; }
  .split-text { padding: 3.5rem 2.5rem; }
  .split-img { height: 55vw; }

  .portfolio-preview { grid-template-columns: 1fr 1fr; grid-template-rows: 45vw 45vw; }
  .portfolio-tile.large { grid-row: span 1; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
}

@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .hero-content { left: 1.5rem; bottom: 5rem; }
  .hero-dots   { right: 1.5rem; bottom: 4rem; }
  .section { padding: 4rem 0; }

  .portfolio-preview { grid-template-columns: 1fr; grid-template-rows: auto; }
  .portfolio-tile { height: 72vw; }

  .blog-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }

  .testimonial-slide { padding: 0 1.25rem; }

  .split-text { padding: 2.5rem 1.5rem; }
  .post-body  { padding: 3rem 1.25rem; }
  .post-body .img-grid { grid-template-columns: 1fr; }
  .post-body .img-grid img { height: auto; }

  .container { padding: 0 1.25rem; }
  .gallery { padding: 0 1.25rem; }
}
