/* ═══════════════════════════════════════════════════
   FPCC v2 — Ultra-Premium Dark Luxury
   Palette: #0a1520 (obsidian) · #154565 (navy) · #30465a (slate)
            #b9d7e6 (ice) · #eaeaee (pearl) · #c9a96e (gold)
   Fonts: Playfair Display · EB Garamond · Didact Gothic
═══════════════════════════════════════════════════ */

:root {
  --obsidian:   #080f18;
  --navy:       #154565;
  --slate:      #30465a;
  --ice:        #b9d7e6;
  --pearl:      #eaeaee;
  --gold:       #c9a96e;
  --gold-light: #e2c99a;
  --white:      #f5f3ef;
  --text-dim:   rgba(234,234,238,0.55);
  --f-display:  'Playfair Display', Georgia, serif;
  --f-serif:    'EB Garamond', Georgia, serif;
  --f-sans:     'Inter', system-ui, sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--obsidian);
  color: var(--pearl);
  font-family: var(--f-sans);
  overflow-x: hidden;
  /*cursor: none;*/
  -webkit-font-smoothing: antialiased;
}

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

/* ── CUSTOM CURSOR ── */
/*#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s, transform 0.1s;
  transform: translate(-50%,-50%);
  mix-blend-mode: normal;
}
#cursor-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.15s;
}
body.cursor-hover #cursor {
  width: 64px; height: 64px;
  background: rgba(201,169,110,0.08);
  border-color: var(--gold);
}
*/
/* ── SCROLL ANIMATIONS ── */
.fade-up, .fade-from-left, .fade-from-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-up         { transform: translateY(48px); }
.fade-from-left  { transform: translateX(-60px); }
.fade-from-right { transform: translateX(60px); }
.in-view { opacity: 1; transform: translate(0,0); }
.fade-up,
.fade-from-left,
.fade-from-right {
  transform: translateZ(0);
}
/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-logo img { height: 60px; filter: brightness(10); opacity: 0; animation: preLogoFade 0.8s 0.3s forwards; }
@keyframes preLogoFade { to { opacity: 1; } }
.pre-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preLine 1.2s 0.5s var(--ease-out) forwards;
}
@keyframes preLine { to { width: 220px; } }

/* ── TYPOGRAPHY ── */
.s-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.s-eyebrow.light { color: var(--ice); }

.s-heading {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--pearl);
  margin-bottom: 28px;
}
.s-heading em { font-style: italic; color: var(--ice); }
.s-heading.light { color: var(--white); }
.s-heading.light em { color: var(--gold-light); }

h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--pearl);
  margin-bottom: 14px;
  line-height: 1.25;
}
h4 {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--pearl);
  letter-spacing: 0.02em;
}

/* ── BUTTONS ── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--obsidian);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  /*cursor: none;*/
  position: relative;
  overflow: hidden;
  transition: letter-spacing 0.4s var(--ease), box-shadow 0.4s;
}
.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.35s;
}
.cta-primary:hover { letter-spacing: 0.22em; box-shadow: 0 12px 50px rgba(201,169,110,0.35); }
.cta-primary:hover::before { opacity: 0.1; }
.cta-primary svg { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.cta-primary:hover svg { transform: translateX(4px); }

.cta-ghost {
  display: inline-block;
  padding: 15px 36px;
  border: 1px solid rgba(234,234,238,0.2);
  color: rgba(234,234,238,0.7);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  /*cursor: none;*/
  transition: border-color 0.35s, color 0.35s, background 0.35s;
}
.cta-ghost:hover { border-color: rgba(234,234,238,0.5); color: var(--pearl); background: rgba(234,234,238,0.05); }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: padding 0.5s var(--ease), background 0.5s, backdrop-filter 0.5s;
}
#nav.scrolled {
  padding: 18px 60px;
  background: rgba(8,15,24,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.nav-brand img { height: 30px; filter: brightness(10); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(234,234,238,0.65);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--pearl); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 26px;
  border: 1px solid rgba(201,169,110,0.5) !important;
  color: var(--gold) !important;
  letter-spacing: 0.18em !important;
  transition: background 0.35s, color 0.35s, border-color 0.35s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--obsidian) !important; border-color: var(--gold) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  /*cursor: none;*/
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--pearl);
  transition: transform 0.4s var(--ease), opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.burger.open .b1 { transform: rotate(45deg) translate(5px, 5px); }
.burger.open .b2 { transform: rotate(-45deg) translate(5px, -5px); }

/* DRAWER */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 490;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer-inner { display: flex; flex-direction: column; gap: 36px; }
.d-link {
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 400;
  color: rgba(234,234,238,0.5);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  transform: translateX(-20px);
  opacity: 0;
  transition: color 0.3s, transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.drawer.open .d-link { transform: translateX(0); opacity: 1; }
.drawer.open .d-link:nth-child(1) { transition-delay: 0.05s; }
.drawer.open .d-link:nth-child(2) { transition-delay: 0.1s; }
.drawer.open .d-link:nth-child(3) { transition-delay: 0.15s; }
.drawer.open .d-link:nth-child(4) { transition-delay: 0.2s; }
.drawer.open .d-link:nth-child(5) { transition-delay: 0.25s; }
.d-link:hover { color: var(--pearl); }
.d-cta {
  font-family: var(--f-sans) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  padding: 14px 0;
  border-top: 1px solid rgba(201,169,110,0.2);
  margin-top: 12px;
}
.drawer-footer {
  position: absolute;
  bottom: 40px; left: 60px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.08);
  animation: heroScale 14s var(--ease-out) forwards;
  filter: saturate(0.7);
}
@keyframes heroScale { to { transform: scale(1); } }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,15,24,0.95) 0%,
    rgba(8,15,24,0.7) 50%,
    rgba(8,15,24,0.4) 100%
  ),
  linear-gradient(to top, rgba(8,15,24,0.6) 0%, transparent 50%);
}
.hero-grain {
  position: absolute; inset: 0;
  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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-end;
}
.h-eyebrow {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ice);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeIn 0.8s 1.2s forwards;
}
.eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--ice);
}
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--white);
}
.h-line {
  display: block;
  overflow: hidden;
}
.h-line-inner {
  display: block;
  transform: translateY(100%);
  animation: lineReveal 1s var(--ease-out) forwards;
}
.h-line.italic .h-line-inner { font-style: italic; color: var(--ice); }

@keyframes lineReveal { to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
  opacity: 0;
  animation: fadeIn 0.9s 1.5s forwards;
}
.hero-sub {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(234,234,238,0.75);
  margin-bottom: 36px;
  max-width: 380px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(234,234,238,0.1);
}
.hm-item { flex: 1; text-align: center; }
.hm-item:first-child { text-align: left; }
.hm-item:last-child { text-align: right; }
.hm-num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
}
.hm-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}
.hm-divider {
  width: 1px;
  height: 36px;
  background: rgba(234,234,238,0.12);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 0.8s 2s forwards;
}
.scroll-pill {
  width: 22px; height: 36px;
  border: 1px solid rgba(234,234,238,0.25);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.3; }
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-strip {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(185,215,230,0.12);
  border-bottom: 1px solid rgba(185,215,230,0.12);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(185,215,230,0.6);
  padding: 0 32px;
}
.marquee-track .mx {
  color: var(--gold);
  padding: 0;
  letter-spacing: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.s-about {
  padding: 140px 0;
  background: var(--obsidian);
  position: relative;
}
.s-about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}
.about-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.about-img-frame {
  position: relative;
}
.about-img-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(25%) contrast(1.05);
  transition: filter 0.8s;
}
.about-img-frame:hover img { filter: grayscale(0%) contrast(1); }
.img-accent-bar {
  position: absolute;
  top: 24px; right: -24px;
  width: 2px; height: 40%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.about-credential {
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(234,234,238,0.08);
}
.cred-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.cred-countries {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.cred-countries span {
  font-family: var(--f-display);
  font-size: 0.9rem;
  color: rgba(234,234,238,0.6);
  padding: 0 14px;
  border-right: 1px solid rgba(234,234,238,0.15);
}
.cred-countries span:first-child { padding-left: 0; }
.cred-countries span:last-child { border-right: none; }

.about-content-col { padding-top: 20px; }
.about-lead {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(234,234,238,0.85);
  margin-bottom: 24px;
}
.about-body {
  font-size: 0.93rem;
  line-height: 1.9;
  color: rgba(234,234,238,0.78);
  margin-bottom: 18px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(234,234,238,0.08);
}
.stat { flex: 1; }
.stat-n {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-l {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat-sep {
  width: 1px; height: 44px;
  background: rgba(234,234,238,0.1);
  margin: 0 28px;
}

/* ══════════════════════════════════════════
   CORPORATE
══════════════════════════════════════════ */
.s-corporate {
  background: linear-gradient(160deg, var(--navy) 0%, var(--slate) 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.s-corporate::before {
  content: 'FPCC';
  position: absolute;
  top: 50%; right: -60px;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--f-display);
  font-size: 14rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
}
.corp-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  max-width: 800px;
  margin-bottom: 80px;
}
.corp-intro {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(234,234,238,0.75);
  font-style: italic;
}
.corp-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(234,234,238,0.1);
}
.corp-svc {
  padding: 52px 48px;
  border-right: 1px solid rgba(234,234,238,0.1);
  position: relative;
  transition: background 0.5s;
}
.corp-svc:last-child { border-right: none; }
.corp-svc::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--ice));
  transition: width 0.6s var(--ease);
}
.corp-svc:hover { background: rgba(255,255,255,0.03); }
.corp-svc:hover::after { width: 100%; }

.csvc-num {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 400;
  color: rgba(234,234,238,0.06);
  line-height: 1;
  margin-bottom: 20px;
}
.corp-svc h3 { color: var(--white); margin-bottom: 14px; font-size: 1.25rem; }
.corp-svc p { font-size: 0.9rem; line-height: 1.85; color: rgba(234,234,238,0.72); margin-bottom: 24px; }
.svc-link {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.svc-link:hover { gap: 10px; }

.corp-bottom {
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 60px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ══════════════════════════════════════════
   SERVICES BANNER
══════════════════════════════════════════ */
.services-banner {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.services-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.services-banner-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 60px;
}
.services-banner .s-heading { margin-bottom: 20px; }
.services-banner-sub {
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(234,234,238,0.65);
}

/* ══════════════════════════════════════════
   PERSONAL
══════════════════════════════════════════ */
.s-personal {
  background: var(--obsidian);
  padding: 120px 0;
  position: relative;
}
.s-personal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.2), transparent);
}
.personal-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.personal-lead {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(234,234,238,0.78);
  margin-bottom: 36px;
}
/* ── Bullet list ── */
.p-bullets { display: flex; flex-direction: column; gap: 0; margin-bottom: 44px; }
.p-bullet {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(234,234,238,0.07);
}
.p-bullet:first-child { border-top: 1px solid rgba(234,234,238,0.07); }
.pb-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.pb-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(234,234,238,0.7);
}
.pb-text strong {
  display: block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--pearl);
  margin-bottom: 4px;
}

.pv-img-wrap { position: relative; }
.pv-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.75);
  transition: filter 0.8s;
}
.pv-img-wrap:hover img { filter: saturate(1); }
.pv-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 28px 28px;
  background: linear-gradient(to top, rgba(8,15,24,1) 0%, transparent 100%);
}
@media screen and (max-width:600px){
    .pv-caption{padding: 48px 28px 1px;}
}
.pv-caption p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(234,234,238,1);
  margin-bottom: 8px;
}
.pv-caption span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
/*.s-process {
  background: linear-gradient(160deg, #0d1e2e 0%, var(--obsidian) 100%);
  padding: 140px 0;
}
.process-header {
  max-width: 1300px;
  margin: 0 auto 80px;
  padding: 0 60px;
}
.process-steps {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 40px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.step-body h4 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--pearl);
  margin-bottom: 12px;
}
.step-body p { font-size: 0.88rem; line-height: 1.85; color: rgba(234,234,238,0.72); }
.step-connector {
  width: 1px;
  min-height: 120px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,0.1));
  flex-shrink: 0;
  margin-top: 12px;
}*/

/* ══════════════════════════════════════════
   PROCESS — 3-STEP STAIRS
══════════════════════════════════════════ */
.s-process {
  background: linear-gradient(160deg, #0d1e2e 0%, var(--obsidian) 100%);
  padding: 140px 0;
}
.process-header {
  max-width: 1300px;
  margin: 0 auto 80px;
  padding: 0 60px;
}

/* Stair container — steps ascend left to right */
.stairs-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
}

/* Each stair block grows taller as we go right */
.stair {
  flex: 1;
  position: relative;
  border-left: 1px solid rgba(201,169,110,0.2);
}
.stair-1 { padding-top: 0; }
.stair-2 { padding-top: 60px; }
.stair-3 { padding-top: 120px; }

/* Gold top-edge line on each stair */
.stair::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,169,110,0.15));
  transition: background 0.4s;
}
.stair:hover::before {
  background: linear-gradient(90deg, var(--gold-light), var(--ice));
}

.stair-inner {
  padding: 36px 40px 48px;
  background: rgba(255,255,255,0.02);
  transition: background 0.4s;
  height: 100%;
}
.stair:hover .stair-inner { background: rgba(255,255,255,0.05); }

.stair-num {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(201,169,110,0.18);
  margin-bottom: 20px;
  transition: color 0.4s;
}
.stair:hover .stair-num { color: rgba(201,169,110,0.35); }

.stair-text h4 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--pearl);
  margin-bottom: 10px;
  line-height: 1.2;
}
.stair-text p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(234,234,238,0.62);
}

/* CTA sits to the right, bottom-aligned like a 4th column */
.stair-cta {
  flex-shrink: 0;
  padding: 0 0 48px 48px;
  display: flex;
  align-items: flex-end;
}

/* Responsive */
@media (max-width: 900px) {
  .stairs-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0 36px;
  }
  .stair { padding-top: 0 !important; border-left: none; border-top: 1px solid rgba(201,169,110,0.2); }
  .stair::before { display: none; }
  .stair-inner { padding: 28px 28px 32px; }
  .stair-cta { padding: 24px 0 0 0; }
}
@media (max-width: 600px) {
  .stairs-wrap { padding: 0 24px; }
  .process-header { padding: 0 24px; }
}
/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.s-testimonials {
  background: var(--obsidian);
  padding: 140px 0;
  position: relative;
}
.s-testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}
.test-header {
  max-width: 1300px;
  margin: 0 auto 72px;
  padding: 0 60px;
}
.test-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.test-card {
  background: rgba(255,255,255,0.02);
  padding: 52px 44px;
  border: 1px solid rgba(234,234,238,0.06);
  position: relative;
  transition: background 0.5s;
}
.test-card:hover { background: rgba(255,255,255,0.05); }
.test-card-highlight {
  background: rgba(21,69,101,0.4);
  border-color: rgba(185,215,230,0.12);
}
.test-card-highlight:hover { background: rgba(21,69,101,0.55); }
.tc-quote-mark {
  font-family: var(--f-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 20px;
}
.tc-text {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(234,234,238,0.88);
  margin-bottom: 32px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--slate);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--ice);
  flex-shrink: 0;
}
.tc-name {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  color: var(--pearl);
  letter-spacing: 0.05em;
}
.tc-role {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 3px;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.s-contact {
  background: linear-gradient(160deg, var(--slate) 0%, var(--navy) 100%);
  padding: 140px 0;
}
.contact-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.contact-desc {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(234,234,238,0.65);
  margin-bottom: 40px;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.ci-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(234,234,238,0.6);
}
.ci-row svg { flex-shrink: 0; opacity: 0.7; }
.ci-row a:hover { color: var(--pearl); }
.contact-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(234,234,238,0.3);
}

/* ── FORM ── */
.fpcc-form { display: flex; flex-direction: column; gap: 0; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.f-group {
  position: relative;
  margin-bottom: 36px;
}
.f-group label {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(234,234,238,0.4);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.f-group:focus-within label { color: var(--gold); }
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(234,234,238,0.15);
  padding: 10px 0;
  font-family: var(--f-serif);
  font-size: 1rem;
  color: var(--pearl);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  resize: none;
  caret-color: var(--gold);
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: transparent; }
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-color: rgba(234,234,238,0.4); }
.f-underline {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--ice));
  transition: width 0.5s var(--ease);
}
.f-group:focus-within .f-underline { width: 100%; }
.f-group select { /*cursor: none;*/ color: var(--pearl); }
.f-group select option { background: var(--obsidian); color: var(--pearl); }
.f-select-wrap { position: relative; }
.sel-arrow {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 8px;
  color: rgba(234,234,238,0.4);
  pointer-events: none;
}

.form-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  /*cursor: none;*/
  border: none;
  font-size: 0.72rem;
}
.f-success {
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(185,215,230,0.06);
  border-left: 2px solid var(--ice);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ice);
  line-height: 1.6;
}
.f-error {
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(180,60,60,0.1);
  border-left: 2px solid rgba(200,80,80,0.6);
  font-size: 0.85rem;
  color: rgba(234,234,238,0.7);
}
.f-error a { color: var(--gold); text-decoration: underline; }
.f-group.has-error input,
.f-group.has-error select,
.f-group.has-error textarea { border-color: rgba(200,80,80,0.5); }
.f-group.has-error .f-underline { background: rgba(200,80,80,0.7); width: 100%; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--obsidian);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 60px 0 0;
}
.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px 52px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid rgba(234,234,238,0.06);
}
.ft-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ft-brand img { height: 32px; filter: brightness(10); }
.ft-brand p {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(234,234,238,0.3);
  line-height: 1.55;
}
.ft-tagline {
  text-align: center;
}
.ft-tagline em {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(234,234,238,0.35);
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.ft-links a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234,234,238,0.35);
  transition: color 0.3s;
}
@media screen and (max-width:600px){
.ft-links a {
  font-size: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
}
.ft-links a:hover { color: var(--pearl); }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { font-size: 0.65rem; letter-spacing: 0.08em; color: rgba(234,234,238,0.2); }
.ft-social { display: flex; gap: 18px; }
.ft-social a { color: rgba(234,234,238,0.3); transition: color 0.3s, transform 0.3s; }
.ft-social a:hover { color: var(--pearl); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  #nav { padding: 22px 36px; }
  #nav.scrolled { padding: 16px 36px; }
  .hero-layout { padding: 0 36px 80px; gap: 48px; }
  .about-grid, .personal-grid, .contact-grid { padding: 0 36px; gap: 60px; }
  .corp-top, .corp-bottom, .process-header, .process-steps { padding: 0 36px; }
  .test-header, .test-grid { padding: 0 36px; }
  .footer-top, .footer-bottom { padding: 0 36px 52px; }
  .footer-bottom { padding-top: 20px; padding-bottom: 20px; }
  .services-banner-inner { padding: 0 36px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  body { cursor: auto; }
  /*#cursor { display: none; }*/

  .hero-layout { grid-template-columns: 1fr; gap: 32px; padding-bottom: 80px; }
  .hero-right { padding-bottom: 0; }
  .hero-meta { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .personal-grid { grid-template-columns: 1fr; gap: 48px; }
  .personal-visual { order: -1; }
  .pv-img-wrap img { aspect-ratio: 16/9; }
  .corp-services { grid-template-columns: 1fr; }
  .corp-svc { border-right: none; border-bottom: 1px solid rgba(234,234,238,0.1); }
  .corp-svc:last-child { border-bottom: none; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step { padding: 0; }
  .step-connector { width: 40px; height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,169,110,0.1)); margin-left: 0; margin-top: 0; display:none;}
  .test-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .ft-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 14px 24px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .drawer { padding: 36px; }
  .drawer-footer { left: 36px; }
  .services-banner { padding: 72px 0; }
}

@media (max-width: 600px) {
  .hero-layout { padding: 0 24px 60px; }
  .about-grid, .personal-grid, .contact-grid,
  .corp-top, .corp-bottom, .process-header, .process-steps,
  .test-header, .test-grid, .footer-top { padding-left: 24px; padding-right: 24px; }
  .services-banner-inner { padding: 0 24px; }
  .f-row { grid-template-columns: 1fr; }
  .s-heading { font-size: 2.2rem; }
  .hero-headline { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .h-eyebrow { font-size: 0.50rem; }
  .about-img-frame img { aspect-ratio: auto; }
  .corp-svc { padding: 36px 24px; }
}
