/* ===== Self-hosted fonts (Fraunces + Hanken Grotesk, latin/latin-ext) ===== */
/* latin-ext */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/fraunces-italic-latinext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/fraunces-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(fonts/fraunces-normal-latinext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(fonts/fraunces-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpT59CjCQ.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(fonts/ieVn2YZDLWuGJpnzaiwFXS9tYtpd59A.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =========================================================
   SHOTLESS — warm cinematic editorial
   Vanilla CSS. Mobile-first. No build step.
   ========================================================= */

:root {
  /* ---- palette : deep oxblood (red-black) + Canada-red accent ---- */
  --bg:        #130a0b;
  --bg-2:      #180d0f;
  --panel:     #1d1214;
  --panel-2:   #251619;
  --line:      #2c2b30;   /* neutral dark — borders no longer read red */
  --line-soft: #211f25;

  --ink:       #f4f4f5;   /* clean near-white */
  --ink-soft:  #c6c5ca;
  --muted:     #8a888f;
  --faint:     #565560;

  /* var names kept (--ember*) to avoid churn; values are now Canada red + white */
  --ember:     #e63329;   /* Canada red — sharp accent */
  --ember-2:   #ff5347;   /* brighter red — hover / glow */
  --gold:      #e8e6e3;   /* soft white — secondary */

  /* ---- type ---- */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;

  /* ---- rhythm ---- */
  /* Container cap raised to 2100 so wide monitors (e.g. 2560) are filled,
     not a narrow centred column. Screens ≤2100 go edge-to-edge (gutter only);
     only above 2100 do symmetric side margins appear. Mobile is unaffected. */
  --maxw: 2100px;
  --gutter: 20px;            /* mobile  (<768)            */
  --radius: 14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* responsive container gutter: 20 → 32 → 48 → 64 */
@media (min-width: 768px)  { :root { --gutter: 32px; } }   /* tablet   */
@media (min-width: 1024px) { :root { --gutter: 48px; } }   /* desktop  */
@media (min-width: 1440px) { :root { --gutter: 64px; } }   /* wide     */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* base tone; the moving red atmosphere lives in .bg-fx (animated) */
}

/* ---------- site-wide animated background ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none; overflow: hidden;
  background: var(--bg);
}
.bg-fx::before,
.bg-fx::after {
  content: ""; position: absolute; border-radius: 50%;
  will-change: transform;
}
/* Soft glow comes from the gradient falloff itself — no filter:blur (that
   blur was a heavy full-screen raster that delayed first paint on mobile). */
.bg-fx::before {
  width: 96vw; height: 96vw; top: -32vw; right: -24vw;
  background: radial-gradient(circle, rgba(230,51,41,0.26), transparent 70%);
  animation: bgdrift1 26s var(--ease) infinite alternate;
}
.bg-fx::after {
  width: 84vw; height: 84vw; bottom: -34vw; left: -26vw;
  background: radial-gradient(circle, rgba(150,22,28,0.20), transparent 70%);
  animation: bgdrift2 32s var(--ease) infinite alternate;
}
@keyframes bgdrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-7%, 9%) scale(1.14); } }
@keyframes bgdrift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(9%, -7%) scale(1.12); } }

/* fine dot grid, fading in from the top — editorial/tech texture */
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1.4px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(135% 95% at 50% -5%, #000 0%, transparent 72%);
          mask-image: radial-gradient(135% 95% at 50% -5%, #000 0%, transparent 72%);
}

/* ---------- cursor-follow spotlight ---------- */
.spotlight {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  background: radial-gradient(circle 460px at var(--mx, 50%) var(--my, 28%),
              rgba(255,110,80,0.11), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.spotlight.is-on { opacity: 1; }
@media (hover: none), (prefers-reduced-motion: reduce) { .spotlight { display: none; } }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--ember); color: #ffffff; }

a { color: inherit; text-decoration: none; }

/* =========================================================
   SHARED
   ========================================================= */
.section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(72px, 8vw, 112px) var(--gutter);
  position: relative;
}

.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ember-2);
  font-weight: 600;
}

.kicker {
  display: flex;
  align-items: baseline;
  gap: 0.7em;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.kicker__no { color: var(--ember); font-variant-numeric: tabular-nums; }

.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }

.section__title {
  font-family: var(--display);
  font-weight: 340;
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.section__lead {
  margin-top: 1.4rem;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
              color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn--solid {
  background: var(--ember);
  color: #ffffff;
  box-shadow: 0 12px 40px -12px rgba(230,51,41,0.6);
}
.btn--solid:hover { background: var(--ember-2); transform: translateY(-2px); box-shadow: 0 18px 48px -12px rgba(255,83,71,0.7); }
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.01);
}
.btn--ghost:hover { border-color: var(--ember); color: var(--ember-2); transform: translateY(-2px); }
.btn--text {
  padding: 0.95em 0.2em;
  color: var(--ink-soft);
  position: relative;
}
.btn--text::after {
  content: "";
  position: absolute; left: 0.2em; bottom: 0.55em;
  width: calc(100% - 0.4em); height: 1px;
  background: var(--faint);
  transform-origin: left;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}
.btn--text:hover { color: var(--ink); }
.btn--text:hover::after { background: var(--ember); transform: scaleX(1.0) translateY(0); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 22px;
  backdrop-filter: blur(14px) saturate(1.2);
  background: linear-gradient(180deg, rgba(11,10,9,0.82), rgba(11,10,9,0.35));
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line-soft); padding-block: 14px; }
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 2.6rem;
}
/* logo pinned left; links + lang + CTA grouped on the right */
.brand { margin-right: auto; }

.brand { display: inline-flex; align-items: center; gap: 0.6em; }
.brand__mark {
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--ember-2), var(--ember) 55%, #6e1410);
  box-shadow: 0 0 18px -2px rgba(230,51,41,0.8);
}
.brand__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.brand__dot { color: var(--ember); }

.nav__links { display: none; gap: 2.4rem; }
.nav__links a {
  font-size: 1.02rem; letter-spacing: 0.01em; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--ember); transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 1.3rem; }

.lang { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.9rem; font-weight: 600; }
.lang__btn {
  background: none; border: none; cursor: pointer; padding: 4px 2px;
  color: var(--faint); font: inherit; letter-spacing: 0.08em;
  transition: color 0.3s var(--ease);
}
.lang__btn:hover { color: var(--ink-soft); }
.lang__btn.is-active { color: var(--ember-2); }
.lang__sep { color: var(--line); }

.nav__cta { display: none; }

/* ---------- hamburger + mobile menu ---------- */
.nav__burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  border-radius: 11px; cursor: pointer; z-index: 110;
}
.nav__burger span {
  display: block; height: 1.6px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), width 0.35s var(--ease);
}
.nav__burger span:nth-child(2) { width: 68%; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); width: 100%; }

.nav__scrim {
  position: fixed; inset: 0; z-index: 89;
  background: rgba(6,5,4,0.55); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
body.menu-open .nav__scrim { opacity: 1; pointer-events: auto; }

.nav__menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 95;
  width: min(84vw, 360px);
  padding: 104px clamp(28px, 7vw, 44px) 40px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 80px -30px rgba(0,0,0,0.8);
  display: flex; flex-direction: column; gap: 1.4rem;
  transform: translateX(105%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
}
body.menu-open .nav__menu { transform: none; }
.nav__menu a:not(.btn) {
  font-family: var(--display); font-weight: 400; font-size: 1.5rem;
  letter-spacing: -0.01em; color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft); padding-bottom: 1rem;
  transition: color 0.3s var(--ease);
}
.nav__menu a:not(.btn):hover { color: var(--ember-2); }
.nav__menu-cta { margin-top: 0.8rem; justify-content: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;                 /* full-bleed section */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 120px 64px;
  overflow: hidden;
}
/* content stays inside the shared container */
.hero__container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.hero__mesh {
  position: absolute;
  top: -12%; right: 0;         /* anchored to the true viewport edge */
  width: min(72vw, 900px); height: min(82vh, 760px);
  background:
    radial-gradient(circle at 62% 42%, rgba(230,51,41,0.28), transparent 66%),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.14), transparent 66%);
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-4%, 4%, 0) scale(1.08); }
}

.hero__grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.hero__inner { position: relative; }

/* ---- right-side floating image cluster ---- */
.hero__visual { display: none; }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.12fr 0.88fr; }
  .hero__visual { display: block; position: relative; height: min(62vh, 580px); }
}
.hero__shot {
  position: absolute;
  border: 1px solid rgba(244,237,226,0.12);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.85);
}
.hero__shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__shot--main {
  top: 12%; right: 0; width: 55%; aspect-ratio: 4 / 5; z-index: 3;
  animation: floaty 7s var(--ease) infinite alternate;
}
.hero__shot--back {
  top: 0; left: 2%; width: 44%; aspect-ratio: 4 / 5; z-index: 1; opacity: 0.9;
  animation: floaty 8.5s var(--ease) -2s infinite alternate-reverse;
}
.hero__shot--third {
  bottom: 0; left: 19%; width: 42%; aspect-ratio: 4 / 5; z-index: 2; opacity: 0.96;
  animation: floaty 9.5s var(--ease) -1s infinite alternate;
}
@keyframes floaty {
  from { transform: translateY(-9px); }
  to   { transform: translateY(11px); }
}
.hero__badge {
  position: absolute; left: 3%; bottom: 12%; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.7em 1.1em;
  background: rgba(16,14,12,0.74); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
  animation: floaty 9s var(--ease) -1s infinite alternate;
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 12px var(--ember); }

.hero__title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 330;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.028em;
  margin: 1.4rem 0 0;
  max-width: 18ch;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  font-weight: 360;
  color: var(--ember-2);
}

.hero__sub {
  margin-top: 1.8rem;
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero__actions {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.hero__meta {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.dotdiv { width: 4px; height: 4px; border-radius: 50%; background: var(--ember); opacity: 0.7; }

.hero__scroll {
  position: relative;
  margin-top: clamp(40px, 7vw, 84px);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  width: max-content;
}
.hero__scroll-line {
  width: 64px; height: 1px; background: var(--line);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; width: 40%;
  background: var(--ember);
  animation: scrollline 2.4s var(--ease) infinite;
}
@keyframes scrollline {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(260%); }
}

/* =========================================================
   SERVICES
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.card {
  position: relative;
  background: var(--bg);
  padding: clamp(28px, 4vw, 48px);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: background 0.5s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: auto auto -40% -10%;
  width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(230,51,41,0.14), transparent 70%);
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.card:hover { background: var(--panel); }
.card:hover::before { opacity: 1; }
.card__index {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  border: none; outline: none; box-shadow: none;
}
.card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.01em;
  margin: 1.4rem 0 0.9rem;
  line-height: 1.05;
}
.card:hover .card__title { color: var(--ember-2); }
.card__desc { color: var(--muted); font-size: 0.98rem; flex: 1; }
.card__tag {
  margin-top: 1.6rem;
  align-self: flex-start;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.5em 0.9em;
  border: 1px solid var(--line);
  border-radius: 100px;
}

/* =========================================================
   SHOWCASE / PROOF
   ========================================================= */
.proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
}
.proof__source { display: flex; flex-direction: column; gap: 0.9rem; }
.proof__cap {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}
.proof__arrow {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--ember); transform: rotate(90deg); margin: 2px 0;
}
.proof__arrow-line { width: 54px; height: 2px; background: linear-gradient(90deg, transparent, var(--ember)); }
.proof__arrow-head {
  font-size: 2rem; line-height: 1; font-weight: 700;
  text-shadow: 0 0 18px rgba(230,51,41,0.6);
  animation: arrowpulse 1.8s var(--ease) infinite;
}
@keyframes arrowpulse {
  0%, 100% { transform: translateX(0); opacity: 0.75; }
  50%      { transform: translateX(6px); opacity: 1; }
}

/* ---------- SAMPLE marker on proof slots ---------- */
.slot--sample::before {
  content: ""; position: absolute; inset: 7px; z-index: 2; pointer-events: none;
  border: 1px dashed rgba(244,237,226,0.34); border-radius: 6px;
}
.slot__sample {
  position: absolute; top: 9px; left: 9px; z-index: 4; pointer-events: none;
  font-family: var(--body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink);
  background: rgba(11,10,9,0.66); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,83,71,0.55); border-radius: 6px;
  padding: 0.4em 0.6em; max-width: calc(100% - 18px);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 18px);
}

/* ---------- placeholder slots ---------- */
.slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.012) 0 12px, transparent 12px 24px),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--faint);
  overflow: hidden;
  transition: border-color 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease);
}
.slot::after { /* sheen sweep on hover */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,83,71,0.10) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
}
.slot:hover { border-color: var(--ember); color: var(--ink-soft); transform: translateY(-3px); }
.slot:hover::after { transform: translateX(120%); }
.slot__label {
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  font-style: italic;
}
.slot__sub { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.slot--source { aspect-ratio: 4 / 5; }
.slot--source .slot__label { color: var(--ember-2); }
.slot__play {
  position: absolute; inset: 0; margin: auto; z-index: 3;
  width: 56px; height: 56px; padding: 0 0 0 3px;
  display: grid; place-items: center;
  font-size: 0.95rem; color: var(--ink);
  background: rgba(11,10,9,0.42); backdrop-filter: blur(4px);
  border: 1px solid rgba(244,237,226,0.55); border-radius: 50%;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.slot__play:hover { transform: scale(1.08); background: var(--ember); color: #ffffff; border-color: var(--ember); }
.slot--video.is-playing .slot__play { opacity: 0; pointer-events: none; }

/* ---------- real media inside slots ---------- */
.slot > img,
.slot > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  z-index: 1;
}
.slot > img { transition: transform 0.9s var(--ease); }
.slot:hover > img { transform: scale(1.04); }
/* caption overlay on variation/work slots that carry real media */
.slot:has(> img) .slot__sub,
.slot:has(> video) .slot__sub {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  margin: 0; padding: 28px 12px 10px; text-align: left;
  color: var(--ink-soft);
  background: linear-gradient(to top, rgba(8,7,6,0.82), transparent);
}
.slot:has(> img) .slot__label,
.slot:has(> video) .slot__label { display: none; }

/* =========================================================
   WORK GALLERY — CSS columns masonry
   ========================================================= */
.masonry {
  column-count: 2;
  column-gap: clamp(12px, 2vw, 18px);
}
.masonry .slot {
  aspect-ratio: auto;
  height: 300px;
  margin-bottom: clamp(12px, 2vw, 18px);
  break-inside: avoid;
  display: flex;
}
.masonry .slot--tall { height: 400px; }

/* =========================================================
   PRICING
   ========================================================= */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.tier {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.tier:hover { border-color: var(--line); transform: translateY(-4px); }
.tier--feature {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(230,51,41,0.12), transparent 60%),
    var(--panel);
  border-color: rgba(230,51,41,0.35);
  box-shadow: 0 30px 80px -40px rgba(230,51,41,0.5);
}
.tier__badge {
  position: absolute; top: -11px; left: clamp(28px, 4vw, 40px);
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700;
  color: #ffffff; background: var(--ember);
  padding: 0.45em 0.9em; border-radius: 100px;
}
.tier__name {
  font-family: var(--display); font-weight: 400;
  font-size: 1.5rem; letter-spacing: -0.01em;
}
.tier__blurb { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; min-height: 2.8em; }
.tier__price {
  margin: 1.6rem 0 1.4rem;
  display: flex; align-items: baseline; gap: 0.3em;
  font-family: var(--display);
}
.tier__from { font-size: 0.8rem; color: var(--muted); font-family: var(--body); letter-spacing: 0.1em; text-transform: uppercase; }
.tier__amt { font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 360; letter-spacing: -0.02em; }
.tier--feature .tier__amt { color: var(--ember-2); }
.tier__per { font-size: 0.95rem; color: var(--muted); font-family: var(--body); }
.tier__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.tier__list li {
  position: relative; padding-left: 1.5em;
  font-size: 0.94rem; color: var(--ink-soft);
}
.tier__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ember); opacity: 0.85;
}
.tier__cta { margin-top: 2rem; justify-content: center; }

/* ---------- engagement (bespoke, no public prices) ---------- */
.engage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
.engage__item {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.engage__item:hover { transform: translateY(-4px); background: var(--panel); }
.engage__item--feature {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(230,51,41,0.12), transparent 60%),
    var(--panel);
  border-color: var(--line);
  box-shadow: 0 30px 80px -40px rgba(230,51,41,0.5);
}
.engage__no {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  border: none; outline: none; box-shadow: none;
}
.engage__name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem); letter-spacing: -0.01em;
  margin: 1.1rem 0 0.7rem; line-height: 1.05;
}
.engage__item:hover .engage__name,
.engage__item--feature .engage__name { color: var(--ember-2); }
.engage__desc { color: var(--muted); font-size: 0.98rem; }
.engage__tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: #fff; background: var(--ember); padding: 0.42em 0.8em; border-radius: 100px;
}
.engage__cta {
  margin-top: clamp(34px, 5vw, 60px);
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem; text-align: center;
}
.engage__note { color: var(--muted); font-size: 0.92rem; max-width: 46ch; }
@media (min-width: 769px) { .engage { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { text-align: center; }
.contact__inner { max-width: 720px; margin-inline: auto; }
.contact .kicker { justify-content: center; }
.contact__title {
  font-family: var(--display);
  font-weight: 330;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.contact__body { color: var(--ink-soft); max-width: 48ch; margin: 0 auto; font-size: 1.08rem; }
.contact__links {
  margin: 3rem auto 0;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.contact__link {
  display: flex; flex-direction: column; gap: 0.3rem; text-align: left;
  padding: 1.1rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 220px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
.contact__link:hover { border-color: var(--ember); transform: translateY(-3px); background: var(--panel); }
.contact__link-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember-2);
}
.contact__link-val { font-family: var(--display); font-size: 1.15rem; }
.contact__note { margin-top: 2.2rem; font-size: 0.86rem; color: var(--muted); }

/* ---------- social icons ---------- */
.socials {
  list-style: none;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 20px;
  margin: 2.4rem 0 0;
}
.socials a {
  display: inline-flex; color: var(--ink);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials a:hover { color: #e8622a; transform: translateY(-2px); }
.socials svg { width: 24px; height: 24px; display: block; }

/* ---------- WhatsApp button ---------- */
.btn--whatsapp {
  margin-top: 1.8rem;
  background: #25D366; color: #fff;
  box-shadow: 0 12px 40px -12px rgba(37,211,102,0.55);
}
.btn--whatsapp:hover {
  background: #1fae55; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 48px -12px rgba(37,211,102,0.6);
}
.btn--whatsapp__icon { flex: 0 0 auto; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 40px var(--gutter) 56px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer__brand { font-family: var(--display); color: var(--ink-soft); letter-spacing: 0.04em; }
.footer__tag { color: var(--faint); letter-spacing: 0.06em; }

/* =========================================================
   LIGHTBOX — click any photo/video to open full size
   ========================================================= */
.media-open { cursor: zoom-in; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 64px);
  background: rgba(10,5,6,0.92);
  backdrop-filter: blur(10px);
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  max-width: min(94vw, 1400px); max-height: 86vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__stage img,
.lightbox__stage video {
  max-width: min(94vw, 1400px); max-height: 86vh;
  width: auto; height: auto; display: block;
  border-radius: 10px;
  box-shadow: 0 50px 140px -30px rgba(0,0,0,0.9);
  animation: lbpop 0.35s var(--ease);
}
@keyframes lbpop { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: none; } }

.lightbox__btn {
  position: absolute; z-index: 2;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); color: var(--ink);
  border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer; line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lightbox__btn:hover { background: var(--ember); color: #fff; border-color: var(--ember); transform: scale(1.08); }
.lightbox__close { top: clamp(16px, 3vw, 32px); right: clamp(16px, 3vw, 32px); width: 50px; height: 50px; font-size: 1.6rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 2rem; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__prev { left: clamp(12px, 3vw, 32px); }
.lightbox__next { right: clamp(12px, 3vw, 32px); }
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: clamp(16px, 3vw, 30px);
  text-align: center; color: var(--ink-soft);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
}
@media (max-width: 600px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.5rem; }
  .lightbox__cap { display: none; }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
/* Only hide reveals once JS is confirmed running (.has-js on <html>).
   If JS fails or is disabled, content stays fully visible. */
.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.has-js .reveal.in {
  opacity: 1;
  transform: none;
}
/* staggered hero/group load via data-rd index */
.has-js .reveal[data-rd] { transition-delay: calc(var(--rd, 0) * 90ms); }

/* Above-the-fold hero: animate on load via CSS so the LCP text never waits
   for script.js to download (decouples LCP from JS on slow connections). */
.has-js .hero .reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: heroRise 0.7s var(--ease) both;
  animation-delay: calc(var(--rd, 0) * 80ms);
  transition: none;
}
.has-js .hero .reveal.in { opacity: 1; transform: none; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__mesh, .hero__scroll-line::after, .slot::after,
  .hero__shot, .hero__badge, .proof__arrow-head,
  .bg-fx::before, .bg-fx::after { animation: none; }
}

/* Mobile: backdrop-filter + full-screen blend are costly to rasterise on
   phone GPUs and delay first paint. Swap for solid fills; keep the look. */
@media (max-width: 900px) {
  .nav { backdrop-filter: none; background: rgba(13,10,11,0.92); }
  .nav__scrim { backdrop-filter: none; }
  .hero__badge { backdrop-filter: none; background: rgba(16,14,12,0.9); }
  .slot__sample { backdrop-filter: none; }
  .slot__play { backdrop-filter: none; }
  .lightbox { backdrop-filter: none; background: rgba(6,5,4,0.94); }
  .grain { display: none; }
}

/* =========================================================
   RESPONSIVE  — mobile-first base + layered breakpoints
   Base (≤599): single column, hamburger nav, proof stacked,
   cards/tiers 1-col, masonry 2-col.
   ========================================================= */

/* ≥600 — footer row */
@media (min-width: 600px) {
  .footer { flex-direction: row; justify-content: space-between; }
}

/* ≥769 — tablet/desktop grids: proof horizontal, 3-col cards/tiers/grid */
@media (min-width: 769px) {
  .proof { grid-template-columns: 1fr auto 1fr; align-items: center; }
  .proof__arrow { transform: none; margin: 0; }
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .tiers { grid-template-columns: repeat(3, 1fr); }
  .tier--feature { transform: scale(1.03); }
  .tier--feature:hover { transform: scale(1.03) translateY(-4px); }
  .masonry { column-count: 3; }
}

/* ≥900 — full inline nav (hamburger + drawer off), hero visual on */
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__menu, .nav__scrim { display: none; }
}

/* gallery stays at 3 columns on wide screens (6 curated items → 2 tidy rows) */

/* ≤1024 — trim heading scale, tighten hero so the CTA stays above the fold */
@media (max-width: 1024px) {
  .section__title { font-size: clamp(1.9rem, 5vw, 3rem); }
  .hero { padding-top: 92px; }
  .hero__title { font-size: clamp(2.2rem, 4.7vw, 3.3rem); }
  .hero__sub { margin-top: 1.2rem; }
  .hero__actions { margin-top: 1.7rem; }
  .hero__meta { margin-top: 1.7rem; }
  .hero__visual { height: min(54vh, 460px); }
}

/* ≤767 — mobile: cap section headings so they never dominate the screen */
@media (max-width: 767px) {
  .section__title { font-size: min(48px, 10vw); }
}

/* ≤480 — single column everything, smaller hero, full-width contact */
@media (max-width: 480px) {
  .masonry { column-count: 1; }
  .hero { min-height: auto; padding-top: 104px; }
  .hero__title { font-size: 2.95rem; }
  .contact__link { min-width: 0; width: 100%; }
}
