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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ══════════════════════════════════════
   THÈMES — DARK (défaut) / LIGHT
══════════════════════════════════════ */
:root {
  --or: #c8a96e;
  --or-clair: #e8d5a3;
  --or-dim: rgba(200,169,110,0.15);
  --or-border: rgba(200,169,110,0.2);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --theme-transition: background 0.5s ease, color 0.5s ease, border-color 0.4s ease;
}

/* DARK */
[data-theme="dark"] {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #1e1e1e;
  --bg4:       #2a2a2a;
  --surface:   rgba(255,255,255,0.02);
  --surface2:  rgba(255,255,255,0.04);
  --border:    rgba(200,169,110,0.12);
  --border2:   rgba(200,169,110,0.06);
  --heading:   #f5f2ed;
  --heading2:  #ddd8cf;
  --body:      #b8b0a4;
  --body-dim:  #8a8278;
  --nav-bg:    rgba(10,10,10,0.96);
  --nav-grad:  linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  --hero-grad: radial-gradient(ellipse at 30% 50%, rgba(200,169,110,0.06) 0%, transparent 60%),
               radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.04) 0%, transparent 50%);
  --mobile-menu-bg: rgba(8,8,8,0.99);
  --form-bg:   rgba(255,255,255,0.03);
  --form-bg-f: rgba(255,255,255,0.05);
  --select-opt: #1a1a1a;
  --img-filter: brightness(0.75) grayscale(0.15);
  --img-hover:  brightness(0.9) grayscale(0);
  --shadow:     0 24px 60px rgba(0,0,0,0.5);
}

/* LIGHT */
[data-theme="light"] {
  --bg:        #f8f5f0;
  --bg2:       #f0ece5;
  --bg3:       #e8e3db;
  --bg4:       #ddd8cf;
  --surface:   rgba(0,0,0,0.025);
  --surface2:  rgba(0,0,0,0.04);
  --border:    rgba(160,130,80,0.2);
  --border2:   rgba(160,130,80,0.1);
  --heading:   #1a1714;
  --heading2:  #2e2a24;
  --body:      #5a5248;
  --body-dim:  #8a8278;
  --nav-bg:    rgba(248,245,240,0.97);
  --nav-grad:  linear-gradient(to bottom, rgba(248,245,240,0.97), transparent);
  --hero-grad: radial-gradient(ellipse at 30% 50%, rgba(200,169,110,0.08) 0%, transparent 60%),
               radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.05) 0%, transparent 50%);
  --mobile-menu-bg: rgba(248,245,240,0.99);
  --form-bg:   rgba(0,0,0,0.03);
  --form-bg-f: rgba(0,0,0,0.05);
  --select-opt: #f0ece5;
  --img-filter: brightness(0.92) grayscale(0.1);
  --img-hover:  brightness(1) grayscale(0);
  --shadow:     0 24px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--body);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  transition: var(--theme-transition);
}

/* ══════════════════════════════════════
   CURSEUR CUSTOM
══════════════════════════════════════ */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--or); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(200,169,110,0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 14px; height: 14px; }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--or); }

/* ══════════════════════════════════════
   THEME TOGGLE BUTTON
══════════════════════════════════════ */
.theme-toggle {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  width: 48px; height: 48px;
  background: var(--bg4); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.3s;
  box-shadow: var(--shadow);
}
.theme-toggle:hover { border-color: var(--or); transform: scale(1.05); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  background: var(--nav-grad);
  transition: all 0.4s, var(--theme-transition);
}
nav.scrolled {
  padding: 14px 48px;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; letter-spacing: 0.18em;
  color: var(--heading); text-decoration: none; text-transform: uppercase;
  transition: var(--theme-transition);
}
.logo span { color: var(--or); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--body); text-decoration: none;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--or); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--or); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ══════════════════════════════════════
   MENU MOBILE FULLSCREEN ANIMÉ
══════════════════════════════════════ */
.menu-toggle {
  display: none; flex-direction: column; gap: 6px; cursor: pointer;
  z-index: 201; background: none; border: none; padding: 4px;
}
.menu-toggle .bar {
  display: block; width: 26px; height: 1px;
  background: var(--heading); transition: all 0.4s cubic-bezier(.77,0,.175,1);
  transform-origin: center;
}
.menu-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--mobile-menu-bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 36px) 36px);
  transition: clip-path 0.7s cubic-bezier(.77,0,.175,1), background 0.5s;
}
.mobile-nav.open {
  pointer-events: all;
  clip-path: circle(160% at calc(100% - 36px) 36px);
}
.mobile-nav-links { list-style: none; text-align: center; }
.mobile-nav-links li {
  overflow: hidden;
  margin-bottom: 8px;
}
.mobile-nav-links a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 8vw, 64px); font-weight: 300;
  color: var(--heading); text-decoration: none; letter-spacing: 0.05em;
  line-height: 1.2;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(.77,0,.175,1), color 0.3s;
}
.mobile-nav-links a:hover { color: var(--or); }
.mobile-nav.open .mobile-nav-links a { transform: translateY(0); }
.mobile-nav-links li:nth-child(1) a { transition-delay: 0.15s; }
.mobile-nav-links li:nth-child(2) a { transition-delay: 0.22s; }
.mobile-nav-links li:nth-child(3) a { transition-delay: 0.29s; }
.mobile-nav-links li:nth-child(4) a { transition-delay: 0.36s; }
.mobile-nav-bottom {
  position: absolute; bottom: 40px;
  display: flex; gap: 32px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s 0.4s, transform 0.4s 0.4s;
}
.mobile-nav.open .mobile-nav-bottom { opacity: 1; transform: translateY(0); }
.mobile-nav-bottom a {
  color: var(--body); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none; transition: color 0.3s;
}
.mobile-nav-bottom a:hover { color: var(--or); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: var(--hero-grad); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.4;
}
.hero-content {
  text-align: center; position: relative; z-index: 2;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1.2s 0.3s forwards;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--or);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--or); opacity: 0.5;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 120px); font-weight: 300;
  line-height: 0.9; color: var(--heading); letter-spacing: -0.02em; margin-bottom: 32px;
}
.hero h1 em { font-style: italic; color: var(--or-clair); }
.hero-sub {
  font-size: 13px; letter-spacing: 0.1em; color: var(--body);
  max-width: 380px; margin: 0 auto 52px; line-height: 1.9;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px; color: var(--heading);
  text-decoration: none; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  border: 1px solid var(--or-border); padding: 16px 36px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0; background: var(--or);
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition); z-index: -1;
}
.hero-cta:hover { color: var(--bg); border-color: var(--or); }
.hero-cta:hover::before { transform: scaleX(1); }
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--or);
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollLine 2s 2s infinite;
}

/* ══════════════════════════════════════
   FEATURED GALLERY (À LA UNE)
══════════════════════════════════════ */
.featured-section { padding: 0; max-width: 100%; margin: 0; }
.featured-banner {
  position: relative; height: 70vh; min-height: 480px; overflow: hidden; cursor: pointer;
  display: flex; align-items: flex-end;
}
.featured-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: var(--img-filter);
  transition: transform 1s cubic-bezier(.25,.46,.45,.94), filter 0.8s;
}
.featured-banner:hover img { transform: scale(1.03); filter: var(--img-hover); }
.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
[data-theme="light"] .featured-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.featured-content {
  position: relative; z-index: 2; padding: 56px 80px;
  display: flex; align-items: flex-end; justify-content: space-between; width: 100%;
}
.featured-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--or);
  margin-bottom: 16px;
}
.featured-badge::before { content: ''; display: block; width: 20px; height: 1px; background: var(--or); }
.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 64px); font-weight: 300; color: #f5f2ed; line-height: 1.1;
}
.featured-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 10px; }
.featured-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 12px;
  color: #f5f2ed; text-decoration: none; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3); padding: 14px 28px;
  transition: all 0.4s; position: relative; overflow: hidden;
}
.featured-cta::before {
  content: ''; position: absolute; inset: 0; background: var(--or);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s; z-index: -1;
}
.featured-cta:hover { border-color: var(--or); color: var(--bg); }
.featured-cta:hover::before { transform: scaleX(1); }

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
section { padding: 120px 48px; max-width: 1400px; margin: 0 auto; }
.section-label {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--or);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--or); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 300;
  color: var(--heading); line-height: 1.1; margin-bottom: 60px;
  transition: var(--theme-transition);
}
.section-title em { font-style: italic; color: var(--or-clair); }

/* ══════════════════════════════════════
   GALLERY CARDS (ACCUEIL)
══════════════════════════════════════ */
.galleries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.gallery-card {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  cursor: pointer; background: var(--bg3);
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94), filter 0.6s;
  filter: var(--img-filter);
}
.gallery-card:hover img { transform: scale(1.05); filter: var(--img-hover); }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transform: translateY(8px); transition: transform var(--transition);
}
.gallery-card:hover .gallery-card-overlay { transform: translateY(0); }
.gallery-card-category { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--or); margin-bottom: 6px; }
.gallery-card-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: #f5f2ed; line-height: 1.2; }
.gallery-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.gallery-tag-pill {
  font-size: 9px; letter-spacing: 0.12em; padding: 3px 8px;
  background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.3);
  color: var(--or-clair); text-transform: lowercase;
}

/* ══════════════════════════════════════
   GALERIE FULL PAGE
══════════════════════════════════════ */
.galleries-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px;
}
.gallery-thumb {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; background: var(--bg3);
}
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s;
  filter: var(--img-filter);
}
.gallery-thumb:hover img { transform: scale(1.05); filter: var(--img-hover); }
.gallery-thumb-info {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
}
.gallery-thumb-cat { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--or); margin-bottom: 4px; }
.gallery-thumb-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: #f5f2ed; }
.gallery-thumb-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 6px; }

/* ══════════════════════════════════════
   FILTER TABS + TAG FILTERS
══════════════════════════════════════ */
.filter-tabs {
  display: flex; gap: 0; margin-bottom: 40px;
  border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.filter-tab {
  background: none; border: none; font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--body); padding: 14px 24px; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.3s;
}
.filter-tab:hover { color: var(--heading); }
.filter-tab.active { color: var(--or); border-bottom-color: var(--or); }

.tag-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.tag-filter-btn {
  background: none; border: 1px solid var(--border); color: var(--body);
  font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: lowercase;
  padding: 6px 14px; cursor: pointer; transition: all 0.3s;
}
.tag-filter-btn:hover { border-color: var(--or); color: var(--or); }
.tag-filter-btn.active { background: var(--or-dim); border-color: var(--or); color: var(--or); }

/* ══════════════════════════════════════
   GALLERY VIEWER
══════════════════════════════════════ */
.gallery-viewer {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,5,5,0.98);
  display: none; flex-direction: column;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-viewer.open { display: flex; }
.gallery-viewer.visible { opacity: 1; }
.viewer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; border-bottom: 1px solid rgba(200,169,110,0.1); flex-shrink: 0;
}
.viewer-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: #f5f2ed; }
.viewer-cat { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--or); margin-bottom: 4px; }
.viewer-close {
  background: none; border: 1px solid rgba(200,169,110,0.3); color: var(--or);
  width: 42px; height: 42px; cursor: pointer; font-size: 18px;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.viewer-close:hover { background: var(--or); color: #0a0a0a; }
.viewer-grid {
  flex: 1; overflow-y: auto; padding: 24px 40px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3px; align-content: start;
}
.viewer-photo { overflow: hidden; cursor: zoom-in; aspect-ratio: 1; background: #111; }
.viewer-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s, filter 0.4s; filter: brightness(0.85);
}
.viewer-photo:hover img { transform: scale(1.04); filter: brightness(1); }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,0.98);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--or); font-size: 28px; cursor: pointer; opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(200,169,110,0.3); color: var(--or);
  width: 48px; height: 48px; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.lightbox-nav:hover { background: var(--or); color: #0a0a0a; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════
   GALERIE INDIVIDUELLE
══════════════════════════════════════ */
.gallery-single-header {
  padding-top: 120px; padding-bottom: 40px; padding-left: 48px; padding-right: 48px;
  max-width: 1400px; margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.gallery-single-meta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.gallery-single-meta .back-link {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--body); text-decoration: none; transition: color 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.gallery-single-meta .back-link:hover { color: var(--or); }
.gallery-single-meta .sep { color: var(--border); }
.gallery-single-cat { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--or); }
.gallery-single-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px); font-weight: 300; color: var(--heading); line-height: 1;
  margin-bottom: 16px;
}
.gallery-single-desc { font-size: 14px; color: var(--body); max-width: 560px; line-height: 1.8; }
.gallery-single-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

.gallery-photos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3px; padding: 3px;
}
.gallery-photo-item { overflow: hidden; cursor: zoom-in; aspect-ratio: 1; background: var(--bg3); }
.gallery-photo-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: var(--img-filter); transition: transform 0.6s, filter 0.4s;
}
.gallery-photo-item:hover img { transform: scale(1.04); filter: var(--img-hover); }

/* ══════════════════════════════════════
   À PROPOS
══════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--or-border); z-index: 0;
}
.about-img-wrap img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: var(--img-filter);
}
.about-text p { margin-bottom: 20px; font-size: 14px; line-height: 1.9; color: var(--body); }
.about-text p:first-of-type {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic;
  color: var(--heading2); line-height: 1.6;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info p { margin-bottom: 16px; font-size: 14px; line-height: 1.8; }
.contact-info a { color: var(--or); text-decoration: none; }
.form-group { margin-bottom: 26px; }
.form-group label {
  display: block; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--or); margin-bottom: 10px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--form-bg); border: 1px solid var(--border);
  color: var(--heading); padding: 13px 17px;
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.3s, background 0.3s; -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(200,169,110,0.5); background: var(--form-bg-f);
}
.form-group textarea { height: 150px; resize: vertical; }
.form-group select option { background: var(--select-opt); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px; background: transparent;
  border: 1px solid var(--or); color: var(--or); padding: 15px 38px;
  font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--or);
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition); z-index: -1;
}
.btn-primary:hover { color: var(--bg); }
.btn-primary:hover::before { transform: scaleX(1); }
.form-message { padding: 14px 20px; margin-top: 20px; font-size: 13px; display: none; }
.form-message.success { background: rgba(100,200,100,0.08); border-left: 3px solid #64c864; color: #8fd08f; }
.form-message.error { background: rgba(200,100,100,0.08); border-left: 3px solid #c86464; color: #d08f8f; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border); padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
}
footer p { font-size: 11px; color: var(--body-dim); letter-spacing: 0.1em; }
footer a { color: var(--body-dim); text-decoration: none; font-size: 11px; letter-spacing: 0.1em; transition: color 0.3s; }
footer a:hover { color: var(--or); }

/* ══════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════ */
.page-header {
  height: 50vh; min-height: 300px; display: flex; align-items: flex-end;
  padding: 64px 48px; position: relative;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,169,110,0.05) 0%, transparent 70%);
  border-bottom: 1px solid var(--border); margin-bottom: 0;
}
.page-header-content { max-width: 1400px; width: 100%; margin: 0 auto; }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 90px); font-weight: 300; color: var(--heading); line-height: 0.9;
}
.page-header h1 em { font-style: italic; color: var(--or-clair); }
.page-header p { font-size: 13px; color: var(--body); margin-top: 20px; max-width: 480px; line-height: 1.8; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  section { padding: 80px 32px; }
  .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .galleries-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 32px; flex-direction: column; gap: 16px; text-align: center; }
  .featured-content { padding: 40px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .gallery-single-header { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .galleries-grid { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  .page-header { padding: 100px 20px 36px; }
  .viewer-header, .viewer-grid { padding: 16px 20px; }
  .gallery-single-header { padding: 100px 20px 32px; }
  .featured-content { padding: 24px; }
  footer { padding: 28px 20px; }
  .theme-toggle { bottom: 20px; right: 20px; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
