@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Sora:wght@300;400;500;600;700&display=swap");

/* ── ROOT ───────────────────────────────────── */
:root {
  --bg:         #f5f1eb;
  --cream:      #fdf9f4;
  --ink:        #1e1b18;
  --ink-soft:   #5f5a52;
  --brand:      #e07a3f;
  --brand-deep: #b35421;
  --dark:       #111009;
  --dark-2:     #1a1714;
  --line:       rgba(30,27,24,0.1);
  --line-light: rgba(245,241,235,0.08);
  --section-v:  clamp(80px, 10vw, 130px);
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain film overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
}

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

/* ── CURSOR ──────────────────────────────────── */
@media (pointer: fine) {
  *, a, button { cursor: none !important; }

  .cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--brand);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    left: 0; top: 0;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.2s ease;
  }
  .cursor-ring {
    position: fixed;
    width: 40px; height: 40px;
    border: 1.5px solid rgba(224,122,63,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    left: 0; top: 0;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, border-color 0.3s ease, opacity 0.2s ease;
  }

  body.cur-hover .cursor-dot {
    width: 52px; height: 52px;
    background: rgba(224,122,63,0.1);
  }
  body.cur-hover .cursor-ring {
    width: 64px; height: 64px;
    border-color: rgba(224,122,63,0.6);
  }
  body.cur-hide .cursor-dot,
  body.cur-hide .cursor-ring { opacity: 0; }
}

/* ── LAYOUT ──────────────────────────────────── */
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}
.section { padding-block: var(--section-v); }

/* ── EYEBROW ─────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* ── REVEAL ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s cubic-bezier(0.22,1,0.36,1),
    transform 0.9s cubic-bezier(0.22,1,0.36,1);
  transition-delay: var(--delay,0ms);
}
[data-reveal].visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity:1; transform:none; transition:none; }
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  border-radius: 999px;
  padding: 13px 28px;
  border: 1.5px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, opacity 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.75); color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-cream { border-color: rgba(245,241,235,0.22); color: rgba(245,241,235,0.85); background: rgba(245,241,235,0.05); }
.btn-cream:hover { border-color: rgba(245,241,235,0.6); color: #fff; }

/* ── NAV ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(12,10,8,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--line-light);
}
/* Compense le header fixed sur les pages intérieures */
main { padding-top: 68px; }
.hero { margin-top: -68px; padding-top: 0; }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { width: 52px; height: auto; display: block; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand-name {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.9);
  line-height: 1;
}
.nav-brand-ag { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(245,241,235,0.48);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 8px 14px;
  transition: color 0.25s ease, letter-spacing 0.3s ease;
  position: relative;
}
.nav-links a:not(.nav-cta)::before,
.nav-links a:not(.nav-cta)::after {
  color: var(--brand);
  font-size: 13px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:not(.nav-cta)::before {
  content: "[";
  margin-right: 1px;
  transform: translateX(6px);
}
.nav-links a:not(.nav-cta)::after {
  content: "]";
  margin-left: 1px;
  transform: translateX(-6px);
}
.nav-links a:not(.nav-cta):hover {
  color: rgba(245,241,235,0.95);
  letter-spacing: 2.6px;
}
.nav-links a:not(.nav-cta):hover::before,
.nav-links a:not(.nav-cta):hover::after {
  opacity: 1;
  transform: translateX(0);
}
.nav-links .nav-cta {
  margin-left: 10px;
  padding: 9px 22px;
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.nav-links .nav-cta:hover { background: var(--brand-deep); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(245,241,235,0.7);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  color: rgba(245,241,235,0.55);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(32px, 6vw, 48px);
  padding: 12px 20px;
  transition: color 0.2s;
  letter-spacing: -0.5px;
}
.nav-overlay a:hover { color: var(--brand); }
.nav-overlay .overlay-cta {
  font-family: "Sora", sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  padding: 12px 36px;
  background: var(--brand);
  color: #fff !important;
  border-radius: 999px;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.62;
}
/* Cinematic vignette — dark on left + bottom, photo visible right */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,8,6,0.9) 0%, rgba(10,8,6,0.7) 38%, rgba(10,8,6,0.22) 60%, transparent 80%),
    linear-gradient(to top, rgba(10,8,6,0.75) 0%, transparent 45%);
  z-index: 0;
}
.hero-content-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(56px, 8vh, 100px);
  padding-top: 120px;
  position: relative;
  z-index: 1;
}
/* Glass text block with left orange accent */
.hero-card {
  max-width: 600px;
  border-left: 3px solid var(--brand);
  padding-left: clamp(24px, 3.5vw, 40px);
  padding-block: 4px;
}
.hero-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--brand); }
.hero-lead {
  font-size: clamp(14px, 1.4vw, 15.5px);
  color: rgba(245,241,235,0.6);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.3);
}
.hero-badge::before {
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: rgba(245,241,235,0.25);
  flex-shrink: 0;
}

/* ticker */
.hero-ticker {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(245,241,235,0.06);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(0,0,0,0.35);
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  color: rgba(245,241,235,0.28);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.ticker-track span { padding: 0 28px; }
.ticker-track .ticker-dot {
  color: var(--brand);
  padding: 0 4px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STATS BAND ──────────────────────────────── */
.stats-band {
  background: var(--dark-2);
  color: #f5f1eb;
  padding-block: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 70% 50%, rgba(224,122,63,0.05), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.stat-item {
  padding: 0 clamp(16px, 3vw, 40px);
  border-right: 1px solid var(--line-light);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; padding-right: 0; }
.stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  color: var(--brand);
  margin-bottom: 10px;
  letter-spacing: -2px;
}
.stat-sup {
  font-size: 0.42em;
  vertical-align: super;
  letter-spacing: 0;
}
.stat-label {
  font-size: 12px;
  color: rgba(245,241,235,0.38);
  line-height: 1.55;
}

/* ── SERVICE HOVER SPLIT ─────────────────────── */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  overflow: hidden;
}
.svc-left {
  padding: clamp(60px, 8vw, 100px) clamp(32px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.svc-right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
/* Vertical orange stripe between columns */
.svc-right::before {
  content: "";
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--brand) 30%, var(--brand) 70%, transparent);
  z-index: 2;
  opacity: 0.5;
}
.svc-stage { position: absolute; inset: 0; }
.svc-stage-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.svc-stage-img.active { opacity: 1; transform: scale(1); }

.svc-head { margin-bottom: clamp(36px, 5vw, 60px); }
.svc-head h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(28px, 3.8vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-top: 6px;
}
.svc-list { border-top: 1px solid var(--line); }
.svc-item {
  display: grid;
  grid-template-columns: 52px 1fr 28px;
  gap: 12px 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.28s ease;
}
.svc-item.active, .svc-item:hover { padding-left: 12px; }
.svc-num {
  font-family: "Playfair Display", serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 2px;
  transition: letter-spacing 0.2s;
}
.svc-item.active .svc-num { letter-spacing: 3px; }
.svc-item h3 {
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.svc-item p { font-size: 12.5px; color: var(--ink-soft); max-width: 360px; line-height: 1.6; }
.svc-item.active h3, .svc-item:hover h3 { color: var(--brand); }
.svc-arr {
  font-size: 16px;
  color: rgba(30,27,24,0.18);
  transition: all 0.25s;
  justify-self: end;
}
.svc-item.active .svc-arr, .svc-item:hover .svc-arr { color: var(--brand); transform: rotate(-45deg); }

/* ── GALLERY ─────────────────────────────────── */
.gallery-section {
  background: var(--dark);
  color: #f5f1eb;
  padding-block: var(--section-v);
  overflow: hidden;
}
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}
.gallery-head h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.05;
}
.gallery-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(245,241,235,0.05);
  border-radius: 999px;
}
.g-tab {
  padding: 8px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: rgba(245,241,235,0.4);
  font-size: 12.5px;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.22s ease;
}
.g-tab.active { background: var(--brand); color: #fff; }
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

.gallery-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gallery-scroll {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scroll-behavior: smooth;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll:active { cursor: grabbing; }
.gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.gallery-img {
  width: clamp(200px, 24vw, 340px);
  height: clamp(160px, 22vw, 290px);
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-img:hover { transform: scale(1.025); }

.gallery-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245,241,235,0.15);
  background: rgba(245,241,235,0.06);
  color: rgba(245,241,235,0.7);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
}
.gallery-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ── BRAND QUOTE SECTION ─────────────────────── */
.brand-quote-section {
  background: var(--brand);
  padding-block: clamp(80px, 12vw, 150px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.brand-quote-section::before {
  content: "AG";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(200px, 35vw, 480px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -20px;
}
.brand-quote-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  position: relative;
}
.brand-quote-eyebrow::before,
.brand-quote-eyebrow::after {
  content: "";
  display: block;
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.35);
}
.brand-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 56px);
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
}
.brand-quote-cta { position: relative; }
.brand-quote-cta .btn-quote-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 13.5px;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.brand-quote-cta .btn-quote-ghost:hover {
  border-color: rgba(255,255,255,0.8);
}

/* ── IDENTITY ────────────────────────────────── */
.identity-section { padding-block: var(--section-v); }
.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.identity-text h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 22px;
}
.identity-text p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.85; }
.identity-cta { margin-top: 32px; }

.value-list { border-top: 1px solid var(--line); }
.value-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); margin-top: 9px; flex-shrink: 0; }
.value-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 13px; color: var(--ink-soft); }

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
  background: var(--dark);
  color: #f5f1eb;
  padding-block: clamp(90px, 12vw, 160px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at center, rgba(224,122,63,0.08), transparent 70%);
}
.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -2.5px;
  line-height: 1.02;
  margin-bottom: 40px;
  position: relative;
}
.cta-section h2 em { font-style: italic; color: var(--brand); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.reviews-wrap { margin-top: 80px; position: relative; }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  background: var(--dark);
  color: #f5f1eb;
  padding-block: clamp(80px, 11vw, 110px) clamp(52px, 6vw, 70px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(224,122,63,0.04));
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--brand); }
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(34px, 5.2vw, 60px);
  letter-spacing: -2px;
  line-height: 1.03;
  margin-bottom: 16px;
}
.page-hero .lead {
  max-width: 500px;
  font-size: 15.5px;
  color: rgba(245,241,235,0.5);
  line-height: 1.8;
}

/* ── SERVICES PAGE ───────────────────────────── */
.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px 44px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left 0.28s ease;
}
.service-row:hover { padding-left: 12px; }
.service-n {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: rgba(30,27,24,0.05);
  letter-spacing: -3px;
}
.service-body h3 {
  font-size: clamp(18px, 2.3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.service-body p { font-size: 14.5px; color: var(--ink-soft); max-width: 620px; line-height: 1.85; }

/* Photo grid */
.photo-section {
  background: var(--dark-2);
  padding-block: var(--section-v);
  color: #f5f1eb;
}
.photo-section-head { margin-bottom: 48px; }
.photo-section-head h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 44px);
  letter-spacing: -1px;
  line-height: 1.1;
}
.photo-section-head .eyebrow { color: var(--brand); }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.photo-cell { aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; }
.photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.photo-cell:hover img { transform: scale(1.06); }

/* Process */
.process-section { padding-block: var(--section-v); }
.process-head { margin-bottom: clamp(40px, 5vw, 64px); }
.process-head h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 44px);
  letter-spacing: -1px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.process-step {
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: none; }
.step-n {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.18;
  margin-bottom: 20px;
}
.process-step h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.75; }

/* ── ABOUT ───────────────────────────────────── */
.about-intro { padding-block: var(--section-v); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.about-split h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(28px, 3.8vw, 46px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 22px;
}
.about-split p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.85; }
.about-values { border-top: 1px solid var(--line); }
.about-value {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.about-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); margin-top: 10px; }
.about-value h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.about-value p { font-size: 13px; color: var(--ink-soft); }
.about-dark { background: var(--dark-2); color: #f5f1eb; padding-block: var(--section-v); }
.about-dark-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.about-dark-text h2 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 44px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.about-dark-text p { font-size: 14.5px; color: rgba(245,241,235,0.5); line-height: 1.85; }
.about-dark .eyebrow { color: var(--brand); }

/* ── CONTACT ─────────────────────────────────── */
.contact-section { padding-block: var(--section-v); }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 32px);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.contact-info > p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 32px; line-height: 1.85; }
.contact-details { border-top: 1px solid var(--line); }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.c-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.contact-detail a { color: var(--brand); }
.contact-detail a:hover { text-decoration: underline; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { border-color: var(--brand); }
.field textarea { min-height: 140px; resize: vertical; }

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--dark);
  color: #f5f1eb;
  padding-block: clamp(64px, 9vw, 100px) 0;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 0;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo { width: 52px; height: auto; display: block; }
.footer-brand-name {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245,241,235,0.75);
  line-height: 1;
}
.footer-brand-ag { color: var(--brand); }
.footer-tagline { font-size: 13px; color: rgba(245,241,235,0.32); line-height: 1.75; max-width: 260px; }
.footer-col-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(245,241,235,0.25); margin-bottom: 20px; display: block;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13.5px; color: rgba(245,241,235,0.5); transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-contact-line { font-size: 13.5px; color: rgba(245,241,235,0.5); margin-bottom: 8px; display: block; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,241,235,0.04);
  border: 1px solid rgba(245,241,235,0.09);
  color: rgba(245,241,235,0.5);
  transition: all 0.2s;
}
.footer-social-link:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-icon { width: 17px; height: 17px; fill: currentColor; }

/* Giant footer wordmark */
.footer-wordmark {
  padding-top: clamp(32px, 4vw, 48px);
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(52px, 10vw, 140px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,241,235,0.07);
  letter-spacing: clamp(-3px, -0.8vw, -8px);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

.footer-bottom {
  padding: clamp(20px, 3vw, 32px) 0;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: rgba(245,241,235,0.18); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(245,241,235,0.18); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(245,241,235,0.5); }

/* ── COOKIE ──────────────────────────────────── */
.cookie-banner {
  position: fixed; right: 24px; bottom: 24px;
  width: min(340px, calc(100% - 48px));
  background: #fff; border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(30,27,24,0.13);
  padding: 20px; z-index: 200; display: none;
}
.cookie-banner.visible { display: block; }
.cookie-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.cookie-text { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero h1 { font-size: clamp(34px, 6vw, 60px); letter-spacing: -1px; }

  .svc-split { grid-template-columns: 1fr; min-height: auto; }
  .svc-right { min-height: 380px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 20px; border-right: none; border-bottom: 1px solid var(--line-light); }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--line-light); }
  .stat-item:nth-child(4)    { border-bottom: none; }

  .identity-grid, .about-split, .about-dark-inner, .contact-split { grid-template-columns: 1fr; }
  .about-dark-inner { justify-items: start; }

  .photo-grid { grid-template-columns: repeat(3, 1fr); }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }

  .gallery-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: clamp(30px, 8vw, 52px); }
  .hero-card { padding-left: 20px; }

  .svc-item { grid-template-columns: 44px 1fr; gap: 10px; }
  .svc-arr  { display: none; }

  .service-row { grid-template-columns: 1fr; gap: 8px; padding: 36px 0; }
  .service-n { font-size: 40px; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }

  .brand-quote-section::before { display: none; }

  .g-tab { padding: 7px 14px; font-size: 12px; }
  .cookie-banner { right: 12px; bottom: 12px; }
}
