/* ============================================================
   INSTANT DORÉ — Photographie de Mariage
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Raleway:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --cream:        #F8F4EE;
  --cream-mid:    #EDE7DB;
  --cream-dark:   #E2DAC9;
  --gold:         #B5924A;
  --gold-light:   #D4AF6E;
  --gold-pale:    #F2E8D4;
  --dark:         #1E1812;
  --medium:       #5C4D38;
  --text:         #3A2E20;
  --light-text:   #8A7355;
  --white:        #FDFBF7;
  --nav-h:        78px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   all 0.35s var(--ease);
  --shadow-sm:    0 2px 12px rgba(30,24,18,0.07);
  --shadow-md:    0 8px 32px rgba(30,24,18,0.10);
  --shadow-lg:    0 20px 60px rgba(30,24,18,0.14);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  color: var(--dark);
}

.section-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

p {
  font-size: 1rem;
  color: var(--medium);
  line-height: 1.8;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(248,244,238,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(181,146,74,0.12);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(248,244,238,0.98);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 46px;
  width: auto;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.78; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--medium);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lang-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-text);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  transition: var(--transition);
}
.lang-btn.active { color: var(--dark); }
.lang-btn:hover { color: var(--gold); }
.lang-sep {
  width: 1px; height: 12px;
  background: var(--cream-dark);
}

.nav-cta {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  padding: 2.5rem;
  flex-direction: column;
  gap: 1.8rem;
  z-index: 999;
  animation: slideDown 0.3s var(--ease);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 1.2rem;
}
.mobile-menu .mobile-lang {
  display: flex;
  gap: 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-top: 0.5rem;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Page Header (shared) ───────────────────────────────── */
.page-header {
  margin-top: var(--nav-h);
  padding: 5rem 2.5rem 4rem;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

.page-header .section-label {
  margin-bottom: 1rem;
  display: block;
}

.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.page-header p {
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ── Ornamental divider ─────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light));
}
.ornament::before { background: linear-gradient(to left, transparent, var(--gold-light)); }
.ornament-icon {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.73rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ── Sections ────────────────────────────────────────────── */
.section {
  padding: 6rem 2.5rem;
}
.section-sm {
  padding: 4rem 2.5rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(253,251,247,0.7);
  padding: 4rem 2.5rem 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253,251,247,0.1);
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(253,251,247,0.55);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  color: rgba(253,251,247,0.9);
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(253,251,247,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-address {
  font-size: 0.85rem;
  color: rgba(253,251,247,0.55);
  line-height: 2;
}
.footer-address a { color: rgba(253,251,247,0.55); transition: color 0.2s; }
.footer-address a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(253,251,247,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── HOME — Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.hero-image {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,24,18,0.15) 0%,
    rgba(30,24,18,0.35) 60%,
    rgba(30,24,18,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  animation: heroReveal 1.2s var(--ease) both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(253,251,247,0.75);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, 9vw, 7rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero-title span {
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(253,251,247,0.85);
  margin-bottom: 2.8rem;
  letter-spacing: 0.1em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-hero {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.73rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-hero-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-hero-primary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(253,251,247,0.5);
}
.btn-hero-ghost:hover {
  background: rgba(253,251,247,0.12);
  border-color: rgba(253,251,247,0.9);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253,251,247,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
  cursor: pointer;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(253,251,247,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── HOME — Introduction ─────────────────────────────────── */
.intro-section {
  background: var(--white);
  padding: 7rem 2.5rem;
}
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-text .section-label { margin-bottom: 1.2rem; }
.intro-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  margin-bottom: 1.8rem;
}
.intro-text p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.intro-text .btn { margin-top: 2rem; }

.intro-images {
  position: relative;
  height: 520px;
}
.intro-images .img-main {
  position: absolute;
  right: 0; top: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.intro-images .img-accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--cream);
}

/* ── HOME — Featured Gallery ─────────────────────────────── */
.featured-section {
  padding: 6rem 2.5rem;
  background: var(--cream);
}
.featured-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.featured-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-top: 0.8rem;
}
.featured-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.featured-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.featured-item:first-child {
  grid-row: 1 / 3;
}
.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.featured-item:hover img {
  transform: scale(1.04);
}
.featured-cta {
  text-align: center;
  margin-top: 2.8rem;
}

/* ── HOME — Quote ────────────────────────────────────────── */
.quote-section {
  padding: 7rem 2.5rem;
  background: var(--dark);
  text-align: center;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.45;
  max-width: 800px;
  margin: 0 auto 1.8rem;
}
.quote-attr {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about-hero {
  margin-top: var(--nav-h);
  height: 55vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,24,18,0.2), rgba(30,24,18,0.5));
}
.about-hero-text {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  width: 90%;
}
.about-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
}

.about-story {
  padding: 6rem 2.5rem;
  background: var(--white);
}
.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.portrait-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--light-text);
  text-align: center;
  margin-top: 1rem;
}

.about-text .section-label { margin-bottom: 1.2rem; }
.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  margin-bottom: 2rem;
}
.about-text p {
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}
.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin-top: 2.5rem;
}

.philosophy-section {
  padding: 6rem 2.5rem;
  background: var(--cream);
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.philosophy-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  text-align: center;
  margin-bottom: 3.5rem;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.philosophy-card {
  padding: 2.5rem;
  background: var(--white);
  border-top: 2px solid var(--gold);
}
.philosophy-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.philosophy-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.philosophy-card p { font-size: 0.88rem; }

/* ── CATALOGUE ───────────────────────────────────────────── */
.gallery-section {
  padding: 3rem 2.5rem 6rem;
  background: var(--white);
}
.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  columns: 3;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,24,18,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(30,24,18,0.28); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,5,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  animation: lbIn 0.3s var(--ease);
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(253,251,247,0.8);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(253,251,247,0.7);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.2s;
  user-select: none;
}
.lightbox-nav:hover { color: var(--gold-light); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(253,251,247,0.55);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-section {
  padding: 5rem 2.5rem 7rem;
  background: var(--cream);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  border-top: 3px solid var(--cream-dark);
  transition: var(--transition);
}
.pricing-card.featured {
  border-top-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -1px; right: 2rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
}
.pricing-tier {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.pricing-note {
  font-size: 0.78rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}
.pricing-divider {
  height: 1px;
  background: var(--cream-dark);
  margin-bottom: 2rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--medium);
}
.pricing-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.pricing-features li.muted::before {
  background: var(--cream-dark);
}
.pricing-features li.muted { color: var(--cream-dark); }

.pricing-mention {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 2.5rem;
  margin-top: 4rem;
  text-align: center;
}
.pricing-mention h3 {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.8rem;
}
.pricing-mention p {
  font-size: 0.88rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  padding: 5rem 2.5rem 7rem;
  background: var(--white);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}

.contact-form-wrap { max-width: 560px; }
.contact-form-wrap h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.contact-form-wrap .sub-text {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--medium);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  padding: 0.9rem 1.2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,146,74,0.12);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B5924A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  cursor: pointer;
}

.form-message {
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
  font-size: 0.88rem;
  margin-top: 1rem;
  display: none;
}
.form-message.success {
  background: #EDF7ED;
  color: #2E6B2E;
  border-left: 3px solid #4CAF50;
  display: block;
}
.form-message.error {
  background: #FDECEA;
  color: #7B1F1F;
  border-left: 3px solid #E53935;
  display: block;
}

.contact-info { padding-top: 0.5rem; }
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-style: italic;
  margin-bottom: 2rem;
}
.info-block {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.info-icon {
  width: 38px; height: 38px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
}
.info-block h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.info-block p, .info-block a {
  font-size: 0.9rem;
  color: var(--medium);
  line-height: 1.7;
}
.info-block a:hover { color: var(--gold); }

.contact-image {
  margin-top: 2.5rem;
  position: relative;
}
.contact-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.contact-image-label {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(253,251,247,0.92);
  padding: 0.5rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--medium);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro-inner { grid-template-columns: 1fr; gap: 3rem; }
  .intro-images { height: 380px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-portrait { position: static; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-card.featured { transform: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .lang-toggle { display: none; }

  .section { padding: 4rem 1.5rem; }
  .section-sm { padding: 3rem 1.5rem; }
  .intro-section { padding: 4rem 1.5rem; }
  .about-story { padding: 4rem 1.5rem; }
  .pricing-section { padding: 3rem 1.5rem 5rem; }
  .contact-section { padding: 3rem 1.5rem 5rem; }
  .featured-section { padding: 4rem 1.5rem; }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .featured-item:first-child { grid-row: auto; }

  .gallery-grid { columns: 2; }

  .philosophy-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-title { font-size: clamp(2.5rem, 12vw, 4.5rem); }
  .nav-inner { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .featured-item { height: 220px; }
}

/* ── Animations ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Language visibility — controlled via body class set by JS */
body.lang-fr .en { display: none; }
body.lang-en .fr { display: none; }
/* Default before JS runs: show French */
body:not(.lang-en) .en { display: none; }
