/* ═══ RESET ═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav) + 8px);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font: inherit;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ═══ SKIP LINK ═══════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 999;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ═══ TOKENS ══════════════════════════════════════════════ */
:root {
  --bg: #000000;
  --surface: #141414;
  --surface-mid: #1c1c1c;
  --surface-high: #2a2a2a;
  --border: rgba(255, 255, 255, 0.08);
  --border-top: rgba(255, 255, 255, 0.10);
  --gold: #d4b578;
  --gold-dim: rgba(212, 181, 120, 0.50);
  --gold-glow: rgba(212, 181, 120, 0.20);
  --gold-border: rgba(212, 181, 120, 0.30);
  --gold-10: rgba(212, 181, 120, 0.10);
  --gold-20: rgba(212, 181, 120, 0.20);
  --gold-40: rgba(212, 181, 120, 0.40);
  --gold-card: rgba(212, 181, 120, 0.04);
  --indigo: #5856D6;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --muted: #a1a1a6;
  --muted-dim: #6e6e73;
  --error: #c97070;
  --success: #6ea87a;
  --gold-dark: #c4a464;
  --border-hover: #383838;
  --r: 24px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  --w: 1200px;
  --nav: 72px;
  --ease: cubic-bezier(.22, .68, 0, 1.2);
}

/* ═══ BASE ════════════════════════════════════════════════ */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.714;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  animation: pageIn .5s ease both;
}

@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], select { cursor: none; }
}

/* ═══ NAV ═════════════════════════════════════════════════ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-color: var(--glass-border);
}

.nav-logo {
  height: 40px;
  width: auto;
  cursor: pointer;
  opacity: .9;
  transition: opacity .2s;
  flex-shrink: 0;
}

.nav-logo:hover {
  opacity: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 44px;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

/* ═══ BURGER ══════════════════════════════════════════════ */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 11px;
  cursor: pointer;
  z-index: 300;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: transform .3s ease, opacity .3s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.burger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ═══ MOBILE NAV ══════════════════════════════════════════ */
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, .96);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.mob-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mob-nav a {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}

.mob-nav a:hover {
  color: var(--gold);
}

.mob-nav .btn-book {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-size: 11px;
  padding: 10px 28px;
  margin-top: 8px;
  letter-spacing: .18em;
  border-radius: 999px;
}

.mob-nav .btn-book:hover {
  background: var(--gold-10);
}

.mob-nav .btn-book:active {
  background: var(--gold-20);
}

/* ═══ LAYOUT ══════════════════════════════════════════════ */
.wrap {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 56px;
}

/* ═══ TYPOGRAPHY ══════════════════════════════════════════ */
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 88px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.025em;
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
}

/* ═══ BUTTONS ═════════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  background: none;
  border-radius: 999px;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.btn-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold);
  color: #000000;
  box-shadow: 0 0 12px var(--gold-glow);
}

.btn-gold:active {
  transform: scale(0.98);
}

.btn-ghost {
  border: 1px solid #383838;
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--text);
}

.btn-ghost:active {
  transform: scale(0.98);
}

.btn-book {
  display: inline-block;
  background: var(--gold);
  color: #000000;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px var(--gold-glow);
}

.btn-book::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .5s ease;
}

.btn-book:hover::after {
  left: 100%;
}

.btn-book:hover {
  background: var(--gold-dark);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-book:active {
  transform: scale(0.97);
}

.btn-book-lg {
  font-size: 13px;
  padding: 16px 44px;
}

.nav-book {
  margin-left: 16px;
}

.btn-submit-ghost {
  display: inline-block;
  background: transparent;
  border: 1px solid #383838;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
  align-self: flex-start;
}

.btn-submit-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.btn-submit-ghost:active {
  transform: scale(0.98);
}

button:disabled, .btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
}

/* ═══ ANIMATIONS ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }
.d5 { transition-delay: .50s; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ═══ HERO ════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--nav);
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #000000;
}

/* Film grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Ambient gradient glow */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212, 181, 120, .06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(212, 181, 120, .04) 0%, transparent 60%);
  animation: glowShift 12s ease-in-out infinite alternate;
}

@keyframes glowShift {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: .6; transform: scale(1.05); }
}

.hero-vert {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .4;
  white-space: nowrap;
}

.hero-rule {
  position: absolute;
  top: var(--nav);
  bottom: 0;
  left: calc(56px + 44px + 1px);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.06) 20%, rgba(255,255,255,.06) 80%, transparent);
  pointer-events: none;
}

.hero-body-wrap {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 0;
  padding: 80px 0 80px;
}

.hero-num {
  writing-mode: vertical-lr;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--gold);
  opacity: .5;
  padding: 0 0 0 56px;
  user-select: none;
}

.hero-main {
  padding: 0 180px 0 40px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .6s ease .15s forwards;
  margin-bottom: 28px;
  display: block;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(56px, 6.5vw, 104px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .85s ease .3s forwards;
  margin-bottom: 40px;
}

@keyframes shimmer {
  0%, 100% { color: var(--gold); }
  50% { color: #eee0c0; }
}

.hero-sub {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 420px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s ease .55s forwards;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp .7s ease .7s forwards;
}

.hero-footer {
  border-top: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--glass);
}

.hero-stat {
  padding: 28px 56px;
  border-right: 1px solid var(--glass-border);
  opacity: 0;
  animation: fadeIn .8s ease 1s forwards;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-val {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══ MARQUEE ═════════════════════════════════════════════ */
.marquee {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  background: var(--glass);
  padding: 16px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 24px;
  flex-shrink: 0;
}

.marquee-track span.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  padding: 0;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ SECTION DIVIDER ═════════════════════════════════════ */
.section-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
  margin-top: 16px;
}

/* ═══ INTRO ═══════════════════════════════════════════════ */
.intro {
  border-top: 1px solid var(--glass-border);
  padding: 100px 0;
}

.intro-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.intro-aside {
  padding-top: 6px;
}

.intro-aside .label {
  margin-bottom: 0;
}

.intro-copy {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
}

.intro-copy p + p {
  margin-top: 22px;
}

/* ═══ STEPS ═══════════════════════════════════════════════ */
.steps {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}

.steps-head {
  margin-bottom: 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 56px 48px 56px;
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  position: relative;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-border);
}

.step:hover::before {
  transform: scaleX(1);
}

.step-n {
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 300;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -.04em;
}

.step-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.step-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}

/* ═══ CLIENTS ═════════════════════════════════════════════ */
.clients {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}

.clients-head {
  margin-bottom: 64px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.client {
  padding: 32px 24px;
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  transition: border-color .25s ease, background .25s ease;
  cursor: default;
}

.client:hover {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.06);
}

.client-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.client-desc {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

.client:hover .client-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ TESTIMONIALS ════════════════════════════════════════ */
.testi {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}

.testi-head {
  margin-bottom: 64px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 20px);
}

.testi-card {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  padding: 48px 40px;
  position: relative;
  transition: border-color .3s ease, background .3s ease;
}

.testi-card:hover {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.06);
}

.testi-mark {
  font-family: var(--serif);
  font-size: 100px;
  color: var(--gold);
  opacity: .08;
  position: absolute;
  top: -8px;
  left: 28px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testi-stars span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 36px;
}


.testi-author {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.testi-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
}

/* ═══ FAQ ═════════════════════════════════════════════════ */
.faq-section {
  border-top: 1px solid var(--glass-border);
  padding: 100px 56px;
}

.faq-inner {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-aside {
  padding-top: 8px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--glass-border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  line-height: 1.4;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--muted);
  transition: color .2s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.faq-icon::before {
  width: 12px;
  height: 1px;
  margin: -0.5px 0 0 -6px;
}

.faq-icon::after {
  width: 1px;
  height: 12px;
  margin: -6px 0 0 -0.5px;
}

.faq-item.open .faq-icon {
  color: var(--gold);
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.open .faq-icon::before {
  transform: rotate(0deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(0, 1, 0.5, 1);
}

.faq-item.open .faq-a {
  max-height: 400px;
  transition: max-height .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  padding: 0 0 28px;
  margin: 0;
}

/* ═══ CTA BAND ════════════════════════════════════════════ */
.cta-band {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: var(--glass);
  padding: 130px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 181, 120, .06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band .h2 {
  color: var(--text);
  margin-bottom: 48px;
}

.cta-band .h2 em {
  color: var(--gold);
  font-style: italic;
}

/* ═══ PRICING ═════════════════════════════════════════════ */
.pricing-top {
  padding: 110px 0 80px;
  border-bottom: 1px solid var(--glass-border);
}

.pricing-top-head {
  margin-bottom: 64px;
}

.pricing-note-top {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.pcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pcard {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  padding: 56px 52px;
  position: relative;
  transition: border-color .25s;
}

.pcard.featured {
  background: var(--gold-card);
  border-color: transparent;
  position: relative;
  overflow: visible;
}

.pcard.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r);
  padding: 1px;
  background: conic-gradient(from var(--border-angle, 0deg), var(--gold), var(--gold-border), rgba(255,255,255,.08), var(--gold-border), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorder 4s linear infinite;
  pointer-events: none;
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

.pcard.featured::before {
  content: 'Most popular';
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--gold);
  color: #000000;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.pcard:hover {
  border-color: var(--gold-border);
}

.pcard-plan {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.pcard-price {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.04em;
}

.pcard-per {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 40px;
}

hr.pdivide {
  border: none;
  border-top: 1px solid var(--glass-border);
  margin: 36px 0;
}

.pfeatures {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pfeatures li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 14px;
  line-height: 1.5;
}

.pfeatures li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}

.pricing-secondary {
  padding: 80px 0 120px;
}

.pricing-sec-head {
  margin-bottom: 56px;
}

.pricing-sec-head .h2 {
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-sec-head p {
  font-size: 13px;
  color: var(--muted);
}

.rcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rcard {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  padding: 44px 44px;
  transition: border-color .25s;
}

.rcard:hover {
  border-color: var(--gold-border);
}

.rcard-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.rcard-price {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 28px;
}

.rfeatures {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rfeatures li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 12px;
}

.rfeatures li::before {
  content: '—';
  color: var(--border);
  flex-shrink: 0;
}

.pricing-footnotes {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-footnotes p {
  font-size: 12px;
  color: var(--muted);
}

.pricing-book-cta {
  text-align: center;
  padding: 64px 0 0;
}

/* ═══ COMPARISON TABLE ════════════════════════════════════ */
.compare {
  padding: 80px 0;
  border-top: 1px solid var(--glass-border);
}

.compare-head {
  margin-bottom: 48px;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--mono);
  font-size: 13px;
}

.compare-table thead th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table thead th.compare-featured {
  color: var(--gold);
  background: var(--gold-card);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.compare-table tbody td {
  padding: 14px 24px;
  text-align: center;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-table tbody td:first-child {
  text-align: left;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
  padding-top: 20px;
}

.compare-table tbody td.compare-featured {
  background: var(--gold-card);
}

.compare-table tbody tr:last-child td.compare-featured {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.compare-table tbody td.compare-feature {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.compare-table tbody td.compare-yes {
  color: var(--gold);
}

.compare-table strong {
  color: var(--text);
  font-weight: 400;
  font-size: 14px;
}

/* ═══ ABOUT ═══════════════════════════════════════════════ */
.about-sec {
  padding: 110px 0 120px;
}

.about-head {
  margin-bottom: 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 100px;
  align-items: start;
}

.about-copy p {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 36px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}

.about-photo-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(14, 14, 14, .8), transparent);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══ CONTACT ═════════════════════════════════════════════ */
.contact-sec {
  padding: 110px 0 120px;
}

.contact-head {
  margin-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-detail {
  margin-bottom: 48px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-detail-val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

.contact-detail-val a {
  transition: color .2s;
}

.contact-detail-val a:hover {
  color: var(--gold);
}

.contact-detail-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.7;
}

.contact-book-top {
  text-align: center;
  padding: 80px 0 56px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-book-top .h1 {
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-book-sub {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 64px 0;
}

.contact-divider-rule {
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

.contact-divider-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted-dim);
  white-space: nowrap;
}

/* ═══ FORM ════════════════════════════════════════════════ */
.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.fi, .fs, .ft {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  width: 100%;
  border-radius: 16px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .22s;
}

.fi:focus, .fs:focus, .ft:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-10);
}

.fi::placeholder, .ft::placeholder {
  color: var(--muted-dim);
}

.fs {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a96e' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.fs option {
  background: var(--surface);
  color: var(--text);
}

.ft {
  resize: vertical;
  min-height: 130px;
}

.ferr {
  font-size: 11px;
  color: var(--error);
  display: none;
}

.fg.err .ferr {
  display: block;
}

.fg.err .fi,
.fg.err .fs,
.fg.err .ft {
  border-color: var(--error);
}

.fg.err .fi:focus,
.fg.err .fs:focus,
.fg.err .ft:focus {
  box-shadow: 0 0 0 2px rgba(209, 128, 128, 0.3);
}

.form-ok {
  background: var(--glass);
  border: 0.5px solid var(--gold-border);
  border-radius: var(--r);
  padding: 28px 32px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  display: none;
  line-height: 1.55;
}

.form-err {
  display: none;
  background: var(--glass);
  border: 0.5px solid var(--error);
  border-radius: var(--r);
  padding: 28px 32px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--error);
  line-height: 1.55;
}

.form-err a {
  color: var(--gold);
}

.form-err a:hover {
  color: var(--text);
}

.form-quiet .fi,
.form-quiet .fs,
.form-quiet .ft {
  border-color: #383838;
  color: var(--muted);
}

.form-quiet .fi::placeholder,
.form-quiet .ft::placeholder {
  color: var(--muted-dim);
  opacity: 1;
}

.cta-muted {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
}

.cta-muted a {
  color: var(--muted);
  text-decoration: none;
}

.cta-muted a:hover {
  color: var(--gold);
}

/* ═══ TRUST SECTION ══════════════════════════════════════ */
.trust-section {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}

.trust-head {
  margin-bottom: 64px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  padding: 40px 32px;
  transition: border-color .3s ease, background .3s ease;
}

.trust-card:hover {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.06);
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 20px;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.trust-desc {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
}

/* ═══ BREADCRUMBS ════════════════════════════════════════ */
.breadcrumb {
  padding: calc(var(--nav) + 24px) 0 0;
  position: relative;
  z-index: 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0;
}

.breadcrumb-list li + li::before {
  content: '/';
  color: var(--muted-dim);
  margin: 0 12px;
}

.breadcrumb-list a {
  color: var(--muted);
  transition: color .2s;
}

.breadcrumb-list a:hover {
  color: var(--gold);
}

.breadcrumb-list .breadcrumb-current {
  color: var(--gold);
}

/* ═══ BLOG PREVIEW ═══════════════════════════════════════ */
.blog-preview {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}

.blog-preview-head {
  margin-bottom: 64px;
}

/* ═══ LINK UNDERLINES ════════════════════════════════════ */
.intro-copy a,
.post-body a,
.service-desc a,
.about-copy a,
.loc-copy a,
.faq-a a,
.contact-detail-val a,
.ft-email,
.cta-muted a,
.cal-fallback a,
.form-err a {
  position: relative;
  display: inline;
}

.intro-copy a::after,
.post-body a::after,
.about-copy a::after,
.loc-copy a::after,
.ft-email::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}

.intro-copy a:hover::after,
.post-body a:hover::after,
.about-copy a:hover::after,
.loc-copy a:hover::after,
.ft-email:hover::after {
  width: 100%;
}

/* ═══ FOOTER ══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 56px 44px;
}

.ft-inner {
  max-width: var(--w);
  margin: 0 auto;
}

.ft-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.ft-logo {
  height: 34px;
  width: auto;
  opacity: .9;
}

.ft-email {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--muted);
  transition: color .2s;
  text-decoration: none;
}

.ft-email:hover {
  color: var(--gold);
}

.ft-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.ft-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}

.ft-links a:hover {
  color: var(--gold);
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  gap: 16px;
  flex-wrap: wrap;
}

.ft-copy, .ft-loc {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--muted);
}

/* ═══ UTILITIES ═══════════════════════════════════════════ */
.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

.ft-privacy {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--muted);
  transition: color .2s;
}

.ft-privacy:hover {
  color: var(--gold);
}

.privacy-heading {
  color: var(--gold);
}

.privacy-date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}

.pricing-top-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
  margin-top: 20px;
  line-height: 1.8;
}

.cal-embed {
  width: 100%;
  min-height: 400px;
  border: 0.5px solid var(--glass-border);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}

.cal-iframe {
  width: 100%;
  height: 600px;
  border: none;
  position: relative;
  z-index: 1;
}

.cal-fallback {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.cal-fallback a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cal-fallback a:hover {
  color: var(--text);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-aside-h2 {
  margin-top: 16px;
  font-size: 32px;
}

.cta-sub {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-band .h2-gold {
  color: var(--gold);
  margin-bottom: 16px;
}

.h1-gold {
  color: var(--gold);
}

.testi-card-spaced {
  margin-top: 56px;
  max-width: 640px;
}

.wrap-narrow {
  max-width: 760px;
}

.spacer-top-md {
  margin-top: 40px;
}

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.error-num {
  font-family: var(--serif);
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 500;
  color: var(--gold);
  opacity: .08;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: -40px;
  user-select: none;
}

.error-page .h2 {
  color: var(--text);
  margin-bottom: 16px;
}

.error-page p {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══ BACK TO TOP ═════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, border-color .3s ease, background .3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.06);
}

.back-to-top:active {
  transform: scale(0.95);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ═══ RESULTS ═════════════════════════════════════════════ */
.results {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}

.results-head {
  margin-bottom: 64px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.result-card {
  padding: 48px 32px;
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  text-align: center;
  transition: border-color .25s ease, background .25s ease;
}

.result-card:hover {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.06);
}

.result-val {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.result-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ═══ SERVICES ════════════════════════════════════════════ */
.services-sec {
  padding: 110px 0 120px;
}

.services-head {
  margin-bottom: 80px;
}

.service-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--glass-border);
}

.service-block:last-of-type {
  border-bottom: 1px solid var(--glass-border);
}

.service-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -.01em;
}

.service-desc {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.service-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 14px;
  line-height: 1.5;
}

.service-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ═══ BLOG ════════════════════════════════════════════════ */
.blog-sec {
  padding: 110px 0 120px;
}

.blog-head {
  margin-bottom: 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.blog-card {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  padding: 48px 40px;
  transition: border-color .25s ease, background .25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.06);
}

.blog-card-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
}

.blog-card-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s;
}

.blog-card-link:hover {
  color: var(--text);
}

/* ═══ BLOG POST ═══════════════════════════════════════════ */
.post-sec {
  padding: 110px 0 120px;
}

.post-head {
  margin-bottom: 64px;
}

.post-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}

.post-body {
  max-width: 680px;
}

.post-body p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
}

.post-body h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--gold);
  margin-top: 56px;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.post-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.post-body ul, .post-body ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 28px;
}

.post-body li {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.75;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.post-body li::before {
  content: '—';
  color: var(--gold);
  position: absolute;
  left: 0;
}

.post-body strong {
  color: var(--gold);
  font-weight: 500;
}

.post-back {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.post-back a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s;
}

.post-back a:hover {
  color: var(--text);
}

.post-next {
  margin-top: 48px;
}

.post-next .label {
  margin-bottom: 16px;
}

/* ═══ PORTFOLIO ═══════════════════════════════════════════ */
.portfolio-sec {
  padding: 110px 0 120px;
}

/* ═══ CASE STUDY DETAIL ═══════════════════════════════════ */
.cs-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--glass-border);
}

.cs-hero-inner {
  max-width: 760px;
}

.cs-back {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}

.cs-back:hover {
  opacity: 1;
}

.cs-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  align-items: baseline;
}

.cs-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--glass-border);
}

.cs-section--alt {
  background: rgba(212,181,120,.025);
}

.cs-block {
  max-width: 760px;
}

.portfolio-head {
  margin-bottom: 80px;
}

.case-study {
  padding: 64px 0;
  border-top: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.case-study:last-of-type {
  border-bottom: 1px solid var(--glass-border);
}

.case-meta-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.case-meta-val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 32px;
}

.case-desc {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
}

.case-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-result {
  padding: 32px;
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-radius: var(--r);
}

.case-result-val {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.case-result-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══ LOCATION ════════════════════════════════════════════ */
.loc-sec {
  padding: 110px 0 120px;
}

.loc-head {
  margin-bottom: 80px;
}

.loc-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.loc-copy p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
}

.loc-sidebar {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  padding: 40px 36px;
}

.loc-sidebar-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}

.loc-sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.loc-sidebar-list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 12px;
}

.loc-sidebar-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ═══ PRELOADER ══════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn .4s ease .1s forwards;
}

.preloader-bar {
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1px;
}

.preloader-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  animation: preloaderFill .7s cubic-bezier(.4, 0, .2, 1) .1s forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ═══ BACKGROUND NOISE ═══════════════════════════════════ */
body {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.02'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ═══ SCROLL PROGRESS ════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  z-index: 999;
  transition: none;
  pointer-events: none;
}

/* ═══ HERO SCROLL INDICATOR ══════════════════════════════ */
.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: .8; transform: scaleY(1.2); transform-origin: top; }
}

/* ═══ STICKY CTA ═════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 0.5px solid var(--glass-border);
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  transition: bottom .4s cubic-bezier(.22, .68, 0, 1);
  white-space: nowrap;
}

.sticky-cta.visible {
  bottom: 32px;
}

.sticky-cta-text {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.sticky-cta .btn-book {
  font-size: 11px;
  padding: 10px 24px;
}

/* ═══ CUSTOM CURSOR ══════════════════════════════════════ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease, opacity .2s ease;
  opacity: 0;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, border-color .25s ease, opacity .2s ease;
  opacity: 0;
}

.cursor.visible, .cursor-ring.visible { opacity: 1; }
.cursor.hover { width: 12px; height: 12px; }
.cursor-ring.hover { width: 52px; height: 52px; border-color: var(--gold); }

@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
}

/* ═══ SPLIT TEXT ═════════════════════════════════════════ */
.hero-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordIn .45s ease forwards;
}

@keyframes wordIn {
  to { opacity: 1; transform: none; }
}

/* ═══ SHOWREEL ═══════════════════════════════════════════ */
.showreel {
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}

.showreel-head {
  margin-bottom: 64px;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.reel-card {
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  border-top: 0.5px solid var(--border-top);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
  display: block;
}

.reel-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.reel-placeholder {
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.reel-gradient-1 { background: linear-gradient(135deg, #1a1207 0%, #2a1f0e 40%, #141414 100%); }
.reel-gradient-2 { background: linear-gradient(135deg, #0d1117 0%, #141e2a 40%, #141414 100%); }
.reel-gradient-3 { background: linear-gradient(135deg, #170d1a 0%, #231428 40%, #141414 100%); }
.reel-gradient-4 { background: linear-gradient(135deg, #0d1a12 0%, #142a1c 40%, #141414 100%); }

.reel-num {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: .06;
  line-height: 1;
  letter-spacing: -.04em;
}

.reel-play {
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: .4;
  transition: opacity .3s ease, transform .3s ease;
}

.reel-card:hover .reel-play {
  opacity: .8;
  transform: scale(1.1);
}

.reel-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(212, 181, 120, .08) 50%, transparent 70%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .4s ease;
}

.reel-card:hover .reel-placeholder::after {
  opacity: 1;
  animation: reelShine 1.5s ease infinite;
}

@keyframes reelShine {
  0% { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}

.reel-meta {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reel-client {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
}

.reel-type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-dim);
  background: var(--glass);
  border: 0.5px solid var(--glass-border);
  padding: 4px 10px;
  border-radius: 999px;
}

.showreel-video-wrap {
  position: relative;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 0 0 1px rgba(212,181,120,.08), 0 16px 48px rgba(0,0,0,.6), inset 0 1px 0 rgba(212,181,120,.06);
  margin-bottom: 0;
}

.showreel-video {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  background: #0a0a0a;
}

.showreel-cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══ WHATSAPP ════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 100;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
  transition: transform .2s ease, box-shadow .2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
}

.wa-float:active {
  transform: scale(0.95);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ═══ SPACING UTILITIES ══════════════════════════════════ */
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 32px; }
.mt-xl { margin-top: 40px; }
.mt-2xl { margin-top: 4rem; }
.text-center { text-align: center; }

/* ═══ CONTACT FAQ OVERRIDE ═══════════════════════════════ */
.faq-section--borderless {
  border-top: none;
  padding: 64px 0 0;
}
.faq-inner--single {
  grid-template-columns: 1fr;
}

/* ═══ RESPONSIVE ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .wrap { padding: 0 40px; }
  footer { padding: 56px 40px 40px; }
  nav { padding: 0 40px; }
  .cta-band { padding: 100px 40px; }
  .hero-main { padding: 0 100px 0 40px; }
}

@media (max-width: 960px) {
  .hero-body-wrap { grid-template-columns: 1fr; }
  .hero-num { display: none; }
  .hero-main { padding: 0 40px; }
  .hero-vert { display: none; }
  .hero-rule { display: none; }
  .hero-footer { grid-template-columns: 1fr 1fr 1fr; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step::before { top: auto; bottom: -1px; left: 24px; right: 24px; }
  .client-desc { opacity: 1; transform: none; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-photo { max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .pcards { grid-template-columns: 1fr; }
  .rcards { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .case-study { grid-template-columns: 1fr; gap: 48px; }
  .loc-body { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-section { padding: 80px 24px; }
}

@media (max-width: 768px) {
  :root { --nav: 64px; }
  nav { padding: 0 24px; }
  .wrap { padding: 0 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  footer { padding: 48px 24px 36px; }
  .cta-band { padding: 80px 24px; }
  .hero-main { padding: 0 24px; }
  .hero-footer { grid-template-columns: 1fr; }
  .hero-stat { padding: 20px 24px; border-right: none; border-bottom: 1px solid var(--glass-border); }
  .hero-stat:last-child { border-bottom: none; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .reel-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .ft-top { flex-direction: column; align-items: flex-start; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
  .pcard { padding: 40px 32px; }
  .results-grid { grid-template-columns: 1fr; }
  .result-val { font-size: 44px; }
  .case-results { grid-template-columns: 1fr; }
  .sticky-cta { display: none; }
  .hero-scroll-indicator { bottom: 80px; }
  .compare-table { min-width: 600px; }
  .wa-float { bottom: 20px; left: 20px; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
  .hero-sub { font-size: 12px; }
  .btn-book-lg { font-size: 12px; padding: 14px 36px; }
  .step-n { font-size: 64px; }
  .testi-text { font-size: 17px; }
  .faq-q { font-size: 16px; padding: 20px 0; }
  .breadcrumb { padding: calc(var(--nav) + 16px) 0 0; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 48px; }
  .clients-grid { grid-template-columns: 1fr; }
  .reel-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero-eyebrow, .hero-heading, .hero-sub, .hero-actions, .hero-stat {
    opacity: 1;
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .marquee-track {
    animation: none;
  }
  .hero-glow {
    animation: none;
  }
  .client-desc {
    opacity: 1;
    transform: none;
  }
  .hero-heading .word { opacity: 1; transform: none; }
  .hero-scroll-indicator { display: none; }
  .scroll-progress { display: none; }
  .pcard.featured::after { animation: none; }
  .cursor, .cursor-ring { display: none !important; }
  body, a, button, [role="button"], select { cursor: auto !important; }
}
