@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,600&family=Jost:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300&family=Dancing+Script:wght@600;700&display=swap');

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:      #F6F0E8;
  --parchment:  #EDE3D6;
  --sand:       #D9CEBF;
  --terracotta: #A8613E;
  --tc-light:   #C9876A;
  --tc-pale:    #EDD9CD;
  --sage:       #7A8B72;
  --dark:       #201410;
  --text:       #2C1F18;
  --muted:      #5A4540;
  --white:      #FDFAF6;
  --line:       rgba(58,43,34,0.1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --font-script:'Dancing Script', cursive;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}

.nav.scrolled {
  background: rgba(253, 250, 246, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 var(--line);
}

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 0.5s;
}

.nav.scrolled .nav-logo { color: var(--dark); }

.nav-logo em {
  font-style: normal;
  font-size: 0.7em;
  font-family: var(--font-sans);
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  opacity: 0.8;
}

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

.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}

.nav.scrolled .nav-links a { color: var(--muted); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.35s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--terracotta); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,10,6,0.92) 0%,
    rgba(20,10,6,0.55) 50%,
    rgba(20,10,6,0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem 7rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.6); transform-origin: top; opacity: 0.5; }
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.38s; }
.reveal-delay-4 { transition-delay: 0.52s; }

/* ================================================================
   TYPOGRAPHY UTILITAIRES
   ================================================================ */
.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

.section-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
}

/* ================================================================
   BOUTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.35s;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--terracotta);
  gap: 1.25rem;
}

.btn-outline {
  border: 1px solid var(--dark);
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  gap: 1.25rem;
}

.btn-light {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-light:hover {
  background: rgba(255,255,255,0.12);
  gap: 1.25rem;
}

.link-arrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 1rem; }

/* ================================================================
   ABOUT
   ================================================================ */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.about-visual {
  position: relative;
  overflow: hidden;
}

.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.about-visual:hover img { transform: scale(1.03); }

.about-visual-caption {
  position: absolute;
  bottom: 2rem; right: 2rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  max-width: 200px;
}

.about-visual-caption p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.about-content {
  padding: 7rem 5.5rem 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.about-content .eyebrow { margin-bottom: 1.5rem; }

.about-content .section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
}

.about-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 1.5rem;
}

.about-content p:first-of-type {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 400;
}

.about-signature {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-sig-name {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--terracotta);
  line-height: 1;
}

.about-sig-detail {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}

/* ================================================================
   QUOTE BAND
   ================================================================ */
.quote-band {
  padding: 7rem 4rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,97,62,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.quote-band blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quote-band blockquote cite {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tc-light);
  font-style: normal;
}

/* ================================================================
   IDENTITY PIECE (signature)
   ================================================================ */
.identity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.identity-visual {
  overflow: hidden;
  position: relative;
}

.identity-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s ease;
}

.identity-visual:hover img { transform: scale(1.04); }

.identity-content {
  background: var(--cream);
  padding: 6rem 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.identity-content .section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin: 1.5rem 0 2rem;
}

.identity-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

.identity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--sand);
  color: var(--muted);
  transition: all 0.3s;
}

.tag:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* ================================================================
   CRÉATIONS (grille)
   ================================================================ */
#creations {
  padding: 8rem 5rem;
  background: var(--white);
}

.creations-header {
  text-align: center;
  margin-bottom: 5rem;
}

.creations-header .section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 1rem 0 1.5rem;
}

.creations-header p {
  font-size: 1rem;
  color: var(--text);
  max-width: 500px;
  margin: 0 auto;
}

.creations-editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.ce-main {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}

.ce-a, .ce-b {
  overflow: hidden;
  position: relative;
}

.ce-a { aspect-ratio: 4/3; }
.ce-b { aspect-ratio: 4/3; }

.creation-card {
  position: relative;
  overflow: hidden;
}

.creation-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.creation-card:hover img { transform: scale(1.06); }

.creation-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.45s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.creation-card:hover .creation-card-overlay { opacity: 1; }

.creation-card-overlay .eyebrow {
  color: var(--tc-light);
  margin-bottom: 0.3rem;
}

.creation-card-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: white;
  font-weight: 400;
}

.creations-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.creations-row .creation-card { aspect-ratio: 4/3; }

/* ================================================================
   LUMINAIRES
   ================================================================ */
.luminaires {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.luminaires-bg {
  position: absolute;
  inset: 0;
}

.luminaires-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.luminaires-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,15,10,0.82) 0%,
    rgba(26,15,10,0.4) 55%,
    transparent 100%
  );
}

.luminaires-content {
  position: relative;
  z-index: 1;
  padding: 4rem 6rem;
  max-width: 560px;
}

.luminaires-content .eyebrow { color: var(--tc-light); margin-bottom: 1.5rem; }

.luminaires-content .section-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--cream);
  margin-bottom: 2rem;
}

.luminaires-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* ================================================================
   ART DE LA TABLE
   ================================================================ */
.table-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}

.table-art-visual {
  overflow: hidden;
}

.table-art-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s ease;
}

.table-art-visual:hover img { transform: scale(1.04); }

.table-art-content {
  padding: 6rem 5.5rem;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.table-art-content .section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin: 1.5rem 0 2rem;
}

.table-art-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.table-art-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.table-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text);
}

.table-feature::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ================================================================
   SCULPTURES & PROVENCE
   ================================================================ */
.sculpt-provence {
  padding: 8rem 5rem;
  background: var(--cream);
}

.sp-header {
  text-align: center;
  margin-bottom: 5rem;
}

.sp-header .section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin: 1rem 0;
}

.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.sp-item {
  position: relative;
  overflow: hidden;
}

.sp-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.75s;
}

.sp-item.tall img { aspect-ratio: 3/4; }
.sp-item.wide img { aspect-ratio: 4/3; }

.sp-item:hover img { transform: scale(1.05); }

.sp-caption {
  padding: 1.5rem 0 0;
}

.sp-caption .eyebrow { margin-bottom: 0.4rem; }

.sp-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
}

/* ================================================================
   COLLECTION (full width)
   ================================================================ */
.collection {
  overflow: hidden;
  position: relative;
  height: 70vh;
  min-height: 450px;
}

.collection img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 12s ease;
}

.collection:hover img { transform: scale(1.04); }

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(26,15,10,0.6) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 4rem 5rem;
}

.collection-overlay-text {
  max-width: 500px;
}

.collection-overlay-text .eyebrow { color: var(--tc-light); margin-bottom: 1rem; }

.collection-overlay-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

/* ================================================================
   TERRE MÊLÉE
   ================================================================ */
.terre-melee {
  padding: 8rem 5rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.tm-content .eyebrow { margin-bottom: 1.5rem; }

.tm-content .section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin-bottom: 2.5rem;
}

.tm-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 1.5rem;
}

.tm-pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--text) !important;
  border-left: 2px solid var(--terracotta);
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.tm-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tm-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  transition: background 0.3s;
}

.tm-step:hover { background: var(--parchment); }

.tm-step-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  min-width: 38px;
}

.tm-step h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.tm-step p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}

/* ================================================================
   GALERIE
   ================================================================ */
#galerie {
  padding: 8rem 5rem;
  background: var(--cream);
}

.galerie-header {
  text-align: center;
  margin-bottom: 4rem;
}

.galerie-header .section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin: 1rem 0;
}

.galerie-masonry {
  columns: 3;
  column-gap: 1.25rem;
}

.galerie-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galerie-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.galerie-item:hover img { transform: scale(1.05); }

.galerie-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,15,10,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galerie-item-overlay svg {
  width: 28px; height: 28px;
  fill: white;
  opacity: 0;
  transition: opacity 0.4s;
}

.galerie-item:hover .galerie-item-overlay {
  background: rgba(26,15,10,0.28);
}

.galerie-item:hover .galerie-item-overlay svg { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20,12,8,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
}

.lightbox-inner img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -3rem; right: 0;
  color: rgba(255,255,255,0.6);
  font-size: 1.8rem;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox-close:hover { color: var(--tc-light); }

.lightbox-caption {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}

/* ================================================================
   ATELIER / WORKSHOPS
   ================================================================ */
.atelier {
  padding: 8rem 5rem;
  background: var(--parchment);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.atelier-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.atelier-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.atelier-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 130px; height: 130px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border: 4px solid var(--parchment);
}

.atelier-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.atelier-badge-label {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

.atelier-content .eyebrow { margin-bottom: 1.5rem; }

.atelier-content .section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin-bottom: 2rem;
}

.atelier-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

/* ================================================================
   CONTACT
   ================================================================ */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.contact-info {
  padding: 7rem 5rem 7rem 5rem;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .eyebrow { color: var(--tc-light); margin-bottom: 1.5rem; }

.contact-info .section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 2.5rem;
}

.contact-info > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.95;
  max-width: 380px;
  margin-bottom: 3rem;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-block-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-block-icon svg {
  width: 16px; height: 16px;
  fill: var(--tc-light);
}

.contact-block-text h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.contact-block-text p,
.contact-block-text a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  transition: color 0.3s;
}

.contact-block-text a:hover { color: var(--tc-light); }

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.65rem 1.25rem;
  transition: all 0.3s;
}

.contact-social a:hover {
  border-color: var(--terracotta);
  color: var(--tc-light);
}

.contact-form-wrap {
  padding: 7rem 5.5rem 7rem 5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field.full { grid-column: 1 / 3; }

.form-field label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--terracotta); }

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.75;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.form-submit { margin-top: 1rem; }

.form-submit .btn { width: 100%; justify-content: center; }

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.form-success p { color: var(--muted); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.62);
  padding: 5rem 5rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--cream);
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.65);
}

.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.6rem 1.25rem;
  transition: all 0.3s;
  color: rgba(255,255,255,0.45);
}

.footer-insta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
}

.footer-nav h4,
.footer-info h4 {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

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

.footer-nav a {
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--tc-light); }

.footer-info address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 2;
}

.footer-info a { transition: color 0.3s; }
.footer-info a:hover { color: var(--tc-light); }

.footer-bottom {
  background: rgba(15,8,5,0.6);
  text-align: center;
  padding: 1.25rem 5rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.15em;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .about-content { padding: 6rem 4rem 6rem 4.5rem; }
  .identity-content { padding: 5rem 4rem; }
  .terre-melee { padding: 6rem 4rem; gap: 5rem; }
  .atelier { padding: 6rem 4rem; gap: 5rem; }
  footer { padding: 4rem 3rem 2.5rem; gap: 3rem; }
}

@media (max-width: 960px) {
  .nav { padding: 1.25rem 2rem; }
  .nav.scrolled { padding: 0.9rem 2rem; }

  #about { grid-template-columns: 1fr; }
  .about-visual { height: 60vh; }

  .identity { grid-template-columns: 1fr; }
  .identity-visual { height: 55vh; }

  #creations { padding: 6rem 2rem; }
  .creations-editorial { grid-template-columns: 1fr; }
  .ce-main { aspect-ratio: 4/3; }
  .creations-row { grid-template-columns: 1fr 1fr; }

  .luminaires-content { padding: 3rem 3rem; }

  .table-art { grid-template-columns: 1fr; }
  .table-art-visual { height: 55vh; }

  .sculpt-provence { padding: 6rem 2rem; }

  .terre-melee { grid-template-columns: 1fr; padding: 6rem 2rem; gap: 4rem; }

  #galerie { padding: 6rem 2rem; }
  .galerie-masonry { columns: 2; }

  .atelier { grid-template-columns: 1fr; padding: 6rem 2rem; gap: 3rem; }

  #contact { grid-template-columns: 1fr; }
  .contact-info { padding: 5rem 2.5rem; }
  .contact-form-wrap { padding: 5rem 2.5rem; }

  footer { grid-template-columns: 1fr; padding: 4rem 2.5rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav { justify-content: center; }

  .hero-title { font-size: 4rem; }

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

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

  #galerie { padding: 5rem 1.25rem; }
  .galerie-masonry { columns: 1; }

  .collection-overlay { padding: 3rem 2rem; }
}
