/* ═══════════════════════════════════════════════════════════
   FELCHRIS — CINEMATIC SCROLLYTELLING ENGINE v4.0
   Pinned sections · Lenis · GSAP ScrollTrigger · SplitType
   Brand: Navy #0B0E14 | Orange #C8860A | Cream #F0EDE6
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #0B0E14;
  --navy-2:     #11151F;
  --navy-3:     #161B28;
  --orange:     #C8860A;
  --orange-2:   #E6A12A;
  --orange-dim: rgba(200,134,10,0.12);
  --orange-line:rgba(200,134,10,0.28);
  --cream:      #F0EDE6;
  --cream-dim:  #8E94A6;
  --white:      #FAFAF8;
  --nav-h:      84px;
  --gutter:     clamp(24px, 5vw, 80px);
}

html, body {
  background-color: var(--navy);
  overflow-x: hidden;
  height: auto;
}
html { font-size: 16px; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--cream);
  line-height: 1.6;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.card, .btn, .section-block, img { border-radius: 0 !important; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width .2s, height .2s;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .4s cubic-bezier(.16,1,.3,1), height .4s cubic-bezier(.16,1,.3,1), opacity .3s;
  opacity: .55;
}
.cursor.hover { width: 4px; height: 4px; }
.cursor-ring.hover { width: 70px; height: 70px; opacity: 1; }

/* ── PRELOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.loader-logo { width: 110px; opacity: 0; animation: lFade .5s .2s ease forwards; }
.loader-bar-wrap { width: 280px; height: 1px; background: rgba(200,134,10,.2); overflow: hidden; }
.loader-bar { height: 100%; width: 0%; background: var(--orange); animation: lBar 1.6s .4s cubic-bezier(.76,0,.24,1) forwards; }
.loader-word { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--orange); opacity: 0; animation: lFade .4s 1.3s ease forwards; }
#loader.done { animation: lOut .7s 1.9s cubic-bezier(.76,0,.24,1) forwards; pointer-events: none; }
@keyframes lFade { to { opacity: 1; } }
@keyframes lBar { to { width: 100%; } }
@keyframes lOut { to { opacity: 0; visibility: hidden; } }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  padding: 0 var(--gutter);
  background: linear-gradient(180deg, rgba(11,14,20,.55) 0%, transparent 100%);
  transition: padding .4s, background .4s, backdrop-filter .4s;
}
#nav.scrolled {
  padding: 0 var(--gutter); height: 68px;
  background: rgba(11,14,20,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--orange-line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo img { height: 52px; }
#nav.scrolled .nav-logo img { height: 42px; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--white); }
.nav-links a:hover { color: var(--orange); }
.nav-cta { padding: 10px 24px; border: 1px solid var(--white); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--white); }
.nav-cta:hover { background: var(--white); color: var(--navy); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.nav-burger span { display: block; width: 26px; height: 1px; background: var(--white); }
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 1001;
  background: var(--navy-2); flex-direction: column;
  align-items: flex-start; justify-content: flex-end; padding: 6rem var(--gutter) 4rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: clamp(32px, 9vw, 64px); color: var(--white); letter-spacing: -.02em; line-height: 1.15; font-family: 'Playfair Display', serif; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 28px; right: var(--gutter); background: none; border: none; color: var(--cream); font-size: 28px; cursor: pointer; }

/* ── SHARED ── */
.wrap { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--orange);
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--orange); display: block; }
.serif { font-family: 'Playfair Display', Georgia, serif; }

/* ══════════════════════════════════════════════════
   SECTION 1 — IMMERSIVE PINNED HERO
══════════════════════════════════════════════════ */
#hero-pin {
  position: relative; height: 100vh; width: 100%;
  overflow: hidden; background: var(--navy);
}
.hero-bg-layer {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&q=85') center/cover no-repeat;
  transform: scale(1.15);
}
.hero-bg-layer::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,14,20,.55) 0%, rgba(11,14,20,.35) 45%, rgba(11,14,20,.95) 100%);
}
.hero-blueprint {
  position: absolute; inset: 0; z-index: 1; opacity: .08; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,134,10,.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,134,10,.9) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 0 var(--gutter);
}
.hero-eyebrow { margin-bottom: 2.5rem; }
.hero-title {
  font-size: clamp(60px, 13vw, 220px);
  font-weight: 700; line-height: .92; letter-spacing: -.04em; color: var(--white);
  text-transform: uppercase;
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--orange); }
.hero-sub {
  margin-top: 2.5rem; font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .04em; color: var(--cream-dim);
  max-width: 560px;
}
.hero-scroll-cue {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--orange);
}
.hero-scroll-line { width: 1px; height: 56px; background: linear-gradient(var(--orange), transparent); }
.hero-meta-corner {
  position: absolute; bottom: 3rem; right: var(--gutter); z-index: 3;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.55);
  text-align: right; display: flex; flex-direction: column; gap: .5rem;
}

/* ══════════════════════════════════════════════════
   SECTION 2 — STORY (PINNED CHAPTERS)
══════════════════════════════════════════════════ */
#story-pin {
  position: relative; height: 100vh; overflow: hidden;
  background: var(--navy-2);
}
.story-bg {
  position: absolute; inset: 0; z-index: 0;
}
.story-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  filter: grayscale(35%) contrast(1.05) brightness(.6);
}
.story-bg-img.active { opacity: 1; }
.story-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,14,20,.92) 0%, rgba(11,14,20,.55) 55%, rgba(11,14,20,.85) 100%);
  z-index: 1;
}
.story-chapters { position: relative; z-index: 2; height: 100%; }
.story-chapter {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter); opacity: 0;
}
.story-chapter.active { opacity: 1; }
.story-chapter-index {
  font-size: 11px; letter-spacing: .3em; color: var(--orange); margin-bottom: 1.5rem;
}
.story-chapter-title .sline { display: block; }
.story-chapter-title {
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 700; line-height: .95; letter-spacing: -.03em;
  color: var(--white); text-transform: uppercase; max-width: 1100px;
}
.story-chapter-body {
  margin-top: 2rem; font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.8; color: var(--cream-dim); max-width: 540px;
  border-left: 2px solid var(--orange); padding-left: 1.5rem;
}
.story-progress {
  position: absolute; bottom: 2.5rem; left: var(--gutter); right: var(--gutter); z-index: 3;
  display: flex; gap: .5rem;
}
.story-progress-bar {
  flex: 1; height: 2px; background: rgba(255,255,255,.15); position: relative; overflow: hidden;
}
.story-progress-fill {
  position: absolute; inset: 0; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
}
.story-progress-bar.active .story-progress-fill { transform: scaleX(1); }
.story-progress-bar.done .story-progress-fill { transform: scaleX(1); }

/* ══════════════════════════════════════════════════
   SECTION 3 — STATS (OVERSIZED TYPE)
══════════════════════════════════════════════════ */
#stats {
  background: var(--navy); padding: 8rem 0;
  border-top: 1px solid var(--orange-line); border-bottom: 1px solid var(--orange-line);
}
.stats-row {
  display: flex; flex-direction: column; gap: 0;
}
.stat-line {
  display: grid; grid-template-columns: 100px 1fr 220px; align-items: center;
  padding: 3rem 0; border-bottom: 1px solid var(--orange-line);
  gap: 2rem;
}
.stat-line:first-child { border-top: 1px solid var(--orange-line); }
.stat-line-idx { font-size: 11px; letter-spacing: .25em; color: var(--orange); opacity: .6; }
.stat-line-num {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(64px, 11vw, 180px); line-height: .9; color: var(--white);
  letter-spacing: -.03em; will-change: transform;
}
.stat-line-num .unit { font-size: .4em; color: var(--orange); vertical-align: super; }
.stat-line-label {
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--cream-dim);
  text-align: right; line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   SECTION 4 — HORIZONTAL PROJECTS GALLERY
══════════════════════════════════════════════════ */
#projects-pin {
  position: relative; height: 100vh; overflow: hidden; background: var(--navy);
}
.projects-track {
  position: absolute; top: 0; left: 0; height: 100%;
  display: flex; will-change: transform;
}
.project-panel {
  position: relative; height: 100%; width: 100vw; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; border-right: 1px solid var(--orange-line);
}
.project-panel-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(25%) contrast(1.08);
  transform: scale(1.1);
}
.project-panel-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,14,20,.1) 30%, rgba(11,14,20,.95) 100%);
}
.project-panel-content {
  position: relative; z-index: 1; padding: 0 var(--gutter) 5rem;
}
.project-panel-idx {
  font-size: 11px; letter-spacing: .3em; color: var(--orange); margin-bottom: 1.25rem;
}
.project-panel-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(40px, 7vw, 96px); line-height: 1; color: var(--white);
  letter-spacing: -.02em; max-width: 800px;
}
.project-panel-tag {
  display: inline-block; margin-top: 1.5rem;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream-dim); border: 1px solid var(--orange-line);
  padding: 6px 16px;
}
.projects-hint {
  position: absolute; top: 2.5rem; right: var(--gutter); z-index: 3;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 1rem;
}
.projects-hint-arrow { display: flex; gap: 4px; }
.projects-hint-arrow span { width: 24px; height: 1px; background: var(--orange); display: block; animation: arrowPulse 1.6s infinite; }
.projects-hint-arrow span:nth-child(2) { animation-delay: .2s; }
.projects-hint-arrow span:nth-child(3) { animation-delay: .4s; }
@keyframes arrowPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ══════════════════════════════════════════════════
   SECTION 5 — SERVICES (EDITORIAL ROWS)
══════════════════════════════════════════════════ */
#services { background: var(--navy-2); padding: 8rem 0; }
.services-head { padding-bottom: 4rem; }
.services-head .serif { font-size: clamp(48px, 7vw, 110px); font-weight: 700; line-height: 1; color: var(--white); letter-spacing: -.03em; margin-top: 1.5rem; }
.services-head p { margin-top: 2rem; font-size: 15px; line-height: 1.8; color: var(--cream-dim); max-width: 540px; }
.service-list { border-top: 1px solid var(--orange-line); }
.service-row {
  position: relative; display: grid; grid-template-columns: 90px 1fr 90px;
  align-items: center; padding: 3rem 0; border-bottom: 1px solid var(--orange-line);
  overflow: hidden; cursor: pointer;
}
.service-row-idx { font-size: 11px; letter-spacing: .25em; color: var(--orange); opacity: .6; }
.service-row-name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(28px, 5vw, 64px); color: var(--white); letter-spacing: -.02em;
  transition: transform .5s cubic-bezier(.16,1,.3,1), color .3s;
  position: relative; z-index: 2;
}
.service-row:hover .service-row-name { transform: translateX(24px); color: var(--orange); }
.service-row-arrow {
  font-size: 28px; color: var(--orange); text-align: right;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.service-row:hover .service-row-arrow { transform: translateX(8px) rotate(-45deg); }
.service-row-img {
  position: absolute; top: 0; right: 0; height: 100%; width: 320px;
  background-size: cover; background-position: center;
  clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 0);
  transition: clip-path .55s cubic-bezier(.16,1,.3,1);
  filter: grayscale(30%);
  z-index: 1;
}
.service-row-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-2) 0%, transparent 60%); }
.service-row:hover .service-row-img { clip-path: polygon(40% 0, 100% 0, 100% 100%, 40% 100%); }
.service-row-desc {
  font-size: 13px; line-height: 1.7; color: var(--cream-dim); max-width: 460px;
  grid-column: 2; margin-top: .75rem;
}

/* ══════════════════════════════════════════════════
   SECTION 6 — LEADERSHIP (STICKY EDITORIAL)
══════════════════════════════════════════════════ */
#leadership { background: var(--navy); padding: 8rem 0; }
.leadership-head { padding-bottom: 4rem; }
.leadership-head .serif { font-size: clamp(48px, 7vw, 110px); font-weight: 700; line-height: 1; color: var(--white); letter-spacing: -.03em; margin-top: 1.5rem; }
.leader-block { display: grid; grid-template-columns: 380px 1fr; gap: 6rem; border-top: 1px solid var(--orange-line); padding: 5rem 0; }
.leader-block:last-child { border-bottom: 1px solid var(--orange-line); }
.leader-sticky { position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; height: fit-content; }
.leader-photo {
  width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center top;
  filter: grayscale(25%) contrast(1.05); margin-bottom: 1.5rem; background-color: var(--navy-3);
}
.leader-name { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--white); line-height: 1.15; }
.leader-title { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin-top: .5rem; }
.leader-creds { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.25rem; }
.cred { font-size: 10px; letter-spacing: .12em; padding: 4px 12px; border: 1px solid var(--orange-line); color: var(--orange); }
.leader-content { display: flex; flex-direction: column; gap: 2.5rem; }
.leader-stage { padding: 2rem 0; border-bottom: 1px solid rgba(200,134,10,.12); }
.leader-stage:last-child { border-bottom: none; padding-bottom: 0; }
.leader-stage-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.leader-stage-title { font-family: 'Playfair Display', serif; font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; color: var(--white); margin-bottom: .75rem; }
.leader-stage-body { font-size: 14px; line-height: 1.85; color: var(--cream-dim); }
.leader-stage-body + .leader-stage-body { margin-top: .75rem; }
.leader-tags { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.leader-tags span { font-size: 11px; padding: 4px 12px; background: var(--orange-dim); border: 1px solid var(--orange-line); color: var(--cream); }

/* ══════════════════════════════════════════════════
   SECTION 7 — FULLSCREEN PROJECT SHOWCASE
══════════════════════════════════════════════════ */
#showcase { position: relative; background: var(--navy); }
.showcase-head { padding: 6rem var(--gutter) 0; }
.showcase-head .serif { font-size: clamp(48px, 7vw, 110px); font-weight: 700; line-height: 1; color: var(--white); letter-spacing: -.03em; margin-top: 1.5rem; }
.showcase-panel {
  position: relative; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.showcase-panel-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(20%) contrast(1.1);
  clip-path: inset(100% 0 0 0);
}
.showcase-panel-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,14,20,.92) 0%, rgba(11,14,20,.25) 60%); }
.showcase-panel-content { position: relative; z-index: 1; padding: 0 var(--gutter); width: 100%; }
.showcase-panel-idx { font-size: 11px; letter-spacing: .3em; color: var(--orange); margin-bottom: 1.25rem; }
.showcase-panel-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(42px, 8vw, 110px); line-height: 1; color: var(--white); letter-spacing: -.03em;
  max-width: 900px; transform: translateY(60px); opacity: 0;
}
.showcase-panel-desc { margin-top: 1.5rem; font-size: 14px; line-height: 1.8; color: var(--cream-dim); max-width: 480px; transform: translateY(40px); opacity: 0; }

/* ══════════════════════════════════════════════════
   SECTION 8 — POLICIES / DOWNLOADS / COMPLIANCE
══════════════════════════════════════════════════ */
#policies-cta {
  background: var(--navy-2); padding: 8rem 0;
  border-top: 1px solid var(--orange-line);
}
.policies-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.policies-cta-titles .serif {
  font-size: clamp(40px, 7vw, 96px); font-weight: 700; line-height: 1; color: var(--white); letter-spacing: -.03em;
}
.policies-cta-titles .serif span { display: block; }
.policies-cta-titles .serif .accent { color: var(--orange); }
.policies-cta-list { display: flex; flex-direction: column; }
.policies-cta-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; border-bottom: 1px solid var(--orange-line);
  font-size: 14px; color: var(--cream); transition: padding-left .3s, color .3s;
}
.policies-cta-item:first-child { border-top: 1px solid var(--orange-line); }
.policies-cta-item:hover { padding-left: 1rem; color: var(--orange); }
.policies-cta-item span:last-child { color: var(--orange); font-size: 18px; }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
#contact { background: var(--navy); padding: 8rem 0; }
.contact-head .serif { font-size: clamp(48px, 8vw, 130px); font-weight: 700; line-height: .95; color: var(--white); letter-spacing: -.03em; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; margin-top: 4rem; }
.contact-info p { font-size: 15px; line-height: 1.8; color: var(--cream-dim); margin-bottom: 3rem; max-width: 380px; }
.c-items { border-top: 1px solid var(--orange-line); }
.c-item { display: flex; justify-content: space-between; padding: 1.5rem 0; border-bottom: 1px solid var(--orange-line); }
.c-lbl { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--cream-dim); }
.c-val { font-size: 14px; color: var(--white); }
.c-val a { color: var(--orange); }
.contact-form { border: 1px solid var(--orange-line); padding: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.fg label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim); }
.fg input, .fg textarea, .fg select {
  background: var(--navy-2); border: 1px solid var(--orange-line); color: var(--white);
  padding: 12px 16px; font-size: 13px; font-family: inherit; outline: none; width: 100%;
  transition: border-color .2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--orange); }
.fg textarea { min-height: 100px; resize: vertical; }
.fg select option { background: var(--navy-2); }
.form-submit {
  width: 100%; padding: 16px; margin-top: .5rem; background: var(--orange); color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; border: none; cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: var(--orange-2); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer { background: var(--navy-2); border-top: 1px solid var(--orange-line); padding: 5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo img { height: 50px; }
.footer-tagline { font-size: 13px; line-height: 1.75; color: var(--cream-dim); margin-top: 1.5rem; }
.footer-col-t { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a { font-size: 13px; color: var(--cream-dim); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--orange-line); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 11px; color: var(--cream-dim); }

/* ── WHATSAPP ── */
.wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
}
.wa:hover { transform: scale(1.1); }
.wa svg { width: 28px; height: 28px; fill: #fff; }

/* ══════════════════════════════════════════════════
   POLICIES PAGE
══════════════════════════════════════════════════ */
.policies-hero {
  min-height: 70vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; background: var(--navy);
  padding: 0 var(--gutter);
}
.policies-hero .serif {
  font-size: clamp(60px, 13vw, 180px); font-weight: 700; line-height: .92;
  color: var(--white); letter-spacing: -.03em; text-transform: uppercase;
}
.policies-hero .serif span { display: block; }
.policies-hero .pline { display: block; }
.policies-hero .serif .accent { color: var(--orange); }
.policies-hero p { margin-top: 2rem; font-size: 14px; line-height: 1.8; color: var(--cream-dim); max-width: 560px; }
.policies-section { padding: 6rem 0; background: var(--navy-2); }
.policies-intro { font-size: 14px; line-height: 1.85; color: var(--cream-dim); max-width: 680px; margin-bottom: 4rem; }
.dl-title { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid var(--orange-line); }
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--orange-line); border: 1px solid var(--orange-line); margin-bottom: 5rem; }
.dl-card {
  background: var(--navy); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1rem;
  transition: background .3s; position: relative; overflow: hidden; min-height: 180px;
}
.dl-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .4s cubic-bezier(.16,1,.3,1); }
.dl-card:hover { background: var(--navy-3); }
.dl-card:hover::before { width: 100%; }
.dl-icon { width: 40px; height: 40px; background: var(--orange-dim); border: 1px solid var(--orange-line); display: flex; align-items: center; justify-content: center; }
.dl-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.dl-name { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.35; }
.dl-actions {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding-top: 1rem; border-top: 1px solid var(--orange-line); flex-wrap: wrap;
}
.dl-status {
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--cream-dim);
  display: flex; align-items: center; gap: .5rem; cursor: pointer; transition: color .2s;
}
.dl-status:hover { color: var(--orange); }
.dl-status::before { content: ''; width: 6px; height: 6px; background: var(--orange); display: block; flex-shrink: 0; }
.dl-download {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  color: var(--orange); border: 1px solid var(--orange-line); padding: 6px 14px;
  transition: background .2s, color .2s;
}
.dl-download:hover { background: var(--orange); color: var(--navy); }
.policy-text-section { border-top: 1px solid var(--orange-line); padding-top: 4rem; }
.policy-block { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--orange-line); }
.policy-block:last-child { border-bottom: none; }
.policy-block-header { display: grid; grid-template-columns: 90px 1fr; gap: 2rem; align-items: start; margin-bottom: 2rem; }
.policy-block-num { font-size: 10px; letter-spacing: .2em; color: var(--orange); opacity: .6; padding-top: .25rem; }
.policy-block-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--white); }
.policy-block-title-row {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap;
}
.policy-block-title-row .dl-download { flex-shrink: 0; margin-bottom: 4px; }
.policy-block-body { font-size: 14px; line-height: 1.9; color: var(--cream-dim); padding-left: calc(90px + 2rem); }
.policy-block-body p { margin-bottom: 1rem; }
.policy-block-body ul { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.policy-block-body ul li { padding-left: .5rem; border-left: 2px solid var(--orange-dim); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .leader-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .leader-sticky { position: static; }
  .stat-line { grid-template-columns: 60px 1fr; }
  .stat-line-label { grid-column: span 2; text-align: left; margin-top: 1rem; }
  .policies-cta-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dl-grid { grid-template-columns: 1fr 1fr; }
  .service-row-img { width: 200px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  #nav { padding: 0 24px; }
  .service-row { grid-template-columns: 50px 1fr 40px; padding: 2rem 0; }
  .service-row-img { display: none; }
  .service-row-desc { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
  .policy-block-body { padding-left: 0; }
  .story-chapter-title { font-size: clamp(36px, 13vw, 72px); }
}
