/* ============================================================
   BusiRise — Design System
   Style: Light luxury editorial, inspired by BusiRise visuals
   ============================================================ */

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

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ── TOKENS ── */
:root {
  --gold:      #C9A96E;
  --gold-dark: #A8844A;
  --gold-pale: #E8D5B0;
  --ink:       #0D0D0D;
  --ink-70:    rgba(13,13,13,0.7);
  --ink-40:    rgba(13,13,13,0.4);
  --muted:     #6B7280;
  --white:     #FFFFFF;
  --cream:     #F9F7F4;
  --cream-2:   #F3EFE8;
  --border:    rgba(0,0,0,0.08);
  --dark:      #0D0D0D;
  --dark-2:    #161616;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Plus Jakarta Sans', system-ui, sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:     78px;
}

/* ── CONTAINER ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 3rem; }

/* ── TYPOGRAPHY HELPERS ── */
.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.serif-hero {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.serif-xl {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}

.serif-lg {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.serif-md {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.gold-italic {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.script-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
  font-weight: 400;
}

.gold-rule {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-rule-center {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.body-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-70);
  font-weight: 400;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }

.nav-logo { display: flex; flex-direction: column; gap: 1px; }

.nav-logo-name {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav-logo-name .gold { color: var(--gold); }

.nav-logo-sub {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-70);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.35rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.18s;
}

.nav-cta:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

/* ── HERO SPLIT ── */
.hero-split {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 5rem 3rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #EDE5D8 0%, #D9CCBA 40%, #C8BAA5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 3px;
  transition: background 0.2s, transform 0.18s;
  letter-spacing: 0.01em;
}

.btn-dark:hover {
  background: #222;
  transform: translateY(-1px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 3px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.18s;
}

.btn-outline-dark:hover {
  border-color: var(--ink-70);
  transform: translateY(-1px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 3px;
  transition: background 0.2s, transform 0.18s;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* ── FEATURE PILLS ── */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-feature::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gold-pale);
  border-radius: 50%;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-light { background: var(--cream); }
.section-dark { background: var(--dark); }

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

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  padding: 2.25rem 1.75rem;
  background: var(--white);
  transition: background 0.2s;
  cursor: pointer;
}

.service-card:hover { background: var(--cream); }

.service-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.service-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-arrow {
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform 0.2s;
}

.service-card:hover .service-arrow { transform: translateX(4px); }

/* ── SPLIT LAYOUTS ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-image-col {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  min-height: 480px;
}

.split-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(145deg, #EDE5D8 0%, #D4C8B6 100%);
}

.split-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}

/* ── STATS ── */
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-val {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.value-card {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--white);
  border-right: 1px solid var(--border);
}

.value-card:last-child { border-right: none; }

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.value-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
}

.value-desc {
  font-size: 0.76rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ── MINI VALUES ROW ── */
.mini-values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.mini-value { text-align: center; }

.mini-val-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
}

.mini-val-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.mini-val-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.mini-val-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── PROCESS STRIP ── */
.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 2rem;
}

.process-node {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-right: 1rem;
}

.process-node-arrow {
  position: absolute;
  right: -4px;
  top: 0.25rem;
  color: var(--gold-pale);
  font-size: 1.4rem;
  line-height: 1;
}

.process-node:last-child .process-node-arrow { display: none; }

.process-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.process-step-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.process-step-desc {
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── PROJECTS GRID (home) ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.project-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.project-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.project-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  overflow: hidden;
  position: relative;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1e1e1e 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.project-info { padding: 1.25rem 1.5rem; }

.project-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.project-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ── RÉALISATIONS LIST ── */
.real-filters {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.real-filter-btn {
  padding: 0.85rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.real-filter-btn.active,
.real-filter-btn:hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.real-filter-sep {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0 1rem;
  cursor: pointer;
}

.real-list { margin-top: 0; }

.real-item {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.real-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(0,0,0,0.2);
  line-height: 1;
}

.real-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.real-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1e1e1e, #2d2d2d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-meta { display: flex; flex-direction: column; gap: 0.5rem; }

.real-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.real-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.real-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 36ch;
}

.real-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.real-tag {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.real-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1rem;
  transition: gap 0.2s;
}

.real-link:hover { gap: 0.7rem; }

/* ── PROCESS STEPS (process page) ── */
.process-steps { display: flex; flex-direction: column; gap: 0; }

.ps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.ps-row.reverse { direction: rtl; }
.ps-row.reverse > * { direction: ltr; }

.ps-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: var(--white);
}

.ps-image {
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}

.ps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(145deg, #EDE5D8, #C8BBAA);
}

.ps-num-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ps-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.ps-icon {
  color: var(--gold);
}

.ps-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.ps-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.ps-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 38ch;
}

/* ── PROCESS VALUES STRIP ── */
.ps-values-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ps-val {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.ps-val:last-child { border-right: none; }

.ps-val-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 0.75rem;
}

.ps-val-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.ps-val-desc {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.team-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-2);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #E8E0D4, #CEC2B0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}

.team-info { padding: 1.25rem 1.25rem 1.5rem; }

.team-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.team-desc {
  font-size: 0.76rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.team-li {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.team-li:hover { color: var(--ink); }

/* ── SERVICES LIST (services page) ── */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.services-stack-img {
  flex: 1;
  background: linear-gradient(145deg, #1e1e1e, #2d2d2d);
  overflow: hidden;
  min-height: 180px;
}

.services-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.services-stack-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2.25rem 3rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.service-list-item:hover { background: var(--cream); }

.service-list-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5rem;
}

.service-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  margin-bottom: 0;
}

.service-list-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-list-body { flex: 1; }

.service-list-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.service-list-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
}

.service-list-arrow {
  font-size: 1.1rem;
  color: var(--ink-40);
  transition: color 0.2s, transform 0.2s;
}

.service-list-item:hover .service-list-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--dark);
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr auto;
  align-items: center;
  gap: 3rem;
}

.cta-banner-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.cta-banner-div {
  width: 1px;
  height: 100%;
  min-height: 80px;
  background: rgba(255,255,255,0.1);
}

.cta-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.cta-banner-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 36ch;
}

.cta-banner-img {
  width: 200px;
  height: 160px;
  border-radius: 3px;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}

.cta-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.cta-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.75rem;
  align-items: start;
}

.footer-logo-name {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 2px;
}

.footer-logo-name span { color: var(--gold); }

.footer-logo-sub {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 22ch;
}

.footer-col-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col-links a:hover { color: var(--white); }

.footer-contact-email {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-monogram {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  font-style: italic;
  align-self: center;
  user-select: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  min-height: 70vh;
}

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

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

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

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RÉALISATIONS HEADER ROW ── */
.real-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

/* ── MOBILE NAV OVERLAY ── */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

#mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

#mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink-70);
  transition: color 0.2s;
}

#mobile-nav a:hover { color: var(--gold); }

#mobile-nav .mobile-cta {
  margin-top: 1rem;
  padding: 0.85rem 2rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-monogram { display: none; }
  .process-strip { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .mini-values { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 1.5rem; }
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { height: 55vw; min-height: 260px; }
  .hero-content { padding: 3rem 1.5rem; }

  .split-grid { grid-template-columns: 1fr; }
  .split-image-col { min-height: 300px; }
  .split-content-col { padding: 3rem 1.5rem; }

  .services-grid {
    grid-template-columns: 1fr;
    border: none;
    border-radius: 0;
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .service-card {
    display: grid;
    grid-template-columns: 40px 1fr 24px;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 1rem;
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid var(--border);
    border-right: none;
  }
  .service-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
    align-self: center;
  }
  .service-icon svg { width: 24px; height: 24px; }
  .service-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    align-self: end;
  }
  .service-desc {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.78rem;
    margin-bottom: 0;
    line-height: 1.5;
    align-self: start;
  }
  .service-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    font-size: 1rem;
  }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 1.5rem; }
  .cta-banner-div { display: none; }
  .cta-banner-img { display: none; }

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

  .process-strip { grid-template-columns: 1fr 1fr; }
  .mini-values { grid-template-columns: 1fr 1fr; }

  .real-item { grid-template-columns: 40px 1fr; }
  .real-meta { grid-column: 1 / -1; padding-top: 1rem; }

  .ps-row { grid-template-columns: 1fr; }
  .ps-row.reverse { direction: ltr; }
  .ps-content { padding: 2.5rem 1.5rem; }

  .ps-values-strip { grid-template-columns: 1fr 1fr; }

  .services-split { grid-template-columns: 1fr; }

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

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

  .section { padding: 4rem 0; }
}
