/* ═══════════════════════════════════════
   AV INTERNATIONAL — styles.css
   Behavioral Data Intelligence
═══════════════════════════════════════ */

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

:root {
  --ink:          #0D1B2A;
  --ink-mid:      #1A2D42;
  --slate:        #2C4A6E;
  --teal:         #1B7A78;
  --teal-light:   #23A09D;
  --gold:         #B8923A;
  --gold-light:   #D4AE6A;
  --gold-pale:    #F0DFB8;
  --cream:        #FAF7F2;
  --warm:         #F3EDE3;
  --white:        #FFFFFF;
  --text:         #0D1B2A;
  --muted:        #5A6E82;
  --border:       rgba(13, 27, 42, 0.1);
  --border-gold:  rgba(184, 146, 58, 0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   INTRO OVERLAY
═══════════════════════════════════════ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.77, 0, .18, 1);
}

#intro.hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.intro-emblem {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: emblemIn 1.4s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes emblemIn {
  from { opacity: 0; transform: scale(.7) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.intro-rings {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 2.5rem;
}

.intro-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 58, .35);
}

.intro-ring:nth-child(1) { inset: 0;   animation: spinSlow 18s linear infinite; }
.intro-ring:nth-child(2) { inset: 14%; border-color: rgba(27, 122, 120, .5); animation: spinSlow 12s linear infinite reverse; }
.intro-ring:nth-child(3) { inset: 28%; border-color: rgba(184, 146, 58, .6); animation: spinSlow 8s linear infinite; }
.intro-ring:nth-child(4) { inset: 40%; border-radius: 50%; background: radial-gradient(circle, rgba(27, 122, 120, .25), transparent 70%); border: none; }

@keyframes spinSlow { to { transform: rotate(360deg); } }

.intro-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .08em;
  text-align: center;
  line-height: 1.1;
}

.intro-logo-text span { color: var(--gold-light); }

.intro-tagline {
  font-family: 'Crimson Pro', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(240, 223, 184, .65);
  letter-spacing: .18em;
  margin-top: .8rem;
  text-align: center;
  animation: fadeUp 1.8s .6s both;
}

.intro-sub {
  font-size: .62rem;
  font-weight: 300;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(240, 223, 184, .35);
  margin-top: 2rem;
  animation: fadeUp 1.8s 1s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intro-progress {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  animation: fadeUp .8s .5s both;
}

.intro-progress-fill {
  height: 100%;
  background: var(--gold-light);
  width: 0;
  animation: progressFill 2.8s .3s cubic-bezier(.4, 0, .2, 1) forwards;
}

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

/* ── REPLAY BUTTON ── */
#replayBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(13, 27, 42, .35);
  transition: background .25s, transform .2s;
  opacity: 0;
  pointer-events: none;
}

#replayBtn.show {
  opacity: 1;
  pointer-events: all;
  transition: opacity .6s 1.4s, background .25s, transform .2s;
}

#replayBtn:hover {
  background: var(--teal);
  transform: scale(1.08);
}

/* ═══════════════════════════════════════
   CURSOR
═══════════════════════════════════════ */
.cursor {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 900;
  transform: translate(-50%, -50%);
  transition: width .18s, height .18s, background .2s;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(27, 122, 120, .5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 899;
  transform: translate(-50%, -50%);
  transition: all .38s cubic-bezier(.2, 1, .3, 1);
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 4rem;
  background: rgba(250, 247, 242, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  transition: box-shadow .3s;
}

nav.scrolled { box-shadow: 0 4px 32px rgba(13, 27, 42, .08); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .06em;
}

.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: .55rem 1.6rem;
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .15s;
}

.nav-cta:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(27, 122, 120, .12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184, 146, 58, .07) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, .028) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, .028) 60px);
}

.hero-left {
  padding: 6rem 3rem 6rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
}

.hero-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-kicker span {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.8rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-pale);
}

.hero-tagline {
  font-family: 'Crimson Pro', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(240, 223, 184, .7);
  letter-spacing: .06em;
  margin-bottom: 1.6rem;
}

.hero-sub {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(250, 247, 242, .52);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 3rem;
}

.hero-btns { display: flex; gap: 1rem; align-items: center; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: .9rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .25s, transform .15s;
}

.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: rgba(240, 223, 184, .65);
  border: 1px solid rgba(184, 146, 58, .35);
  padding: .9rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .25s, color .25s;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold-pale); }

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.data-viz { position: relative; width: min(420px, 44vw); aspect-ratio: 1; }
.dv-canvas { width: 100%; height: 100%; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(184, 146, 58, .6), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(.5); }
  50%       { opacity: 1;  transform: scaleY(1); }
}

.scroll-label {
  font-size: .55rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(240, 223, 184, .35);
}

/* ═══════════════════════════════════════
   TICKER STRIP
═══════════════════════════════════════ */
.ticker {
  background: var(--ink-mid);
  border-top: 1px solid rgba(184, 146, 58, .2);
  border-bottom: 1px solid rgba(184, 146, 58, .2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tick {
  padding: 1.6rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.tick:last-child { border-right: none; }

.tick-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}

.tick-n span { color: var(--gold-light); font-size: 1.5rem; }

.tick-l {
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, .4);
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  padding: .75rem 0;
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: mscroll 32s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.marquee-track .gem { color: var(--gold); }

@keyframes mscroll { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
.section-kicker {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}

.section-kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.section-kicker span {
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
}

.section-h em { font-style: italic; color: var(--teal); }

.section-body {
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  max-width: 540px;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
  background: var(--cream);
}

.about-card {
  background: var(--ink);
  padding: 3rem;
  position: relative;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: 10px; bottom: 10px;
  border: 1px solid var(--border-gold);
  pointer-events: none;
  z-index: 0;
}

.about-card-inner { position: relative; z-index: 1; }

.about-quote {
  font-family: 'Crimson Pro', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.about-attr {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.about-pillars {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pillar { display: flex; gap: 1rem; align-items: flex-start; }

.pillar-mark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .2rem;
}

.pillar-mark::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.pillar-txt strong {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .25rem;
}

.pillar-txt p {
  font-size: .8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding: 8rem 4rem;
  background: var(--warm);
  border-top: 1px solid var(--border);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 4rem;
}

.services-intro {
  font-size: .88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 360px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.svc-card {
  background: var(--warm);
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .3s;
}

.svc-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform .4s ease;
}

.svc-card:hover { background: var(--cream); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: rgba(27, 122, 120, .1);
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: color .3s;
}

.svc-card:hover .svc-num { color: rgba(27, 122, 120, .2); }

.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .8rem;
  line-height: 1.35;
}

.svc-desc {
  font-size: .8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   WHO WE SERVE
═══════════════════════════════════════ */
.audience {
  padding: 8rem 4rem;
  background: var(--ink);
}

.audience .section-h           { color: var(--cream); }
.audience .section-h em        { color: var(--gold-pale); -webkit-text-stroke: 0; }
.audience .section-kicker::before { background: var(--gold); }
.audience .section-kicker span { color: var(--gold-light); }

.aud-header { max-width: 600px; margin-bottom: 4rem; }

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .06);
}

.aud-card {
  background: var(--ink);
  padding: 2.4rem 2rem;
  border-bottom: 2px solid transparent;
  transition: background .25s, border-color .25s;
}

.aud-card:hover { background: var(--ink-mid); border-color: var(--gold); }

.aud-badge {
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: .3rem .7rem;
  border: 1px solid rgba(184, 146, 58, .3);
  display: inline-block;
  margin-bottom: 1.2rem;
}

.aud-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .7rem;
}

.aud-body {
  font-size: .76rem;
  font-weight: 300;
  color: rgba(250, 247, 242, .45);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   METHODOLOGY
═══════════════════════════════════════ */
.method {
  padding: 8rem 4rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.method-visual { position: relative; height: 440px; }

.mv-bars {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 320px;
}

.mvb { flex: 1; background: rgba(13, 27, 42, .06); position: relative; }

.mvb-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(27, 122, 120, .7), rgba(27, 122, 120, .15));
  animation: barUp 1.6s cubic-bezier(.4, 0, .2, 1) both;
}

.mvb-fill.accent {
  background: linear-gradient(to top, rgba(184, 146, 58, .85), rgba(184, 146, 58, .25));
}

@keyframes barUp { from { height: 0 !important; } }

.mv-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--ink);
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--gold);
}

.mv-badge-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}

.mv-badge-l {
  font-size: .52rem;
  font-weight: 300;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, .55);
  margin-top: .3rem;
}

.mv-label-row {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 10px;
}

.mvl {
  flex: 1;
  text-align: center;
  font-size: .48rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
}

.method-steps { display: flex; flex-direction: column; gap: 2rem; }

.mstep {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.mstep:last-child { border-bottom: none; padding-bottom: 0; }

.mstep-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(27, 122, 120, .2);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.mstep-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .4rem;
}

.mstep-body {
  font-size: .8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   GLOBAL PRESENCE
═══════════════════════════════════════ */
.presence {
  padding: 6rem 4rem;
  background: var(--warm);
  border-top: 1px solid var(--border);
  text-align: center;
}

.presence .section-kicker { justify-content: center; }
.presence .section-h { text-align: center; margin-bottom: 3rem; }

.countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.country-tag {
  padding: .7rem 1.6rem;
  border: 1px solid var(--border-gold);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color .25s, color .25s, background .25s;
  cursor: default;
}

.country-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(27, 122, 120, .04);
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  padding: 8rem 4rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.contact-note {
  font-size: .85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 1.8rem;
  max-width: 400px;
}

.contact-info { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }

.ci-lbl {
  font-size: .56rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}

.ci-val { font-size: .88rem; font-weight: 300; color: var(--ink); line-height: 1.6; }

.contact-divider { width: 36px; height: 1px; background: var(--border-gold); margin: 1rem 0; }

.cform { display: flex; flex-direction: column; gap: 1rem; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.cf-group { display: flex; flex-direction: column; gap: .35rem; }

.cf-lbl {
  font-size: .56rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cf-input, .cf-sel, .cf-ta {
  background: var(--warm);
  border: 1px solid var(--border);
  padding: .78rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .86rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.cf-input:focus, .cf-sel:focus, .cf-ta:focus { border-color: var(--teal); }
.cf-input::placeholder, .cf-ta::placeholder { color: rgba(13, 27, 42, .25); }
.cf-sel option { background: var(--cream); }
.cf-ta { min-height: 100px; resize: vertical; }

.cf-submit {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  width: 100%;
  margin-top: .4rem;
}

.cf-submit:hover { background: var(--teal-light); }

.cf-note {
  font-size: .65rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: .5rem;
  text-align: center;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  padding: 2.2rem 4rem;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(184, 146, 58, .2);
}

.ft-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .06em;
}

.ft-logo span { color: var(--gold-light); }

.ft-copy {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: rgba(250, 247, 242, .28);
}

.ft-links { display: flex; gap: 2rem; list-style: none; }

.ft-links a {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, .4);
  text-decoration: none;
  transition: color .2s;
}

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

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s ease, transform .85s ease;
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 1.5rem; }
  .ticker { grid-template-columns: 1fr 1fr; }
  .about, .contact, .method { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .services, .audience, .presence, .contact { padding: 5rem 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  .services-header { flex-direction: column; align-items: flex-start; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
