/* =========================================================
   MYTH Design — luxury interior architecture
   Palette: inwi magenta (#99398A) + molten gold
   Type: Marcellus (display) · Manrope (body)
   ========================================================= */

:root {
  /* surfaces */
  --bg:        #1b0a18;
  --bg-2:      #260f22;
  --surface:   #36172f;
  --surface-2: #43203b;

  /* accents */
  --gold:        #c9a24b;
  --gold-bright: #e7c879;
  --gold-deep:   #9c7c1e;
  --inwi:        #99398a;
  --inwi-deep:   #732a69;
  --inwi-bright: #b85aa8;
  --citron:      #f0e014;

  /* ink */
  --ink:      #f5ece7;
  --ink-soft: #ddccd2;
  --muted:    #a892ac;

  /* lines / glass */
  --line:      rgba(201, 162, 75, .20);
  --line-soft: rgba(245, 236, 231, .10);

  /* type */
  --display: 'Marcellus', 'Times New Roman', serif;
  --caps:    'Marcellus SC', var(--display);
  --sans:    'Manrope', system-ui, -apple-system, sans-serif;

  /* rhythm */
  --wrap: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 160px);
  --r: 2px;

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.16, 1, .3, 1);

  /* z-scale */
  --z-fab: 100;
  --z-menu: 200;
  --z-nav: 250;
  --z-lightbox: 300;
  --z-grain: 400;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--bg); }

/* film grain — fixed, never repaints with scroll */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: min(100% - var(--pad) * 2, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--gold); color: var(--bg); padding: 10px 18px; border-radius: var(--r);
  font-family: var(--sans); font-weight: 600; font-size: 13px; z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--light { color: var(--gold-bright); }
/* hero eyebrow sits over a photo with bright/gold areas — keep it legible */
.hero .eyebrow { color: var(--ink); text-shadow: 0 1px 16px rgba(0,0,0,.6); }
.eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 1px;
  background: currentColor; vertical-align: middle; margin-right: 12px;
  transform: translateY(-2px);
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: .005em;
  margin: 0;
  color: var(--ink);
}

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

/* ---------- buttons ---------- */
.btn {
  --btn-fg: #1c0d07;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--sans); font-weight: 600; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 17px 30px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .45s var(--ease), background-color .45s var(--ease),
              color .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 20px 40px; font-size: .82rem; }
.btn .ic-wa { width: 17px; height: 17px; }

/* luxe sheen — a single light sweep on hover, like gold catching the light */
.btn::after {
  content: ""; position: absolute; top: -12%; bottom: -12%; left: 0;
  width: 36%; z-index: 2; pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: translateX(-280%) skewX(-16deg);
}
.btn:hover::after { animation: btnSheen .9s var(--ease); }
@keyframes btnSheen { to { transform: translateX(380%) skewX(-16deg); } }

.btn--gold {
  background-color: var(--gold);
  color: var(--btn-fg);
  box-shadow: 0 10px 30px -16px rgba(201,162,75,.9);
}
.btn--gold:hover {
  background-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -16px rgba(231,200,121,1);
}
.btn--gold:active { transform: translateY(0) scale(.98); }

.btn--ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: rgba(201,162,75,.38);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  color: var(--gold-bright);
  border-color: var(--gold);
  background-color: rgba(201,162,75,.07);
}
.btn--ghost:active { transform: translateY(0) scale(.98); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: min(100% - var(--pad) * 2, var(--wrap));
  margin-inline: auto;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav[data-scrolled] {
  background: rgba(27,10,24,.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}

.brand { display: inline-flex; align-items: baseline; gap: 8px; line-height: 1; }
.brand__myth {
  font-family: var(--display); font-size: 1.45rem; letter-spacing: .14em;
  color: var(--ink); text-transform: uppercase;
}
.brand__design {
  font-family: var(--display); font-size: .8rem; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold);
}

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 12px 22px; font-size: .68rem; letter-spacing: .12em; }

/* language toggle */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px;
  font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .08em;
}
.lang-toggle button {
  background: none; border: 0; cursor: pointer; font: inherit; color: var(--muted);
  padding: 6px 6px; transition: color .3s var(--ease);
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button.is-active { color: var(--gold); }
.lang-toggle .lang-sep { color: var(--line-soft); pointer-events: none; }
.mobile-menu .lang-toggle { font-size: 1rem; margin-top: 6px; }
.mobile-menu .lang-toggle button { padding: 8px 10px; }

.nav__burger {
  display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  padding: 0; position: relative;
}
.nav__burger span {
  position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .25s var(--ease);
}
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { bottom: 17px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--bg-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu__links a {
  font-family: var(--display); font-size: 1.9rem; color: var(--ink);
  padding: 8px 0; opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease);
}
.mobile-menu__links a:hover { color: var(--gold); }
body.menu-open .mobile-menu__links a { opacity: 1; transform: none; }
body.menu-open .mobile-menu__links a:nth-child(1) { transition-delay: .08s; }
body.menu-open .mobile-menu__links a:nth-child(2) { transition-delay: .14s; }
body.menu-open .mobile-menu__links a:nth-child(3) { transition-delay: .20s; }
body.menu-open .mobile-menu__links a:nth-child(4) { transition-delay: .26s; }
.mobile-menu__meta { font-size: .85rem; color: var(--muted); letter-spacing: .04em; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: clamp(96px, 14vh, 150px) 0 clamp(56px, 9vh, 96px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease-soft) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(27,10,24,.55) 0%, rgba(27,10,24,.12) 32%, rgba(27,10,24,.35) 62%, rgba(27,10,24,.94) 100%),
    linear-gradient(78deg, rgba(27,10,24,.82) 0%, rgba(27,10,24,.28) 46%, rgba(27,10,24,0) 72%);
}

.hero__content { position: relative; z-index: 2; width: min(100% - var(--pad) * 2, var(--wrap)); margin-inline: auto; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.7rem, 8.2vw, 5.5rem);
  line-height: 1.02; letter-spacing: .004em;
  margin: 0 0 26px; max-width: 16ch;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero__lede {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-soft); line-height: 1.6;
  margin: 0 0 38px; max-width: 46ch;
}
.hero__tagline {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.7vw, 1.85rem);
  line-height: 1.35; color: var(--ink-soft);
  margin: 0 0 38px; max-width: 22ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__corner {
  position: absolute; right: var(--pad); bottom: clamp(56px, 9vh, 96px); z-index: 2;
  display: flex; align-items: center; gap: 12px;
}
.hero__corner-line { width: 46px; height: 1px; background: var(--gold); }
.hero__corner-text { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  position: relative;
  background: var(--bg-2);
  padding: var(--section-y) 0;
  overflow: hidden;
}
.manifesto__texture, .contact__texture {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("assets/ref.jpeg");
  background-size: cover; background-position: center;
  opacity: .14;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(120% 100% at 100% 0%, #000 0%, transparent 62%);
          mask-image: radial-gradient(120% 100% at 100% 0%, #000 0%, transparent 62%);
}
.manifesto__inner { position: relative; max-width: 880px; }
.manifesto__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.18; letter-spacing: .004em;
  margin: 0 0 30px; text-wrap: balance;
}
.manifesto__body {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-soft); line-height: 1.75; max-width: 62ch; margin: 0;
}

.stats {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 72px);
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--gold);
  line-height: 1; letter-spacing: .01em;
}
.stat__label { font-size: .8rem; letter-spacing: .04em; color: var(--muted); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { padding: var(--section-y) 0; }
.gallery__head {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  align-items: end; margin-bottom: clamp(40px, 6vw, 70px);
}
.gallery__intro { color: var(--ink-soft); max-width: 52ch; margin: 0; font-size: 1.02rem; }

/* category block */
.gallery__cat { margin-top: clamp(46px, 7vw, 86px); }
.gallery__cat:first-of-type { margin-top: 0; }
.gallery__cat-head { margin-bottom: clamp(22px, 3vw, 34px); }
.gallery__cat-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem); line-height: 1.1; letter-spacing: .01em;
  margin: 0; color: var(--ink);
  display: flex; align-items: baseline; gap: 16px;
}
.gallery__cat-title::before {
  content: ""; width: 30px; height: 1px; background: var(--gold);
  flex: none; transform: translateY(-7px);
}
.gallery__cat-desc {
  margin: 16px 0 0; color: var(--ink-soft); font-size: 1.02rem; font-weight: 500;
  line-height: 1.8; letter-spacing: .005em;
  max-width: 80ch; padding-left: 46px;
}

/* no-JS fallback: vertical column masonry */
.masonry {
  width: min(100% - var(--pad) * 2, var(--wrap)); margin-inline: auto;
  column-count: 3; column-gap: 16px;
}
/* with JS: row-order grid masonry (reads left-to-right, keeps varied heights) */
.js .masonry {
  --cols: 3;
  column-count: initial;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  grid-auto-rows: 2px;
  gap: 16px;
  align-items: start;
}
.js .shot { margin: 0; grid-row-end: span 180; }
.shot {
  break-inside: avoid; margin: 0 0 16px; position: relative;
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255,255,255,.03), 0 18px 40px -28px rgba(0,0,0,.9);
}
.shot img {
  width: 100%; height: auto; display: block;
  aspect-ratio: var(--ratio, 1); object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
}
.shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(231,200,121,0);
  background: radial-gradient(120% 80% at 50% 120%, rgba(153,57,138,.28), transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease), box-shadow .45s var(--ease);
}
.shot:hover img { transform: scale(1.055); }
.shot:hover::after { opacity: 1; box-shadow: inset 0 0 0 2px rgba(231,200,121,.55); }
.shot:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* before / after sub-section */
.ba-block { margin-bottom: clamp(34px, 5vw, 58px); }
.ba-title {
  font-family: var(--sans); font-weight: 600; font-size: .74rem;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 22px; display: flex; align-items: center; gap: 14px;
}
.ba-title::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.ba-grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0; }
.ba-shot {
  position: relative; border-radius: var(--r); overflow: hidden; cursor: pointer;
  background: var(--surface); box-shadow: 0 18px 40px -28px rgba(0,0,0,.9);
}
.ba-shot img {
  width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .8s var(--ease);
}
.ba-shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(231,200,121,0); transition: box-shadow .45s var(--ease);
}
.ba-shot:hover img { transform: scale(1.05); }
.ba-shot:hover::after { box-shadow: inset 0 0 0 2px rgba(231,200,121,.5); }
.ba-shot:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.ba-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--sans); font-weight: 600; font-size: .64rem; letter-spacing: .18em;
  text-transform: uppercase; padding: 6px 11px; border-radius: 2px;
  background: rgba(18,7,16,.66); color: var(--ink-soft); backdrop-filter: blur(4px);
}
.ba-tag--after { color: var(--gold-bright); }
/* "Après 1" is a portrait photo — show it fully instead of cropping to 4:3 */
.ba-shot img[src$="c4ap-01.jpg"] { object-fit: contain; background: var(--bg-2); }

/* =========================================================
   SAVOIR-FAIRE
   ========================================================= */
.craft { padding: var(--section-y) 0; background: var(--bg-2); }
.craft__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 96px); align-items: start;
}
.craft__lead { position: sticky; top: 96px; }
.craft__text { color: var(--ink-soft); max-width: 42ch; margin: 22px 0 32px; }
.craft__media { border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 60px -36px rgba(0,0,0,.95); }
.craft__media img { width: 100%; height: auto; }

.steps { list-style: none; margin: 0; padding: 0; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  padding: 30px 0; border-top: 1px solid var(--line-soft);
}
.step:last-child { border-bottom: 1px solid var(--line-soft); }
.step__num {
  font-family: var(--display); font-size: 1.5rem; color: var(--gold);
  line-height: 1; min-width: 2ch;
}
.step h3 { font-family: var(--display); font-weight: 400; font-size: 1.45rem; margin: 0 0 8px; color: var(--ink); }
.step p { margin: 0; color: var(--muted); font-size: .98rem; max-width: 40ch; }

/* =========================================================
   FEATURED
   ========================================================= */
.featured {
  position: relative; min-height: clamp(440px, 78vh, 760px);
  display: flex; align-items: flex-end; overflow: hidden;
}
.featured__media { position: absolute; inset: 0; }
.featured__media img { width: 100%; height: 100%; object-fit: cover; }
.featured__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,10,24,.2) 0%, rgba(27,10,24,.1) 38%, rgba(27,10,24,.9) 100%),
              linear-gradient(90deg, rgba(27,10,24,.7), transparent 60%);
}
.featured__caption { position: relative; z-index: 2; padding: clamp(40px,7vw,90px) 0; max-width: 620px; }
.featured__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; margin: 0 0 16px; text-wrap: balance;
}
.featured__text { color: var(--ink-soft); margin: 0; max-width: 46ch; font-size: 1.05rem; }

/* =========================================================
   IDENTITY / LOGO REVEAL
   ========================================================= */
.identity { background: var(--bg); padding: var(--section-y) 0; }
.identity__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.identity__logo {
  position: relative; width: clamp(180px, 30vw, 280px); aspect-ratio: 921 / 1424;
  display: grid; place-items: center;
}
.identity__logo img {
  width: 100%; height: auto; position: relative; z-index: 2;
}
.js .identity__logo img { clip-path: inset(0 0 100% 0); }
.identity__glow {
  position: absolute; inset: -18% -30%; z-index: 1;
  background: radial-gradient(50% 50% at 50% 46%, rgba(201,162,75,.28), transparent 70%);
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.identity__sweep {
  position: absolute; left: -8%; right: -8%; top: 0; height: 2px; z-index: 3;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 16px 2px rgba(231,200,121,.6);
  opacity: 0;
}
.identity__caption {
  margin-top: clamp(30px, 4vw, 46px); max-width: 40ch;
  font-family: var(--display); font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink-soft); line-height: 1.5;
}

/* logo reveal active state (set by JS when in view) */
.identity__logo.is-revealed img {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.5s var(--ease-soft);
}
.identity__logo.is-revealed .identity__glow { opacity: 1; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  position: relative; overflow: hidden;
  padding: clamp(84px, 13vw, 180px) 0;
  background: radial-gradient(125% 130% at 50% 6%, var(--inwi) 0%, #8a3380 45%, var(--inwi-deep) 100%);
}
.contact__texture {
  opacity: .16;
  -webkit-mask-image: radial-gradient(130% 120% at 0% 100%, #000 0%, transparent 58%);
          mask-image: radial-gradient(130% 120% at 0% 100%, #000 0%, transparent 58%);
}
.contact__inner { position: relative; text-align: center; max-width: 760px; margin-inline: auto; }
.contact__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: 1.04; margin: 0 0 24px; text-wrap: balance;
}
.contact__lede { color: var(--ink-soft); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 50ch; margin: 0 auto 40px; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: center; }
.contact__phone {
  font-family: var(--display); font-size: 1.4rem; color: var(--ink); letter-spacing: .02em;
  border-bottom: 1px solid var(--line); padding-bottom: 3px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.contact__phone:hover { color: var(--gold-bright); border-color: var(--gold); }
/* on the bright inwi-magenta drench, lift accent contrast to pass WCAG */
.contact .eyebrow { color: var(--ink); }
.contact .i-gold { color: var(--gold-bright); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg); padding: clamp(44px, 6vw, 72px) 0; border-top: 1px solid var(--line-soft); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.brand--footer .brand__myth { font-size: 1.7rem; }
.footer__line { color: var(--ink-soft); font-size: .9rem; letter-spacing: .04em; margin: 0; }
.footer__legal { color: var(--muted); font-size: .8rem; margin: 0; }

/* =========================================================
   FAB
   ========================================================= */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: var(--z-fab);
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background-color: var(--gold);
  color: #1c0d07;
  box-shadow: 0 14px 32px -12px rgba(0,0,0,.6), 0 0 0 1px rgba(231,200,121,.25);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s var(--ease), opacity .35s var(--ease);
}
.fab svg { width: 30px; height: 30px; }
.fab:hover { transform: translateY(-3px) scale(1.05); background-color: var(--gold-bright); box-shadow: 0 22px 42px -12px rgba(0,0,0,.7), 0 0 0 1px rgba(231,200,121,.5); }
.fab:active { transform: scale(.96); }
.fab.is-hidden { opacity: 0; transform: translateY(12px) scale(.85); pointer-events: none; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(18,7,16,.9);
  backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage {
  margin: 0; max-width: min(1100px, 92vw); max-height: 86vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transform: scale(.94); filter: blur(6px); opacity: 0;
  transition: transform .5s var(--ease-soft), filter .5s var(--ease-soft), opacity .5s var(--ease-soft);
}
.lightbox.is-open .lightbox__stage { transform: scale(1); filter: blur(0); opacity: 1; }
.lightbox__stage img {
  max-width: 100%; max-height: 76vh; width: auto; height: auto;
  border-radius: var(--r); box-shadow: 0 40px 90px -30px rgba(0,0,0,.9);
}
.lightbox__stage figcaption {
  font-family: var(--display); color: var(--ink); font-size: 1.05rem; letter-spacing: .02em;
}
.lightbox__close {
  position: absolute; top: 18px; right: 22px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(245,236,231,.06); border: 1px solid var(--line-soft); color: var(--ink);
  font-size: 26px; line-height: 1; cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.lightbox__close:hover { background: rgba(245,236,231,.12); border-color: var(--gold); transform: rotate(90deg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(245,236,231,.05); border: 1px solid var(--line-soft); color: var(--ink);
  font-size: 30px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.lightbox__nav:hover { background: rgba(245,236,231,.1); border-color: var(--gold); color: var(--gold-bright); }
.lightbox__nav--prev { left: clamp(10px, 3vw, 36px); }
.lightbox__nav--next { right: clamp(10px, 3vw, 36px); }

/* =========================================================
   REVEAL (scroll-in)
   ========================================================= */
.js [data-reveal] {
  opacity: 0; transform: translateY(26px); filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .craft__grid { grid-template-columns: 1fr; gap: clamp(32px, 6vw, 48px); }
  .craft__lead { position: static; }
  .masonry { column-count: 2; }
  .js .masonry { --cols: 2; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero { align-items: flex-end; }
  .hero__corner { display: none; }
  .gallery__head { gap: 12px; }
}

@media (max-width: 560px) {
  .masonry { column-count: 1; }
  .js .masonry { --cols: 1; }
  .stats { gap: 26px 40px; }
  .contact__actions { gap: 18px; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions .btn { width: auto; }
  .hero__actions { gap: 12px; }
}

@media (max-width: 420px) {
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero__media img { transform: scale(1); animation: none; }
  .identity__logo img { clip-path: inset(0 0 0 0); }
  .identity__glow { opacity: 1; }
  .shot:hover img { transform: none; }
}
