:root {
  --bg:        #0a0a0a;
  --surface:   #14130f;
  --surface-2: #1c1b15;
  --text:      #f4f1e9;
  --text-mute: #b4ad9e;
  --text-faint:#6a6660;
  --accent:    #e5ff00;
  --accent-deep:#aec000;
  --accent-glow: rgba(229, 255, 0, 0.45);
  --border:    rgba(240, 237, 229, 0.1);
  --max:       1440px;
  --pad-x:     clamp(20px, 4vw, 60px);
  --serif:     "Fraunces", "Times New Roman", Georgia, serif;
  --sans:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  /* leave room for the sticky mobile call/email bar */
  main { padding-bottom: 80px; }
}
a { color: inherit; text-decoration: none; }
img, picture { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

/* ───── nav ───── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 18px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 100;
  transition: background .4s ease, padding .35s ease, border-color .4s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.15));
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px var(--pad-x);
  border-bottom-color: var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: .005em;
  font-variation-settings: "opsz" 30;
}
.brand__mark {
  color: var(--accent);
  font-size: 11px;
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
.nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 8px 0;
  opacity: .9;
  transition: opacity .2s, color .2s;
}
.nav__links a:hover,
.nav__links a:focus-visible { opacity: 1; color: var(--accent); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width .3s ease;
}
.nav__links a:hover::after { width: 100%; box-shadow: 0 0 8px var(--accent); }

/* Call-Stephen CTA in the nav */
.nav__call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}
.nav__call:hover,
.nav__call:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 24px var(--accent-glow);
}
.nav__call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav__call-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__call-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .8;
}
.nav__call-num {
  font-size: 16px;
  letter-spacing: .005em;
  font-weight: 700;
}

/* Hamburger toggle (mobile only) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 0 10px;
  flex-shrink: 0;
}
.nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform .25s ease, opacity .2s ease;
}
.nav.is-menu-open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-menu-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-menu-open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(82vw, 340px);
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: 92px 32px 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    margin-left: 0;
    font-size: 18px;
    letter-spacing: .04em;
    text-transform: none;
    font-family: var(--serif);
    font-weight: 400;
    z-index: 99;
  }
  .nav.is-menu-open .nav__links { transform: translateX(0); }
  .nav__links a { padding: 18px 0; width: 100%; opacity: 1; border-bottom: 1px solid var(--border); }
  .nav__links a::after { display: none; }
  .nav__toggle { display: inline-flex; }
}

@media (max-width: 520px) {
  .brand__name { display: none; }
  .nav__call { padding: 8px 12px; }
  .nav__call-label { display: none; }
  .nav__call-num { font-size: 14px; }
}

/* ───── hero ───── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #050505;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 32%;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  100% { transform: scale(1.09) translate(-1.4%, -1.6%); }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 80%),
    linear-gradient(to bottom, rgba(10,10,10,.18) 0%, rgba(10,10,10,.5) 60%, rgba(10,10,10,.96) 100%);
  z-index: 1;
}
.hero__inner {
  position: absolute;
  bottom: 5vh;
  left: var(--pad-x); right: var(--pad-x);
  z-index: 2;
  max-width: 1100px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-2px);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 144px);
  line-height: .94;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  font-variation-settings: "opsz" 144;
  max-width: 15ch;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero__lede {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 640px;
  margin-bottom: 12px;
  color: rgba(244, 241, 233, .92);
  font-weight: 400;
  line-height: 1.5;
}
.hero__plain {
  font-size: clamp(15px, 1.1vw, 18px);
  max-width: 640px;
  margin-bottom: 24px;
  color: rgba(244, 241, 233, .82);
  font-weight: 400;
  line-height: 1.5;
}
.hero__plain strong { color: var(--accent); font-weight: 600; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero scroll cue */
.hero__cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__cue-text {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__cue-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.hero__cue-line::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 1px; height: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop {
  0%   { transform: translateY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}
@media (max-width: 720px) { .hero__cue { display: none; } }

/* ───── marquee ───── */
.marquee {
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 48s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 40px);
  letter-spacing: -.01em;
  color: var(--text);
  padding: 0 30px;
  white-space: nowrap;
  font-variation-settings: "opsz" 96;
}
.marquee__dot {
  color: var(--accent);
  font-size: 12px;
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───── stats band ───── */
.stats {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(46px, 7vw, 108px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 144;
  text-shadow: 0 0 44px var(--accent-glow);
}
.stat__label {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
}

/* ───── buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: none;
  font-weight: 600;
  font-family: var(--sans);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all .3s ease;
  cursor: pointer;
  min-height: 52px;
}
.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 0 0 rgba(229, 255, 0, 0);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 34px var(--accent-glow), 0 0 12px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(240, 237, 229, .4);
  color: var(--text);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  text-shadow: 0 0 14px var(--accent-glow);
}
.btn__arrow { transition: transform .3s ease; }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ───── section scaffold ───── */
section { padding: clamp(80px, 13vh, 160px) var(--pad-x); }
.container { max-width: var(--max); margin: 0 auto; }
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.022em;
  margin: 14px 0 28px;
  font-variation-settings: "opsz" 144;
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 300; }
.section-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--text);
  opacity: .82;
  max-width: 640px;
  margin-top: -12px;
  line-height: 1.55;
}
.section-sub a {
  color: var(--accent);
  border-bottom: 1px solid rgba(229, 255, 0, .35);
  transition: border-color .2s ease;
}
.section-sub a:hover { border-bottom-color: var(--accent); }
.cta-row--center { justify-content: center; }

/* ───── about strip ───── */
.about {
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3.6vw, 50px);
  line-height: 1.22;
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: -.018em;
  font-variation-settings: "opsz" 144;
}
.about__quote em { color: var(--accent); font-style: italic; }
.about__attr {
  margin-top: 38px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}

/* ───── trio (asymmetric story) ───── */
.trio { padding-top: clamp(40px, 6vh, 90px); padding-bottom: clamp(40px, 6vh, 90px); }
.trio__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 16 / 9;
}
.trio__item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.trio__item:nth-child(1) { grid-row: 1 / 3; }
.trio__item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.1s ease, filter .9s ease;
  filter: saturate(.92) brightness(.94);
}
.trio__item:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.trio__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.78) 0%, rgba(8,8,8,.05) 55%, rgba(8,8,8,0) 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.trio__item:hover::after { opacity: 1; }
.trio__caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -.005em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}
.trio__item:hover .trio__caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .trio__grid { grid-template-columns: 1fr; grid-template-rows: auto; aspect-ratio: auto; }
  .trio__item { aspect-ratio: 16/10; }
  .trio__item:nth-child(1) { grid-row: auto; }
}

/* ───── films (YouTube) ───── */
.films { background: var(--bg); }
.films__head {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.films__all {
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--accent);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
  font-weight: 600;
}
.films__all:hover { border-bottom-color: var(--accent); }
.films__grid--page { margin-top: 0; }
.films__channel {
  margin-top: 56px;
  text-align: center;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.films__channel a {
  color: var(--accent);
  margin-left: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.films__channel a:hover { border-bottom-color: var(--accent); }
.films__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}
.film {
  position: relative;
  background: var(--surface);
  border: 0;
  padding: 0;
  cursor: pointer;
  display: block;
  font-family: inherit;
  text-align: left;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  color: inherit;
  transition: transform .4s ease;
}
.film:hover { transform: translateY(-3px); }
.film__thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter .9s ease;
  filter: brightness(.92) saturate(1);
}
.film:hover .film__thumb { transform: scale(1.04); filter: brightness(1.04) saturate(1.08); }
.film::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,.1) 60%);
  z-index: 1;
  pointer-events: none;
}
.film__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform .3s ease;
  pointer-events: none;
}
.film:hover .film__play {
  transform: translate(-50%, -50%) scale(1.08);
  filter: drop-shadow(0 0 18px var(--accent-glow));
}
.film__caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 18px;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--text);
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
  letter-spacing: -.005em;
  font-variation-settings: "opsz" 72;
  line-height: 1.25;
}
.film--playing .film__thumb,
.film--playing .film__play,
.film--playing .film__caption,
.film--playing::after { display: none; }
.film--playing iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ───── categories ───── */
.cats {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.cats__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}
.cats__head > div { max-width: 760px; }
.cats__head .section-sub { margin-top: 8px; }
.cats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.cat {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg);
  display: block;
}
.cat img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.1s ease, filter .9s ease;
  filter: saturate(.88) brightness(.92);
}
.cat:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.cat__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.92) 0%, rgba(8,8,8,.15) 55%, rgba(8,8,8,0) 100%);
  z-index: 1;
}
.cat__label {
  position: absolute;
  left: 24px; bottom: 22px; right: 24px;
  z-index: 2;
}
.cat__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 96;
}
.cat__count {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}
.cat--coming {
  background: linear-gradient(135deg, #1d1c16 0%, #14130f 100%);
}
.cat--coming::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 18px, rgba(232,182,90,.04) 18px, rgba(232,182,90,.04) 19px);
  z-index: 0;
}

/* ───── testimonial ───── */
.testi { text-align: center; }
.testi__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.3;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  font-variation-settings: "opsz" 144;
}
.testi__quote::before {
  content: '“';
  display: block;
  color: var(--accent);
  font-size: 4em;
  line-height: .5;
  margin-bottom: 28px;
  font-style: normal;
}
.testi__attr {
  margin-top: 38px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.testi__more {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 500;
}
.testi__more a {
  color: var(--accent);
  border-bottom: 1px solid rgba(229, 255, 0, .35);
  padding: 4px 2px;
  transition: border-color .2s ease;
}
.testi__more a:hover { border-bottom-color: var(--accent); }

/* ───── pricing snapshot ───── */
.price {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.price__head { text-align: center; margin-bottom: 48px; }
.price__head .section-sub { margin: 4px auto 0; }
.price__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.price-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  transition: border-color .4s ease, transform .4s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: rgba(232, 182, 90, .45);
  transform: translateY(-4px);
}
.price-card__type {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.price-card__name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -.01em;
  line-height: 1.1;
  font-variation-settings: "opsz" 96;
}
.price-card__amount {
  font-size: 16px;
  color: var(--text-mute);
  margin-bottom: 28px;
}
.price-card__amount strong {
  display: inline-block;
  color: var(--text);
  font-size: 38px;
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144;
}
.price-card__notes {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-card__notes li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text);
  opacity: .92;
  border-bottom: 1px solid var(--border);
}
.price-card__notes li:last-child { border: none; }
.price-card__notes li::before {
  content: '+';
  color: var(--accent);
  margin-right: 12px;
  font-weight: 300;
}
.price-card__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.price-card__cta .btn { width: 100%; justify-content: center; }
.price-card__phone {
  display: inline-block;
  font-size: 15px;
  color: var(--text-mute);
  padding: 6px 4px;
  transition: color .2s ease;
}
.price-card__phone:hover { color: var(--accent); }

/* ───── closing CTA ───── */
.closer {
  text-align: center;
  padding-top: clamp(100px, 16vh, 180px);
  padding-bottom: clamp(100px, 16vh, 180px);
  border-top: 1px solid var(--border);
}
.closer__line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 50px;
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 144;
}
.closer__line em { color: var(--accent); }

/* ───── footer ───── */
.foot {
  background: #060606;
  padding: 80px var(--pad-x) 36px;
  border-top: 1px solid var(--border);
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
}
.foot__brand {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: -.005em;
  font-variation-settings: "opsz" 96;
}
.foot__tag {
  color: var(--text-mute);
  font-size: 16px;
  max-width: 420px;
  line-height: 1.55;
}
.foot__heading {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.foot__col p { padding: 6px 0; font-size: 17px; }
.foot__col p a { transition: color .2s; }
.foot__col p a:hover { color: var(--accent); }
.foot__social { display: flex; gap: 22px; padding-top: 4px !important; }
.foot__social a {
  font-size: 14px;
  letter-spacing: .04em;
  font-weight: 500;
}
.foot__rights {
  max-width: var(--max);
  margin: 56px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--text-faint);
}

@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ───── archive (category + album shared) ───── */
.archive {
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(80px, 12vh, 140px);
}
.back-link {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--text-mute);
  margin-bottom: 36px;
  padding: 8px 14px 8px 0;
  transition: color .2s ease;
  font-weight: 500;
}
.back-link:hover { color: var(--accent); }
.archive__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 14px 0 18px;
  font-variation-settings: "opsz" 144;
  max-width: 18ch;
}
.archive__meta {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 32px;
  font-weight: 500;
}
.archive__hint {
  max-width: 720px;
  font-size: 17px;
  color: var(--text);
  opacity: .9;
  margin-bottom: 40px;
  line-height: 1.55;
}
.archive__hint strong { color: var(--accent); font-weight: 600; }
.archive__desc {
  max-width: 720px;
  font-size: 18px;
  color: var(--text);
  opacity: .9;
  margin-bottom: 56px;
  line-height: 1.6;
}
.archive__empty {
  font-size: 19px;
  color: var(--text);
  padding: 40px 0;
  line-height: 1.5;
}
.archive__intro {
  max-width: 720px;
  font-size: 18px;
  color: var(--text);
  opacity: .85;
  margin-top: -12px;
  margin-bottom: 40px;
  line-height: 1.55;
}

/* category chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: .03em;
  color: var(--text);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
  font-weight: 500;
  min-height: 44px;
}
.chip:hover {
  border-color: rgba(232, 182, 90, .5);
  color: var(--text);
}
.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  box-shadow: 0 0 20px var(--accent-glow);
}
.chip__count {
  font-size: 13px;
  letter-spacing: .02em;
  opacity: .65;
  font-weight: 400;
}
.chip.is-active .chip__count { opacity: .75; }

.album-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(8, 8, 8, .78);
  padding: 7px 11px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
}

/* album grid (category page) */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.album-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .35s ease, transform .35s ease;
  color: inherit;
}
.album-card:hover {
  border-color: rgba(232, 182, 90, .35);
  transform: translateY(-4px);
}
.album-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.album-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1s ease, filter .9s ease;
  filter: saturate(.92) brightness(.96);
}
.album-card:hover .album-card__media img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1);
}
.album-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.55), rgba(8,8,8,0));
  z-index: 1;
  pointer-events: none;
}
.album-card__body { padding: 22px 24px 26px; }
.album-card__meta {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}
.album-card__title {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -.005em;
  line-height: 1.18;
  font-variation-settings: "opsz" 72;
}

/* photo grid (album page) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}
.photo-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
  display: block;
  cursor: zoom-in;
}
.photo-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .7s ease, filter .5s ease;
  filter: saturate(.95) brightness(.96);
}
.photo-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1);
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,6,6,.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(20,19,15,.5);
  border: 1px solid var(--border);
  color: var(--text);
  width: 52px; height: 52px;
  font-size: 28px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
  z-index: 2;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(232,182,90,.15);
  border-color: var(--accent);
}
.lightbox__counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--text-mute);
  font-weight: 500;
}

@media (max-width: 720px) {
  .lightbox__close,
  .lightbox__nav { width: 44px; height: 44px; font-size: 22px; }
  .lightbox__close { top: 16px; right: 16px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}

/* ───── pager ───── */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 56px;
}
.pager__btn,
.pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--text);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  font-weight: 500;
}
.pager__btn:hover,
.pager__num:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pager__num.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  box-shadow: 0 0 18px var(--accent-glow);
}
.pager__btn.is-disabled {
  opacity: .3;
  pointer-events: none;
}
.pager__pages {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pager__gap { color: var(--text-faint); padding: 0 2px; }

/* ───── video modal ───── */
.vmodal {
  position: fixed; inset: 0;
  background: rgba(6, 6, 6, .97);
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 5vh 4vw;
}
.vmodal.is-open { display: flex; }
.vmodal__frame {
  width: min(92vw, 1280px);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 0 90px rgba(229, 255, 0, .07);
}
.vmodal__player,
.vmodal__player iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.vmodal__close {
  position: absolute;
  top: 24px; right: 28px;
  width: 52px; height: 52px;
  background: rgba(20, 19, 15, .5);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.vmodal__close:hover {
  border-color: var(--accent);
  background: rgba(229, 255, 0, .12);
}
.vmodal__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 22px);
  color: var(--text);
  text-align: center;
  max-width: 800px;
}
@media (max-width: 720px) {
  .vmodal__close { top: 14px; right: 16px; width: 44px; height: 44px; font-size: 22px; }
}

/* ───── testimonials grid ───── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
  margin-bottom: 80px;
}
.testi-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 56px 32px 32px;
  transition: border-color .35s ease, transform .35s ease;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  border-color: rgba(229, 255, 0, .35);
  transform: translateY(-3px);
}
.testi-card__mark {
  position: absolute;
  top: 14px; left: 28px;
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: .9;
  font-variation-settings: "opsz" 144;
  pointer-events: none;
}
.testi-card__quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -.005em;
  font-variation-settings: "opsz" 72;
  flex: 1;
}
.testi-card__attr {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.testi-card__event {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.testi-cta {
  text-align: center;
  padding: 64px 0 16px;
  border-top: 1px solid var(--border);
}
.testi-cta__line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--text);
}

/* ───── four-way contact row (hero, closer, testimonials) ───── */
.contact-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  max-width: 720px;
}
.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 8px;
  background: rgba(244, 241, 233, .06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  min-height: 68px;
  transition: border-color .25s ease, background .25s ease, transform .2s ease;
  text-align: center;
}
.contact-btn:hover,
.contact-btn:focus-visible {
  border-color: var(--accent);
  background: rgba(229, 255, 0, .06);
  transform: translateY(-2px);
}
.contact-btn svg { color: var(--accent); margin-bottom: 2px; }
.contact-btn__label { font-size: 14px; font-weight: 600; line-height: 1.1; }
.contact-btn__sub {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: .02em;
  line-height: 1.1;
}
.contact-btn--call {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}
.contact-btn--call:hover,
.contact-btn--call:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}
.contact-btn--call svg { color: #0a0a0a; }
.contact-btn--call .contact-btn__sub { color: rgba(10, 10, 10, .7); }
.contact-btn--wa { color: #25D366; }
.contact-btn--wa svg { color: #25D366; }
.contact-btn--wa .contact-btn__label { color: #25D366; }
.contact-btn--wa:hover { border-color: #25D366; background: rgba(37, 211, 102, .08); }

@media (max-width: 560px) {
  .contact-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .contact-btn { min-height: 78px; }
}

.cta-row--center .contact-row,
.closer .contact-row { margin-left: auto; margin-right: auto; }

/* inline-text contact line */
.contact-inline {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-mute);
}
.contact-inline a {
  color: var(--accent);
  font-weight: 500;
  padding: 4px 2px;
  border-bottom: 1px solid rgba(229, 255, 0, .35);
  transition: border-color .2s ease;
}
.contact-inline a:hover { border-bottom-color: var(--accent); }

/* price-card alt-contact line (text · WhatsApp · email under the big Call button) */
.price-card__alt {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.5;
  text-align: center;
}
.price-card__alt a {
  color: var(--accent);
  font-weight: 600;
  padding: 4px 4px;
  border-bottom: 1px solid rgba(229, 255, 0, .25);
  transition: border-color .2s ease;
}
.price-card__alt a:hover { border-bottom-color: var(--accent); }

/* ───── sticky mobile quick-contact bar (4 icons) ───── */
.quick-contact {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 90;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
  gap: 6px;
}
.quick-contact__btn {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
  min-height: 56px;
  color: var(--text);
  background: rgba(244, 241, 233, .05);
  transition: background .2s ease, transform .2s ease;
}
.quick-contact__btn span { line-height: 1.1; }
.quick-contact__btn:active { transform: scale(.96); }
.quick-contact__btn--call {
  background: var(--accent);
  color: #0a0a0a;
}
.quick-contact__btn--wa { color: #25D366; }
.quick-contact__btn--wa svg { color: #25D366; }
@media (max-width: 720px) {
  .quick-contact { display: flex; }
}

/* ───── reveal animation ───── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__slide.is-active { animation: none; transform: none; }
}
