/* ============================================================
   PKING MEDIA - Shared Stylesheet
   Version: 4.0 (multi-page)
   Palette: deep black, ivory text, signal red as PUNCTUATION ONLY
   Red usage discipline mirrors the logo: small dots, never flooding.
   ============================================================ */

html, body {
  overflow-x: clip;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

:root {
  --bg:        #0a0908;
  --bg-2:      #110f0d;
  --bg-3:      #16130f;
  --ink:       #f4efe6;
  --ink-dim:   #a39f96;
  --ink-mute:  #6b6760;
  --line:      rgba(244, 239, 230, 0.08);
  --line-2:    rgba(244, 239, 230, 0.16);
  --red:       #E30613;
  --red-deep:  #8A0500;
  --red-glow:  rgba(227, 6, 19, 0.40);
  --red-soft:  rgba(227, 6, 19, 0.10);
  --grain-op:  0.06;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Inter Tight', system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: default;
}
body.is-loading { overflow: hidden; height: 100vh; }
::selection { background: var(--red); color: var(--ink); }

/* Film grain overlay */
body::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: var(--grain-op); mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
body::after {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 8999;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Red dot signature */
.rdot {
  display: inline-block;
  width: 0.28em; height: 0.28em;
  background: var(--red);
  border-radius: 50%;
  vertical-align: middle;
  transform: translateY(-0.05em);
  margin: 0 0.1em;
}

/* ----------- Loader ----------- */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.loader__logo {
  width: clamp(220px, 32vw, 460px);
  opacity: 0;
  transform: scale(0.96);
  filter: brightness(1);
}
.loader__meta {
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0;
  display: flex; align-items: center; gap: 0.7rem;
}
.loader__meta::before, .loader__meta::after {
  content: ""; width: 24px; height: 1px; background: var(--red);
}
.loader__bar {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--red);
}

/* ----------- Nav ----------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 9, 8, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(14px);
  padding-top: 0.85rem; padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
/* Solid nav on interior pages (no hero to sit over) */
.nav.nav--solid {
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  display: flex; align-items: center; gap: 0.8rem;
  height: 38px;
}
.nav__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.nav__menu {
  display: flex; align-items: center; gap: 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.nav__menu a { transition: color 0.25s ease; position: relative; }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 0%;
  background: var(--red); transition: width 0.35s ease;
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a:hover::after { width: 100%; }
.nav__menu a.is-active { color: var(--ink); }
.nav__menu a.is-active::after { width: 100%; }

/* Dropdown for Services */
.nav__group { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease;
  pointer-events: none;
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.3s ease, visibility 0s linear 0s, transform 0.3s ease;
  pointer-events: auto;
}
.nav__dropdown a {
  display: block;
  padding: 0.7rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}
.nav__dropdown a:hover { color: var(--ink); background: rgba(227, 6, 19, 0.08); }
.nav__dropdown a::after { display: none; }

.nav__cta {
  background: var(--ink); color: var(--bg);
  padding: 0.7rem 1.3rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s ease;
  border: 1px solid var(--ink);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.nav__cta::before {
  content: ""; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
}
.nav__cta:hover {
  background: var(--red); color: var(--ink);
  border-color: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
}
.nav__cta:hover::before { background: var(--ink); box-shadow: none; }

/* Mobile menu button */
.nav__burger {
  display: none;
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
.nav__burger span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav__burger span:nth-child(1) { top: 10px; }
.nav__burger span:nth-child(2) { top: 16px; }
.nav__burger span:nth-child(3) { top: 22px; }
.nav.is-mobile-open .nav__burger span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav.is-mobile-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-mobile-open .nav__burger span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__burger { display: block; }
  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(80vw, 340px);
    height: 100vh;
    background: rgba(10, 9, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 5rem 2.5rem;
    transition: right 0.4s cubic-bezier(.22,.9,.3,1);
    border-left: 1px solid var(--line);
  }
  .nav.is-mobile-open .nav__menu { right: 0; }
  .nav__menu a { font-size: 1rem; }
  .nav__dropdown {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 0.5rem 0 0 1rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    margin-top: 0.6rem;
  }
  .nav__dropdown a { padding: 0.4rem 0; font-size: 0.85rem; }
  .nav__cta { align-self: flex-start; margin-top: 1rem; }
}

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.05rem 1.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  font-family: var(--sans);
}
.btn:hover { border-color: var(--ink); }
.btn--red {
  background: var(--red);
  color: var(--ink);
  border-color: var(--red);
  position: relative;
}
.btn--red:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--ink);
}
.btn__arrow {
  width: 14px; height: 14px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ----------- Hero ----------- */
.hero {
  min-height: 100vh;
  padding: clamp(7rem, 14vh, 11rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(227, 6, 19, 0.06), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(227, 6, 19, 0.04), transparent 50%),
    linear-gradient(180deg, #0a0908 0%, #0f0d0a 100%);
  z-index: -1;
}
.hero__frame {
  position: absolute;
  inset: clamp(1.5rem, 4vh, 3rem) clamp(1.5rem, 4vw, 3rem);
  pointer-events: none;
  border: 1px solid var(--line);
}
.hero__frame::before, .hero__frame::after,
.hero__frame .corner-tl, .hero__frame .corner-br {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--red);
}
.hero__frame::before  { top: -1px; left: -1px;  border-right: none; border-bottom: none; }
.hero__frame::after   { top: -1px; right: -1px; border-left: none;  border-bottom: none; }
.hero__frame .corner-tl { bottom: -1px; left: -1px;  border-right: none; border-top: none; }
.hero__frame .corner-br { bottom: -1px; right: -1px; border-left: none;  border-top: none; }

.hero__metabar {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.hero__metabar span { display: flex; align-items: center; gap: 0.6rem; }
.hero__rec {
  width: 8px; height: 8px;
  background: var(--red); border-radius: 50%;
  animation: rec 1.4s ease-in-out infinite;
}
@keyframes rec {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--red); }
  50%      { opacity: 0.3; box-shadow: 0 0 0 var(--red); }
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 2rem;
  opacity: 0;
  display: flex; align-items: center; gap: 0.7rem;
}
.hero__eyebrow::before {
  content: ""; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 9.5vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 16ch;
}
.hero__title .word {
  display: inline-block; overflow: hidden;
  line-height: 1; padding-bottom: 0.08em;
  margin-right: 0.18em;
}
.hero__title .word > span {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute;
  right: -0.35em;
  bottom: 0.18em;
  width: 0.18em;
  height: 0.18em;
  background: var(--red);
  border-radius: 50%;
}
.hero__sub {
  margin-top: clamp(1.5rem, 4vh, 2.4rem);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-dim);
  max-width: 52ch;
  line-height: 1.55;
  opacity: 0;
}
.hero__sub strong { color: var(--ink); font-weight: 500; }
.hero__ctas {
  margin-top: clamp(2rem, 5vh, 3.2rem);
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0;
}

.hero__scroll {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  opacity: 0;
}
.hero__scroll .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ----------- Sub-hero (for service/interior pages) ----------- */
.subhero {
  padding: clamp(8rem, 18vh, 12rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vh, 6rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.subhero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(227, 6, 19, 0.05), transparent 55%),
    linear-gradient(180deg, #0a0908 0%, #0f0d0a 100%);
  z-index: -1;
}
.subhero__inner {
  max-width: 1300px;
  margin: 0 auto;
}
.subhero__crumbs {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.subhero__crumbs::before {
  content: ""; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}
.subhero__crumbs a { color: var(--ink-dim); transition: color 0.25s ease; }
.subhero__crumbs a:hover { color: var(--ink); }
.subhero__crumbs .sep { color: var(--ink-mute); }
.subhero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 20ch;
}
.subhero__title em {
  font-style: italic;
  font-weight: 300;
  position: relative;
}
.subhero__title em::after {
  content: "";
  position: absolute;
  right: -0.3em; bottom: 0.18em;
  width: 0.14em; height: 0.14em;
  background: var(--red); border-radius: 50%;
}
.subhero__sub {
  margin-top: 1.8rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-dim);
  max-width: 60ch;
  line-height: 1.6;
}
.subhero__sub strong { color: var(--ink); font-weight: 500; }
.subhero__meta {
  margin-top: 2.6rem;
  display: flex; flex-wrap: wrap; gap: 2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.subhero__meta span { display: flex; align-items: center; gap: 0.6rem; }
.subhero__meta b { color: var(--ink); font-weight: 500; }
.subhero__meta span::before {
  content: ""; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
}

/* ----------- Section base ----------- */
section {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) clamp(1.25rem, 4vw, 3rem);
}
.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: ""; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.section-title em {
  font-style: italic; font-weight: 300; position: relative;
}
.section-title em::after {
  content: "";
  position: absolute;
  right: -0.3em; bottom: 0.18em;
  width: 0.13em; height: 0.13em;
  background: var(--red); border-radius: 50%;
}

/* ============================================================
   THE REEL (home page only)
   ============================================================ */
.reel {
  position: relative;
  background: var(--bg);
  padding: clamp(5rem, 10vh, 8rem) 0 clamp(4rem, 8vh, 6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.reel__hud {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--bg) 60%, transparent);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  pointer-events: none;
  margin-bottom: clamp(2rem, 6vh, 4rem);
}
.reel__hud-tag { display: flex; align-items: center; gap: 0.7rem; }
.reel__hud-tag::before {
  content: ""; width: 7px; height: 7px;
  background: var(--red); border-radius: 50%;
  animation: rec 1.4s ease-in-out infinite;
}
.reel__timecode { color: var(--ink); font-variant-numeric: tabular-nums; }
.reel__timecode b { color: var(--red); font-weight: 500; }

.reel__intro {
  max-width: 1300px;
  margin: 0 auto clamp(3rem, 8vh, 5rem);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.reel__intro h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.reel__intro h2 em { font-style: italic; position: relative; }
.reel__intro h2 em::after {
  content: "";
  position: absolute;
  right: -0.22em; bottom: 0.18em;
  width: 0.13em; height: 0.13em;
  background: var(--red); border-radius: 50%;
}

.rframe {
  position: relative;
  min-height: 75vh;
  padding: clamp(3rem, 6vh, 5rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.rframe + .rframe { border-top: 1px solid var(--line); }

.rframe__bg {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.rframe.is-live .rframe__bg { opacity: 1; }
.rframe[data-anim="boot"] .rframe__bg {
  background:
    radial-gradient(circle at 12% 30%, rgba(227, 6, 19, 0.07), transparent 45%),
    linear-gradient(180deg, transparent, rgba(227, 6, 19, 0.02));
}
.rframe[data-anim="heritage"] .rframe__bg {
  background:
    radial-gradient(ellipse at 80% 40%, rgba(180, 130, 60, 0.05), transparent 55%),
    repeating-linear-gradient(0deg, rgba(244,239,230,0.012) 0 1px, transparent 1px 4px);
}
.rframe[data-anim="split"] .rframe__bg {
  background:
    radial-gradient(circle at 50% 70%, rgba(227, 6, 19, 0.08), transparent 50%),
    linear-gradient(180deg, #100c08, #0a0908);
}
.rframe[data-anim="glass"] .rframe__bg {
  background:
    radial-gradient(circle at 70% 20%, rgba(120, 150, 200, 0.04), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(227, 6, 19, 0.03), transparent 60%);
}

.rframe::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(244, 239, 230, 0.018) 0 1px,
    transparent 1px 3px
  );
  pointer-events: none;
}

.rframe__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(2rem, 4vh, 3rem);
  min-height: 60vh;
}

.rframe__hdr {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  gap: 1rem;
}
.rframe__num {
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 0.5rem;
  font-variant-numeric: tabular-nums;
  min-width: 11ch;
}
.rframe__num::before {
  content: ""; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}
.rframe__type {
  text-align: right;
  line-height: 1.5;
}
.rframe__type span {
  color: var(--ink-mute);
  display: block; margin-top: 0.3rem;
  font-size: 0.62rem; letter-spacing: 0.28em;
}

.rframe__body {
  display: flex; align-items: center; justify-content: flex-start;
  position: relative;
}
.rframe__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 9.5vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  max-width: 100%;
  word-break: break-word;
}
.rframe__name .wrd {
  display: inline-block;
  margin-right: 0.18em;
  white-space: nowrap;
}
.rframe__name .ltr {
  display: inline-block;
  will-change: transform, opacity, clip-path, filter;
}
.rframe__name .ltr.amp {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-dim);
  margin: 0 0.05em;
}
.rframe__name::after {
  content: "";
  display: inline-block;
  width: 0.16em; height: 0.16em;
  background: var(--red);
  border-radius: 50%;
  margin-left: 0.18em;
  vertical-align: 0.55em;
  opacity: 0;
  transform: scale(0);
}
.rframe.is-live .rframe__name::after {
  animation: dotPop 0.5s ease-out forwards;
  animation-delay: 1.2s;
}
@keyframes dotPop {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}

.rframe__underline {
  position: absolute;
  bottom: -0.1em; left: 0;
  height: 2px;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 14px rgba(227, 6, 19, 0.5);
}

.rframe__scanline {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
  box-shadow: 0 0 24px rgba(227, 6, 19, 0.6);
  transform: translateX(-20px);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

.rframe__shimmer {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 40%;
  background: linear-gradient(105deg, transparent 30%, rgba(244, 239, 230, 0.08) 50%, transparent 70%);
  transform: translateX(-150%);
  pointer-events: none;
  z-index: 1;
}

.rframe__ftr {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem;
}
.rframe__deliv {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.rframe__deliv span {
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 0;
}
.rframe__loc {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.6;
  opacity: 0;
}
.rframe__loc b { color: var(--ink); font-weight: 500; }
.rframe__loc b::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
  margin-right: 0.5rem; vertical-align: middle;
}

.rframe__corners span {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--red);
  opacity: 0;
  z-index: 2;
}
.rframe__corners .tl { top: clamp(2rem, 4vh, 3rem); left: clamp(1.25rem, 4vw, 3rem); border-right: none; border-bottom: none; }
.rframe__corners .tr { top: clamp(2rem, 4vh, 3rem); right: clamp(1.25rem, 4vw, 3rem); border-left: none; border-bottom: none; }
.rframe__corners .bl { bottom: clamp(2rem, 4vh, 3rem); left: clamp(1.25rem, 4vw, 3rem); border-right: none; border-top: none; }
.rframe__corners .br { bottom: clamp(2rem, 4vh, 3rem); right: clamp(1.25rem, 4vw, 3rem); border-left: none; border-top: none; }

.rframe[data-anim="invite"] .rframe__bg {
  background:
    radial-gradient(circle at 50% 50%, rgba(227, 6, 19, 0.10), transparent 55%),
    linear-gradient(180deg, transparent, rgba(227, 6, 19, 0.04));
}
.rframe[data-anim="invite"] .rframe__inner { text-align: left; }
.rframe[data-anim="invite"] .rframe__name {
  font-style: italic;
  font-weight: 300;
}
.rframe[data-anim="invite"] .rframe__name::after { display: none; }

.rframe__cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.85em;
  background: var(--red);
  margin-left: 0.08em;
  vertical-align: -0.1em;
  opacity: 0;
  box-shadow: 0 0 12px rgba(227, 6, 19, 0.6);
}
.rframe.is-live .rframe__cursor {
  animation: caretBlink 0.9s steps(2, end) infinite;
  animation-delay: 1.6s;
}
@keyframes caretBlink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.rframe__ring {
  position: absolute;
  pointer-events: none;
  z-index: 4;
}
.rframe__ring svg { width: 100%; height: 100%; overflow: visible; }
.rframe__ring path {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(227, 6, 19, 0.45));
}

.rframe__cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
  opacity: 0;
  align-self: center;
}
.rframe__cta::before {
  content: ""; width: 7px; height: 7px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 10px rgba(227, 6, 19, 0.6);
  animation: rec 1.4s ease-in-out infinite;
}
.rframe__cta:hover { background: var(--red); color: var(--ink); }
.rframe__cta:hover::before { background: var(--ink); box-shadow: none; animation: none; }
.rframe[data-anim="invite"] .rframe__ftr { align-items: center; }

/* Frame media (backdrop/split) */
.rframe[data-media="backdrop"] .rframe__media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.rframe[data-media="backdrop"] .rframe__media img,
.rframe[data-media="backdrop"] .rframe__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--focal, 50% 50%);
  filter: brightness(0.55) contrast(1.05) saturate(0.92);
  transform: scale(1.02);
}
.rframe[data-media="backdrop"] .rframe__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 9, 8, 0.45) 0%,
      rgba(10, 9, 8, 0.2) 35%,
      rgba(10, 9, 8, 0.35) 93%,
      rgba(10, 9, 8, 0.7) 100%),
    linear-gradient(90deg,
      rgba(10, 9, 8, 0.45) 0%,
      rgba(10, 9, 8, 0.15) 50%,
      rgba(10, 9, 8, 0.45) 100%);
  pointer-events: none;
}
.rframe[data-media] .rframe__inner { position: relative; z-index: 2; }
.rframe[data-media] .rframe__corners { z-index: 3; }
.rframe[data-media] .rframe__bg { display: none; }

.rframe[data-media="backdrop"] .rframe__media img,
.rframe[data-media="backdrop"] .rframe__media video {
  transition: filter 1.6s ease, transform 6s ease;
}
.rframe.is-live[data-media="backdrop"] .rframe__media img,
.rframe.is-live[data-media="backdrop"] .rframe__media video {
  filter: brightness(0.7) contrast(1.05) saturate(0.95);
  transform: scale(1.05);
}

.rframe__media img,
.rframe__media video {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.rframe__media img.is-loaded,
.rframe__media video.is-loaded { opacity: 1; }

.reel__outro {
  max-width: 1300px;
  margin: clamp(3rem, 6vh, 5rem) auto 0;
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.reel__outro-left { display: flex; align-items: center; gap: 0.7rem; }
.reel__outro-left::before {
  content: ""; width: 28px; height: 1px; background: var(--red);
}
.reel__outro b { color: var(--ink); font-weight: 500; }

@media (max-width: 700px) {
  .rframe { min-height: 50vh; }
  .rframe__hdr { flex-direction: column; gap: 0.6rem; align-items: flex-start; }
  .rframe__type { text-align: left; }
  .rframe__ftr { flex-direction: column; align-items: flex-start; }
  .rframe__loc { text-align: left; }
  .rframe__name { font-size: clamp(1.8rem, 11vw, 4rem); letter-spacing: -0.025em; }
  .rframe__name .wrd { white-space: normal; }
  .rframe__inner { min-height: auto; gap: 1.2rem; }
  .rframe__inner, .rframe__hdr, .rframe__body, .rframe__ftr, .rframe__deliv, .rframe__deliv span, .rframe__loc {
    background: transparent;
    background-color: transparent;
  }
}

/* ----------- Services grid (home + service hub) ----------- */
.services { background: var(--bg); }
.services__head {
  display: flex; flex-direction: column; gap: 1.2rem;
  max-width: 1300px; margin: 0 auto 4rem;
}
.services__sub {
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  max-width: 50ch;
  margin-top: 1rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services__grid { grid-template-columns: 1fr; } }
.service {
  background: var(--bg);
  padding: 2.4rem 1.8rem 2rem;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease;
  color: inherit;
}
.service::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--red-soft), transparent 60%);
  opacity: 0; transition: opacity 0.5s ease;
}
.service:hover::before { opacity: 1; }
.service:hover { background: var(--bg-2); }
.service__num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 0.5rem;
}
.service__num::before {
  content: ""; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
}
.service__icon {
  width: 56px; height: 56px;
  margin: 1.5rem 0 2rem;
  color: var(--ink);
}
.service__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; }
.service__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.service__desc {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}
.service__more {
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service:hover .service__more { opacity: 1; transform: translateY(0); }

/* ----------- Service page: what we offer list ----------- */
.offer { background: var(--bg-2); border-top: 1px solid var(--line); }
.offer__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 6vw, 6rem);
}
@media (max-width: 900px) { .offer__inner { grid-template-columns: 1fr; } }
.offer__intro {
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  margin-top: 1.4rem;
}
.offer__intro strong { color: var(--ink); font-weight: 500; }
.offer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .offer__list { grid-template-columns: 1fr; } }
.offer__item {
  background: var(--bg);
  padding: 2rem 1.6rem;
  transition: background 0.4s ease;
}
.offer__item:hover { background: var(--bg-3); }
.offer__item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  display: flex; align-items: baseline; gap: 0.3rem;
}
.offer__item h3::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-3px);
}
.offer__item p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ----------- Process / how-we-work numbered timeline ----------- */
.process { background: var(--bg); border-top: 1px solid var(--line); }
.process__inner { max-width: 1300px; margin: 0 auto; }
.process__head { margin-bottom: 4rem; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1000px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .process__steps { grid-template-columns: 1fr; } }
.process__step {
  background: var(--bg);
  padding: 2.4rem 1.4rem 2rem;
  position: relative;
  transition: background 0.4s ease;
  min-height: 240px;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.process__step:hover { background: var(--bg-2); }
.process__step-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 0.5rem;
}
.process__step-num::before {
  content: ""; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
}
.process__step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.process__step p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ----------- Pricing summary strip ----------- */
.pricing { background: var(--bg-2); border-top: 1px solid var(--line); }
.pricing__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 900px) { .pricing__inner { grid-template-columns: 1fr; } }
.pricing__box {
  border: 1px solid var(--line-2);
  padding: 2.4rem;
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.05), transparent 70%);
}
.pricing__box .band {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.pricing__box .band::before {
  content: ""; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
}
.pricing__box .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pricing__box .num em { font-style: italic; }
.pricing__box .num small {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  margin-top: 0.8rem;
  text-transform: uppercase;
  font-weight: 400;
}
.pricing__box p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 1.4rem;
}
.pricing__box p strong { color: var(--ink); font-weight: 500; }

/* ----------- Story ----------- */
.story {
  background: var(--bg-2);
  padding-top: clamp(6rem, 14vh, 10rem);
  padding-bottom: clamp(6rem, 14vh, 10rem);
}
.story__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 6rem);
}
@media (max-width: 900px) { .story__inner { grid-template-columns: 1fr; } }
.story__col-left { position: sticky; top: 6rem; align-self: start; }
@media (max-width: 900px) { .story__col-left { position: static; } }
.story__heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 1.4rem;
}
.story__heading em { font-style: italic; font-weight: 300; position: relative; }
.story__heading em::after {
  content: "";
  position: absolute;
  right: -0.25em; bottom: 0.18em;
  width: 0.1em; height: 0.1em;
  background: var(--red); border-radius: 50%;
}
.story__meta {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  display: grid; gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
}
.story__meta span b { color: var(--ink); font-weight: 500; }
.story__meta span b::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
  margin-right: 0.6rem; vertical-align: middle;
}

.story__body { display: flex; flex-direction: column; gap: 2.2rem; }
.story__chapter {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--ink-dim);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.7rem;
}
.story__chapter::before {
  content: ""; width: 24px; height: 1px; background: var(--red);
}
.story__line {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.005em;
}
.story__line .accent { color: var(--ink); font-style: italic; font-weight: 400; }
.story__line.dim { color: var(--ink-dim); }
.pullquote {
  margin: 1rem 0;
  padding: 2.4rem 2rem;
  border-left: 2px solid var(--red);
  background: linear-gradient(90deg, var(--red-soft), transparent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
}
.pullquote::before {
  content: "\201C";
  color: var(--red);
  font-size: 4rem;
  line-height: 0;
  margin-right: 0.3rem;
  vertical-align: -0.4em;
  font-weight: 400;
}
.pullquote__attr {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Home story teaser (condensed) */
.story-teaser {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.story-teaser__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 900px) { .story-teaser__inner { grid-template-columns: 1fr; } }
.story-teaser__lines {
  display: flex; flex-direction: column; gap: 1.4rem;
}
.story-teaser__lines p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink-dim);
  font-weight: 300;
}
.story-teaser__lines p strong { color: var(--ink); font-weight: 400; font-style: italic; }
.story-teaser__cta { margin-top: 2rem; }

/* ----------- Portfolio grid ----------- */
.portfolio { background: var(--bg); }
.portfolio__head {
  max-width: 1300px; margin: 0 auto 3.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem;
}
.portfolio__count {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.portfolio__count b { color: var(--ink); }
.portfolio__count b::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
  margin-right: 0.4rem; vertical-align: middle;
}
.portfolio__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 12vw;
  gap: 1rem;
}
@media (max-width: 900px) { .portfolio__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 28vw; } }
@media (max-width: 560px) { .portfolio__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 50vw; gap: 0.6rem; } }

.pf-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #14110d 0%, #0a0908 100%);
  cursor: default;
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.pf-card.pf-card--link { cursor: pointer; }

.pf-card__hint {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  background: rgba(10, 9, 8, 0.7);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.pf-card__hint::before {
  content: ""; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 8px rgba(227, 6, 19, 0.7);
}
.pf-card__hint svg {
  width: 11px; height: 11px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 2;
}
.pf-card.pf-card--link:hover .pf-card__hint {
  opacity: 1;
  transform: translateY(0);
}
.pf-card:hover { border-color: var(--red); transform: translateY(-4px); }

.pf-hero   { grid-column: span 8; grid-row: span 2; }
.pf-square { grid-column: span 4; grid-row: span 1; }
.pf-wide   { grid-column: span 6; grid-row: span 1; }
.pf-tall   { grid-column: span 4; grid-row: span 2; }
@media (max-width: 900px) {
  .pf-hero   { grid-column: span 6; grid-row: span 2; }
  .pf-square { grid-column: span 3; grid-row: span 1; }
  .pf-wide   { grid-column: span 6; grid-row: span 1; }
  .pf-tall   { grid-column: span 3; grid-row: span 2; }
}
@media (max-width: 560px) {
  .pf-card { grid-column: span 2 !important; grid-row: span 1 !important; }
}

.pf-card__media {
  position: absolute; inset: 0;
  z-index: 1;
  overflow: hidden;
}
.pf-card__media img,
.pf-card__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--focal, 50% 50%);
  filter: brightness(0.85) contrast(1.05) saturate(0.95);
  transform: scale(1.02);
  transition: filter 0.6s ease, transform 5s ease, opacity 0.8s ease;
  opacity: 0;
}
.pf-card__media img.is-loaded,
.pf-card__media video.is-loaded { opacity: 1; }
.pf-card:hover .pf-card__media img,
.pf-card:hover .pf-card__media video {
  filter: brightness(0.95) contrast(1.05) saturate(1);
  transform: scale(1.06);
}
.pf-card--media .pf-card__art { opacity: 0; }
.pf-card .pf-card__caption,
.pf-card .pf-card__index { z-index: 2; }
.pf-card--media .pf-card__caption {
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  padding-top: 3rem;
}
.pf-card__art {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--red-soft), transparent 60%),
    repeating-linear-gradient(45deg, rgba(244,239,230,0.02) 0 2px, transparent 2px 6px),
    linear-gradient(180deg, #1a1611, #0a0908);
  display: flex; align-items: center; justify-content: center;
}
.pf-card__art::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: 8px; height: 8px;
  background-image: radial-gradient(circle, rgba(244,239,230,0.18) 1px, transparent 1.5px);
  background-size: 14px 8px;
  background-repeat: repeat-x;
  opacity: 0.4;
}
.pf-card__art::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 8px; height: 8px;
  background-image: radial-gradient(circle, rgba(244,239,230,0.18) 1px, transparent 1.5px);
  background-size: 14px 8px;
  background-repeat: repeat-x;
  opacity: 0.4;
}
.pf-card__symbol {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--ink-dim);
  opacity: 0.4;
  font-style: italic;
  letter-spacing: -0.02em;
  transform: translateY(-0.5rem);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease;
}
.pf-card:hover .pf-card__symbol { opacity: 0.85; transform: translateY(-1.5rem); color: var(--ink); }
.pf-card__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.2rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}
.pf-card__client {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: flex; align-items: baseline; gap: 0.3em;
}
.pf-card__client::after {
  content: ""; display: inline-block;
  width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
}
.pf-card__type {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.pf-card__index {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  background: rgba(0,0,0,0.5);
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 2px;
}

/* ----------- Why ----------- */
.why { background: var(--bg-2); border-top: 1px solid var(--line); }
.why__inner { max-width: 1300px; margin: 0 auto; }
.why__head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: 4rem;
}
@media (max-width: 800px) { .why__head { grid-template-columns: 1fr; } }
.why__intro {
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  max-width: 50ch;
}
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .why__grid { grid-template-columns: 1fr; } }
.why__card {
  background: var(--bg-2);
  padding: 3rem 2rem 2.6rem;
  position: relative;
  transition: background 0.4s ease;
}
.why__card:hover { background: var(--bg-3); }
.why__card .num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.why__card .num::before {
  content: ""; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
}
.why__card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.why__card h3 em { font-style: italic; font-weight: 300; position: relative; }
.why__card h3 em::after {
  content: "";
  position: absolute;
  right: -0.2em; bottom: 0.15em;
  width: 0.1em; height: 0.1em;
  background: var(--red); border-radius: 50%;
}
.why__card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----------- Stats ----------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 4rem clamp(1.25rem, 4vw, 3rem);
}
.stats__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
}
@media (max-width: 800px) { .stats__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats__inner { grid-template-columns: 1fr; } }
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 0.1em;
}
.stat__num .suffix { color: var(--red); font-size: 0.5em; margin-left: 0.1em; font-family: var(--mono); font-weight: 500; letter-spacing: 0.1em; }
.stat__label {
  margin-top: 0.7rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 0.5rem;
}
.stat__label::before {
  content: ""; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
}

/* ----------- Testimonials ----------- */
.testimonials { background: var(--bg); }
.testimonials__inner { max-width: 1300px; margin: 0 auto; }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }
.quote-card {
  border: 1px solid var(--line);
  padding: 2.4rem 2rem 2rem;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  position: relative;
  transition: border-color 0.4s ease, transform 0.5s ease;
}
.quote-card:hover { border-color: var(--red); transform: translateY(-4px); }
.quote-card::before {
  content: "\201C";
  position: absolute; top: 0.4rem; right: 1.4rem;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--red);
  opacity: 0.35;
  line-height: 1;
}
.quote-card__stars {
  display: flex; gap: 0.3rem; color: var(--red); margin-bottom: 1.2rem;
  font-size: 0.85rem;
}
.quote-card__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quote-card__attr {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.25rem;
}
.quote-card__name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  display: flex; align-items: center; gap: 0.5rem;
}
.quote-card__name::before {
  content: ""; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
}
.quote-card__role {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ----------- CTA ----------- */
.cta {
  background: var(--bg);
  padding: clamp(6rem, 16vh, 11rem) clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--red-soft), transparent 55%);
  z-index: 0;
}
.cta__inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.cta__eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
}
.cta__eyebrow::before, .cta__eyebrow::after {
  content: ""; width: 28px; height: 1px; background: var(--red);
}
.cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.025em;
}
.cta__title em { font-style: italic; position: relative; }
.cta__title em::after {
  content: "";
  position: absolute;
  right: -0.18em; bottom: 0.15em;
  width: 0.08em; height: 0.08em;
  background: var(--red); border-radius: 50%;
}
.cta__sub {
  margin: 1.8rem auto 0;
  color: var(--ink-dim);
  max-width: 50ch;
  font-size: 1.05rem;
  line-height: 1.6;
}
.cta__buttons {
  margin-top: 2.8rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
}
.magnet { position: relative; display: inline-block; will-change: transform; }
.magnet .btn { font-size: 0.82rem; padding: 1.15rem 2rem; }

.cta__details {
  margin-top: 3.4rem;
  display: flex; flex-wrap: wrap; gap: 2.4rem;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cta__details b { color: var(--ink); font-weight: 500; }
.cta__details span::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
  margin-right: 0.6rem; vertical-align: middle;
}

/* ----------- Contact grid (contact page) ----------- */
.contact { background: var(--bg); }
.contact__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 800px) { .contact__inner { grid-template-columns: 1fr; } }
.contact__card {
  background: var(--bg);
  padding: 2.4rem 2rem 2.2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.4s ease;
  color: inherit;
}
.contact__card:hover { background: var(--bg-2); }
.contact__card .label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 0.5rem;
}
.contact__card .label::before {
  content: ""; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
}
.contact__card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.contact__card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}
.contact__card .go {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: transform 0.3s ease;
}
.contact__card:hover .go { transform: translateX(4px); }

/* ----------- Footer ----------- */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 4rem clamp(1.25rem, 4vw, 3rem) 2rem;
}
.footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand {
  margin-bottom: 1.4rem;
  height: 50px;
  display: flex; align-items: center;
}
.footer__brand img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.footer__tag {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36ch;
}
.footer__heading {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer__heading::before {
  content: ""; width: 5px; height: 5px;
  background: var(--red); border-radius: 50%;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__list a, .footer__list li {
  color: var(--ink-dim); font-size: 0.95rem;
  transition: color 0.25s ease;
}
.footer__list a:hover { color: var(--red); }
.footer__bottom {
  max-width: 1400px; margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ----------- Reveal helpers ----------- */
.reveal { opacity: 0; transform: translateY(40px); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9500;
  background: rgba(5, 4, 3, 0.92);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vh, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}
.lightbox::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

.lightbox__stage {
  position: relative;
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  max-height: 88vh;
  background: var(--bg);
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.5s cubic-bezier(.22,.9,.3,1);
  overflow: hidden;
}
.lightbox.is-open .lightbox__stage {
  transform: scale(1) translateY(0);
}

.lightbox__stage::before,
.lightbox__stage::after,
.lightbox__stage > .ctl,
.lightbox__stage > .cbr {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--red);
  z-index: 5;
  pointer-events: none;
}
.lightbox__stage::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.lightbox__stage::after  { top: 0; right: 0; border-left: none; border-bottom: none; }
.lightbox__stage > .ctl  { bottom: 0; left: 0; border-right: none; border-top: none; }
.lightbox__stage > .cbr  { bottom: 0; right: 0; border-left: none; border-top: none; }

.lightbox__hdr {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 4;
  padding: 1rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.85), transparent);
  pointer-events: none;
}
.lightbox__title {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  pointer-events: auto;
}
.lightbox__title::before {
  content: ""; width: 7px; height: 7px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 8px rgba(227, 6, 19, 0.7);
  animation: rec 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.lightbox__title b { color: var(--red); font-weight: 500; }
.lightbox__meta {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  pointer-events: auto;
}

.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 6;
  width: 44px; height: 44px;
  background: rgba(10, 9, 8, 0.6);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(6px);
}
.lightbox__close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.06);
}
.lightbox__close svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.lightbox__content {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}
.lightbox__content iframe,
.lightbox__content video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox__loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
  pointer-events: none;
  transition: opacity 0.4s ease;
  background: var(--bg);
}
.lightbox__loader.is-hidden { opacity: 0; }
.lightbox__loader-bar {
  width: 60%; max-width: 280px;
  height: 2px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.lightbox__loader-bar::after {
  content: "";
  position: absolute; left: 0; top: 0;
  height: 100%; width: 30%;
  background: var(--red);
  animation: lbBar 1.4s ease-in-out infinite;
}
@keyframes lbBar {
  0%   { left: -30%; }
  100% { left: 100%; }
}
.lightbox__loader-text {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.lightbox__fallback {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2rem;
  text-align: center;
  background: var(--bg);
}
.lightbox__fallback.is-shown { display: flex; }
.lightbox__fallback p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--ink);
  max-width: 40ch;
  line-height: 1.5;
}
.lightbox__fallback p b { color: var(--red); font-weight: 500; }
.lightbox__fallback a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  background: var(--red);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s ease;
}
.lightbox__fallback a:hover { background: var(--red-deep); }

body.lb-locked { overflow: hidden; }

@media (max-width: 600px) {
  .lightbox__hdr { padding: 0.8rem 1rem; }
  .lightbox__close { top: 0.6rem; right: 0.6rem; width: 38px; height: 38px; }
  .lightbox__title, .lightbox__meta { font-size: 0.6rem; letter-spacing: 0.22em; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(5rem, 12vh, 9rem) clamp(1.25rem, 4vw, 3rem);
}
.faq__inner { max-width: 1100px; margin: 0 auto; }
.faq__head { margin-bottom: clamp(3rem, 6vh, 4.5rem); }
.faq__head p {
  margin-top: 1.4rem;
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  max-width: 60ch;
}
.faq__list { border-top: 1px solid var(--line); }
.faq__item {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.faq__item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item:hover summary::before {
  background: var(--red);
  box-shadow: 0 0 10px rgba(227, 6, 19, 0.5);
}
.faq__item summary::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--ink-dim);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55em;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.faq__q { flex: 1; }
.faq__toggle {
  width: 28px; height: 28px;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.2em;
}
.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(.4,.2,.2,1);
}
.faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__toggle::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item[open] summary::before {
  background: var(--red);
  box-shadow: 0 0 10px rgba(227, 6, 19, 0.5);
}
.faq__a {
  padding: 0 0 2rem 0;
  color: var(--ink-dim);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  max-width: 75ch;
}
.faq__a p { margin-bottom: 0.9rem; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a strong { color: var(--ink); font-weight: 500; }
.faq__a a {
  color: var(--ink);
  border-bottom: 1px solid var(--red);
  transition: color 0.25s ease;
}
.faq__a a:hover { color: var(--red); }
.faq__a ul { margin: 0.4rem 0 0.9rem 0; padding: 0; }
.faq__a li {
  margin-bottom: 0.4rem;
  list-style: none;
  position: relative;
  padding-left: 1.2rem;
}
.faq__a li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
}
.faq__item[open] .faq__a {
  animation: faqReveal 0.45s ease-out;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq__cta {
  margin-top: clamp(3rem, 5vh, 4rem);
  padding: 2rem;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--red-soft), transparent 60%);
}
.faq__cta p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--ink);
  max-width: 50ch;
}
.faq__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  background: var(--red);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.faq__cta a:hover { background: var(--red-deep); }
.faq__cta a svg { width: 14px; height: 14px; }
