/* ============ BEAUNE-PAYSAGE — DESIGN SYSTEM ============ */
:root {
  /* Palette */
  --bg-deep: oklch(0.18 0.015 150);          /* vert forêt très sombre */
  --bg-deeper: oklch(0.13 0.012 150);
  --bg-stone: oklch(0.93 0.01 80);           /* pierre / grège */
  --bg-stone-2: oklch(0.88 0.012 75);
  --ink-cream: oklch(0.96 0.01 90);          /* crème ivoire */
  --ink-cream-dim: oklch(0.78 0.01 85);
  --ink-anthracite: oklch(0.20 0.01 100);
  --ink-anthracite-dim: oklch(0.42 0.008 100);
  --line-cream: oklch(0.96 0.01 90 / 0.18);
  --line-anthracite: oklch(0.20 0.01 100 / 0.14);
  --accent-green: oklch(0.42 0.06 150);      /* vert profond signature */
  --accent-green-soft: oklch(0.55 0.05 150);
  --accent-copper: oklch(0.72 0.08 75);      /* doré cuivre */
  --accent-copper-soft: oklch(0.82 0.06 75);

  /* Type */
  --font-serif: "Cormorant Garamond", "PP Editorial New", "Fraunces", Georgia, serif;
  --font-sans: "Inter", "Söhne", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Easings */
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-soft: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--bg-deep);
  color: var(--ink-cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* Section bases */
.section-stone { background: var(--bg-stone); color: var(--ink-anthracite); }
.section-deep { background: var(--bg-deep); color: var(--ink-cream); }
.section-deeper { background: var(--bg-deeper); color: var(--ink-cream); }

/* Type utilities */
.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.72;
}
.numeral {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.02em;
  opacity: 0.55;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; }

/* Hairlines */
.hairline { display: block; height: 1px; background: currentColor; opacity: 0.18; width: 100%; }

/* Sober link */
.link-sober {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
  transition: gap 600ms var(--ease-out-soft), opacity 400ms;
}
.link-sober::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  transition: width 600ms var(--ease-out-soft), opacity 400ms;
}
.link-sober:hover { gap: 22px; }
.link-sober:hover::after { width: 60px; opacity: 1; }

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1100ms var(--ease-cinematic), transform 1100ms var(--ease-cinematic);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }

/* Custom cursor */
.bp-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border: 1px solid var(--ink-cream);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 400ms var(--ease-out-soft), height 400ms var(--ease-out-soft),
              border-color 400ms, background 400ms, opacity 200ms;
  mix-blend-mode: difference;
}
.bp-cursor.is-hover { width: 56px; height: 56px; background: var(--ink-cream); }
.bp-cursor.is-dark-bg { border-color: var(--ink-anthracite); }
body.no-cursor { cursor: auto; }
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
@media (max-width: 880px) { .bp-cursor { display: none !important; } body.has-cursor, body.has-cursor a { cursor: auto !important; } }

/* ============ HEADER ============ */
.bp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  transition: padding 600ms var(--ease-out-soft), background 600ms, backdrop-filter 600ms, border-color 600ms;
  border-bottom: 1px solid transparent;
}
.bp-header.is-scrolled {
  padding: 14px 48px;
  background: oklch(0.18 0.015 150 / 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-cream);
}
.bp-header__nav {
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.bp-header__nav a {
  position: relative;
  padding: 6px 0;
  opacity: 0.78;
  transition: opacity 300ms;
}
.bp-header__nav a:hover { opacity: 1; }
.bp-header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 500ms var(--ease-out-soft);
}
.bp-header__nav a:hover::after { width: 100%; }
.bp-header__nav a.is-active { opacity: 1; }
.bp-header__nav a.is-active::after { width: 100%; opacity: 0.6; }

.bp-header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.bp-header__logo .mark {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.bp-header__logo .sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
}
.bp-header__right {
  display: flex; justify-content: flex-end; align-items: center; gap: 28px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
}
.bp-header__phone { opacity: 0.85; }
.bp-header__phone:hover { opacity: 1; }

@media (max-width: 880px) {
  .bp-header { grid-template-columns: 1fr auto; padding: 16px 20px; }
  .bp-header__nav, .bp-header__right { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
  color: var(--ink-cream);
}
.hero__media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.08) translate(-1.2%, -1%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.10 0.012 150 / 0.45) 0%, transparent 28%, transparent 55%, oklch(0.10 0.012 150 / 0.78) 100%),
    radial-gradient(ellipse at 20% 100%, oklch(0.10 0.012 150 / 0.55) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 96px;
  max-width: 1600px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 32px;
}
.hero__eyebrow .line { width: 56px; height: 1px; background: var(--ink-cream); opacity: 0.7; }
.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(48px, 8.4vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.018em;
  max-width: 16ch;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-copper);
  font-feature-settings: "ss01" on;
}
.hero__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0.85;
  max-width: 56ch;
  margin-bottom: 64px;
  line-height: 1.7;
}
.hero__sub strong { font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; opacity: 0.95; display: inline-block; padding-right: 14px; margin-right: 14px; border-right: 1px solid currentColor; }

.hero__meta {
  position: absolute;
  right: 64px; bottom: 96px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.72;
}
.hero__meta .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  opacity: 0.95;
  margin-bottom: 10px;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--ink-cream));
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; right: 0; top: -56px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--ink-cream));
  animation: scrollLine 2.4s var(--ease-in-out-soft) infinite;
}
@keyframes scrollLine { 0% { top: -56px; } 100% { top: 56px; } }

@media (max-width: 880px) {
  .hero__content { padding: 0 24px 64px; }
  .hero__meta { right: 24px; bottom: 72px; }
  .hero__meta .num { font-size: 36px; }
}

/* ============ MANIFESTO ============ */
.manifesto {
  padding: 180px 64px;
  background: var(--bg-deep);
  color: var(--ink-cream);
}
.manifesto__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 120px;
  align-items: start;
}
.manifesto__index {
  display: flex; flex-direction: column; gap: 32px;
  position: sticky; top: 140px;
}
.manifesto__index .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 96px;
  line-height: 1;
  color: var(--accent-copper);
}
.manifesto__index .label {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.65;
}
.manifesto__title {
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.06;
  margin-bottom: 48px;
  max-width: 22ch;
  font-weight: 300;
}
.manifesto__title em { font-style: italic; color: var(--accent-copper-soft); }
.manifesto__body {
  font-size: 17px; line-height: 1.75; font-weight: 300;
  max-width: 56ch; opacity: 0.88;
}
.manifesto__body p + p { margin-top: 1.2em; }
.manifesto__sign {
  margin-top: 56px;
  display: flex; align-items: center; gap: 20px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.65;
}
.manifesto__sign .sig {
  font-family: var(--font-serif); font-style: italic; font-size: 18px;
  letter-spacing: 0.02em; text-transform: none; opacity: 0.95;
}
@media (max-width: 980px) {
  .manifesto { padding: 96px 24px; }
  .manifesto__inner { grid-template-columns: 1fr; gap: 56px; }
  .manifesto__index { position: static; flex-direction: row; align-items: baseline; }
  .manifesto__index .num { font-size: 64px; }
}

/* ============ TROIS METIERS ============ */
.metiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 88vh;
  min-height: 720px;
  background: var(--bg-deeper);
  color: var(--ink-cream);
}
.metier {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line-cream);
  cursor: pointer;
}
.metier:last-child { border-right: none; }
.metier__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 1400ms var(--ease-cinematic), filter 1400ms;
  filter: brightness(0.55) saturate(0.9);
}
.metier:hover .metier__bg { transform: scale(1.12); filter: brightness(0.78) saturate(1); }
.metier__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, oklch(0.10 0.012 150 / 0.85) 100%);
}
.metier__content {
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 56px 48px;
  z-index: 2;
}
.metier__top { display: flex; justify-content: space-between; align-items: flex-start; }
.metier__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  opacity: 0.7;
}
.metier__cat {
  font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.65;
}
.metier__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 12ch;
}
.metier__title em { font-style: italic; }
.metier__body {
  font-size: 14px; line-height: 1.7; font-weight: 300;
  max-width: 38ch; opacity: 0;
  max-height: 0;
  transform: translateY(8px);
  transition: opacity 700ms var(--ease-out-soft), max-height 700ms var(--ease-out-soft), transform 700ms var(--ease-out-soft);
  margin-bottom: 20px;
}
.metier:hover .metier__body { opacity: 0.92; max-height: 200px; transform: translateY(0); }
.metier__link { opacity: 0.85; font-size: 11px; }
@media (max-width: 980px) {
  .metiers { grid-template-columns: 1fr; height: auto; }
  .metier { height: 70vh; min-height: 460px; border-right: none; border-bottom: 1px solid var(--line-cream); }
  .metier__cat { writing-mode: horizontal-tb; }
  .metier__body { opacity: 0.92; max-height: 200px; transform: none; }
}

/* ============ HORIZONTAL SCROLL ============ */
.realisations-h {
  position: relative;
  background: var(--bg-stone);
  color: var(--ink-anthracite);
}
.realisations-h__intro {
  padding: 140px 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1600px; margin: 0 auto;
  align-items: end;
}
.realisations-h__title {
  font-size: clamp(40px, 5.6vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.realisations-h__title em { font-style: italic; color: var(--accent-green); }
.realisations-h__sub {
  font-size: 15px; line-height: 1.75; font-weight: 300;
  max-width: 48ch; opacity: 0.75;
  padding-bottom: 6px;
}

.realisations-h__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.realisations-h__track {
  display: flex;
  gap: 32px;
  padding: 0 64px;
  will-change: transform;
}
.realisation-card {
  position: relative;
  flex: 0 0 auto;
  width: min(78vw, 1180px);
  height: 78vh;
  max-height: 820px;
  overflow: hidden;
  background: oklch(0.20 0.01 100);
}
.realisation-card.is-portrait { width: min(48vw, 680px); }
.realisation-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 1200ms var(--ease-cinematic);
}
.realisation-card.is-active .realisation-card__img { transform: scale(1.0); }
.realisation-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, oklch(0.10 0.012 150 / 0.5) 100%);
}
.realisation-card__caption {
  position: absolute;
  left: 36px; bottom: 36px;
  color: var(--ink-cream);
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-cinematic), transform 700ms var(--ease-cinematic);
}
.realisation-card.is-active .realisation-card__caption { opacity: 1; transform: translateY(0); }
.realisation-card__num {
  font-family: var(--font-serif); font-style: italic; font-size: 14px; opacity: 0.75;
}
.realisation-card__title {
  font-family: var(--font-serif); font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 300; line-height: 1.02; max-width: 18ch;
}
.realisation-card__meta {
  display: flex; gap: 16px; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.85;
  margin-top: 6px;
}
.realisation-card__meta span:not(:last-child)::after { content: "·"; margin-left: 16px; opacity: 0.6; }

.realisations-h__progress {
  position: absolute;
  left: 64px; right: 64px; bottom: 48px;
  display: flex; flex-direction: column; gap: 12px;
}
.realisations-h__progress-meta {
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase; opacity: 0.7;
}
.realisations-h__progress-bar {
  height: 1px; background: var(--line-anthracite); position: relative; overflow: hidden;
}
.realisations-h__progress-bar::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--ink-anthracite); width: var(--progress, 0%);
  transition: width 200ms linear;
}
.realisations-h__outro {
  display: flex; justify-content: space-between; align-items: center;
  padding: 72px 64px 120px;
  border-top: 1px solid var(--line-anthracite);
  max-width: 1600px; margin: 0 auto;
  width: 100%;
}
@media (max-width: 980px) {
  .realisations-h__intro { grid-template-columns: 1fr; gap: 32px; padding: 80px 24px 40px; }
  .realisation-card { width: 84vw; height: 64vh; }
  .realisation-card.is-portrait { width: 70vw; }
  .realisations-h__outro { flex-direction: column; gap: 32px; align-items: flex-start; padding: 56px 24px 80px; }
  .realisations-h__progress { left: 24px; right: 24px; }
}

/* ============ MAGASIN UNIVERS ============ */
.magasin {
  padding: 180px 64px;
  background: var(--bg-deeper);
  color: var(--ink-cream);
  position: relative;
  overflow: hidden;
}
.magasin__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  max-width: 1600px; margin: 0 auto;
  align-items: stretch;
}
.magasin__hero {
  position: relative;
  height: 84vh;
  min-height: 640px;
  overflow: hidden;
}
.magasin__hero img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: heroBreath 18s ease-in-out infinite alternate;
}
@keyframes heroBreath {
  to { transform: scale(1.1); }
}
.magasin__hero-tag {
  position: absolute; left: 28px; bottom: 28px;
  background: oklch(0.18 0.015 150 / 0.85);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  display: flex; flex-direction: column; gap: 6px;
  border: 1px solid var(--line-cream);
}
.magasin__hero-tag .t {
  font-family: var(--font-serif); font-style: italic; font-size: 18px;
}
.magasin__hero-tag .s { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.7; }

.magasin__text { display: flex; flex-direction: column; justify-content: space-between; padding: 12px 0; }
.magasin__heading {
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.04;
  margin-bottom: 32px;
  max-width: 14ch;
}
.magasin__heading em { font-style: italic; color: var(--accent-copper); }
.magasin__lede {
  font-size: 17px; line-height: 1.75; font-weight: 300;
  max-width: 48ch; opacity: 0.85;
  margin-bottom: 32px;
}
.magasin__products {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line-cream);
  border: 1px solid var(--line-cream);
  margin-top: 48px;
}
.product-tile {
  background: var(--bg-deeper);
  padding: 26px 24px;
  display: flex; flex-direction: column;
  gap: 6px;
  min-height: 130px;
  position: relative;
  transition: background 500ms;
}
.product-tile:hover { background: oklch(0.16 0.015 150); }
.product-tile .num { font-family: var(--font-serif); font-style: italic; font-size: 12px; opacity: 0.55; }
.product-tile .name { font-family: var(--font-serif); font-size: 22px; font-weight: 300; }
.product-tile .desc { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; margin-top: 6px; }
.product-tile::after {
  content: "→"; position: absolute; right: 22px; top: 24px; font-size: 14px; opacity: 0.45;
  transition: transform 500ms var(--ease-out-soft), opacity 400ms;
}
.product-tile:hover::after { transform: translateX(6px); opacity: 1; color: var(--accent-copper); }
@media (max-width: 980px) {
  .magasin { padding: 96px 24px; }
  .magasin__grid { grid-template-columns: 1fr; gap: 40px; }
  .magasin__hero { height: 56vh; min-height: 380px; }
  .magasin__products { grid-template-columns: 1fr; }
}

/* ============ TEMOIGNAGES ============ */
.testimonials {
  padding: 180px 64px;
  background: var(--bg-stone);
  color: var(--ink-anthracite);
  position: relative;
  overflow: hidden;
}
.testimonials__inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonials__eyebrow {
  display: flex; justify-content: center; align-items: center; gap: 18px;
  margin-bottom: 64px;
}
.testimonials__eyebrow .line { width: 56px; height: 1px; background: currentColor; opacity: 0.4; }
.testimonials__stage { position: relative; min-height: 360px; }
.testimonial {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
  opacity: 0; transition: opacity 1200ms var(--ease-cinematic);
  pointer-events: none;
}
.testimonial.is-active { opacity: 1; pointer-events: auto; }
.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  max-width: 22ch;
}
.testimonial__author {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  opacity: 0.7;
}
.testimonial__author strong { font-weight: 500; opacity: 1; padding-right: 12px; margin-right: 12px; border-right: 1px solid currentColor; }
.testimonials__nav { display: flex; justify-content: center; gap: 12px; margin-top: 56px; }
.testimonials__dot {
  width: 28px; height: 1px; background: currentColor; opacity: 0.25;
  transition: opacity 400ms, transform 400ms;
  transform-origin: left center;
}
.testimonials__dot.is-active { opacity: 1; transform: scaleX(1.6); }
@media (max-width: 880px) {
  .testimonials { padding: 96px 24px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-deeper);
  color: var(--ink-cream);
  padding: 120px 64px 48px;
  position: relative;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  max-width: 1600px; margin: 0 auto 96px;
}
.footer__brand h3 {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(40px, 5vw, 76px); line-height: 0.95;
  margin-bottom: 24px; max-width: 14ch;
}
.footer__brand h3 em { font-style: italic; color: var(--accent-copper); }
.footer__brand .tagline {
  font-family: var(--font-serif); font-style: italic; font-size: 18px; opacity: 0.75;
}
.footer__col h4 {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; opacity: 0.55; font-weight: 400;
  margin-bottom: 24px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col li { font-size: 14px; opacity: 0.85; }
.footer__col li a:hover { color: var(--accent-copper-soft); }
.footer__col p { font-size: 14px; line-height: 1.7; opacity: 0.85; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line-cream);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.55;
  max-width: 1600px; margin: 0 auto;
}
.footer__bottom a:hover { opacity: 1; color: var(--ink-cream); }

@media (max-width: 980px) {
  .footer { padding: 80px 24px 32px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}
