/* ============================================================
   FLATIRONS CREATIVE STUDIO — Enhanced Vista theme
   Bebas Neue (hero/display) · Poppins (everything else)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: #1a1a12; background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

/* ── GRAIN OVERLAY on dark sections ── */
.grain::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  width: 8px; height: 8px;
  background: #c8961e; border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%);
  transition: transform .1s, width .2s, height .2s, background .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(200,150,30,.5);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9998; transform: translate(-50%,-50%);
  transition: transform .12s ease-out, width .2s, height .2s;
}
body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot { width: 14px; height: 14px; }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 52px; height: 52px; border-color: rgba(200,150,30,.8); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.has-transparent-nav .nav { background: transparent; border-bottom-color: transparent; }
.has-transparent-nav .nav.scrolled { background: rgba(255,255,255,.97); border-bottom-color: rgba(0,0,0,.08); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.has-transparent-nav .nav:not(.scrolled) .nav-logo-name { color: #fff; }
.has-transparent-nav .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.85); }
.has-transparent-nav .nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.has-transparent-nav .nav:not(.scrolled) .nav-burger span { background: #fff; }
.nav-inner { max-width: 1320px; margin: 0 auto; padding: 0 48px; height: 68px; display: flex; align-items: center; gap: 24px; }
@media (max-width: 768px) { .nav-inner { padding: 0 20px; } }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { height: 44px; width: auto; display: block; transition: opacity .2s; }
.nav-logo:hover .nav-logo-img { opacity: .85; }
.nav-logo-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: #1a1a12; white-space: nowrap; transition: color .4s; display: none; }
.nav-logo-name em { font-style: italic; font-weight: 400; opacity: .7; }
@media (min-width: 640px) { .nav-logo-name { display: block; } }
.has-transparent-nav .nav:not(.scrolled) .nav-logo-name { color: #fff; }
.nav-links { display: none; align-items: center; gap: 0; margin-left: auto; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a { padding: 8px 16px; font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: #444; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #c8961e; }
.nav-cta { display: none; background: #c8961e; color: #fff; padding: 11px 24px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; transition: background .2s, transform .2s; }
.nav-cta:hover { background: #e8b830; transform: translateY(-1px); }
@media (min-width: 960px) { .nav-cta { display: block; } }
.nav-burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px; border-radius: 6px; margin-left: auto; transition: background .2s; }
.nav-burger:hover { background: rgba(0,0,0,.06); }
.nav-burger span { display: block; height: 2px; background: #1a1a12; border-radius: 2px; transition: transform .3s, opacity .3s, background .4s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) { .nav-burger { display: none; } }
.mobile-backdrop { position: fixed; inset: 0; z-index: 210; background: rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-sheet { position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw,340px); z-index: 220; background: #fff; border-left: 1px solid rgba(0,0,0,.08); box-shadow: -20px 0 60px rgba(0,0,0,.15); display: flex; flex-direction: column; padding: 80px 32px 40px; gap: 4px; transform: translateX(100%); transition: transform .35s cubic-bezier(.22,.8,.28,1); }
.mobile-sheet.open { transform: translateX(0); }
.mobile-close { position: absolute; top: 20px; right: 24px; font-size: 22px; color: #999; padding: 4px; }
.mobile-sheet a { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: #1a1a12; padding: 8px 0; text-transform: uppercase; letter-spacing: .02em; transition: color .2s; }
.mobile-sheet a:hover { color: #c8961e; }
.mobile-cta { background: #c8961e !important; color: #fff !important; padding: 12px 24px !important; border-radius: 50px; margin-top: 20px; text-align: center; font-size: 16px !important; }

/* ── HERO ── */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 700px;
  overflow: hidden; background: #1a1a0e;
  display: flex; align-items: flex-end;
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(5,4,2,.88) 0%, rgba(5,4,2,.70) 40%, rgba(5,4,2,.30) 70%, rgba(5,4,2,.05) 100%);
}
/* Grain on hero */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 10; padding: 0 80px 80px; width: 100%; max-width: 1400px; }
@media (max-width: 768px) { .hero-content { padding: 0 24px 64px; } }

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 24px;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: #c8961e; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.5); } }

/* Staggered headline lines */
.hero h1 {
  display: flex; flex-direction: column;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 11vw, 148px);
  line-height: .92; letter-spacing: .02em; text-transform: uppercase;
  color: #fff; margin-bottom: 40px;
  overflow: hidden;
}
.hero-line {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  animation: slideUp .8s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-line-1 { animation-delay: .1s; }
.hero-line-2 { animation-delay: .2s; }
.hero-line-3 { animation-delay: .3s; }
.hero-line-4 { animation-delay: .4s; }
@keyframes slideUp { to { transform: translateY(0); opacity: 1; } }
.hero h1 .gold { color: #c8961e; }
.hero h1 .hero-dim { color: rgba(255,255,255,.35); }

.hero-bottom {
  display: flex; align-items: flex-end; gap: 48px; flex-wrap: wrap;
}
.hero-left { flex: 1; min-width: 280px; }
.hero-services {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #c8961e; margin-bottom: 10px;
}
.hero-sub { font-size: clamp(14px,1.3vw,16px); font-weight: 400; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 32px; max-width: 44ch; }
.hero-cta { display: inline-flex; align-items: center; gap: 14px; background: #c8961e; color: #fff; padding: 18px 36px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background .2s, transform .2s; }
.hero-cta:hover { background: #e8b830; transform: translateY(-2px); }
.hero-cta-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-cta-icon svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* Floating stat card */
.hero-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 28px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-shrink: 0;
  animation: fadeInUp .8s .5s cubic-bezier(.16,1,.3,1) both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-stat-row { display: flex; gap: 32px; margin-bottom: 16px; }
.hero-stat-val { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: #fff; line-height: 1; letter-spacing: .02em; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500; margin-top: 4px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.12); }
.hero-stat-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #c8961e; }
.hero-stat-badge::before { content: ''; width: 20px; height: 1.5px; background: #c8961e; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 40px; right: 80px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,.35), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .35; } 50% { opacity: .8; } }
@media (max-width: 768px) { .hero-scroll-hint { display: none; } .hero-stat-card { display: none; } }

/* ── FILTER STRIP ── */
.filter-strip { background: #1c1a12; display: flex; align-items: stretch; min-height: 88px; flex-wrap: wrap; }
.filter-item { flex: 1; min-width: 160px; display: flex; align-items: center; gap: 16px; padding: 20px 32px; border-right: 1px solid rgba(255,255,255,.07); cursor: pointer; transition: background .2s; }
.filter-item:first-child { border-left: 1px solid rgba(255,255,255,.07); }
.filter-item:hover { background: rgba(255,255,255,.04); }
.filter-icon { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; transition: border-color .2s; }
.filter-item:hover .filter-icon { border-color: rgba(200,150,30,.6); }
.filter-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.8); fill: none; stroke-width: 1.7; }
.filter-label { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 4px; }
.filter-value { font-size: 14px; font-weight: 500; color: #fff; }
.filter-explore { flex-shrink: 0; display: flex; align-items: center; padding: 0 32px; }
.filter-explore-btn { display: flex; align-items: center; gap: 12px; background: #c8961e; color: #fff; padding: 15px 30px; border-radius: 6px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border: 0; cursor: pointer; white-space: nowrap; transition: background .2s, transform .2s; }
.filter-explore-btn:hover { background: #e8b830; transform: translateY(-1px); }
.filter-explore-btn svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.5; }
@media (max-width: 768px) { .filter-strip { flex-direction: column; } .filter-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); } .filter-item:first-child { border-left: 0; } .filter-explore { padding: 16px 20px; } .filter-explore-btn { width: 100%; justify-content: center; } }

/* ── MARQUEE STRIP ── */
.marquee-strip { background: #f5f0e8; padding: 28px 0; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,.06); }
.marquee-label { text-align: center; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(26,26,18,.35); margin-bottom: 16px; }
.marquee-track-wrap { overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 0; width: max-content; animation: marqueeScroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: #1a1a12; white-space: nowrap; padding: 0 32px; opacity: .6; transition: opacity .2s; }
.marquee-item:hover { opacity: 1; }
.marquee-sep { color: #c8961e; font-size: 12px; flex-shrink: 0; }

/* ── JOURNEY — dark bg ── */
.journey { padding: 100px 80px; background: #fff; }
.journey-dark { background: #13120d; }
@media (max-width: 768px) { .journey { padding: 64px 24px; } }
.journey-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: center; }
@media (max-width: 1024px) { .journey-inner { grid-template-columns: 1fr; gap: 48px; } }
.journey-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #c8961e; margin-bottom: 16px; }
.journey-dark .journey-h { color: #fff; }
.journey-h { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(32px,3.5vw,52px); line-height: 1.1; letter-spacing: -.02em; color: #1a1a12; margin-bottom: 20px; }
.journey-dark .journey-body { color: rgba(255,255,255,.5); }
.journey-body { font-size: 15px; font-weight: 400; line-height: 1.72; color: #666; max-width: 40ch; margin-bottom: 32px; }
.journey-btn { display: inline-flex; align-items: center; gap: 10px; background: #c8961e; color: #fff; padding: 14px 28px; border-radius: 6px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; transition: background .2s, transform .2s; }
.journey-btn:hover { background: #e8b830; transform: translateY(-2px); }
.journey-btn svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; }

.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 640px) { .dest-grid { grid-template-columns: 1fr; } }
.dest-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; background: #2a2a1a; cursor: pointer; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.dest-card:hover { transform: translateY(-8px) scale(1.01); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 40%,rgba(0,0,0,.75) 100%); transition: opacity .3s; }

/* Hover reveal overlay */
.dest-hover-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(200,150,30,.88);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  padding: 24px;
  opacity: 0; transition: opacity .3s ease;
}
.dest-card:hover .dest-hover-overlay { opacity: 1; }
.dest-card:hover .dest-pin { opacity: 0; }
.dest-hover-tag { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(26,26,18,.7); }
.dest-hover-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 18px; color: #1a1a12; text-align: center; line-height: 1.2; }
.dest-hover-link { font-size: 13px; font-weight: 700; color: #1a1a12; letter-spacing: .06em; text-transform: uppercase; margin-top: 8px; border-bottom: 1px solid rgba(26,26,18,.4); }

.dest-pin { position: absolute; bottom: 18px; left: 18px; display: flex; align-items: center; gap: 7px; z-index: 2; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: opacity .3s; }
.dest-pin svg { width: 13px; height: 13px; fill: #c8961e; flex-shrink: 0; }

/* ── DEVICE SECTION ── */
.device-section { padding: 100px 80px; background: #f5f0e8; position: relative; overflow: hidden; }
@media (max-width: 768px) { .device-section { padding: 64px 24px; } }
.device-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 1024px) { .device-inner { grid-template-columns: 1fr; gap: 56px; } }
.device-mockup { position: relative; padding-bottom: 60px; }
.dm-laptop { background: #2a2a2a; border-radius: 10px 10px 0 0; padding: 7px 7px 0; box-shadow: 0 24px 64px rgba(0,0,0,.2); position: relative; z-index: 1; }
.dm-screen { background: #111; border-radius: 5px 5px 0 0; overflow: hidden; aspect-ratio: 16/10; }
.dm-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dm-base { background: #1a1a1a; height: 10px; border-radius: 0 0 4px 4px; position: relative; z-index: 1; }
.dm-phone { position: absolute; bottom: 0; right: 10%; width: 18%; background: #2a2a2a; border-radius: 14px; padding: 5px; box-shadow: 0 12px 40px rgba(0,0,0,.28); z-index: 2; }
.dm-phone-screen { background: #111; border-radius: 10px; overflow: hidden; aspect-ratio: 9/19; }
.dm-phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.device-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #c8961e; margin-bottom: 16px; }
.device-h { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(28px,3vw,48px); line-height: 1.1; letter-spacing: -.02em; color: #1a1a12; margin-bottom: 16px; }
.device-body { font-size: 15px; font-weight: 400; line-height: 1.72; color: #666; max-width: 44ch; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 36px; }
.feature-pill { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 76px; text-align: center; }
.pill-icon { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 1.5px solid rgba(0,0,0,.07); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.07); transition: transform .2s, box-shadow .2s; }
.feature-pill:hover .pill-icon { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.pill-icon svg { width: 22px; height: 22px; stroke: #c8961e; fill: none; stroke-width: 1.8; }
.pill-label { font-size: 11px; font-weight: 600; color: #666; line-height: 1.3; }

/* ── STATS — count up ── */
.stats-strip { background: #13120d; padding: 72px 80px; position: relative; overflow: hidden; }
.stats-strip::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
@media (max-width: 768px) { .stats-strip { padding: 48px 24px; } }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
@media (max-width: 640px) { .stats-inner { grid-template-columns: repeat(2,1fr); gap: 40px; } }
.stat-item { display: flex; align-items: center; gap: 20px; padding: 0 40px; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: 0; }
@media (max-width: 640px) { .stat-item { padding: 0; border: 0; } }
.stat-icon { width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid rgba(200,150,30,.35); display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 24px; height: 24px; stroke: #c8961e; fill: none; stroke-width: 1.8; }
.stat-val { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 56px; color: #fff; line-height: 1; letter-spacing: .02em; display: inline; }
.stat-suffix { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 56px; color: #c8961e; line-height: 1; letter-spacing: .02em; display: inline; }
.stat-label { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.38); margin-top: 4px; }

/* ── CTA BAND — animated gradient ── */
.cta-band {
  background: #c8961e;
  padding: 56px 80px;
  position: relative; overflow: hidden;
}
.cta-band-animated::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #e8b830 0%, #c8961e 40%, #a07818 60%, #c8961e 100%);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (max-width: 768px) { .cta-band { padding: 48px 24px; } }
.cta-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-rocket { width: 72px; height: 72px; flex-shrink: 0; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; }
.cta-rocket svg { width: 34px; height: 34px; stroke: #fff; fill: none; stroke-width: 1.5; }
.cta-text { flex: 1; min-width: 240px; }
.cta-text h2 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: clamp(28px,3.5vw,48px); text-transform: uppercase; letter-spacing: .04em; color: #fff; line-height: 1.05; }
.cta-checks { display: flex; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.cta-check { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); }
.cta-check svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; flex-shrink: 0; }
.cta-btn { flex-shrink: 0; display: flex; align-items: center; gap: 14px; background: #1a1a12; color: #fff; padding: 18px 36px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; transition: background .2s, transform .2s; }
.cta-btn:hover { background: #333; transform: translateY(-2px); }
.cta-btn-arrow { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-btn-arrow svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* ── PAGE HEADER ── */
.page-header { background: #13120d; padding: 160px 80px 100px; position: relative; overflow: hidden; }
@media (max-width: 768px) { .page-header { padding: 120px 24px 64px; } }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 30% 110%, rgba(200,150,30,.18), transparent 70%); }
.page-header .ph-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
.page-header .eyebrow { color: #c8961e; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.page-header h1 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: clamp(60px,9vw,130px); letter-spacing: .02em; line-height: .94; text-transform: uppercase; color: #fff; max-width: 20ch; margin-top: 8px; }
.page-header h1 em { font-style: italic; color: #c8961e; }
.page-header p { font-size: 17px; font-weight: 400; color: rgba(255,255,255,.5); max-width: 52ch; margin-top: 24px; line-height: 1.65; }

/* ── INNER PAGES ── */
.section { padding: 96px 80px; }
@media (max-width: 768px) { .section { padding: 64px 24px; } }
.inner { max-width: 1280px; margin: 0 auto; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #c8961e; margin-bottom: 14px; }
.section-h { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(32px,4vw,56px); line-height: 1.1; letter-spacing: -.02em; color: #1a1a12; }
.section-h em { font-style: italic; font-weight: 700; color: #c8961e; }
.lede { font-size: 17px; font-weight: 400; line-height: 1.68; color: #666; max-width: 52ch; }
.svc-full-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .svc-full-grid { grid-template-columns: repeat(2,1fr); } }
.svc-full-card { background: #f5f0e8; border: 1.5px solid rgba(0,0,0,.07); border-radius: 16px; padding: 44px 36px; display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.svc-full-card:hover { box-shadow: 0 24px 64px rgba(0,0,0,.1); transform: translateY(-3px); }
.svc-full-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--accent,#c8961e),transparent 80%); }
.svc-full-card .num { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #999; }
.svc-full-card h3 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: #1a1a12; letter-spacing: -.01em; line-height: 1.2; }
.svc-full-card h3 em { font-style: italic; color: #c8961e; }
.svc-full-card p { font-size: 15px; line-height: 1.7; color: #666; flex: 1; }
.svc-full-card .pricing { display: inline-block; padding: 6px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #c8961e; background: rgba(200,150,30,.1); border: 1px solid rgba(200,150,30,.25); align-self: flex-start; margin-top: 4px; }
@media (min-width: 768px) { .svc-full-card.wide { grid-column: span 2; } }
.work-full-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .work-full-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1040px) { .work-full-grid { grid-template-columns: repeat(3,1fr); } }
.work-full-card { display: flex; flex-direction: column; border-radius: 14px; overflow: hidden; background: #f5f0e8; border: 1.5px solid rgba(0,0,0,.07); transition: box-shadow .3s, transform .3s; }
.work-full-card:hover { box-shadow: 0 24px 64px rgba(0,0,0,.12); transform: translateY(-4px); }
.work-thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; background: #eee; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.work-full-card:hover .work-thumb img { transform: scale(1.05); }
.work-year { position: absolute; top: 12px; right: 12px; font-size: 10px; font-weight: 700; letter-spacing: .12em; color: #1a1a12; background: rgba(255,255,255,.9); padding: 3px 9px; border-radius: 50px; }
.work-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 6px; }
.work-client { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: #1a1a12; letter-spacing: -.01em; }
.work-tagline { font-size: 14px; color: #666; font-style: italic; }
.work-services { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #c8961e; margin-top: 4px; }
.work-foot { margin-top: 12px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,.07); padding-top: 12px; }
.work-foot .site { font-size: 12px; color: #999; }
.work-foot .arrow { width: 30px; height: 30px; border-radius: 50%; background: rgba(200,150,30,.1); border: 1px solid rgba(200,150,30,.2); display: flex; align-items: center; justify-content: center; color: #c8961e; transition: background .2s, transform .2s; }
.work-full-card:hover .work-foot .arrow { background: #c8961e; color: #fff; transform: translate(2px,-2px); }
.work-foot .arrow svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-top: 48px; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.bio-card { background: #f5f0e8; border: 1.5px solid rgba(0,0,0,.07); border-radius: 20px; padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.bio-role { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #c8961e; }
.bio-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 26px; letter-spacing: -.01em; color: #1a1a12; }
.bio-body { font-size: 15px; line-height: 1.75; color: #666; }
.bio-body p { margin-bottom: 12px; }
.creds { display: flex; flex-wrap: wrap; gap: 8px; }
.cred { padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; background: rgba(200,150,30,.1); border: 1px solid rgba(200,150,30,.25); color: #c8961e; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1040px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }
.blog-card { background: #f5f0e8; border: 1.5px solid rgba(0,0,0,.07); border-radius: 14px; overflow: hidden; transition: box-shadow .3s, transform .3s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-3px); }
.blog-thumb { aspect-ratio: 16/9; overflow: hidden; background: #ddd; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-tag { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #c8961e; }
.blog-card h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; line-height: 1.3; color: #1a1a12; letter-spacing: -.01em; }
.blog-card p { font-size: 14px; line-height: 1.65; color: #666; flex: 1; }
.blog-meta { display: flex; gap: 8px; align-items: center; font-size: 12px; color: #999; margin-top: 4px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.07); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 3fr 2fr; gap: 64px; } }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #555; }
.field input, .field textarea, .field select { font-family: 'Poppins', sans-serif; font-size: 15px; color: #1a1a12; background: #fff; border: 1.5px solid rgba(0,0,0,.15); border-radius: 8px; padding: 12px 16px; outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: #bbb; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: #c8961e; box-shadow: 0 0 0 3px rgba(200,150,30,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip { padding: 7px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: .04em; color: #555; background: #fff; border: 1.5px solid rgba(0,0,0,.15); cursor: pointer; transition: all .2s; text-transform: uppercase; }
.chip:hover { border-color: #c8961e; color: #c8961e; }
.chip.on { background: #c8961e; color: #fff; border-color: #c8961e; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: #f5f0e8; border: 1.5px solid rgba(0,0,0,.07); border-radius: 14px; padding: 28px; }
.contact-card h4 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: #1a1a12; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 16px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.info-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(200,150,30,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 16px; height: 16px; stroke: #c8961e; fill: none; stroke-width: 2; }
.info-row h5 { font-size: 13px; font-weight: 600; color: #1a1a12; margin-bottom: 2px; }
.info-row p { font-size: 13px; color: #666; margin: 0; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; padding: 13px 26px; border-radius: 6px; transition: all .2s; white-space: nowrap; cursor: pointer; border: 2px solid transparent; }
.btn-amber { background: #c8961e; color: #fff; border-color: #c8961e; }
.btn-amber:hover { background: #e8b830; border-color: #e8b830; transform: translateY(-2px); }
.btn-dark { background: #1a1a12; color: #fff; border-color: #1a1a12; }
.btn-dark:hover { background: #333; border-color: #333; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #1a1a12; border-color: rgba(0,0,0,.2); }
.btn-outline:hover { border-color: #c8961e; color: #c8961e; }
.btn-pill { border-radius: 50px; }
.btn-lg { padding: 16px 32px; font-size: 14px; }
.btn-xl { padding: 18px 36px; font-size: 15px; }
.btn svg { width: 14px; height: 14px; }
.footer { background: #0d0c09; padding: 72px 80px 40px; }
@media (max-width: 768px) { .footer { padding: 48px 24px 32px; } }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo-img { height: 52px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.4); max-width: 34ch; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; margin-top: 18px; }
.footer-contact a, .footer-contact span { font-size: 13px; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-contact a:hover { color: #c8961e; }
.footer-col h6 { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul a:hover { color: #c8961e; }
.footer-bar { max-width: 1280px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,.22); }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.fade-up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* Intake form section labels */
.intake-section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c8961e;
  padding-bottom: 8px;
  margin-top: 12px;
  border-bottom: 1.5px solid rgba(200,150,30,.2);
}
.intake-section-label:first-of-type { margin-top: 0; }

/* ============================================================
   WEBINAR SERIES PAGE  (/webinars/)
   ============================================================ */
.webinar-next { background: #13120d; position: relative; overflow: hidden; }
.webinar-next::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 80% 0%, rgba(200,150,30,.14), transparent 70%); }
.webinar-next-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .9fr; gap: 64px; align-items: start; }
.webinar-session-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #c8961e; border: 1px solid rgba(200,150,30,.45); border-radius: 99px; padding: 7px 16px; margin-bottom: 22px; }
.webinar-next-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(28px,3.4vw,44px); line-height: 1.15; letter-spacing: -.02em; color: #fff; max-width: 18ch; }
.webinar-next-title em { font-style: italic; color: #c8961e; }
.webinar-next-meta { margin-top: 18px; font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.webinar-leaves { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.webinar-leaves li { position: relative; padding-left: 30px; color: rgba(255,255,255,.75); font-size: 15.5px; line-height: 1.6; max-width: 52ch; }
.webinar-leaves li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #c8961e; font-weight: 700; }
.webinar-next-note { margin-top: 26px; font-size: 14px; color: rgba(255,255,255,.45); max-width: 50ch; line-height: 1.65; }
.webinar-form-card { background: #fff; border-radius: 14px; padding: 34px 30px; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.webinar-form-h { font-family: 'Bebas Neue', sans-serif; font-size: 34px; letter-spacing: .03em; color: #1a1a12; margin-bottom: 20px; }
.webinar-optional { text-transform: none; letter-spacing: 0; font-weight: 400; color: #999; }
.webinar-form-fine { font-size: 12px; color: #999; margin-top: 4px; }

.webinar-curr-intro { margin-top: 22px; font-size: 16px; color: #555; max-width: 56ch; line-height: 1.7; }
.webinar-curriculum { margin-top: 48px; border-top: 1px solid rgba(0,0,0,.1); }
.webinar-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 28px; align-items: center; padding: 22px 8px; border-bottom: 1px solid rgba(0,0,0,.1); transition: background .2s; }
.webinar-row:hover { background: rgba(200,150,30,.05); }
.webinar-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; line-height: 1; color: rgba(26,26,18,.22); }
.webinar-row.is-next .webinar-num { color: #c8961e; }
.webinar-row div strong { display: block; font-size: 17px; font-weight: 700; color: #1a1a12; }
.webinar-row div span { display: block; font-size: 14px; color: #777; margin-top: 3px; }
.webinar-row-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: #c8961e; border-radius: 99px; padding: 6px 14px; }

.webinar-who { background: #faf8f3; }
.webinar-who-text { margin-top: 24px; font-size: 16.5px; color: #444; max-width: 62ch; line-height: 1.75; }
.webinar-replay-empty { margin-top: 24px; font-size: 16px; color: #555; max-width: 56ch; line-height: 1.7; }
.webinar-replay-card { margin-top: 28px; display: grid; grid-template-columns: 70px 1fr auto; gap: 24px; align-items: center; border: 1.5px solid rgba(0,0,0,.12); border-radius: 12px; padding: 22px 26px; }
.webinar-replay-card strong { display: block; font-size: 16px; color: #1a1a12; }
.webinar-replay-card span { display: block; font-size: 13px; color: #888; margin-top: 2px; }

.webinar-host { background: #13120d; position: relative; overflow: hidden; }
.webinar-host-inner { position: relative; z-index: 2; }
.webinar-host-h { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px,6vw,80px); letter-spacing: .02em; color: #fff; line-height: 1; margin-top: 6px; }
.webinar-host-text { margin-top: 22px; font-size: 16px; color: rgba(255,255,255,.6); max-width: 56ch; line-height: 1.75; margin-bottom: 30px; }

@media (max-width: 900px) {
  .webinar-next-grid { grid-template-columns: 1fr; gap: 44px; }
  .webinar-row { grid-template-columns: 60px 1fr; }
  .webinar-num { font-size: 32px; }
  .webinar-row-tag { grid-column: 2; justify-self: start; }
  .webinar-replay-card { grid-template-columns: 1fr; }
}

/* Webinar confirmation page */
.webinar-confirm { max-width: 760px; }
.webinar-confirm-step { display: grid; grid-template-columns: 80px 1fr; gap: 26px; padding: 30px 0; border-bottom: 1px solid rgba(0,0,0,.1); }
.webinar-confirm-step strong { display: block; font-size: 19px; font-weight: 700; color: #1a1a12; }
.webinar-confirm-step span { display: block; font-size: 15px; color: #666; margin-top: 6px; line-height: 1.7; max-width: 52ch; }
.webinar-confirm-btn { margin-top: 18px; }
.webinar-confirm-back { margin-top: 36px; font-size: 14px; font-weight: 600; color: #c8961e; }
