/* ==========================================================================
   BUX PERFORMANCE EXHAUST
   DIRECTION CONTRACT  (v2 — monochrome)
   THESIS: A high-end black-&-white canvas. ~60% white, ~40% black, zero colour
     accent — a neutral shell the client colours in later. Bold condensed
     italic type carries the performance attitude without any hue.
   OWN-WORLD: White grounds, near-black text, solid-black anchor bands (hero,
     page banners, footer, tagline, CTAs). Black line-art icons, hairline
     dividers, outlined display headline. One ink tone does all the emphasis.
   STORY: Visitor sees TIG-welded precision, understands the craft, taps
     WhatsApp / call to enquire.
   FIRST VIEWPORT: White sticky header; black hero band, oversized italic
     headline, black-and-white CTA + WhatsApp immediately visible.
   FORM: Client mockup, recoloured to a black & white system on request.
   NOTE: The one accent is pure ink. To add a brand colour later, change
     --accent (and the .x / outlined headline can adopt it).
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #ffffff;   /* white page ground (≈60%) */
  --bg-2:      #f4f4f5;   /* subtle light section */
  --bg-3:      #ececee;
  --panel:     #ffffff;   /* cards (rely on hairline border) */
  --panel-2:   #f5f5f6;
  --line:      rgba(0,0,0,.12);
  --line-2:    rgba(0,0,0,.22);

  --ink:       #0c0c0e;   /* near-black anchor (≈40%) */
  --ink-2:     #17171a;
  --accent:    #0c0c0e;   /* the one accent = ink for now (client sets colour) */

  /* legacy accent aliases kept = ink so existing usages stay monochrome */
  --red:       #0c0c0e;
  --red-bright:#000000;
  --red-deep:  #2b2b2e;

  --white:     #ffffff;
  --text:      #16161a;   /* body text on white  (~15:1) */
  --muted:     #55555d;   /* secondary on white  (~6.9:1) */
  --muted-2:   #7c7c84;

  /* on-dark helpers (text/lines over black bands) */
  --d-text:    #ffffff;
  --d-muted:   #c2c2c8;
  --d-muted-2: #8f8f97;
  --d-line:    rgba(255,255,255,.14);
  --d-line-2:  rgba(255,255,255,.28);

  --ring:      rgba(0,0,0,.45);

  --maxw:      1240px;
  --gut:       clamp(20px, 5vw, 56px);

  --f-display: "Saira Condensed", "Arial Narrow", system-ui, sans-serif;
  --f-body:    "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease:      cubic-bezier(.16,1,.3,1);
  --dur:       .55s;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; box-shadow: 0 0 0 4px rgba(255,255,255,.55); border-radius: 2px; }
::selection { background: var(--ink); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- Type ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 800; font-style: italic;
  line-height: .92; letter-spacing: -.01em; text-transform: uppercase;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::after { content: ""; width: 46px; height: 2px; background: var(--ink); }
.eyebrow--center::before { content: ""; width: 46px; height: 2px; background: var(--ink); }

.section-title {
  font-family: var(--f-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1; color: var(--text);
}
.section-head { text-align: center; margin-bottom: clamp(38px, 5vw, 64px); }
.section-head .rule { width: 74px; height: 3px; background: var(--ink); margin: 18px auto 0; }
.text-red { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--f-body); font-weight: 700; font-size: .95rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 15px 28px; color: #fff; background: var(--_bg);
  border-radius: 4px; position: relative;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .25s;
  box-shadow: 0 12px 26px -14px rgba(0,0,0,.55);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { background: #000; transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(0,0,0,.5); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent; border: 1.6px solid var(--line-2);
  box-shadow: none; color: var(--ink);
}
.btn--ghost:hover { background: rgba(0,0,0,.05); border-color: var(--ink); transform: translateY(-2px); box-shadow: none; }

.btn--wa { --_bg: var(--ink); box-shadow: 0 12px 26px -14px rgba(0,0,0,.55); }
.btn--wa:hover { background: #000; box-shadow: 0 18px 34px -14px rgba(0,0,0,.5); }

.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Inverted buttons on black bands (hero + CTA) */
.hero .btn, .cta-band .btn { background: #fff; color: var(--ink); box-shadow: 0 14px 30px -16px rgba(0,0,0,.7); }
.hero .btn:hover, .cta-band .btn:hover { background: #ededed; }
.hero .btn--ghost, .cta-band .btn--ghost { background: transparent; color: #fff; border: 1.6px solid rgba(255,255,255,.45); box-shadow: none; }
.hero .btn--ghost:hover, .cta-band .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ==========================================================================
   HEADER  (white, light)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background .3s, border-color .3s;
}
.site-header.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 6px 24px -18px rgba(0,0,0,.4); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}
.site-header.scrolled .nav { height: 66px; }
.nav, .site-header.scrolled .nav { transition: height .3s var(--ease); }

/* Logo */
.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo__word {
  font-family: var(--f-display); font-weight: 900; font-style: italic;
  font-size: 2rem; letter-spacing: .01em; color: var(--ink); position: relative;
}
.logo__word .x { color: inherit; position: relative; }
.logo__sub {
  font-family: var(--f-body); font-weight: 600; font-size: .53rem;
  letter-spacing: .42em; text-transform: uppercase; color: var(--muted);
  padding-left: 3px; margin-top: 3px; display: flex; align-items: center; gap: 6px;
}
.logo__sub::before, .logo__sub::after { content:""; height: 1px; flex: 1; background: var(--line-2); max-width: 14px; }

/* Nav links */
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); list-style: none; }
.nav__links a {
  font-weight: 600; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase;
  color: #3a3a42; padding: 6px 0; position: relative; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--ink); }

/* Header phone */
.nav__phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; font-style: italic;
  font-size: 1.32rem; color: var(--ink); transition: color .2s;
}
.nav__phone svg { width: 18px; height: 18px; color: var(--ink); }
.nav__phone:hover { color: #000; }

/* Mobile toggle */
.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__phone { display: none; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -24px rgba(0,0,0,.35);
    display: flex; flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px var(--gut) 26px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .32s var(--ease), opacity .28s;
  }
  .nav__menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links a { display: block; padding: 17px 2px; font-size: 1rem; }
  .nav__links a::after { display: none; }
  .nav__links a[aria-current="page"] { color: var(--ink); }
  .nav__menu .nav__phone { display: inline-flex; margin-top: 22px; font-size: 1.5rem; color: var(--ink); }
}

/* ==========================================================================
   IMAGE PLACEHOLDER SYSTEM  (neutral grey brushed panel)
   Real photos auto-appear when dropped in /images with documented names.
   ========================================================================== */
.ph {
  position: relative; overflow: hidden;
  background-color: #e7e7ea;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  isolation: isolate;
}
.ph::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 100% at 78% 20%, rgba(255,255,255,.6), transparent 55%),
    linear-gradient(135deg, #e4e4e8 0%, #d3d3d8 42%, #bdbdc4 100%);
}
.ph::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .55;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.55) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(115deg, rgba(0,0,0,.06) 0 1px, transparent 1px 3px);
}
.ph--carbon::before {
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(255,255,255,.45), transparent 60%),
    linear-gradient(180deg, #d7d7dc, #c0c0c7);
}
.ph--carbon::after {
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,.05) 0 2px, transparent 2px 5px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,.05) 0 2px, transparent 2px 5px);
  opacity: .6;
}
/* subtle BUX watermark in placeholder */
.ph__mark {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-style: italic; font-weight: 900;
  font-size: clamp(2.4rem, 9vw, 6rem); letter-spacing: .04em;
  color: rgba(0,0,0,.07); pointer-events: none; user-select: none;
}
.ph__mark .x { color: rgba(0,0,0,.14); }
.ph.is-loaded .ph__mark,
.ph.is-loaded::after { opacity: 0; }
.ph.is-loaded::before { background: transparent; }

/* ==========================================================================
   HERO (home)  — black band
   ========================================================================== */
.hero {
  position: relative; min-height: min(86vh, 760px);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--ink); overflow: hidden;
  background: #0a0a0c;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(90% 120% at 88% 30%, rgba(46,46,52,.9), transparent 60%),
    linear-gradient(180deg, #131317 0%, #0a0a0c 100%);
}
.hero__bg-img {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center; opacity: 0;
}
.hero__bg-img.is-loaded { opacity: .5; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,10,.95) 0%, rgba(8,8,10,.72) 42%, rgba(8,8,10,.15) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero__copy { padding-block: 60px; max-width: 620px; }
.hero .eyebrow { color: var(--d-muted); }
.hero .eyebrow::after { background: #fff; }
.hero h1 {
  font-family: var(--f-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; line-height: .86; letter-spacing: -.005em;
  font-size: clamp(3.6rem, 9.5vw, 7rem); margin: 20px 0 22px;
}
.hero h1 .l1 { color: #fff; display: block; }
.hero h1 .l2 {
  display: block; color: #fff;
  -webkit-text-stroke: 2.2px #fff; color: transparent;
  paint-order: stroke fill;
}
.hero__sub {
  font-family: var(--f-display); font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem); color: #fff; margin-bottom: 20px;
}
.hero__sub .sep { color: rgba(255,255,255,.45); padding: 0 6px; }
.hero__lede { color: var(--d-muted); font-size: 1.08rem; max-width: 44ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__art { position: relative; z-index: 2; }
.hero__art .ph {
  aspect-ratio: 4 / 3.1; border-radius: 8px; border: 1px solid var(--d-line-2);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9);
}
.hero__badge {
  position: absolute; left: -14px; bottom: 22px; z-index: 3;
  background: #fff; color: var(--ink);
  font-family: var(--f-display); font-style: italic; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  font-size: .95rem; padding: 12px 20px; border-radius: 4px;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.7);
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 22px; }
  .hero__art { order: -1; }
  .hero__art .ph { aspect-ratio: 16/10; }
  .hero__copy { padding-block: 26px 40px; }
  .hero__scrim { background: linear-gradient(180deg, rgba(8,8,10,.55), rgba(8,8,10,.92)); }
}

/* ==========================================================================
   SERVICES STRIP (home)  — light
   ========================================================================== */
.services { background: var(--bg-2); border-bottom: 1px solid var(--line); padding-block: clamp(56px, 8vw, 96px); }
.svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.svc-item { text-align: center; padding: 8px clamp(14px, 2vw, 26px) 4px; position: relative; }
.svc-item + .svc-item::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2) 20% 80%, transparent);
}
.svc-item__icon { width: 62px; height: 62px; margin: 0 auto 20px; display: grid; place-items: center; color: var(--ink); }
.svc-item__icon svg { width: 100%; height: 100%; }
.svc-item h3 {
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em; font-size: 1.16rem; color: var(--text); margin-bottom: 12px;
}
.svc-item p { color: var(--muted); font-size: .95rem; line-height: 1.55; }

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 8px; }
  .svc-item + .svc-item::before { display: none; }
  .svc-item:nth-child(odd)::after {
    content: ""; position: absolute; right: 0; top: 6px; bottom: 6px; width: 1px;
    background: linear-gradient(180deg, transparent, var(--line-2) 20% 80%, transparent);
  }
}
@media (max-width: 520px) {
  .svc-grid { grid-template-columns: 1fr; gap: 34px; }
  .svc-item:nth-child(odd)::after { display: none; }
  .svc-item { padding-bottom: 30px; border-bottom: 1px solid var(--line); }
  .svc-item:last-child { border-bottom: none; }
}

/* ==========================================================================
   ABOUT + CONTACT SPLIT (home)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1.15fr .85fr 1fr; align-items: stretch; }
.split > * { padding: clamp(44px, 6vw, 72px) clamp(28px, 4vw, 56px); }

.split__about { background: var(--bg); position: relative; }
.split__about h2, .split__contact h2 {
  font-family: var(--f-display); font-style: italic; font-weight: 800;
  text-transform: uppercase; font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--text); margin-bottom: 22px; letter-spacing: .01em;
}
.split__about p { color: var(--muted); margin-bottom: 26px; max-width: 46ch; }
.about-media { margin-top: 8px; }
.about-media .ph { aspect-ratio: 16/9; border-radius: 6px; border: 1px solid var(--line); }
.feat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.feat { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.feat svg { width: 26px; height: 26px; color: var(--ink); }
.feat span {
  font-family: var(--f-body); font-weight: 700; font-size: .74rem;
  letter-spacing: .08em; text-transform: uppercase; color: #2e2e34; line-height: 1.3;
}

.split__contact { background: var(--bg-2); border-left: 1px solid var(--line); }
.split__contact .lede { color: var(--muted); margin-bottom: 26px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-list a, .contact-list li > span { display: inline-flex; align-items: center; gap: 14px; color: #24242a; font-weight: 500; }
.contact-list svg { width: 20px; height: 20px; color: var(--ink); flex: none; }
.contact-list a:hover { color: #000; }

.split__brand {
  background: repeating-linear-gradient(90deg, #141419 0 5px, #0d0d11 5px 10px);
  border-left: 1px solid var(--d-line);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.split__brand::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(70% 70% at 50% 45%, rgba(255,255,255,.08), transparent 70%);
}
.brand-lockup { position: relative; text-align: center; }
.brand-lockup .logo__word { font-size: clamp(3rem, 6vw, 4.6rem); color: #fff; }
.brand-lockup .logo__sub { justify-content: center; font-size: .68rem; margin-top: 8px; color: var(--d-muted); }
.brand-lockup .logo__sub::before, .brand-lockup .logo__sub::after { max-width: 26px; background: var(--d-line-2); }

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split__contact { border-left: none; border-top: 1px solid var(--line); }
  .split__brand { border-left: none; border-top: 1px solid var(--d-line); }
  .feat-row { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .split__brand { min-height: 220px; padding-block: 50px; }
}

/* ==========================================================================
   TAGLINE BAR + FOOTER  — black bands
   ========================================================================== */
.tagline-bar {
  background: #0a0a0c; border-top: 1px solid var(--d-line);
  padding: 22px var(--gut);
  display: flex; align-items: center; justify-content: center; gap: 22px; position: relative;
}
.tagline-bar p {
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; font-size: clamp(.85rem, 2vw, 1.05rem);
  color: var(--d-muted); text-align: center;
}
.tagline-bar .text-red { color: #fff; }
.tagline-bar .socials { position: absolute; right: var(--gut); display: flex; gap: 14px; }
.tagline-bar .socials a { color: var(--d-muted-2); transition: color .2s, transform .2s; }
.tagline-bar .socials a:hover { color: #fff; transform: translateY(-2px); }
.tagline-bar .socials svg { width: 20px; height: 20px; }

.site-footer { background: #0a0a0c; color: var(--d-muted-2); }
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-block: clamp(48px, 6vw, 72px); border-top: 1px solid var(--d-line);
}
.footer-main h4 {
  font-family: var(--f-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer-col p, .footer-col a, .footer-col li { font-size: .95rem; color: var(--d-muted); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a:hover { color: #fff; }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo__word { color: #fff; }
.footer-brand .logo__sub { color: var(--d-muted-2); }
.footer-brand .logo__sub::before, .footer-brand .logo__sub::after { background: var(--d-line-2); }
.footer-brand p { max-width: 34ch; }
.footer-contact a { display: inline-flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 17px; height: 17px; color: #fff; flex:none; }
.footer-bottom {
  border-top: 1px solid var(--d-line); padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; font-size: .82rem; color: var(--d-muted-2);
}
.footer-bottom a:hover { color: #fff; }
@media (max-width: 780px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px; }
  .tagline-bar { flex-direction: column; gap: 16px; }
  .tagline-bar .socials { position: static; }
}
@media (max-width: 460px) { .footer-main { grid-template-columns: 1fr; } }

/* ==========================================================================
   PAGE HERO (interior pages)  — black band
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--ink);
  padding-block: clamp(70px, 12vw, 130px);
  background: #0a0a0c;
}
.page-hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(80% 120% at 82% 10%, rgba(46,46,52,.85), transparent 55%),
    linear-gradient(180deg, #121216, #0a0a0c);
}
.page-hero__bg { position:absolute; inset:0; background-size: cover; background-position: center; opacity: 0; }
.page-hero__bg.is-loaded { opacity: .32; }
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,8,10,.4), rgba(8,8,10,.9)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--f-display); font-style: italic; font-weight: 800;
  text-transform: uppercase; line-height: .9;
  font-size: clamp(2.8rem, 8vw, 5.2rem); color: #fff; margin: 16px 0 0;
}
.page-hero h1 em { font-style: italic; color: transparent; -webkit-text-stroke: 1.6px #fff; paint-order: stroke fill; }
.page-hero .lede { color: var(--d-muted); max-width: 56ch; margin-top: 22px; font-size: 1.1rem; }
.crumbs { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--d-muted-2); }
.crumbs a:hover { color: #fff; }
.crumbs span { color: #fff; }

/* generic section */
.section { padding-block: clamp(60px, 9vw, 110px); }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--bg); }          /* was dark → now light */
.lede-lg { font-size: 1.14rem; color: var(--muted); max-width: 62ch; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about-split .ph { aspect-ratio: 4/5; border-radius: 8px; border: 1px solid var(--line); box-shadow: 0 40px 80px -50px rgba(0,0,0,.5); }
.about-split h2 { font-family: var(--f-display); font-style: italic; font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--text); margin-bottom: 20px; line-height: 1; }
.about-split p { color: var(--muted); margin-bottom: 18px; }
.about-split .btn { margin-top: 12px; }
@media (max-width: 820px){ .about-split { grid-template-columns: 1fr; } .about-split .media { order:-1; } .about-split .ph { aspect-ratio: 16/10; } }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat b { font-family: var(--f-display); font-style: italic; font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--text); display:block; line-height:1; }
.stat b em { color: var(--ink); font-style: italic; }
.stat span { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display:block; }
@media (max-width:640px){ .stats { grid-template-columns: 1fr 1fr; gap: 34px; } }

.value-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 30px 28px; transition: border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.value-card:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 24px 44px -30px rgba(0,0,0,.45); }
.value-card svg { width: 34px; height: 34px; color: var(--ink); margin-bottom: 18px; }
.value-card h3 { font-family: var(--f-display); font-style: italic; font-weight: 700; text-transform: uppercase; font-size: 1.25rem; color: var(--text); margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .96rem; }
@media (max-width: 820px){ .value-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.svc-list { display: flex; flex-direction: column; gap: 22px; }
.svc-row {
  display: grid; grid-template-columns: 96px 1fr auto; gap: clamp(20px,3vw,42px); align-items: center;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(26px, 3.5vw, 40px); position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), background .3s, box-shadow .3s;
}
.svc-row::before {
  content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--ink);
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.svc-row:hover { border-color: var(--line-2); transform: translateY(-3px); background: var(--panel-2); box-shadow: 0 24px 44px -30px rgba(0,0,0,.4); }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row__icon { width: 84px; height: 84px; display:grid; place-items:center; color: var(--ink); background: rgba(0,0,0,.05); border: 1px solid var(--line); border-radius: 10px; }
.svc-row__icon svg { width: 48px; height: 48px; }
.svc-row__body h3 { font-family: var(--f-display); font-style: italic; font-weight: 700; text-transform: uppercase; font-size: clamp(1.4rem,2.6vw,1.85rem); color: var(--text); margin-bottom: 8px; letter-spacing:.01em; }
.svc-row__body p { color: var(--muted); max-width: 60ch; }
.svc-row__body .tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.svc-row__body .tags span { font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color:#3a3a42; border:1px solid var(--line-2); border-radius:100px; padding:5px 12px; }
.svc-row__cta { display:flex; }
@media (max-width: 820px){
  .svc-row { grid-template-columns: 64px 1fr; }
  .svc-row__icon { width: 64px; height: 64px; }
  .svc-row__icon svg { width: 36px; height: 36px; }
  .svc-row__cta { grid-column: 1 / -1; }
  .svc-row__cta .btn { width: 100%; }
}

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */
.filterbar { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom: 40px; }
.filterbar-btn {
  font-weight:600; font-size:.8rem; letter-spacing:.1em; text-transform:uppercase;
  color:#3a3a42; padding:9px 20px; border:1px solid var(--line-2); border-radius:100px; transition: all .22s;
}
.filterbar-btn:hover { color:var(--ink); border-color:var(--ink); }
.filterbar-btn.active { background: var(--ink); border-color: var(--ink); color:#fff; }

.gallery-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; grid-auto-flow: dense; }
.g-item { position: relative; border-radius: 8px; overflow: hidden; border:1px solid var(--line); }
.g-item .ph { width:100%; height:100%; aspect-ratio: 4/3; transition: transform .5s var(--ease); }
.g-item.tall .ph { aspect-ratio: 4/5.4; }
.g-item.wide { grid-column: span 2; }
.g-item.wide .ph { aspect-ratio: 16/9; }
.g-item__cap {
  position:absolute; inset:auto 0 0 0; z-index:2; padding: 30px 18px 15px;
  background: linear-gradient(180deg, transparent, rgba(6,6,8,.92));
  transform: translateY(8px); opacity:0; transition: all .3s var(--ease);
}
.g-item__cap b { font-family: var(--f-display); font-style:italic; font-weight:700; text-transform:uppercase; color:#fff; font-size:1.05rem; display:block; }
.g-item__cap span { font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,.82); }
.g-item:hover .g-item__cap { transform:none; opacity:1; }
.g-item:hover .ph { transform: scale(1.05); }
.g-item.is-hidden { display:none; }
@media (max-width: 720px){ .gallery-grid { grid-template-columns: 1fr 1fr; } .g-item.wide { grid-column: span 2; } }
@media (max-width: 460px){ .gallery-grid { grid-template-columns: 1fr; } .g-item.wide { grid-column: auto; } .g-item__cap { opacity:1; transform:none; } }

/* ==========================================================================
   OUR WORK PAGE
   ========================================================================== */
.work-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: clamp(20px,3vw,30px); }
.work-card { background: var(--panel); border:1px solid var(--line); border-radius: 10px; overflow: hidden; transition: border-color .3s, transform .3s var(--ease), box-shadow .3s; }
.work-card:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: 0 26px 48px -32px rgba(0,0,0,.45); }
.work-card .ph { aspect-ratio: 16/10; }
.work-card__body { padding: 26px 26px 30px; }
.work-card__body .tag { font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink); font-weight:700; }
.work-card__body h3 { font-family: var(--f-display); font-style:italic; font-weight:700; text-transform:uppercase; font-size: 1.5rem; color: var(--text); margin: 6px 0 10px; }
.work-card__body p { color: var(--muted); font-size:.97rem; }
@media (max-width: 720px){ .work-grid { grid-template-columns: 1fr; } }

/* Reviews */
.reviews-head { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px; margin-bottom: 40px; }
.grating { display:flex; align-items:center; gap:16px; }
.grating__score { font-family: var(--f-display); font-style:italic; font-weight:800; font-size: 3rem; color: var(--text); line-height:1; }
.stars { display:inline-flex; gap:3px; }
.stars svg { width:18px; height:18px; color: var(--ink); }
.grating__meta { font-size:.9rem; color: var(--muted); }
.grating__meta b { color: var(--text); }
.reviews-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.review-card { background: var(--panel); border:1px solid var(--line); border-radius:10px; padding: 26px; display:flex; flex-direction:column; gap:14px; }
.review-card .stars svg { width:15px; height:15px; }
.review-card p { color: #33333a; font-size:.98rem; font-style: italic; }
.review-card__who { display:flex; align-items:center; gap:12px; margin-top:auto; }
.review-card__av { width:40px; height:40px; border-radius:50%; background: linear-gradient(135deg,#3a3a42,var(--ink)); display:grid; place-items:center; font-family:var(--f-display); font-style:italic; font-weight:800; color:#fff; }
.review-card__who b { color: var(--text); font-size:.92rem; display:block; }
.review-card__who span { color: var(--muted-2); font-size:.78rem; }
@media (max-width: 860px){ .reviews-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,4vw,56px); align-items:start; }
.contact-cards { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
.c-card { background: var(--panel); border:1px solid var(--line); border-radius: 10px; padding: 24px; transition: border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.c-card:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 20px 40px -28px rgba(0,0,0,.4); }
.c-card svg { width: 26px; height:26px; color: var(--ink); margin-bottom: 14px; }
.c-card h4 { font-family: var(--f-body); font-weight:700; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color: var(--muted); margin-bottom: 6px; }
.c-card a, .c-card p { color: var(--text); font-weight:600; font-size: 1.02rem; }
.c-card a:hover { color: #000; }
.c-card--wide { grid-column: 1 / -1; }

.contact-form { background: var(--bg-2); border:1px solid var(--line); border-radius: 12px; padding: clamp(28px, 4vw, 42px); }
.contact-form h2 { font-family: var(--f-display); font-style:italic; font-weight:800; text-transform:uppercase; font-size: 1.7rem; color: var(--text); margin-bottom: 8px; }
.contact-form .sub { color: var(--muted); margin-bottom: 26px; font-size:.98rem; }
.field { margin-bottom: 18px; }
.field label { display:block; font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom: 8px; font-weight:600; }
.field input, .field textarea, .field select {
  width:100%; background: #fff; border:1px solid var(--line-2); border-radius:6px;
  padding: 14px 15px; color: var(--text); font: inherit; font-size:1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(0,0,0,.12); }
.field--row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .field--row { grid-template-columns: 1fr; } }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }

.map-wrap { border:1px solid var(--line); border-radius: 12px; overflow: hidden; line-height:0; margin-top: 8px; }
.map-wrap iframe { width:100%; height: 420px; border:0; filter: grayscale(1) contrast(1.05); }

/* CTA band  — black */
.cta-band {
  position: relative; overflow: hidden; text-align:center;
  padding-block: clamp(56px, 8vw, 96px); border-top: 1px solid var(--ink);
  background:
    radial-gradient(60% 130% at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #111114, #0a0a0c);
}
.cta-band h2 { font-family: var(--f-display); font-style:italic; font-weight:800; text-transform:uppercase; font-size: clamp(2rem, 5vw, 3.4rem); color:#fff; line-height:.95; margin-bottom: 16px; }
.cta-band h2 em { font-style:italic; color: transparent; -webkit-text-stroke: 1.6px #fff; paint-order: stroke fill; }
.cta-band p { color: var(--d-muted); max-width: 48ch; margin: 0 auto 30px; font-size:1.08rem; }
.cta-band .btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } }

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--ink); display:grid; place-items:center;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,.5);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float svg { width: 30px; height: 30px; color:#fff; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 18px 40px -8px rgba(0,0,0,.55); }
.wa-float::after {
  content:""; position:absolute; inset:0; border-radius:50%;
  border: 2px solid rgba(12,12,14,.45); animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0%{ transform:scale(1); opacity:.7; } 100%{ transform:scale(1.7); opacity:0; } }
@media (prefers-reduced-motion: reduce){ .wa-float::after { animation:none; } }

/* skip link */
.skip { position:absolute; left:-999px; top:0; background:var(--ink); color:#fff; padding:10px 16px; z-index:200; border-radius:0 0 6px 0; }
.skip:focus { left:0; }
