/* ═══════════════════════════════════════════════
   DAVID AKPAN — PORTFOLIO
   Accent : #B91C1C  ·  Surface: #ffffff
   Display: DM Serif Display
   Body   : Outfit
═══════════════════════════════════════════════ */

:root {
  --red:       #B91C1C;
  --red-dk:    #991B1B;
  --red-pale:  #FEF2F2;
  --red-glow:  rgba(185,28,28,.1);
  --ink:       #111111;
  --ink-70:    rgba(17,17,17,.7);
  --ink-40:    rgba(17,17,17,.4);
  --ink-12:    rgba(17,17,17,.12);
  --white:     #ffffff;
  --off:       #f9f8f7;
  --surface:   #f3f2f0;
  --line:      rgba(17,17,17,.09);
  --font-d:    'DM Serif Display', serif;
  --font-b:    'Outfit', sans-serif;
  --tr:        .35s cubic-bezier(.4,0,.2,1);
  --tr-spring: .5s cubic-bezier(.34,1.56,.64,1);
  --r:         8px;
  --shadow:    0 2px 16px rgba(0,0,0,.06);
  --shadow-md: 0 8px 36px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 72px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body { font-family: var(--font-b); background: var(--white); color: var(--ink); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased }
a { text-decoration: none; color: inherit }
ul { list-style: none }
img { display: block; width: 100%; height: 100%; object-fit: cover }
button { cursor: pointer; border: none; background: none; font-family: var(--font-b) }
.wrap { width: 88%; max-width: 1200px; margin: 0 auto }

/* ── REVEAL ANIMATIONS ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal-up    { transform: translateY(40px) }
.reveal-left  { transform: translateX(-48px) }
.reveal-right { transform: translateX(48px) }
.reveal-up.on, .reveal-left.on, .reveal-right.on { opacity: 1; transform: translate(0,0) }

/* ── HIDDEN ── */
.hidden { display: none !important }

/* ── BUTTONS ── */
.btn-fill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-family: var(--font-b); font-weight: 600; font-size: .8rem;
  padding: 12px 28px; border-radius: 3px;
  letter-spacing: .08em; text-transform: uppercase;
  transition: var(--tr); border: 2px solid var(--red);
}
.btn-fill:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(185,28,28,.28) }
.btn-outline {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--ink);
  font-family: var(--font-b); font-weight: 600; font-size: .8rem;
  padding: 12px 28px; border-radius: 3px;
  letter-spacing: .08em; text-transform: uppercase;
  transition: var(--tr); border: 2px solid var(--ink-12);
}
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink) }
.btn-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-b); font-weight: 600; font-size: .85rem;
  color: var(--red); letter-spacing: .04em; transition: gap var(--tr);
}
.btn-arrow:hover { gap: 12px }
.btn-arrow svg { width: 16px; height: 16px; flex-shrink: 0 }
.fw { width: 100%; justify-content: center }

/* ── SECTION COMMONS ── */
section { padding: 100px 0 }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-b); font-size: .65rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--red); flex-shrink: 0 }
.section-label-inv { color: rgba(255,255,255,.6) }
.section-label-inv::before { background: rgba(255,255,255,.4) }
.section-heading {
  font-family: var(--font-d); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -.01em;
  margin-bottom: 16px; color: var(--ink);
}
.section-heading em { font-style: italic; color: var(--red) }
.section-heading-inv { color: var(--white) }
.section-heading-inv em { color: #FCA5A5 }
.section-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 60px }
.section-top-left { display: flex; flex-direction: column }
.section-sub { font-size: .97rem; color: var(--ink-40); line-height: 1.75; align-self: end; padding-bottom: 4px }
.section-cta { margin-top: 72px; padding: 60px 48px; background: var(--ink); border-radius: var(--r); text-align: center; position: relative; overflow: hidden }
.section-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(185,28,28,.18) 0%, transparent 60%) }
.section-cta p { font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,.55); margin-bottom: 24px }

/* ── NAVBAR ── */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background .4s, box-shadow .4s }
#nav.solid { background: rgba(17,17,17,.97); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(185,28,28,.18), 0 4px 24px rgba(0,0,0,.3) }
.nav-container { width: 88%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px }
.brand { display: flex; align-items: center; gap: 10px }
.brand-mark svg { border-radius: 7px; transition: transform var(--tr), box-shadow var(--tr) }
.brand:hover .brand-mark svg { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(185,28,28,.35) }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2 }
.brand-name { font-family: var(--font-d); font-size: .95rem; font-weight: 400; color: var(--white); letter-spacing: -.01em }
.brand-role { font-size: .56rem; font-weight: 600; color: rgba(255,255,255,.38); letter-spacing: .16em; text-transform: uppercase }
.nav-list { display: flex; gap: 36px }
.nav-list a { color: rgba(255,255,255,.5); font-size: .77rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; transition: color var(--tr); position: relative }
.nav-list a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--red); transition: width var(--tr) }
.nav-list a:hover { color: var(--white) }
.nav-list a:hover::after { width: 100% }
.nav-action { background: var(--red); color: var(--white); font-family: var(--font-b); font-weight: 600; font-size: .74rem; padding: 9px 20px; border-radius: 3px; letter-spacing: .08em; text-transform: uppercase; transition: var(--tr) }
.nav-action:hover { background: var(--red-dk) }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: var(--tr) }
.nav-drawer { display: none; background: rgba(17,17,17,.99); border-top: 1px solid rgba(185,28,28,.15) }
.nav-drawer.open { display: block }
.nav-drawer li a { display: block; padding: 14px 6%; color: rgba(255,255,255,.65); font-size: .92rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.04); transition: color var(--tr), padding-left var(--tr) }
.nav-drawer li a:hover { color: var(--white); padding-left: calc(6% + 8px) }
.drawer-cta { color: var(--red) !important }

/* ── HERO ── */
#hero { position: relative; height: 100vh; min-height: 680px; display: flex; flex-direction: column; justify-content: center; overflow: hidden }
.hero-bg { position: absolute; inset: 0; z-index: 0 }
.hbg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s ease }
.hbg-slide.active { opacity: 1 }
.hero-dim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(17,17,17,.95) 0%, rgba(17,17,17,.72) 50%, rgba(17,17,17,.35) 100%) }

.hero-layout { position: relative; z-index: 2; width: 88%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; padding-top: 72px }

/* Left side */
.hero-eyebrow { display: flex; align-items: center; gap: 12px; font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 20px }
.hero-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--red); flex-shrink: 0 }

.hero-title { font-family: var(--font-d); font-size: clamp(2.2rem, 4.2vw, 4rem); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; color: var(--white); margin-bottom: 20px }
.hero-title span { display: block }
.hero-title em { display: block; font-style: italic; color: var(--red) }

.hero-body { font-size: .95rem; color: rgba(255,255,255,.5); max-width: 480px; margin-bottom: 32px; line-height: 1.78; font-weight: 300 }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap }
.h-btn-fill { display: inline-flex; align-items: center; background: var(--red); color: var(--white); font-family: var(--font-b); font-weight: 600; font-size: .76rem; padding: 11px 26px; border-radius: 3px; letter-spacing: .09em; text-transform: uppercase; transition: var(--tr); border: 1.5px solid var(--red) }
.h-btn-fill:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(185,28,28,.3) }
.h-btn-line { display: inline-flex; align-items: center; background: transparent; color: rgba(255,255,255,.65); font-family: var(--font-b); font-weight: 600; font-size: .76rem; padding: 11px 26px; border-radius: 3px; letter-spacing: .09em; text-transform: uppercase; transition: var(--tr); border: 1.5px solid rgba(255,255,255,.18) }
.h-btn-line:hover { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.35) }

/* Right panel */
.hero-panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 32px 28px; backdrop-filter: blur(12px); display: flex; flex-direction: column; gap: 0 }
.hp-stat { padding: 22px 0; display: flex; flex-direction: column }
.hp-n { font-family: var(--font-d); font-size: 2.6rem; font-weight: 400; color: var(--white); line-height: 1; display: inline }
.hp-plus { font-family: var(--font-d); font-size: 1.8rem; color: var(--red); vertical-align: super; line-height: 1 }
.hp-l { font-size: .67rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 5px }
.hp-rule { height: 1px; background: rgba(255,255,255,.08) }

/* Hero text transitions */
.hero-left.out .hero-eyebrow,
.hero-left.out .hero-title,
.hero-left.out .hero-body { opacity: 0; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease }
.hero-left .hero-eyebrow,
.hero-left .hero-title,
.hero-left .hero-body { transition: opacity .5s ease .1s, transform .5s ease .1s; opacity: 1; transform: translateY(0) }
/* Initial GSAP hidden state */
.hero-left .hero-eyebrow,
.hero-left .hero-title,
.hero-left .hero-body,
.hero-left .hero-btns,
.hero-panel { opacity: 0; transform: translateY(28px) }

/* Hero footer */
.hero-footer { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 3; width: 88%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between }
.hf-slides { display: flex; gap: 8px; align-items: center }
.hf-dot { width: 18px; height: 1.5px; border-radius: 2px; background: rgba(255,255,255,.22); cursor: pointer; transition: var(--tr) }
.hf-dot.active { background: var(--red); width: 32px }
.hf-num { font-family: var(--font-d); font-size: .95rem; color: rgba(255,255,255,.28); letter-spacing: .04em }
.hf-num strong { color: rgba(255,255,255,.65); font-weight: 400 }
.hf-scroll { display: flex; flex-direction: column; align-items: center; gap: 6px }
.hf-scroll-bar { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--red), transparent); animation: sb 2.2s ease-in-out infinite }
@keyframes sb { 0%{transform:scaleY(.2);opacity:.3} 50%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(.2);opacity:.3} }
.hf-scroll span { font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3) }

/* ── PARTNER BAND ── */
#band { background: var(--ink); border-top: 1px solid rgba(185,28,28,.12); border-bottom: 1px solid rgba(185,28,28,.12); padding: 18px 0; display: flex; align-items: center; overflow: hidden; gap: 0 }
.band-label { flex-shrink: 0; padding: 0 28px 0 calc(6%); font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.22); border-right: 1px solid rgba(255,255,255,.07); white-space: nowrap }
.band-track-outer { overflow: hidden; flex: 1 }
.band-track { display: flex; align-items: center; animation: ticker 22s linear infinite; width: max-content }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.band-name { font-family: var(--font-d); font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.38); white-space: nowrap; padding: 0 26px; letter-spacing: .04em; transition: color var(--tr); cursor: default }
.band-name:hover { color: rgba(255,255,255,.7) }
.band-dot { color: var(--red); opacity: .45; font-size: .9rem; flex-shrink: 0 }

/* ── ABOUT ── */
#about { background: var(--off) }
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 88px; align-items: center }
.about-photo { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg) }
.about-photo::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1.5px solid var(--red); border-radius: var(--r); z-index: 0; opacity: .2 }
.about-photo img { position: relative; z-index: 1; border-radius: var(--r); height: 540px; object-fit: cover; object-position: top }
.photo-tag { position: absolute; top: 22px; right: -14px; z-index: 3; background: var(--red); color: var(--white); font-family: var(--font-b); font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 8px 14px; border-radius: 2px }
.photo-accent { position: absolute; bottom: 0; left: 0; width: 48px; height: 3px; background: var(--red); z-index: 3 }
.about-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 16px }
.metric { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 12px; text-align: center; transition: transform var(--tr), box-shadow var(--tr) }
.metric:hover { transform: translateY(-3px); box-shadow: var(--shadow-md) }
.metric.ac { background: var(--red); border-color: var(--red) }
.metric.ac .m-val, .metric.ac .m-key { color: var(--white) }
.m-val { display: block; font-family: var(--font-d); font-size: 1.8rem; font-weight: 400; color: var(--red); line-height: 1; letter-spacing: -.02em }
.m-key { display: block; font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-40); margin-top: 4px }
.about-copy-col .section-heading { margin-bottom: 20px }
.about-intro { font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 14px; line-height: 1.65 }
.about-text { font-size: .93rem; color: var(--ink-40); margin-bottom: 12px; line-height: 1.75 }
.about-actions { display: flex; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap }

/* ── WORK ── */
#work { background: var(--white) }
.work-items { display: flex; flex-direction: column; gap: 0 }
.work-item { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); padding: 60px 0; gap: 60px; align-items: center }
.work-item:last-child { border-bottom: 1px solid var(--line) }
.work-item-alt .wi-image { order: 2 }
.work-item-alt .wi-info { order: 1 }
.wi-image { position: relative; border-radius: var(--r); overflow: hidden; height: 340px }
.wi-image img { transition: transform .8s ease }
.work-item:hover .wi-image img { transform: scale(1.04) }
.wi-hover { position: absolute; inset: 0; background: rgba(17,17,17,.62); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--tr) }
.work-item:hover .wi-hover { opacity: 1 }
.wi-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); font-family: var(--font-b); font-weight: 600; font-size: .74rem; padding: 10px 22px; border-radius: 3px; letter-spacing: .08em; text-transform: uppercase; transition: var(--tr) }
.wi-cta:hover { background: var(--white); color: var(--ink) }
.wi-cta svg { width: 13px; height: 13px }
.wi-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px }
.wi-tag { font-size: .63rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); background: var(--red-pale); padding: 4px 10px; border-radius: 20px }
.wi-index { font-family: var(--font-d); font-size: 3rem; font-weight: 400; color: var(--line); line-height: 1; letter-spacing: -.04em }
.wi-info h3 { font-family: var(--font-d); font-size: 2rem; font-weight: 400; letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.15; color: var(--ink) }
.wi-info p { font-size: .92rem; color: var(--ink-40); line-height: 1.72; margin-bottom: 20px }
.wi-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-b); font-size: .78rem; font-weight: 600; color: var(--red); letter-spacing: .04em; transition: gap var(--tr) }
.wi-link:hover { gap: 12px }
.wi-link svg { width: 12px; height: 12px }
.more-row { text-align: center; margin-top: 48px }
.more-loading { display: flex; gap: 6px; justify-content: center; margin-top: 48px; padding: 40px 0 }
.more-loading span { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: ml 1.2s ease-in-out infinite }
.more-loading span:nth-child(2) { animation-delay: .2s }
.more-loading span:nth-child(3) { animation-delay: .4s }
@keyframes ml { 0%,100%{transform:scale(.6);opacity:.3} 50%{transform:scale(1.2);opacity:1} }

/* ── STACK ── */
#stack { background: var(--off) }
.stack-group { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 36px; margin-bottom: 12px }
.sg-title { font-family: var(--font-d); font-size: 1rem; font-weight: 400; color: var(--ink); margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1.5px solid var(--red); display: inline-block; letter-spacing: -.01em }
.sg-chips { display: flex; flex-wrap: wrap; gap: 10px }
.chip { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 16px 12px; min-width: 78px; border-radius: 8px; background: var(--off); border: 1px solid transparent; cursor: default; transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease, border-color .28s ease, background .28s ease }
.chip:hover { transform: translateY(-9px) scale(1.08); box-shadow: 0 12px 32px rgba(185,28,28,.15); border-color: rgba(185,28,28,.22); background: var(--white) }
.chip i { font-size: 1.9rem; transition: transform .28s cubic-bezier(.34,1.56,.64,1) }
.chip:hover i { transform: scale(1.15) rotate(-5deg) }
.chip span { font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-40); text-align: center }
.chip-badge { width: 32px; height: 32px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .54rem; font-weight: 800; color: #fff; transition: transform .28s cubic-bezier(.34,1.56,.64,1) }
.chip:hover .chip-badge { transform: scale(1.15) rotate(-5deg) }
.c1{background:#16a34a} .c2{background:#2563eb} .c3{background:#ea580c} .c4{background:#dc2626} .c5{background:#7c3aed} .c6{background:var(--red)}

/* ── WHATSAPP ── */
#whatsapp { position: relative; padding: 100px 0; overflow: hidden; background: var(--ink) }
.wa-backdrop { position: absolute; inset: 0; z-index: 0; overflow: hidden }
.wa-orb { position: absolute; border-radius: 50%; border: 1px solid rgba(185,28,28,.14) }
.wa-o1 { width: 600px; height: 600px; top: -200px; right: -160px; animation: orb1 14s ease-in-out infinite }
.wa-o2 { width: 380px; height: 380px; bottom: -100px; left: -80px; animation: orb2 18s ease-in-out infinite }
.wa-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(185,28,28,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(185,28,28,.04) 1px,transparent 1px); background-size: 52px 52px }
@keyframes orb1{0%,100%{transform:translate(0,0)}50%{transform:translate(-18px,18px)}}
@keyframes orb2{0%,100%{transform:translate(0,0)}50%{transform:translate(14px,-14px)}}
.wa-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center }
.wa-copy .section-label { color: rgba(255,255,255,.5) }
.wa-copy .section-label::before { background: rgba(255,255,255,.35) }
.wa-copy .section-heading { color: var(--white) }
.wa-copy .section-heading em { color: #FCA5A5 }
.wa-text { font-size: .93rem; color: rgba(255,255,255,.45); margin-bottom: 26px; line-height: 1.78 }
.wa-perks { display: flex; flex-direction: column; gap: 12px }
.wa-perks li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.55); font-weight: 400 }
.wa-perks li i { color: var(--red); font-style: normal; font-weight: 700; font-size: 1rem; flex-shrink: 0 }
.wa-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.35) }
.wac-head { background: #075E54; padding: 18px 22px; display: flex; align-items: center; gap: 12px }
.wac-avatar { width: 40px; height: 40px; flex-shrink: 0 }
.wac-name { color: #fff; font-weight: 600; font-size: .92rem }
.wac-status { color: rgba(255,255,255,.6); font-size: .72rem; display: flex; align-items: center; gap: 5px; margin-top: 2px }
.wac-live { width: 6px; height: 6px; background: #25D366; border-radius: 50%; box-shadow: 0 0 5px #25D366; flex-shrink: 0 }
.wac-bubble-area { padding: 20px 22px; background: #ece5dd }
.wac-bubble { background: #fff; border-radius: 0 10px 10px 10px; padding: 11px 14px; font-size: .87rem; color: #333; display: inline-block; max-width: 90%; box-shadow: 0 1px 4px rgba(0,0,0,.08); line-height: 1.5 }
.wac-compose { padding: 16px 22px; display: flex; flex-direction: column; gap: 10px }
.wac-compose textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 8px; padding: 11px 13px; font-family: var(--font-b); font-size: .88rem; color: var(--ink); resize: none; outline: none; background: var(--off); transition: border-color var(--tr) }
.wac-compose textarea:focus { border-color: var(--red); background: var(--white) }
.wac-send { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: #fff; font-weight: 600; font-size: .84rem; padding: 12px; border-radius: 8px; transition: var(--tr); font-family: var(--font-b); width: 100%; cursor: pointer; border: none; letter-spacing: .04em }
.wac-send svg { width: 16px; height: 16px }
.wac-send:hover { background: #1ba651; transform: translateY(-2px) }

/* ── VOICES ── */
#voices { background: var(--white) }
.voices-slider { overflow: hidden }
.vs-track { display: flex; gap: 20px; transition: transform .6s cubic-bezier(.4,0,.2,1) }
.vs-card { background: var(--off); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; min-width: 340px; flex-shrink: 0; position: relative; transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr) }
.vs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(185,28,28,.18) }
.vs-text { font-size: .9rem; color: var(--ink-70); line-height: 1.72; margin-bottom: 24px; font-style: italic }
.vs-author { display: flex; align-items: center; gap: 12px }
.vs-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .86rem; color: #fff; flex-shrink: 0 }
.vs-info { flex: 1 }
.vs-info strong { display: block; font-size: .88rem; font-weight: 600; color: var(--ink) }
.vs-info span { font-size: .74rem; color: var(--ink-40) }
.vs-stars { color: #F59E0B; font-size: .84rem; letter-spacing: 1px; flex-shrink: 0 }
.vs-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px }
.vs-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line); font-size: 1rem; color: var(--ink); display: flex; align-items: center; justify-content: center; transition: var(--tr) }
.vs-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink) }
.vs-dots { display: flex; gap: 7px }
.vs-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--line); cursor: pointer; transition: var(--tr) }
.vs-dot.on { background: var(--red) }

/* ── FAQ ── */
#faq { background: var(--off) }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 88px; align-items: start }
.faq-left .section-heading { margin-bottom: 14px }
.faq-left p { font-size: .93rem; color: var(--ink-40); line-height: 1.72 }
.faq-right { display: flex; flex-direction: column }
.faq-item { border-bottom: 1px solid var(--line) }
.faq-item:first-child { border-top: 1px solid var(--line) }
.faq-q { width: 100%; text-align: left; padding: 20px 0; font-family: var(--font-b); font-size: .94rem; font-weight: 500; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; cursor: pointer; transition: color var(--tr) }
.faq-q:hover { color: var(--red) }
.faq-item.open .faq-q { color: var(--red) }
.faq-toggle { font-size: 1.2rem; font-weight: 300; flex-shrink: 0; transition: transform var(--tr); color: var(--red) }
.faq-item.open .faq-toggle { transform: rotate(45deg) }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1) }
.faq-answer p { padding: 0 0 20px; font-size: .9rem; color: var(--ink-40); line-height: 1.75 }
.faq-item.open .faq-answer { max-height: 280px }

/* ── CONTACT ── */
#contact { background: var(--white) }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 88px; align-items: start }
.contact-left .section-heading { margin-bottom: 16px }
.contact-sub { font-size: .93rem; color: var(--ink-40); margin-bottom: 32px; line-height: 1.72 }
.contact-details { display: flex; flex-direction: column; gap: 18px }
.cd-row { display: flex; align-items: flex-start; gap: 12px; text-decoration: none; color: inherit; transition: transform var(--tr) }
.cd-row:hover { transform: translateX(4px) }
.cd-icon { width: 40px; height: 40px; background: var(--red-pale); border: 1px solid rgba(185,28,28,.16); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red) }
.cd-icon svg { width: 16px; height: 16px; stroke: var(--red) }
.cd-lbl { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 3px }
.cd-val { font-size: .9rem; font-weight: 500; color: var(--ink) }
.contact-form { background: var(--off); border: 1px solid var(--line); border-radius: var(--r); padding: 36px; display: flex; flex-direction: column; gap: 16px }
.cf-double { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.cf-field { display: flex; flex-direction: column; gap: 6px }
.cf-field label { font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-40) }
.cf-field input, .cf-field textarea { padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 5px; font-family: var(--font-b); font-size: .9rem; color: var(--ink); background: var(--white); outline: none; transition: border-color var(--tr) }
.cf-field input:focus, .cf-field textarea:focus { border-color: var(--red) }
.cf-field textarea { resize: vertical }
.cf-msg { font-size: .84rem; font-weight: 500; color: var(--red); text-align: center }

/* ── FOOTER ── */
#footer { padding: 0 }
.ft-body { background: var(--ink); padding: 80px 0 56px }
.ft-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.8fr; gap: 48px; align-items: start }
.ft-brand { margin-bottom: 18px; display: inline-block }
.ft-bio { font-size: .83rem; color: rgba(255,255,255,.3); line-height: 1.72; max-width: 260px; margin-bottom: 20px }
.ft-contact-links { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px }
.ft-contact-links a, .ft-contact-links span { font-size: .8rem; color: rgba(255,255,255,.28); transition: color var(--tr) }
.ft-contact-links a:hover { color: rgba(255,255,255,.65) }
.ft-socials { display: flex; gap: 9px }
.fts { padding: 8px 17px; border-radius: 3px; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: var(--tr) }
.fts-wa { background: #25D366; color: #fff }.fts-wa:hover { background: #1ba651 }
.fts-em { background: transparent; color: rgba(255,255,255,.38); border: 1px solid rgba(255,255,255,.1) }.fts-em:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.7) }
.ft-col h6 { font-family: var(--font-d); font-size: 1rem; font-weight: 400; color: var(--white); margin-bottom: 18px; letter-spacing: -.01em }
.ft-col ul { display: flex; flex-direction: column; gap: 9px }
.ft-col li a { font-size: .82rem; color: rgba(255,255,255,.28); transition: color var(--tr), padding-left var(--tr) }
.ft-col li a:hover { color: rgba(255,255,255,.65); padding-left: 5px }
.ft-nl-col p { font-size: .82rem; color: rgba(255,255,255,.28); margin-bottom: 16px; line-height: 1.65 }
.ft-nl-wrap { display: flex; border-radius: 3px; overflow: hidden; border: 1.5px solid rgba(255,255,255,.1); transition: border-color var(--tr) }
.ft-nl-wrap:focus-within { border-color: var(--red) }
.ft-nl-wrap input { flex: 1; padding: 11px 13px; background: rgba(255,255,255,.04); color: var(--white); font-family: var(--font-b); font-size: .84rem; border: none; outline: none }
.ft-nl-wrap input::placeholder { color: rgba(255,255,255,.18) }
.ft-nl-wrap button { padding: 11px 17px; background: var(--red); color: var(--white); font-family: var(--font-b); font-size: .74rem; font-weight: 700; border: none; cursor: pointer; transition: background var(--tr); letter-spacing: .06em; text-transform: uppercase }
.ft-nl-wrap button:hover { background: var(--red-dk) }
.nl-note { font-size: .74rem; color: #FCA5A5; margin-top: 7px }
.ft-bar { background: #0a0a0a; padding: 18px 0; border-top: 1px solid rgba(185,28,28,.1) }
.ft-bar-inner { display: flex; justify-content: space-between; align-items: center }
.ft-bar-inner p { font-size: .74rem; color: rgba(255,255,255,.18) }

/* ── BACK TO TOP ── */
#btt { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 42px; height: 42px; background: var(--red); color: var(--white); border-radius: 3px; font-size: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(185,28,28,.35); opacity: 0; pointer-events: none; transition: var(--tr); border: none; cursor: pointer }
#btt.on { opacity: 1; pointer-events: auto }
#btt:hover { background: var(--red-dk); transform: translateY(-3px) }

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .ft-grid { grid-template-columns: 1fr 1fr }
  .ft-nl-col { grid-column: 1/-1 }
}
@media(max-width:1024px){
  .about-grid { gap: 56px }
  .work-item { gap: 44px; padding: 52px 0 }
  .contact-layout, .faq-layout { gap: 56px }
  .hero-layout { grid-template-columns: 1.2fr 1fr; gap: 40px }
}
@media(max-width:768px){
  section { padding: 72px 0 }
  .nav-list, .nav-action { display: none }
  .nav-toggle { display: flex }
  .brand-copy { display: none }
  #hero { height: auto; min-height: 100svh; justify-content: flex-end; padding-bottom: 80px }
  .hero-layout { grid-template-columns: 1fr; padding-top: 96px; gap: 32px }
  .hero-title { font-size: clamp(1.9rem, 6.5vw, 2.8rem) }
  .hero-body { font-size: .88rem }
  .hero-btns { gap: 10px }
  .h-btn-fill, .h-btn-line { padding: 10px 20px; font-size: .72rem }
  .hero-panel { flex-direction: row; justify-content: space-around; padding: 20px }
  .hp-stat { padding: 0; align-items: center; text-align: center }
  .hp-rule { width: 1px; height: auto; background: rgba(255,255,255,.08) }
  .hp-n { font-size: 1.8rem }
  .hero-footer { position: static; padding: 24px 0 0; width: 100% }
  .hf-scroll { display: none }
  .about-grid, .wa-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px }
  .about-photo img { height: 320px }
  .about-photo::before { display: none }
  .photo-tag { right: 0 }
  .work-item, .work-item-alt { grid-template-columns: 1fr; padding: 40px 0; gap: 24px }
  .work-item-alt .wi-image, .work-item-alt .wi-info { order: unset }
  .wi-image { height: 220px }
  .section-top { grid-template-columns: 1fr; gap: 14px }
  .faq-layout { grid-template-columns: 1fr; gap: 40px }
  .ft-grid { grid-template-columns: 1fr; gap: 36px }
  .ft-body { padding: 52px 0 36px }
  .ft-bar-inner { flex-direction: column; gap: 6px; text-align: center }
  .vs-card { min-width: 288px; padding: 26px }
  .cf-double { grid-template-columns: 1fr }
  .contact-form { padding: 24px }
  #band { flex-direction: column; padding: 14px 0; gap: 10px; text-align: center }
  .band-label { border-right: none; padding: 0; text-align: center; width: 100% }
  .section-cta { padding: 40px 20px }
}
@media(max-width:480px){
  .hero-title { font-size: clamp(1.7rem, 6vw, 2.2rem) }
  .hero-panel { padding: 16px 12px }
  .hp-n { font-size: 1.5rem }
  .hp-l { font-size: .54rem }
  .about-metrics { gap: 8px }
  .m-val { font-size: 1.5rem }
  .sg-chips { gap: 8px }
  .chip { min-width: 70px; padding: 12px 8px }
}