/* ============================================================
   Deck & Sound — decknsound.com
   Premium audio / DJ rental — Bodrum
   Theme  : Dark, minimal, Nyro-inspired
   Accent : warm champagne gradient on near-black
   Type   : Poppins (single family — display / body / labels)
   ============================================================ */

@view-transition { navigation: auto; }

:root{
  /* ── Vermilion scale ──
     50 #FBECE9 · 100 #F4CAC2 · 200 #EDA89B · 300 #E78574 · 400 #E3735E
     500 #D94126 · 600 #B2351F · 700 #8B2A18 · 800 #641E12 · 900 #3D120B · 950 #160704 */

  /* ── Base tones (neutral light) ── */
  --bg:        #fafafa;
  --bg-rgb:    250, 250, 250;
  --surface:   #f2f2f2;   /* neutral cards */
  --surface-2: #ebebeb;
  --surface-3: #e2e2e2;
  --bone:      #ffffff;
  --bone-rgb:  255, 255, 255;
  --deep-sea:  #3d120b;   /* 900 — dark accent block */

  /* ── Text ── */
  --text:      #160704;   /* 950 */
  --text-rgb:  22, 7, 4;
  --text-dim:  rgba(22, 7, 4, .68);
  --text-faint:rgba(22, 7, 4, .46);
  --lead-active: #160704;

  /* Text tones on the dark accent block */
  --on-dark:       #fbece9;
  --on-dark-dim:   rgba(251, 236, 233, .74);
  --on-dark-faint: rgba(251, 236, 233, .50);

  /* ── Lines ── */
  --line:      rgba(22, 7, 4, .14);
  --line-2:    rgba(22, 7, 4, .26);

  /* ── Accent — deep vermilion (readable on light) ── */
  --accent:    #b2351f;   /* 600 */
  --accent-2:  #8b2a18;   /* 700 */
  --accent-rgb:178, 53, 31;
  /* ── Fill colour for buttons / gradients (600 keeps AA with light text) ── */
  --gold:      #b2351f;   /* 600 */
  --gold-rgb:  178, 53, 31;
  --terra:     #8b2a18;   /* 700 */
  --terra-rgb: 139, 42, 24;
  --grad:      linear-gradient(100deg, #e3735e 0%, #d94126 45%, #8b2a18 100%);
  --on-accent: #fbece9;

  /* Ambient glow token */
  --berry2:     #8b2a18;
  --berry2-rgb: 139, 42, 24;

  /* Legacy aliases (kept so existing selectors keep working) */
  --void:        var(--bg);
  --void-rgb:    var(--bg-rgb);
  --oxblood:     var(--surface);
  --oxblood-rgb: 244, 202, 194;
  --rust:        #8b2a18;
  --wheat:       var(--text);
  --wheat-rgb:   var(--text-rgb);
  --wheat-2:     #000000;
  --wheat-dim:   var(--text-dim);
  --wheat-faint: var(--text-faint);
  --signal:      var(--accent);
  --signal-rgb:  var(--accent-rgb);
  --berry:          #b2351f;
  --berry-rgb:      178, 53, 31;
  --berry-contrast: #fbece9;

  /* ── Layout ── */
  --pad:                 clamp(1.25rem, 4.5vw, 4.5rem);
  --gap:                 clamp(1.5rem, 3vw, 3.5rem);
  --strip-w:             64px;
  --section-padding-y:   clamp(5rem, 10vw, 10rem);
  --container-max-width: 1320px;

  /* ── Type ── */
  --f-display: "Poppins", system-ui, sans-serif;
  --f-body:    "Poppins", system-ui, sans-serif;
  --f-mono:    "Poppins", system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);

  --grille:
    repeating-linear-gradient(45deg,  rgba(255,255,255,.02) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 5px);
}

/* ── Dark mode (previous palette) ──────────────────────────── */
:root.dark{
  --bg:        #0b0b0c;
  --bg-rgb:    11, 11, 12;
  --surface:   #121214;
  --surface-2: #17171a;
  --surface-3: #1e1e22;
  --bone:      #d8d1c3;
  --bone-rgb:  216, 209, 195;
  --deep-sea:  #0e1518;

  --text:      #ece7dd;
  --text-rgb:  236, 231, 221;
  --text-dim:  rgba(236, 231, 221, .60);
  --text-faint:rgba(236, 231, 221, .38);
  --lead-active: #fafafa;   /* brighter reveal in dark mode */

  --on-dark:       #ece7dd;
  --on-dark-dim:   rgba(236, 231, 221, .72);
  --on-dark-faint: rgba(236, 231, 221, .48);

  --line:      rgba(233, 228, 218, .10);
  --line-2:    rgba(233, 228, 218, .20);

  --accent:    #c9b27a;   /* champagne gold */
  --accent-2:  #b39a63;
  --accent-rgb:201, 178, 122;
  --gold:      #c9b27a;
  --gold-rgb:  201, 178, 122;
  --terra:     #5b0f1c;   /* deep berry glow */
  --terra-rgb: 91, 15, 28;
  --grad:      linear-gradient(100deg, #dcc793 0%, #c9b27a 45%, #b39a63 100%);
  --on-accent: #0b0b0c;

  --berry2:     #5b0f1c;
  --berry2-rgb: 91, 15, 28;

  --rust:        #2a2a30;
  --oxblood-rgb: 22, 22, 27;
  --wheat-2:     #ffffff;
  --berry:          #c9b27a;
  --berry-rgb:      201, 178, 122;
  --berry-contrast: #0b0b0c;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body{ height: auto; }
.lenis.lenis-smooth{ scroll-behavior: auto !important; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: clamp(1rem, .95rem + .22vw, 1.125rem);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  pointer-events: none;
}
body a, body button, body input, body textarea, body select{ pointer-events: auto; }

/* Film grain + vignette — unifies mixed media, kills the flat "digital" look */
body::before{
  content: ""; position: fixed; inset: 0; z-index: 398; pointer-events: none;
  background: radial-gradient(120% 120% at 50% 42%, transparent 66%, rgba(0, 0, 0, .06) 100%);
}
body::after{
  content: ""; position: fixed; inset: 0; z-index: 399; pointer-events: none;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img{ display: block; max-width: 100%; }
a{ color: inherit; }
/* Ampersand follows the Poppins family */
.amp{ font-family: inherit; font-style: normal; font-weight: inherit; letter-spacing: 0; }
h1, h2, h3{ margin: 0; font-weight: inherit; }
h2{ font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.03em; line-height: 1.05; }
ul, dl, dd, figure, blockquote, p{ margin: 0; padding: 0; }
ul{ list-style: none; }
::selection{ background: rgba(var(--accent-rgb), .28); color: #fff; }
:focus-visible{ outline: 2px solid var(--accent); outline-offset: 3px; }

.skip{
  position: fixed; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--bg); padding: .6rem 1rem;
}
.skip:focus{ left: 0; }
.noscript{
  position: fixed; inset: auto 1rem 1rem 1rem; z-index: 220;
  background: var(--surface-2); color: var(--text);
  padding: .8rem 1rem; border: 1px solid var(--line); font-size: .95rem;
}

/* Editorial 12-column grid */
.grid, .lead, .svc, .work, .kit{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--gap);
  padding-left: var(--pad); padding-right: var(--pad);
}
.grid, .lead, .svc, .work, .kit,
.cta, .foot, .gallery-page,
.stats, .faq{
  max-width: var(--container-max-width);
  margin-inline: auto;
}

/* Section eyebrow headings */
.svc__head, .work__head, .kit__head{
  grid-column: 1 / -1; align-self: start;
  font-family: var(--f-mono);
  font-size: .78rem; line-height: 1.2;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  padding-bottom: .7rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px){
  .svc__head, .work__head, .kit__head{ grid-column: 1 / 3; border-bottom: 0; margin-bottom: 0; }
}

/* ── Curtain loader ────────────────────────────────────────── */
.curtain{
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center; pointer-events: none;
  opacity: 1; visibility: visible;
  transition: opacity .9s ease, visibility .9s ease;
  background: var(--bg);
  background-image: var(--grille);
  overflow: hidden;
}
.curtain__slats{ position: absolute; inset: 0; display: flex; overflow: hidden; }
.curtain__slats i{
  flex: 1 1 0; height: 100%;
  background: var(--surface);
  transform-origin: center bottom; transform: translateY(0) scaleY(1);
  opacity: 1;
  transition: transform .9s var(--ease), opacity .9s var(--ease);
}
.curtain__slats i:nth-child(1){ transition-delay: 0s; }
.curtain__slats i:nth-child(2){ transition-delay: .03s; }
.curtain__slats i:nth-child(3){ transition-delay: .06s; }
.curtain__slats i:nth-child(4){ transition-delay: .09s; }
.curtain__slats i:nth-child(5){ transition-delay: .12s; }
.curtain__slats i:nth-child(6){ transition-delay: .15s; }
.curtain__slats i:nth-child(7){ transition-delay: .18s; }
.curtain__slats i:nth-child(8){ transition-delay: .21s; }
.curtain__mark{ position: relative; z-index: 2; text-align: center; transition: opacity .6s ease, transform .6s ease; }
.curtain__word{
  display: block; font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.75rem); color: var(--text);
  letter-spacing: .18em; text-transform: uppercase;
}
.curtain__meter{ display: block; width: clamp(140px, 24vw, 240px); height: 2px; margin: 1.1rem auto 0; background: rgba(255,255,255,.14); overflow: hidden; }
.curtain__meter b{ display: block; width: 0; height: 100%; background: var(--grad); transition: width .7s ease; }
body.is-ready .curtain{ opacity: 0; visibility: hidden; }
body.is-ready .curtain__slats i{ transform: translateY(80px) scaleY(0); opacity: 0; }
body.is-ready .curtain__mark{ opacity: 0; transform: translateY(8px); }
body.is-ready .curtain__meter b{ width: 100%; }

/* ── Scroll fader ──────────────────────────────────────────── */
.strip{
  position: fixed; left: 0; top: 0; z-index: 40;
  width: var(--strip-w); height: 100vh;
  display: none; justify-content: center; padding: 7rem 0 3rem;
  border-right: 1px solid var(--line);
}
.strip__track{ position: relative; width: 1px; background: var(--line); }
.strip__fader{
  position: absolute; left: 50%; top: 0; width: 22px; height: 7px; margin-left: -11px;
  background: var(--accent); box-shadow: 0 0 16px rgba(var(--accent-rgb), .7);
  transition: top .08s linear;
}
.topbar{ position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 60; background: rgba(255,255,255,.08); }
.topbar span{ display: block; height: 100%; width: 0; background: var(--grad); }
@media (min-width: 1100px){ .strip{ display: flex; } .topbar{ display: none; } }

/* ── Header ────────────────────────────────────────────────── */
.head{
  position: fixed; inset: 0 0 auto 0; z-index: 70;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 1.25rem; padding: 1.1rem var(--pad);
  background: transparent;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .3s var(--ease);
}
/* Solid once scrolled off the dark hero */
.head.is-solid{
  padding-block: .8rem;
  background: linear-gradient(to bottom, rgba(var(--bg-rgb), .92) 0%, rgba(var(--bg-rgb), .72) 60%, rgba(var(--bg-rgb), 0) 100%);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.head__logo{
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; margin-right: auto;
  width: clamp(200px, 14vw, 380px); min-width: 92px;
}
.head__logo img{
  display: block; width: 100%; height: auto; object-fit: contain;
  /* light logo over the dark hero */
  filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0,0,0,.35));
  transition: filter .4s var(--ease);
}
:root:not(.dark) .head.is-solid .head__logo img{ filter: drop-shadow(0 6px 18px rgba(36, 26, 18, .18)); }
.head__nav{ display: flex; gap: 2.25rem; margin-left: auto; }
.head__nav a{
  position: relative; text-decoration: none;
  font-size: .78rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244, 236, 221, .82); transition: color .3s var(--ease);
}
.head.is-solid .head__nav a{ color: var(--text-dim); }
.head__nav a::after{
  content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.head__nav a:hover{ color: #fff; }
.head.is-solid .head__nav a:hover{ color: var(--text); }
.head__nav a:hover::after{ transform: scaleX(1); transform-origin: left; }
.head__nav a.is-current{ color: #fff; }
.head.is-solid .head__nav a.is-current{ color: var(--text); }
.head__nav a.is-current::after{ transform: scaleX(1); transform-origin: left; }

.head__right{ display: flex; align-items: center; gap: 1rem; }
.lang{ display: flex; gap: .4rem; }
.lang button{
  background: rgba(244, 236, 221, .08);
  border: 1px solid rgba(244, 236, 221, .28);
  cursor: pointer; padding: .45rem .8rem;
  font-family: inherit; font-size: .9rem; color: rgba(244, 236, 221, .85);
  border-radius: .65rem;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .18s ease;
}
.head.is-solid .lang button{ background: rgba(36,26,18,.04); border-color: var(--line); color: var(--text-dim); }
.lang button:hover{ color: #fff; border-color: rgba(244,236,221,.5); transform: translateY(-1px); }
.head.is-solid .lang button:hover{ color: var(--text); border-color: var(--line-2); }
.lang button.is-on,
.head.is-solid .lang button.is-on{ color: var(--on-accent); background: var(--accent); border-color: var(--accent); }

.burger{ display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.burger i{ display: block; width: 22px; height: 1px; background: #f4ecdd; transition: background .4s var(--ease); }
.head.is-solid .burger i{ background: var(--text); }

/* Theme switch (sliding sun/moon, scoped to .ds-switch) */
/* display:inline-block below would otherwise beat the hidden attribute that
   main.js sets while the DS_DARK_MODE master switch is off. */
.ds-switch[hidden]{ display: none; }
.ds-switch{
  --sw: 2.5rem; --visiblePosition: 25%; --hiddenPosition: 115%;
  position: relative; display: inline-block; flex: 0 0 auto;
  pointer-events: auto;   /* body sets pointer-events:none; labels need this re-enabled */
  width: var(--sw); height: var(--sw); cursor: pointer;
  background: rgba(244, 236, 221, .10);
  border: 1px solid rgba(244, 236, 221, .30);
  border-radius: .7rem; box-shadow: 0 4px 10px rgba(0,0,0,.15);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  color: rgba(244, 236, 221, .92);
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.head.is-solid .ds-switch{ background: rgba(128, 110, 90, .12); border-color: var(--line-2); color: var(--text); }
.ds-switch input{ position: absolute; opacity: 0; width: 0; height: 0; }
.ds-switch .slider{ position: absolute; overflow: hidden; inset: 0; }
.ds-switch .icon-wrapper{ position: absolute; display: flex; align-items: center; justify-content: space-between; flex-direction: column; height: 100%; width: 100%; }
.ds-switch svg{ height: calc(var(--sw) / 2); width: calc(var(--sw) / 2); }
.ds-switch svg *{ fill: currentColor; transition: fill .2s ease-in-out; }
.ds-switch .sun, .ds-switch .moon{ transition: transform .15s ease-out; }
.ds-switch .sun{ transform: translateY(var(--visiblePosition)); }
.ds-switch .moon{ transform: translateY(var(--hiddenPosition)); }
.ds-switch input:not(:checked) + .slider .sun{ transition-delay: .2s; transform: translateY(var(--visiblePosition)); }
.ds-switch input:not(:checked) + .slider .moon{ transform: translateY(var(--hiddenPosition)); }
.ds-switch input:checked + .slider .moon{ transition-delay: .2s; transform: translateY(var(--visiblePosition)); }
.ds-switch input:checked + .slider .sun{ transform: translateY(var(--hiddenPosition)); }
@media (pointer: fine){ .ds-switch input:focus-visible + .slider{ outline: 1px solid var(--accent); outline-offset: 4px; border-radius: .7rem; } }
.burger i + i{ margin-top: 6px; }

@media (max-width: 899px){
  /* transparent over the hero photo; only goes solid after scrolling past it */
  .head{ gap: .6rem; padding: .9rem var(--pad); background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .head.is-solid{
    background: linear-gradient(to bottom, rgba(var(--bg-rgb), .95) 0%, rgba(var(--bg-rgb), .82) 65%, rgba(var(--bg-rgb), 0) 100%);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  }
  .head__logo{ width: clamp(140px, 30vw, 220px); min-width: 110px; }
  .head__right{ gap: .55rem; }
  .lang button{ padding: .4rem .6rem; font-size: .82rem; }
  .ds-switch{ --sw: 2.2rem; }
  .burger{ display: block; padding: .3rem; }
  .head__nav{
    position: fixed; left: 0; right: 0; z-index: 9999;
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    gap: 1.25rem; padding: .875rem var(--pad);
    background: rgba(var(--bg-rgb), .96);
    opacity: 0; visibility: hidden; transform: translateY(-6px) scaleY(.99);
    max-height: 70vh; overflow: auto;
    border-bottom: 1px solid var(--line);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s var(--ease);
  }
  .head__nav.is-open{ opacity: 1; visibility: visible; transform: translateY(0) scaleY(1); backdrop-filter: blur(10px); }
  .head__nav a{ font-size: 1.25rem; color: var(--text); }
}
/* Desktop: logo left · nav centered · actions right */
@media (min-width: 900px){
  .head{ display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
  .head__logo{ justify-self: start; margin-right: 0; }
  .head__nav{ justify-self: center; margin: 0; }
  .head__right{ justify-self: end; }
}
@media (min-width: 900px) and (max-width: 1099px){ .head__logo{ width: clamp(200px, 14vw, 260px); } .head__nav{ gap: 1.6rem; } }
@media (min-width: 1100px){ .head__logo{ width: clamp(220px, 12vw, 320px); } }
body.menu-open{ overflow: hidden; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn, .btn--solid, .btn--hero, .btn-submit{
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.4rem; padding: 0 1.7rem;
  font-size: .95rem; font-weight: 600; border-radius: 2rem;
  text-decoration: none; cursor: pointer; box-sizing: border-box;
  background: transparent; color: var(--text);
  border: 1px solid var(--line-2);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease);
}
.btn:hover, .btn-submit:hover{ border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--solid, .btn--hero{
  background: var(--gold); color: #241a12; border-color: transparent; font-weight: 700;
}
.btn--solid:hover, .btn--hero:hover{ transform: translateY(-2px); box-shadow: 0 16px 36px rgba(var(--gold-rgb), .35); color: #241a12; }
.btn:hover, .btn-submit:hover{ border-color: var(--accent); color: var(--accent); }

/* ── Hero — MOBILE FIRST: whole photo, never cropped ───────── */
.hero{
  position: relative;
  display: flex; flex-direction: column;
  padding: 0 0 clamp(2.5rem, 7vh, 3.5rem);
  overflow: hidden; isolation: isolate;
  background: var(--bg);
  pointer-events: none;
}
.hero a, .hero button{ pointer-events: auto; }

/* Media block — full image, no crop on phones */
.hero__media{ position: relative; z-index: 0; width: 100%; overflow: hidden; }
.hero__media img,
.hero__media video{
  display: block; width: 100%; height: auto;      /* whole frame, no cover-crop */
  aspect-ratio: 1672 / 941;
  filter: brightness(.86) contrast(1.03) saturate(.98);
}
.hero__scrim{
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,11,12,.62) 0%, rgba(11,11,12,.10) 26%, rgba(11,11,12,.20) 70%, var(--bg) 100%),
    radial-gradient(120% 80% at 88% 0%, rgba(var(--accent-rgb), .10), transparent 55%);
}

/* Copy — below the photo on phones, overlaid on desktop */
.hero__inner{
  position: relative; z-index: 2; text-align: left; max-width: 62rem;
  padding: clamp(1.5rem, 5vw, 2.25rem) var(--pad) 0;
}
.hero__eyebrow{
  font-family: var(--f-mono); font-size: .78rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem; display: inline-flex; align-items: center; gap: .7rem;
}
.hero__eyebrow::before{ content: ""; width: 28px; height: 1px; background: var(--gold); }
.hero__title{
  font-family: "Playfair Display", Georgia, serif; font-weight: 500;
  font-size: clamp(3rem, 7.8vw, 7.2rem);
  line-height: 1.05; letter-spacing: -.01em; color: var(--text);
  margin-bottom: 0; user-select: none; text-wrap: balance;
}
.hero__line{ display: block; overflow: hidden; padding-bottom: .04em; }
.hero__line > span{ display: block; transform: translateY(105%); animation: hero-rise .95s var(--ease) forwards; }
.hero__line:nth-child(1) > span{ animation-delay: .70s; }
.hero__line:nth-child(2) > span{ animation-delay: .84s; }
@keyframes hero-rise{ to{ transform: translateY(0); } }
body.no-motion .hero__line > span{ transform: none; animation: none; }

.hero__aside{ max-width: 42rem; }
/* Tagline with the short rule above it (mockup) */
.hero__tag{
  position: relative; margin: 0 0 1.9rem; padding-top: 1.6rem;
  color: var(--text); font-size: clamp(.78rem, 1.1vw, .9rem);
  font-weight: 400; letter-spacing: .26em; text-transform: uppercase;
}
.hero__tag::before{
  content: ""; position: absolute; top: 0; left: 0;
  width: 64px; height: 1px; background: var(--line-2);
}
.hero__actions{ display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* WhatsApp — brand green */
.btn--wa{ background: #25D366; color: #08301a; border-color: transparent; }
.btn--wa:hover{ background: #1FBF5A; color: #08301a; border-color: transparent; box-shadow: 0 16px 36px rgba(37, 211, 102, .30); }

/* Hero CTA — outlined, squared, letter-spaced (mockup) */
.btn--hero{
  background: transparent; color: var(--text);
  border: 1px solid var(--line-2);
  border-radius: 2px; min-height: 3.5rem; padding: 0 2rem;
  font-size: .8rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
}
.btn--hero:hover{
  background: rgba(var(--text-rgb), .08); color: var(--text);
  border-color: var(--text); box-shadow: none; transform: none;
}
.btn__arrow{ width: 1.15em; height: 1.15em; margin-left: 1rem; flex: 0 0 auto; transition: transform .3s var(--ease); }
.btn--hero:hover .btn__arrow{ transform: translateX(5px); }

/* Hero foot — scroll cue + socials */
.hero__foot{
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: clamp(1.5rem, 5vh, 2.25rem) var(--pad) 0;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
}
.hero__scroll{
  display: inline-flex; align-items: center; gap: .9rem; text-decoration: none;
  color: var(--text-faint); transition: color .3s var(--ease);
}
.hero__scroll:hover{ color: var(--accent); }
.hero__scroll-line{ display: block; width: 34px; height: 1px; background: currentColor; opacity: .6; }
.hero__scroll-text{ display: flex; flex-direction: column; gap: .35rem; line-height: 1; }
.hero__social{ display: inline-flex; align-items: center; gap: .7rem; color: var(--text-faint); }
.hero__social > span{ display: none; }
.hero__social a{ display: grid; place-items: center; width: 2rem; height: 2rem; border: 1px solid var(--line-2); border-radius: 50%; color: inherit; transition: color .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease); }
.hero__social a:hover{ color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.hero__social svg{ width: 1rem; height: 1rem; }

/* ── Phones: full-screen photo, copy overlaid (like desktop) ─ */
@media (max-width: 899px){
  .hero{
    min-height: 100svh;
    display: grid; grid-template-rows: 1fr auto;
    padding: clamp(7rem, 22vw, 9rem) var(--pad) clamp(2rem, 6vh, 3rem);
  }
  .hero__media{ position: absolute; inset: 0; z-index: 0; padding-top: 0; background: #0b0b0c; }
  .hero__media img,
  .hero__media video{
    position: absolute; inset: 0;
    width: 100%; height: 100%; aspect-ratio: auto;
    object-fit: cover; object-position: center;    /* portrait file is already framed */
    filter: brightness(.82) contrast(1.03) saturate(.98);
  }
  .hero__scrim{
    background:
      linear-gradient(180deg, rgba(11,11,12,.70) 0%, rgba(11,11,12,.22) 16%, rgba(11,11,12,.10) 45%, rgba(11,11,12,.62) 72%, rgba(11,11,12,.88) 100%),
      linear-gradient(90deg, rgba(11,11,12,.42) 0%, rgba(11,11,12,.06) 60%, transparent 100%);
  }

  /* copy overlaid bottom-left, clear of the DJ */
  .hero__inner{
    align-self: end; margin-inline: 0; max-width: 100%;
    padding: 0 0 clamp(1rem, 3vh, 1.75rem);
  }
  .hero__title{
    color: #f4ecdd; text-shadow: 0 2px 24px rgba(0,0,0,.45);
    font-size: clamp(2rem, 9.5vw, 3rem); line-height: 1.1; letter-spacing: -.01em;
  }
  .hero__tag{
    color: rgba(244, 236, 221, .92); padding-top: 1.1rem; margin-bottom: 1.4rem;
    font-size: .66rem; letter-spacing: .2em;
  }
  .hero__tag::before{ width: 100%; max-width: 16rem; background: rgba(244, 236, 221, .55); }

  /* CTA as an underlined link (reference style) */
  .btn--hero{
    border: 0; border-bottom: 1px solid rgba(244, 236, 221, .7);
    border-radius: 0; padding: 0 0 .7rem; min-height: 0;
    color: #f4ecdd; font-size: .78rem; letter-spacing: .2em;
  }
  .btn--hero:hover{ background: transparent; border-color: #f4ecdd; }
  .btn__arrow{ margin-left: 1.5rem; }

  /* bottom: compact scroll cue under the copy, left aligned */
  .hero__foot{ align-self: end; justify-content: flex-start; padding: 0; }
  .hero__social{ display: none; }
  .hero__scroll{
    flex-direction: row; align-items: center; gap: .7rem;
    color: rgba(244, 236, 221, .7);
  }
  .hero__scroll-line{ width: 28px; height: 1px; opacity: .7; }
  .hero__scroll-text{ flex-direction: row; gap: .5rem; letter-spacing: .22em; font-size: .64rem; }
}

/* Desktop: full-bleed cinematic hero, copy overlaid bottom-left */
@media (min-width: 900px){
  .hero{
    min-height: 100svh;
    display: grid; grid-template-rows: 1fr auto;
    padding: clamp(6rem, 12vw, 9rem) var(--pad) clamp(2.5rem, 6vh, 4rem);
  }
  .hero__media{ position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #0b0b0c; }
  .hero__media img,
  .hero__media video{
    position: absolute; inset: 0;
    width: 100%; height: 116%; aspect-ratio: auto;   /* overscan so parallax never opens a gap */
    object-fit: cover; object-position: center 45%;
    will-change: transform;
    filter: brightness(.72) contrast(1.04) saturate(.95);
  }
  .hero__scrim{
    background:
      linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.10) 28%, rgba(11,11,12,.72) 100%),
      linear-gradient(90deg, rgba(11,11,12,.70) 0%, rgba(11,11,12,.14) 55%, transparent 80%),
      radial-gradient(140% 90% at 84% -5%, rgba(var(--accent-rgb), .12), transparent 55%);
  }
  .hero__inner{ align-self: center; justify-self: start; text-align: left; max-width: 44rem; padding: 0; margin-inline: 0; }
  /* copy sits over the photo → force light ink regardless of theme */
  .hero__title{ color: #f4ecdd; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
  .hero__tag{ color: #f4ecdd; }
  .hero__tag::before{ background: rgba(244, 236, 221, .8); }
  .btn--hero{ color: #f4ecdd; border-color: rgba(244, 236, 221, .75); }
  .btn--hero:hover{ background: rgba(244, 236, 221, .10); color: #fff; border-color: #f4ecdd; }
  .hero__foot{ align-self: end; padding: clamp(2rem, 5vh, 3rem) 0 0; }
  /* vertical scroll cue like the mockup */
  .hero__scroll{ flex-direction: column; align-items: flex-start; gap: .8rem; color: rgba(244, 236, 221, .62); }
  .hero__scroll-line{ width: 1px; height: 46px; }
  .hero__social{ color: rgba(244, 236, 221, .62); }
  .hero__social > span{ display: inline; margin-right: .3rem; }
  .hero__social a{ border-color: rgba(244, 236, 221, .3); }
  .hero__scroll:hover, .hero__social a:hover{ color: var(--gold); }
  .hero__social a:hover{ border-color: var(--gold); }
}

/* ── Manifesto — the one light "Bone" section ──────────────── */
.lead{
  position: relative; isolation: isolate;
  padding-block: clamp(5rem, 12vw, 9rem); row-gap: 2rem;
  color: var(--text);
  border-top: 1px solid var(--line);
}
.lead::before{
  content: "01 — MANIFESTO"; position: absolute; top: clamp(2rem, 5vh, 3.5rem);
  left: var(--pad); font-family: var(--f-mono); font-size: .72rem; letter-spacing: .22em;
  color: var(--text-faint);
}
.lead__text{
  grid-column: 1 / -1; font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 3rem); line-height: 1.32; letter-spacing: -.02em;
  color: var(--text); max-width: 62rem; text-wrap: pretty;
}
.lead__text .word{ color: var(--text-faint); transition: color .3s var(--ease); }
.lead__note{ grid-column: 1 / -1; color: var(--text-dim); font-family: var(--f-mono); font-size: .8rem; letter-spacing: .06em; }
@media (min-width: 900px){
  .lead__text{ grid-column: 5 / 13; }   /* off-center to the right third */
  .lead__note{ grid-column: 1 / 4; grid-row: 1; align-self: end; }
}

/* ── Reel — venue slider / mobile-first performance ─────────── */
.reel {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.reel__label {
  margin-bottom: 1.35rem;
  font-family: var(--f-mono);
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.reel__viewport {
  width: 100%;
  overflow: hidden;
}

.reel__track {
  display: flex;
  align-items: center;
  width: max-content;
  transform: translate3d(0, 0, 0);
  animation: work-scroll 13s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.reel__item {
  flex: 0 0 auto;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
}

.reel__logo {
  display: block;
  width: 240px;
  height: auto;
  max-width: none;
  max-height: 120px;
  object-fit: contain;
  filter: brightness(0);
  opacity: .52;
}

.reel__item--boost {
  width: 300px;
}

.reel__item--boost .reel__logo {
  width: 255px;
  max-height: 125px;
}

.reel__item--boost-strong {
  width: 320px;
}

.reel__item--boost-strong .reel__logo {
  width: 275px;
  max-height: 135px;
}

.reel__item:hover .reel__logo {
  opacity: 1;
  transform: scale(1.03);
}

@media (hover: hover) {
  .reel:hover .reel__track {
    animation-play-state: paused;
  }
}

@media (max-width: 767px) {
  .reel__label {
    padding-inline: var(--pad);
    text-align: left;
  }

  .reel__track {
    animation-duration: 13s;
  }

  .reel__item {
    width: 280px;
    padding-inline: 20px;
  }

  .reel__logo {
    width: 240px;
    max-height: 120px;
  }

  .reel__item--boost {
    width: 290px;
  }

  .reel__item--boost .reel__logo {
    width: 250px;
    max-height: 125px;
  }

  .reel__item--boost-strong {
    width: 300px;
  }

  .reel__item--boost-strong .reel__logo {
    width: 260px;
    max-height: 130px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .reel__track {
    animation-duration: 16s;
  }

  .reel__item {
    width: 300px;
    padding-inline: 24px;
  }

  .reel__logo {
    width: 255px;
    max-height: 125px;
  }
}

@media (min-width: 1200px) {
  .reel__track {
    animation-duration: 20s;
  }

  .reel__item {
    width: 340px;
    padding-inline: 28px;
  }

  .reel__logo {
    width: 270px;
    max-height: 135px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel__track {
    animation: none;
    transform: none;
  }
}

body.no-motion .reel__track {
  animation: none;
}

@keyframes work-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ── Gallery page ──────────────────────────────────────────── */
.gallery-page{ padding-block: var(--section-padding-y); padding-left: var(--pad); padding-right: var(--pad); }
.gallery-page__head{ font-family: var(--f-display); font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; letter-spacing: -.03em; }
.gallery-page__lead{ margin-top: .85rem; max-width: 40rem; color: var(--text-dim); }
.grid-gallery{ display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--gap); margin-top: clamp(2.5rem, 6vh, 4rem); }
.gitem{ opacity: 0; transform: translateY(40px) scale(.96); }
.gitem.is-visible{ opacity: 1; transform: translateY(0) scale(1); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.gitem__frame{ position: relative; display: block; width: 100%; overflow: hidden; border: 1px solid var(--line); padding: 0; cursor: pointer; background: var(--surface); aspect-ratio: 4 / 3; border-radius: 16px; }
.gitem__frame img{ width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); filter: grayscale(.25) brightness(.92); transition: transform 1.1s var(--ease), filter .8s var(--ease); }
.gitem.is-visible .gitem__frame img{ transform: scale(1.02); filter: grayscale(.05) brightness(1); }
.gitem__frame:hover img{ filter: none; transform: scale(1.06); }
.gitem__shine{ position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), .22) 45%, transparent 100%); transform: translateX(-140%) skewX(-18deg); transition: transform 1.1s var(--ease); }
.gitem.is-visible .gitem__shine{ transform: translateX(140%) skewX(-18deg); }
.gitem figcaption{ padding-top: .7rem; font-size: .875rem; color: var(--text-faint); font-family: var(--f-mono); opacity: 0; transform: translateY(8px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.gitem.is-visible figcaption{ opacity: 1; transform: translateY(0); }
body.no-motion .gitem{ opacity: 1; transform: none; }
body.no-motion .gitem__shine{ display: none; }

.lightbox{ position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 2rem; background: rgba(0,0,0,.9); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease); }
.lightbox.is-open{ opacity: 1; visibility: visible; }
.lightbox__figure{ max-width: min(90vw, 1100px); max-height: 88vh; margin: 0; }
.lightbox__img{ display: block; width: 100%; height: auto; max-height: 78vh; object-fit: contain; border-radius: 10px; }
.lightbox__caption{ padding-top: .85rem; text-align: center; font-size: .9375rem; color: rgba(244,236,221,.75); font-family: var(--f-mono); }
.lightbox__close{ position: absolute; top: 1.25rem; right: 1.5rem; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #f4ecdd; font-size: 1.5rem; line-height: 1; cursor: pointer; transition: border-color .3s var(--ease), color .3s var(--ease); }
.lightbox__close:hover{ border-color: var(--accent); color: var(--accent); }

/* ── Words — one testimonial, Deep Sea tone ────────────────── */
.quote{ padding: calc(var(--section-padding-y) * 1.1) var(--pad); color: var(--on-dark); background-color: var(--deep-sea); background-image: radial-gradient(80% 130% at 90% 100%, rgba(var(--gold-rgb), .16), transparent 55%), radial-gradient(70% 120% at 10% 6%, rgba(var(--terra-rgb), .40), transparent 55%); position: relative; overflow: hidden; border-block: 1px solid var(--line); }
.quote blockquote{ position: relative; z-index: 1; max-width: 50rem; margin-inline: auto; text-align: center; }
.quote p{ font-family: var(--f-display); font-weight: 400; font-size: clamp(1.6rem, 3.6vw, 2.8rem); line-height: 1.28; letter-spacing: -.02em; margin-bottom: 1.6rem; color: var(--on-dark); }
.quote p::before{ content: "\201C"; color: var(--gold); }
.quote p::after{ content: "\201D"; color: var(--gold); }
.quote cite{ font-style: normal; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-faint); font-family: var(--f-mono); }

/* ── Kit — spec list ───────────────────────────────────────── */
.kit{ padding-block: var(--section-padding-y); row-gap: 1.75rem; }
.kit__lead{ grid-column: 1 / -1; color: var(--text-dim); max-width: 40rem; }
.specs{ grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.specs > div{ display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); transition: padding-left .3s var(--ease), color .3s var(--ease); }
.specs > div:hover{ padding-left: .75rem; }
.specs dt{ font-family: var(--f-display); font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--text); letter-spacing: -.01em; }
.specs dd{ font-family: var(--f-mono); font-size: .8125rem; color: var(--accent); text-align: right; }
@media (min-width: 900px){ .kit__lead{ grid-column: 3 / 8; } .specs{ grid-column: 3 / 13; } }

/* ── FAQ (accordion) ───────────────────────────────────────── */
.faq{ padding: var(--section-padding-y) var(--pad); }
.faq__head{ font-family: var(--f-mono); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.faq__title{ font-family: var(--f-display); font-weight: 700; font-size: clamp(1.9rem, 4.5vw, 3.2rem); letter-spacing: -.03em; margin-bottom: clamp(2rem, 5vh, 3.5rem); max-width: 32rem; }
.faq__list{ border-top: 1px solid var(--line); counter-reset: faq; }
.faq__item{ border-bottom: 1px solid var(--line); }
.faq__q{
  width: 100%; display: flex; align-items: baseline; justify-content: flex-start; gap: 1.2rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 1.5rem 0; color: var(--text); counter-increment: faq;
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1.1rem, 2.4vw, 1.5rem); letter-spacing: -.01em;
  transition: color .3s var(--ease);
}
.faq__q::before{
  content: counter(faq, decimal-leading-zero);
  flex: 0 0 auto; font-family: var(--f-mono); font-weight: 400; font-size: .78rem;
  letter-spacing: .1em; color: var(--accent); transform: translateY(.15em);
}
.faq__q > span:first-of-type{ margin-right: auto; }
.faq__q:hover{ color: var(--accent); }
.faq__icon{ flex: 0 0 auto; width: 1.6rem; height: 1.6rem; position: relative; }
.faq__icon::before, .faq__icon::after{ content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: currentColor; transform: translate(-50%,-50%); transition: transform .35s var(--ease); }
.faq__icon::after{ transform: translate(-50%,-50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after{ transform: translate(-50%,-50%) rotate(0deg); }
.faq__a{ overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.faq__a p{ padding: 0 0 1.5rem; color: var(--text-dim); max-width: 52rem; line-height: 1.8; }

/* ── Contact ───────────────────────────────────────────────── */
.cta{ padding: var(--section-padding-y) var(--pad); display: grid; justify-items: center; text-align: center; background-image: radial-gradient(60% 70% at 50% 118%, rgba(var(--berry2-rgb), .20), transparent 60%); }
.cta__label{ font-family: var(--f-mono); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.cta__title{ font-family: var(--f-display); font-weight: 600; font-size: clamp(2.4rem, 7.5vw, 6rem); line-height: .98; letter-spacing: -.03em; margin-bottom: 1.2rem; max-width: 20ch; text-wrap: balance; }
.cta__subtitle{ font-family: var(--f-mono); font-weight: 400; color: var(--text-faint); max-width: 34rem; margin-bottom: 2rem; letter-spacing: .1em; font-size: .82rem; }
/* Divider between quick actions and the message form */
.cta__divider{ width: 100%; max-width: 640px; margin: clamp(2.5rem, 6vh, 3.5rem) auto 0; display: flex; align-items: center; gap: 1rem; color: var(--text-faint); }
.cta__divider::before, .cta__divider::after{ content: ""; flex: 1; height: 1px; background: var(--line); }
.cta__divider span{ font-family: var(--f-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.contact-form-wrap{ width: 100%; max-width: 640px; margin-top: 1.75rem; margin-inline: auto; text-align: left; }
.contact-form{ width: 100%; display: flex; flex-direction: column; gap: 1rem; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: stretch; }
@media (max-width: 899px){ .form-row{ grid-template-columns: 1fr; } }
.contact-form input, .contact-form textarea, .form-row input{
  width: 100%; box-sizing: border-box; border-radius: 1.1rem; padding: 1rem 1.25rem;
  background: var(--surface); border: 1px solid var(--line); color: var(--text); font-family: var(--f-body);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.contact-form input::placeholder, .contact-form textarea::placeholder{ color: var(--text-faint); }
.contact-form input:focus, .contact-form textarea:focus{ outline: none; border-color: var(--accent); background: var(--surface-2); }
.form-row input{ min-height: 4rem; }
.contact-form textarea{ min-height: 13rem; resize: vertical; }
.btn-submit{ width: 100%; max-width: none; text-transform: uppercase; letter-spacing: .14em; font-family: var(--f-body); }
.contact-form button.is-loading{ opacity: .65; cursor: wait; }
.form-status{ margin-bottom: 1rem; font-size: .95rem; line-height: 1.4; color: var(--text); min-height: 1.4em; opacity: 0; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease; }
.form-status--visible{ opacity: 1; transform: translateY(0); }
.form-status--success{ color: var(--accent); }
.form-status-letters{ display: inline-flex; gap: .05em; white-space: nowrap; }
.form-status-letter{ display: inline-block; opacity: 0; transform: translateX(-25px); }
.form-status-letter.animate{ animation: letter-slide .45s ease forwards; }
@keyframes letter-slide{ 0%{ opacity: 0; transform: translateX(-25px); } 60%{ opacity: 1; transform: translateX(8px); } 100%{ opacity: 1; transform: translateX(0); } }
.form-status-check{ display: inline-flex; align-items: center; justify-content: center; width: 1.4em; height: 1.4em; margin-left: .8rem; border-radius: 50%; background: rgba(var(--accent-rgb), .18); color: var(--accent); font-weight: 700; opacity: 0; transform: scale(.4); }
.form-status-check.show{ opacity: 1; transform: scale(1); animation: check-pop .32s ease forwards; }
@keyframes check-pop{ 0%{ transform: scale(.4); opacity: 0; } 70%{ transform: scale(1.2); opacity: 1; } 100%{ transform: scale(1); opacity: 1; } }
.form-status--error{ color: #ff8a8a; }
.cta__acts{ display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 1.5rem; }

/* ── Scroll to top ─────────────────────────────────────────── */
.scroll-top{ position: fixed; left: 1rem; bottom: 1rem; z-index: 90; width: 2.9rem; height: 2.9rem; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(var(--bg-rgb), .8); color: var(--text); text-decoration: none; border-radius: 50%; backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); }
.scroll-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover{ color: var(--accent); border-color: var(--accent); }
.scroll-top span{ font-size: 1.1rem; line-height: 1; }

/* ── Footer ────────────────────────────────────────────────── */
.foot {
  width: 100%;
  max-width: none;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.25rem 2rem;

  padding: 2.25rem var(--pad) 2.5rem;

  border-top: 1px solid var(--line);
  background: var(--surface);

  color: var(--text-faint);
}

.foot__legal {
  margin: 0;
  min-width: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .92rem;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--text-dim);
}

.foot__legal a {
  color: var(--text);
  text-decoration: none;
  transition: color .3s var(--ease);
}

.foot__legal a:hover {
  color: var(--accent);
}

/* =========================================================
   FOOTER ARCADE BUTTON
   ========================================================= */

.foot__arcade {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
  white-space: nowrap;

  padding: .5rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: 2rem;

  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text);
  text-decoration: none;

  transition:
    border-color .3s var(--ease),
    color .3s var(--ease),
    transform .25s var(--ease);
}

.foot__arcade svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.foot__arcade:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* =========================================================
   FOOTER SOCIAL ICONS
   ========================================================= */

.foot__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}

.foot__links a {
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 24px;

  color: var(--text);
  text-decoration: none;

  transition:
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.foot__links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}


/* Every icon uses the exact same visual box */
.foot__links svg {
  display: block;

  width: 20px;
  height: 20px;

  flex: 0 0 20px;

  overflow: visible;
}


/* WhatsApp has a 640×640 viewBox,
   but visually match the other 20px icons */
.foot__links a[aria-label="WhatsApp"] svg {
  width: 25px;
  height: 25px;
}


/* Keep all icons optically centered */
.foot__links a[aria-label="Email"] svg,
.foot__links a[aria-label="Instagram"] svg,
.foot__links a[aria-label="WhatsApp"] svg {
  transform-origin: center;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 599px) {

  .foot {
    grid-template-columns: 1fr auto;
    row-gap: 1rem;
  }

  .foot__legal {
    grid-column: 1 / -1;
    white-space: normal;
    text-align: center;
  }

  .foot__arcade {
    justify-self: start;
  }

  .foot__links {
    justify-self: end;
  }
}

@media (max-width: 819px) {

  .foot__links {
    gap: 0.8rem;
  }

  .foot__links a {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .foot__links svg {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }
}


/* Very small screens */
@media (max-width: 380px) {

  .foot__links {
    gap: 0.65rem;
  }

  .foot__links a {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .foot__links svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}
/* ── Motion / reveal ───────────────────────────────────────── */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--d, 0) * 100ms); }
.reveal.in, .reveal.is-visible{ opacity: 1; transform: translateY(0); }
.svc__grid .reveal{ transition-delay: 0s; }
body.no-motion .reveal{ opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal{ opacity: 1; transform: none; }
  .reel__track{ animation: none; transform: none; }
}

/* ── Instagram follow pop-up (themed, dismissible) ─────────── */
.ig-pop{
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem); z-index: 120;
  width: min(340px, calc(100vw - 2rem));
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.1rem; padding-right: 2.4rem;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transform: translateY(18px) scale(.98);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s var(--ease);
}
.ig-pop.is-open{ opacity: 1; visibility: visible; transform: none; }
.ig-pop__mark{
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(45deg, #f09433, #dc2743 50%, #bc1888);
}
.ig-pop__mark svg{ width: 22px; height: 22px; }
.ig-pop__body{ flex: 1 1 auto; min-width: 0; }
.ig-pop__title{ font-family: var(--f-display); font-weight: 600; font-size: 1rem; line-height: 1.2; color: var(--text); }
.ig-pop__sub{ font-family: var(--f-mono); font-size: .74rem; letter-spacing: .06em; color: var(--text-faint); margin-top: .2rem; }
.ig-pop__cta{
  flex: 0 0 auto; align-self: center;
  display: inline-flex; align-items: center; min-height: 2.4rem; padding: 0 1rem;
  border-radius: 2rem; font-size: .82rem; font-weight: 700; text-decoration: none;
  background: var(--gold); color: #241a12; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ig-pop__cta:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(var(--gold-rgb), .32); }
.ig-pop__close{
  position: absolute; top: .5rem; right: .55rem;
  width: 1.7rem; height: 1.7rem; display: grid; place-items: center;
  background: none; border: 0; cursor: pointer; color: var(--text-faint);
  font-size: 1.2rem; line-height: 1; border-radius: 50%;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.ig-pop__close:hover{ color: var(--text); background: rgba(36,26,18,.07); }
@media (max-width: 520px){
  .ig-pop{ left: 1rem; right: 1rem; width: auto; }
  .ig-pop__cta{ padding: 0 .85rem; }
}
@media (prefers-reduced-motion: reduce){ .ig-pop{ transition: opacity .2s; transform: none; } .ig-pop.is-open{ transform: none; } }

/* ════════════════════════════════════════════════════════════
   HERO — Fresh, Modern Editorial & Minimalist
   No imagery. Warm stone ground, charcoal ink, taupe secondary.
   Declared last so it supersedes the earlier photo-hero rules.
   ════════════════════════════════════════════════════════════ */
.hero{
  --hero-bg:    #f7f5f0;              /* warm stone */
  --hero-ink:   #121212;              /* charcoal */
  --hero-muted: #6e6b65;              /* taupe */
  --hero-terra: #7c4a31;              /* terracotta */
  --hero-hair:  rgba(18, 18, 18, .14);

  position: relative;
  min-height: 100svh;
  display: grid; grid-template-rows: 1fr auto; align-items: center;
  padding: clamp(7.5rem, 16vh, 11rem) var(--pad) clamp(2rem, 5vh, 3rem);
  background: var(--hero-bg);
  color: var(--hero-ink);
  overflow: hidden; isolation: isolate;
  pointer-events: none;
}
.hero a, .hero button{ pointer-events: auto; }
/* legacy photo layers are gone from the markup — belt & braces */
.hero__media, .hero__scrim, .hero__foot{ display: none; }
/* safety net: if any legacy hero markup returns, keep it readable on stone */
.hero .hero__tag{ color: var(--hero-muted); }
.hero .hero__tag::before{ background: var(--hero-hair); }
.hero .btn--hero{
  background: var(--hero-terra); color: #f7f5f0;
  border: 1px solid var(--hero-terra); border-radius: 2px;
  min-height: 3.5rem; padding: 0 2.25rem;
}
.hero .btn--hero:hover{ background: transparent; color: var(--hero-terra); border-color: var(--hero-terra); }
.hero .hero__aside p{ color: var(--hero-muted); }

.hero__inner{
  position: relative; z-index: 2;
  align-self: center; justify-self: start;
  max-width: 62rem; margin-inline: 0; padding: 0; text-align: left;
}

/* Eyebrow */
.hero__eyebrow{
  font-family: var(--f-body);
  font-size: clamp(.72rem, 1vw, .8rem); font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--hero-muted);
  margin: 0 0 clamp(1.75rem, 4vh, 2.5rem);
  display: inline-flex; align-items: center; gap: .85rem;
}
.hero__eyebrow::before{ content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55; }

/* Headline */
.hero__title{
  font-family: "Playfair Display", Georgia, serif; font-weight: 400;
  font-size: clamp(2.5rem, 6.4vw, 5.5rem);
  line-height: 1.06; letter-spacing: -.02em;
  color: var(--hero-ink); text-shadow: none;
  margin: 0 0 clamp(1.5rem, 3.5vh, 2.25rem);
  max-width: 18ch; text-wrap: balance; user-select: text;
}
.hero__line{ display: block; overflow: visible; transform: none; animation: none; }
/* second line — smaller, terracotta */
.hero__line--muted{
  display: block; margin-top: .35em;
  font-size: .5em; line-height: 1.2; letter-spacing: -.01em;
  font-style: italic; color: var(--hero-terra);
}

/* Lede */
.hero__lede{
  max-width: 550px;
  font-size: clamp(1rem, 1.15vw, 1.075rem); line-height: 1.75;
  color: var(--hero-muted);
  margin: 0 0 clamp(2.25rem, 5vh, 3rem);
}

/* Actions */
.hero__actions{ display: none !important; }
.hero__cta{
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.5rem; padding: 0 2.25rem; border-radius: 2px;
  background: var(--hero-terra); color: #f7f5f0;
  border: 1px solid var(--hero-terra);
  font-size: .8rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease);
}
.hero__cta:hover{
  background: transparent; color: var(--hero-terra);
  border-color: var(--hero-terra); transform: translateY(-2px);
}
.hero__link{
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--hero-ink); text-decoration: none;
  padding-bottom: .3rem; border-bottom: 1px solid var(--hero-hair);
  transition: border-color .3s var(--ease);
}
.hero__link svg{ width: .95em; height: .95em; transition: transform .3s var(--ease); }
.hero__link:hover{ border-color: var(--hero-ink); }
.hero__link:hover svg{ transform: translateY(3px); }

/* Quiet meta rule at the foot */
.hero__meta{
  position: static; display: inline-flex; align-items: center; gap: 1rem;
  z-index: 2;
  align-self: end; justify-self: start;          /* pin to the bottom-left */
  margin-right: auto;
  font-family: var(--f-body);
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--hero-muted); text-align: left; white-space: nowrap;
  padding-top: clamp(2rem, 5vh, 3rem);
}
.hero__meta-rule{ flex: 0 1 120px; height: 1px; background: var(--hero-hair); }

/* Navbar tuned to the stone ground */
.head{ background: transparent; }
.head.is-solid{
  background: linear-gradient(to bottom, rgba(247,245,240,.96) 0%, rgba(247,245,240,.85) 62%, rgba(247,245,240,0) 100%);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.head__logo img, .head.is-solid .head__logo img{ filter: none; }
/* nav — heavier, larger, more present */
.head__nav{ gap: clamp(1.75rem, 2.6vw, 2.75rem); }
.head__nav a, .head.is-solid .head__nav a{
  color: #121212;
  font-size: clamp(.86rem, 1vw, .95rem);
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.head__nav a:hover, .head__nav a.is-current,
.head.is-solid .head__nav a:hover, .head.is-solid .head__nav a.is-current{ color: var(--hero-terra); }
.head__nav a::after{ background: var(--hero-terra); height: 2px; bottom: -6px; }
.burger i, .head.is-solid .burger i{ background: #121212; }
/* language switcher — back to the accent-filled chip */
.lang button, .head.is-solid .lang button{
  background: rgba(18,18,18,.04);
  border: 1px solid rgba(18,18,18,.16);
  color: rgba(18,18,18,.66);
  border-radius: .65rem;
}
.lang button:hover, .head.is-solid .lang button:hover{
  color: #121212; border-color: rgba(18,18,18,.34); transform: translateY(-1px);
}
.lang button.is-on, .head.is-solid .lang button.is-on{
  background: var(--accent); border-color: var(--accent); color: var(--on-accent);
}
.lang button.is-on:hover, .head.is-solid .lang button.is-on:hover{
  background: var(--accent-2); border-color: var(--accent-2); color: var(--on-accent);
}

@media (max-width: 899px){
  .hero{
    min-height: 88svh;
    padding: clamp(4.25rem, 14vw, 6rem) var(--pad) clamp(1.2rem, 4vh, 1.75rem);
    align-items: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero__inner{
    align-self: center;
    justify-self: center;
    width: 100%;
    text-align: center;
    margin-top: 0;
  }
  .hero__eyebrow{ display: none; }
  .hero__title{
    font-size: clamp(2.05rem, 8.7vw, 2.95rem);
    max-width: 100%;
    margin-bottom: .9rem;
    line-height: 1.05;
    letter-spacing: -.04em;
  }
  .hero__line--muted{ margin-top: .18em; }
  .hero__lede{
    font-size: .98rem;
    max-width: 27rem;
    margin-inline: auto;
    margin-bottom: 0;
    line-height: 1.6;
    color: rgba(18,18,18,.72);
  }
  .hero__actions{
    display: none;
  }
  .hero__meta{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.2rem;
    padding-top: 0;
    font-size: .56rem;
    gap: .7rem;
    justify-self: center;
    align-self: center;
    margin: 0 auto;
    letter-spacing: .12em;
    font-weight: 400;
  }
  .hero__meta-rule{ flex-basis: 38px; }
  .hero__meta-rule{ flex-basis: 42px; }
}

/* ── Fader offset (kept last) ──────────────────────────────── */
@media (min-width: 1100px){
  .hero, .lead, .svc, .work, .kit, .quote, .cta, .foot, .gallery-page, .reel, .faq{
    padding-left: calc(var(--strip-w) + var(--pad));
  }
}

/* ── Services — compact info cards ─────────────────────────── */
.svc{
  padding-block: clamp(3.5rem, 7vw, 6rem);
  row-gap: .5rem;
}

.svc__head,
.svc__grid{
  grid-column: 1 / -1;
}

.svc__head{
  font-family: var(--f-mono);
  font-size: .74rem;
  line-height: 1.2;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  padding-bottom: 0;
  border-bottom: 0;
  text-align: left;
}

.svc__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}

.svc-card{
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  box-sizing: border-box;
  transition:
    transform .35s var(--ease),
    border-color .35s var(--ease),
    background .35s var(--ease);
}

.svc-card:hover{
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--surface-2);
}

.svc-card__no{
  display: block;
  font-family: var(--f-mono);
  font-size: .7rem;
  line-height: 1;
  letter-spacing: .12em;
  color: var(--accent);
}

.svc-card__title{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--text);
  margin-top: .75rem;
}

.svc-card__desc{
  color: var(--text-dim);
  font-size: .92rem;
  line-height: 1.55;
  margin-top: .55rem;
}

/* Tablet */
@media (min-width: 640px){
  .svc__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
  }
}

/* Desktop — four equal cards, centered section */
@media (min-width: 900px){
  .svc__head{
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
  }

  .svc__grid{
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .svc-card{
    height: 100%;
  }
}

/* Large desktop */
@media (min-width: 1400px){
  .svc__grid{
    gap: 1.1rem;
  }
}