/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:    #FFFFFF;
  --black:    #0D0D0D;
  --bordeaux: #7A1E2E;
  --grey:     #F4F4F2;
  --mid:      #888;
  --font-sans: 'Inter', Helvetica, Arial, sans-serif;
  --font-serif: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}

.bordeaux { color: var(--bordeaux); }
.rule { width: 40px; height: 1px; background: var(--black); display: inline-block; }

/* ─── Navigation ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s ease, padding 0.4s var(--ease);
}

nav.scrolled {
  background: #F2F1EE;
  padding: 18px 48px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.3s ease;
}

.nav-logo span { color: var(--bordeaux); }

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.25s;
}

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

.nav-cta {
  background: transparent;
  padding: 0;
  color: inherit;
}

.nav-cta:hover { color: var(--bordeaux); }
.nav-cta.active { color: var(--bordeaux); }

/* ─── Hamburger mobile ──────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #0D0D0D;
  transition: background 0.3s ease;
}

/* ─── Menu overlay mobile ───────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #F2F1EE;
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-overlay.open {
  display: flex;
  animation: overlayIn 0.35s ease forwards;
}
@keyframes overlayIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-overlay-close {
  position: absolute;
  top: 28px;
  right: 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #0D0D0D;
}
.nav-overlay-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.nav-overlay-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #0D0D0D;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-overlay-links a:hover { color: var(--bordeaux); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-left, .nav-right { display: none !important; }
  #nav { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; z-index: 100 !important; display: grid !important; grid-template-columns: 1fr auto 1fr; align-items: center; }
  .nav-logo { grid-column: 2; grid-row: 1; }
  .nav-hamburger { grid-column: 3; justify-self: end; }
}

/* ─── Ticker ────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--bordeaux);
  overflow: hidden;
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Shared Section ────────────────────────────────────────── */
section { position: relative; }

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}

.section-number {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--mid);
  padding-top: 6px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--black);
}

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

.section-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #444;
  max-width: 360px;
  text-align: right;
}

/* ─── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 180px 0 100px;
  border-bottom: 1px solid rgba(13,13,13,0.08);
}

.page-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(60px, 8.5vw, 128px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 960px;
}

.page-title em { font-style: italic; color: var(--bordeaux); }

.page-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
  margin-top: 44px;
}

/* ─── Hero (index.html) ─────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  background: var(--white);
}

.hero-inner {
  padding: 0 48px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 1100px;
}

.hero-title em { font-style: italic; color: var(--bordeaux); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 64px;
  gap: 40px;
}

.hero-left { max-width: 460px; }

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #444;
  margin-bottom: 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 36px;
  transition: background 0.25s, gap 0.25s;
}

.hero-cta:hover { background: var(--bordeaux); gap: 18px; }
.hero-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-right {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.hero-stats { display: flex; gap: 48px; }

.stat-block { text-align: right; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--black);
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 6px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hero-scroll span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--mid);
  animation: scrollDown 1.8s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ─── Services (services.html) ──────────────────────────────── */
.services-section { padding: 100px 0 140px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(13,13,13,0.12);
}

.service-card {
  padding: 80px 40px;
  background: var(--white);
  border-right: 1px solid rgba(13,13,13,0.12);
  border-bottom: 1px solid rgba(13,13,13,0.12);
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
  cursor: default;
}

.service-card:nth-child(3n) { border-right: none; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover { background: var(--white); }
.service-card:hover::after { transform: scaleX(1); }

.service-index {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 32px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 20px;
}

.service-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.service-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bordeaux);
  border: 1px solid rgba(122,30,46,0.25);
  padding: 5px 10px;
}

/* ─── Notre Travail (travail.html) ──────────────────────────── */
.travail-intro { padding: 100px 0 80px; }

.travail-disclaimer {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  border-left: 2px solid var(--bordeaux);
  padding-left: 20px;
  margin-top: 40px;
  line-height: 1.7;
  max-width: 560px;
}

.concepts-section { padding: 0 0 140px; }

.concept-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(13,13,13,0.1);
  min-height: 560px;
}

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

.concept-featured .concept-visual { min-height: 520px; }

.concept-visual-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}

.concept-featured:hover .concept-visual-inner,
.concept-card:hover .concept-visual-inner { transform: scale(1.04); }

.concept-featured-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid rgba(13,13,13,0.1);
}

.concept-4grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(13,13,13,0.08);
  margin-top: 1px;
}

.concept-card {
  background: var(--white);
  overflow: hidden;
}

.concept-card .concept-visual { aspect-ratio: 4/3; }

.concept-content { padding: 36px 40px 44px; }

.concept-num {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 14px;
}

.concept-type {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}

.concept-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: 16px;
}

.concept-featured-content .concept-name {
  font-size: clamp(30px, 3.5vw, 48px);
  margin-bottom: 24px;
}

.concept-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
}

.grad-luxe     { background: linear-gradient(145deg, #1a1614 0%, #3a2a20 50%, #2c1e15 100%); }
.grad-food     { background: linear-gradient(145deg, #101a14 0%, #1a3322 50%, #0d1a12 100%); }
.grad-wellness { background: linear-gradient(145deg, #e2dcd5 0%, #cdc5ba 50%, #d8d0c6 100%); }
.grad-hotel    { background: linear-gradient(145deg, #0a1628 0%, #162544 50%, #0e2040 100%); }
.grad-beaute   { background: linear-gradient(145deg, #250810 0%, #5c1220 50%, #3d0e18 100%); }

/* ─── À Propos (apropos.html) ───────────────────────────────── */
.about-section { padding: 100px 0 120px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.about-visual { position: relative; }

.about-img-wrap {
  aspect-ratio: 3/4;
  background: var(--grey);
  overflow: hidden;
  position: relative;
}

.about-img-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8e0da 0%, #d5c8be 40%, #b8a89a 100%);
}

.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 140px; height: 140px;
  background: var(--bordeaux);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.about-badge-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  padding: 0 12px;
  line-height: 1.4;
}

.about-content { padding-top: 20px; }

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 32px;
  margin-top: 28px;
}

.about-heading em { font-style: italic; color: var(--bordeaux); }

.about-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  margin-bottom: 20px;
}

.about-values {
  margin-top: 48px;
  border-top: 1px solid rgba(13,13,13,0.1);
}

.value-line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(13,13,13,0.1);
}

.value-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bordeaux);
  flex-shrink: 0;
}

.value-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
}

/* Approche (within apropos) */
.approche-section {
  padding: 120px 0 140px;
  background: var(--black);
}

.approche-section .section-title { color: var(--white); }
.approche-section .section-number { color: rgba(255,255,255,0.35); }
.approche-section .section-intro { color: rgba(255,255,255,0.45); }

.steps-list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.step-item {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  align-items: start;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding-left 0.35s var(--ease);
  cursor: default;
}

.step-item:hover { padding-left: 16px; }

.step-num {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--bordeaux);
  padding-top: 4px;
}

.step-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
}

.step-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
}

/* Founders */
.founders-section {
  padding: 120px 0 140px;
  background: var(--white);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(13,13,13,0.08);
  margin-top: 80px;
}

.founder-card {
  background: var(--white);
  padding: 64px 56px 72px;
}

.founder-portrait {
  width: 160px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 36px;
  position: relative;
}

.founder-portrait-inner {
  position: absolute;
  inset: 0;
}

.portrait-a { background: linear-gradient(145deg, #e8ddd8 0%, #c8b8b0 100%); }
.portrait-v { background: linear-gradient(145deg, #d8dde8 0%, #b0b8c8 100%); }

.founder-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 8px;
}

.founder-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 28px;
}

.founder-bio {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  margin-bottom: 28px;
}

.founder-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  transition: color 0.2s;
}

.founder-contact:hover { color: var(--bordeaux); }

/* ─── Contact (contact.html) ────────────────────────────────── */
.contact-section { padding: 100px 0 140px; background: var(--grey); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  margin-top: 24px;
  margin-bottom: 56px;
  max-width: 380px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 6px; }

.contact-detail a, .contact-detail span {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--bordeaux); }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(13,13,13,0.15);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  border-radius: 0;
}

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

.form-group textarea { resize: none; min-height: 140px; }
.form-group.full { grid-column: 1 / -1; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 40px;
  cursor: pointer;
  transition: background 0.25s, gap 0.25s;
  align-self: flex-start;
}

.btn-submit:hover { background: var(--bordeaux); gap: 18px; }
.btn-submit svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── CTA Section (partagé) ─────────────────────────────────── */
.cta-section {
  padding: 160px 48px;
  background: var(--white);
  text-align: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  max-width: 800px;
  margin: 0 auto 20px;
}

.cta-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin-bottom: 56px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bordeaux);
  color: var(--white);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 40px;
  border-radius: 0;
  transition: background 0.25s, gap 0.25s;
}

.cta-btn:hover { background: var(--black); gap: 16px; }
.cta-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ─── Gallery (travail.html) ─────────────────────────────────── */
.gallery-section { padding: 60px 0 120px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; padding: 0 60px; }
.gallery-item { position: relative; height: 600px; overflow: hidden; display: block; cursor: pointer; }
.gallery-photo { position: absolute; inset: 0; background: #E8E4DE center/cover no-repeat; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.gallery-item:hover .gallery-photo { transform: scale(1.04); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(13,13,13,0); transition: background 0.4s ease; z-index: 1; }
.gallery-item:hover .gallery-overlay { background: rgba(13,13,13,0.35); }
.gallery-cta { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-44%); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); white-space: nowrap; opacity: 0; transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s; z-index: 2; }
.gallery-item:hover .gallery-cta { opacity: 1; transform: translate(-50%,-50%); }
.gallery-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 32px 36px; background: linear-gradient(to top, rgba(13,13,13,0.70), transparent); z-index: 2; pointer-events: none; }
.gallery-name { font-family: var(--font-serif); font-size: 22px; font-weight: 400; letter-spacing: -0.01em; color: var(--white); margin-bottom: 6px; }
.gallery-cat { font-size: 9px; font-weight: 500; letter-spacing: 0.20em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ─── Concept Pages ──────────────────────────────────────────── */
.concept-hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 88px; position: relative; background: #1a1614 center/cover no-repeat; }
.concept-hero-overlay { position: absolute; inset: 0; background: rgba(13,13,13,0.52); z-index: 0; }
.concept-hero-inner { position: relative; z-index: 1; padding: 0 60px; max-width: 1280px; margin: 0 auto; width: 100%; }
.concept-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.concept-eyebrow span { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.50); }
.concept-eyebrow .rule { background: rgba(255,255,255,0.28); width: 32px; flex-shrink: 0; }
.concept-hero-title { font-family: var(--font-serif); font-size: clamp(52px,7vw,108px); font-weight: 400; line-height: 0.97; letter-spacing: -0.03em; color: var(--white); margin-bottom: 28px; }
.concept-hero-sub { font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

.concept-intro { padding: 120px 0; border-bottom: 1px solid rgba(13,13,13,0.08); }
.concept-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.concept-intro-label { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bordeaux); margin-bottom: 28px; display: block; }
.concept-intro-heading { font-family: var(--font-serif); font-size: clamp(30px,3.2vw,48px); font-weight: 400; line-height: 1.1; letter-spacing: -0.025em; color: var(--black); }
.concept-intro-heading em { font-style: italic; color: var(--bordeaux); }
.concept-intro-body { padding-top: 16px; font-size: 15px; font-weight: 300; line-height: 1.85; color: #555; }

.concept-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: rgba(13,13,13,0.06); }
.concept-photo { aspect-ratio: 4/3; background: #E8E4DE center/cover no-repeat; }

.concept-objectifs { padding: 120px 0; border-bottom: 1px solid rgba(13,13,13,0.08); }
.concept-objectifs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.objectifs-heading { font-family: var(--font-serif); font-size: clamp(28px,2.8vw,42px); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; color: var(--black); margin-bottom: 40px; }
.objectifs-heading em { font-style: italic; color: var(--bordeaux); }
.objectifs-list { list-style: none; }
.objectif-item { display: flex; gap: 24px; padding: 20px 0; border-bottom: 1px solid rgba(13,13,13,0.08); }
.objectif-item:first-child { border-top: 1px solid rgba(13,13,13,0.08); }
.objectif-num { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; color: var(--bordeaux); padding-top: 3px; flex-shrink: 0; }
.objectif-text { font-size: 14px; font-weight: 300; line-height: 1.75; color: #444; }
.concept-objectifs-photo { aspect-ratio: 3/4; background: #D8D4CE center/cover no-repeat; }

.concept-visuels { padding: 80px 0 120px; }
.concept-visuels-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 48px; }
.concept-visuels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.concept-visuel { aspect-ratio: 3/4; background: #E8E4DE center/cover no-repeat; overflow: hidden; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.concept-visuel:hover { transform: scale(1.02); }

.instagram-section { padding: 0 0 120px; border-top: 1px solid rgba(13,13,13,0.08); }
.instagram-header { padding: 80px 0 40px; }
.instagram-handle { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bordeaux); margin-top: 8px; }
.instagram-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.instagram-post { aspect-ratio: 1/1; background: #E8E4DE center/cover no-repeat; overflow: hidden; cursor: pointer; transition: opacity 0.3s; }
.instagram-post:hover { opacity: 0.85; }

.concept-nav { padding: 80px 0; border-top: 1px solid rgba(13,13,13,0.08); display: flex; align-items: center; justify-content: flex-end; }
.concept-nav-link { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); transition: gap 0.25s, color 0.25s; }
.concept-nav-link:hover { gap: 18px; color: var(--bordeaux); }
.concept-nav-link svg { width: 13px; height: 13px; }

/* ─── Footer ───────────────────────────────────────────────── */
footer {
  background: #F2F1EE;
  padding: 60px 48px;
  border: none;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #333333;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: #6B1A28; }

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: #888;
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.05em;
}

/* ─── Reveal ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  nav, nav.scrolled { padding-left: 32px; padding-right: 32px; }
  .hero-inner { padding: 0 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n) { border-right: 1px solid rgba(13,13,13,0.12); }
  .service-card:nth-child(2n) { border-right: none; }
  .about-grid { gap: 64px; }
  .contact-inner { gap: 64px; }
  .founders-grid { gap: 1px; }
  .concept-featured { grid-template-columns: 1fr; }
  .concept-featured .concept-visual { min-height: 360px; }
  .concept-featured-content { border-left: none; border-top: 1px solid rgba(13,13,13,0.1); padding: 48px; }
  .step-item { grid-template-columns: 48px 1fr; gap: 24px; }
  .step-desc { grid-column: 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 48px; }
  .hero-right { flex-direction: column; align-items: flex-start; gap: 40px; }
  .hero-stats { flex-direction: row; gap: 32px; }
  .stat-block { text-align: left; }
  .hero-scroll { display: none; }
  .section-header { flex-direction: column; gap: 20px; }
  .section-intro { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-top: 1px solid rgba(13,13,13,0.12); }
  .service-card:first-child { border-top: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { width: 100px; height: 100px; right: -8px; bottom: -8px; }
  .about-badge-num { font-size: 26px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { padding: 48px 32px; }
  .concept-4grid { grid-template-columns: 1fr; }
  footer { padding: 48px 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
}

/* ─── Footer Maebe ──────────────────────────────────────────── */
.footer-maebe {
  background: #F2F1EE;
  padding: 60px;
}
.footer-maebe-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-maebe-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.footer-maebe-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-maebe-nav a,
.footer-maebe-right a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-maebe-nav a:hover,
.footer-maebe-right a:hover { color: #6B1A28; }
.footer-maebe-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
}
.footer-maebe-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-maebe-bottom span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333333;
}
@media (max-width: 768px) {
  .footer-maebe          { padding: 40px 24px; }
  .footer-maebe-top      { flex-direction: column; gap: 32px; }
  .footer-maebe-right    { text-align: left; }
  .footer-maebe-bottom   { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── Responsive — Gallery & Concept pages ──────────────────── */
@media (max-width: 1024px) {
  .gallery-grid           { padding: 0 32px; }
  .concept-hero-inner     { padding: 0 40px; }
  .concept-intro-grid,
  .concept-objectifs-grid { gap: 60px; }
}
@media (max-width: 768px) {
  .gallery-grid           { grid-template-columns: 1fr; padding: 0 24px; }
  .gallery-item           { height: 420px; }
  .concept-hero-inner     { padding: 0 24px; }
  .concept-intro-grid,
  .concept-objectifs-grid { grid-template-columns: 1fr; gap: 40px; }
  .concept-photos,
  .concept-visuels-grid   { grid-template-columns: 1fr; }
  .concept-objectifs-photo { aspect-ratio: 4/3; }
  .concept-visuels        { padding: 60px 0 80px; }
}
