/* ═══════════════════════════════════════════════════════════
   SILENT PARTNER AI  —  style.css
   Black & White + Stranger Things Christmas Lights + Retro CRT
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black:      #0a0a0a;
  --black-mid:  #111111;
  --black-soft: #1a1a1a;
  --grey-dark:  #2a2a2a;
  --grey-mid:   #555555;
  --grey-light: #999999;
  --white:      #ffffff;
  --white-dim:  #f2f2f2;

  /* Christmas light colours */
  --bulb-red:    #ff2020;
  --bulb-green:  #00e040;
  --bulb-blue:   #1a8fff;
  --bulb-yellow: #ffd700;
  --bulb-orange: #ff7700;
  --bulb-pink:   #ff40a0;

  /* CRT monitor colours */
  --monitor-body: #c8c0a8;
  --monitor-dark: #8a8070;
  --monitor-deep: #5a5248;
  --screen-bg:    #001a00;
  --screen-green: #00ff41;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-crt:  'VT323', monospace;

  --max-w:       1200px;
  --section-pad: clamp(72px, 10vw, 130px);
  --nav-h:       70px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,0.4); }
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 28px;
}
.section-h2--light { color: var(--white); }
.section-hdr { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.section-hdr .section-h2 { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 2px; cursor: pointer; white-space: nowrap;
  transition: background 0.22s, color 0.22s, transform 0.22s, border-color 0.22s;
}
.btn-primary { background: var(--white); color: var(--black); border: 2px solid var(--white); }
.btn-primary:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-primary-dark {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 2px; cursor: pointer;
  background: var(--black); color: var(--white); border: 2px solid var(--black);
  transition: background 0.22s, color 0.22s, transform 0.22s;
}
.btn-primary-dark:hover { background: transparent; color: var(--black); transform: translateY(-2px); }
.btn-submit {
  width: 100%; justify-content: center;
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 17px 32px; border-radius: 2px;
  background: var(--white); color: var(--black); border: 2px solid var(--white);
  display: flex; align-items: center; gap: 10px;
  transition: background 0.22s, color 0.22s, transform 0.22s; cursor: pointer;
}
.btn-submit:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-arrow { font-size: 1.05em; transition: transform 0.2s; }
.btn:hover .btn-arrow,
.btn-primary-dark:hover .btn-arrow,
.btn-submit:hover .btn-arrow { transform: translateX(5px); }
:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
::selection { background: var(--white); color: var(--black); }


/* ═══════════════════════════════════
   CHRISTMAS LIGHTS STRANDS
═══════════════════════════════════ */
.lights-strand {
  position: relative;
  width: 100%;
  overflow: visible;
  z-index: 50;
  line-height: 0;
}

/* Hero strand — taller, more visible, sits above header */
.lights-strand--hero {
  height: 52px;
  background: transparent;
  /* wire drawn via JS canvas — see script */
}

/* Divider strands between sections */
.lights-strand--divider {
  height: 36px;
  background: transparent;
}

/* Each bulb is a small coloured circle with a glow */
.bulb {
  position: absolute;
  border-radius: 50%;
  transition: opacity 0.05s;
  cursor: default;
}

/* Bulb socket/cap */
.bulb::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 7px;
  background: #888;
  border-radius: 1px;
}

/* Wire line is drawn on a canvas behind bulbs */
.lights-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
}


/* ═══════════════════════════════════
   HEADER / NAV
═══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 52px; /* pushed down below hero lights strand */
  left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}
.nav-wrap {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px,5vw,64px);
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo-img {
  height: 40px; width: auto;
  filter: invert(1) brightness(10);
  transition: opacity 0.2s;
}
.nav-logo-link:hover .nav-logo-img { opacity: 0.7; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-head); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta-link {
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.32);
  padding: 9px 20px; border-radius: 2px;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-cta-link:hover { background: rgba(255,255,255,0.08); border-color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 110; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: transform 0.3s, opacity 0.3s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 680px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 28%;
    flex-direction: column; justify-content: center; gap: 28px;
    background: var(--black-mid); border-left: 1px solid rgba(255,255,255,0.1);
    transform: translateX(100%); transition: transform 0.35s var(--ease); z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
}


/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 52px); /* nav + hero lights */
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.25; pointer-events: none;
}
.hero-spotlight {
  position: absolute; top: -20%; right: -10%; width: 55%; height: 120%;
  background: radial-gradient(ellipse at 60% 30%, rgba(255,255,255,0.03) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(40px,6vw,90px) clamp(20px,5vw,64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 56px;
  align-items: center;
}


/* ═══════════════════════════════════
   RETRO CRT MONITOR
═══════════════════════════════════ */
.monitor-wrap {
  grid-column: 1; grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: monitorReveal 1s var(--ease) both;
  user-select: none;
}
@keyframes monitorReveal {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Monitor body — chunky 1980s beige box */
.monitor-body {
  width: 340px;
  background: linear-gradient(160deg, #d4ccb4 0%, #b8b09a 50%, #a09080 100%);
  border-radius: 14px 14px 8px 8px;
  padding: 14px 14px 10px;
  box-shadow:
    inset -4px -4px 8px rgba(0,0,0,0.3),
    inset 4px 4px 8px rgba(255,255,255,0.2),
    0 8px 32px rgba(0,0,0,0.7),
    0 2px 0 #5a5248;
  position: relative;
}

/* Vents along top of monitor */
.monitor-vents {
  display: flex; gap: 5px; margin-bottom: 10px; justify-content: flex-end; padding-right: 4px;
}
.monitor-vents span {
  display: block; width: 18px; height: 4px;
  background: var(--monitor-deep);
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

/* Screen bezel — the chunky inset frame */
.monitor-bezel {
  background: var(--monitor-deep);
  border-radius: 8px;
  padding: 12px;
  box-shadow:
    inset 2px 2px 6px rgba(0,0,0,0.6),
    inset -1px -1px 3px rgba(255,255,255,0.1);
}

/* The actual screen */
.monitor-screen {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 ratio */
  background: var(--screen-bg);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    inset 0 0 20px rgba(0,255,65,0.08),
    inset 0 0 60px rgba(0,0,0,0.5);
}
.monitor-screen > * {
  position: absolute; inset: 0;
}

/* Boot text overlay */
.boot-overlay {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  background: var(--screen-bg);
  z-index: 3;
  overflow: hidden;
}
.boot-text {
  font-family: var(--font-crt);
  font-size: 1rem;
  color: var(--screen-green);
  line-height: 1.5;
  text-shadow: 0 0 8px rgba(0,255,65,0.8);
  white-space: pre-wrap;
  word-break: break-all;
}
.boot-cursor {
  font-family: var(--font-crt);
  font-size: 1rem;
  color: var(--screen-green);
  text-shadow: 0 0 8px rgba(0,255,65,0.8);
  animation: blink 0.7s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Logo that appears after boot */
.screen-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: var(--white);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.screen-logo.visible { opacity: 1; }
.screen-logo-img { width: 90%; height: auto; object-fit: contain; }

/* Scan line on the logo screen */
.screen-scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15), transparent);
  animation: scanDown 3.5s linear infinite;
  pointer-events: none; z-index: 5;
}
@keyframes scanDown {
  0%   { top: 0%;   opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* CRT curvature overlay */
.crt-overlay {
  background:
    radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none; z-index: 6;
}
/* CRT phosphor glow */
.crt-glow {
  background: radial-gradient(ellipse at center, rgba(0,255,65,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 4;
  animation: phosphorPulse 4s ease-in-out infinite;
}
@keyframes phosphorPulse {
  0%,100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Monitor chin strip */
.monitor-chin {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 8px 4px 2px;
}
.monitor-brand {
  font-family: var(--font-head); font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--monitor-deep);
}
.monitor-led {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00cc00;
  box-shadow: 0 0 6px #00cc00;
  animation: ledPulse 2s ease-in-out infinite;
}
@keyframes ledPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* Neck */
.monitor-neck {
  width: 60px; height: 18px;
  background: linear-gradient(to bottom, #a09080, #8a8070);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}

/* Base */
.monitor-base {
  width: 180px; height: 14px;
  background: linear-gradient(to bottom, #b8b09a, #8a8070);
  border-radius: 4px 4px 6px 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  margin-bottom: 8px;
}

/* Monitor hanging lights */
.monitor-lights {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
}

/* ── KEYBOARD ── */
.keyboard {
  width: 300px;
  background: linear-gradient(160deg, #ccc4ac 0%, #aaa090 100%);
  border-radius: 6px 6px 8px 8px;
  padding: 10px 12px 12px;
  box-shadow:
    inset -2px -3px 6px rgba(0,0,0,0.25),
    inset 2px 2px 4px rgba(255,255,255,0.15),
    0 6px 20px rgba(0,0,0,0.6);
  display: flex; flex-direction: column; gap: 4px;
}
.keyboard-row {
  display: flex; gap: 3px; justify-content: center;
}
.keyboard-row span {
  display: block;
  height: 14px; width: 14px;
  background: linear-gradient(145deg, #d8d0b8, #b8b09a);
  border-radius: 2px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.key-wide  { width: 24px !important; }
.key-caps  { width: 22px !important; }
.key-enter { width: 26px !important; }
.key-shift { width: 32px !important; }
.key-space { width: 120px !important; }

/* ── MOUSE ── */
.mouse {
  position: absolute;
  right: -10px; bottom: 60px;
  display: flex; flex-direction: column; align-items: center;
}
.mouse-body {
  width: 30px; height: 44px;
  background: linear-gradient(145deg, #ccc4ac, #a09080);
  border-radius: 15px 15px 12px 12px;
  box-shadow:
    inset -2px -2px 4px rgba(0,0,0,0.25),
    inset 1px 1px 3px rgba(255,255,255,0.2),
    0 4px 12px rgba(0,0,0,0.5);
  display: flex; overflow: hidden;
}
.mouse-btn {
  flex: 1; height: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.mouse-btn--l { border-right: 1px solid rgba(0,0,0,0.15); }
.mouse-cord {
  width: 2px; height: 30px;
  background: linear-gradient(to bottom, #888, #555);
  border-radius: 1px;
}


/* ═══════════════════════════════════
   HERO TEXT & STATS
═══════════════════════════════════ */
.hero-text {
  grid-column: 2; grid-row: 1;
  animation: slideIn 1.1s 0.18s var(--ease) both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 26px;
  display: flex; flex-direction: column; gap: 2px;
}
.h1-row { display: block; }
.h1-accent { color: transparent; -webkit-text-stroke: 2px var(--white); }
.hero-sub {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem); font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.8;
  margin-bottom: 36px; max-width: 440px;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  grid-column: 1 / -1; grid-row: 2;
  display: flex; align-items: center;
  margin-top: 52px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 3px; overflow: hidden;
  animation: slideIn 1.1s 0.35s var(--ease) both;
}
.stat-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 4px; padding: 22px 12px; text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 900; letter-spacing: -0.02em;
}
.stat-desc {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--grey-light);
}
.stat-div { width: 1px; height: 46px; background: rgba(255,255,255,0.09); flex-shrink: 0; }

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr; grid-template-rows: auto auto auto;
    gap: 44px 0; text-align: center;
  }
  .monitor-wrap { grid-column: 1; grid-row: 1; }
  .hero-text    { grid-column: 1; grid-row: 2; }
  .hero-stats   { grid-column: 1; grid-row: 3; margin-top: 0; }
  .hero-sub     { margin-inline: auto; }
  .hero-ctas    { justify-content: center; }
  .h1-accent    { -webkit-text-stroke-width: 1.5px; }
  .monitor-body { width: 280px; }
  .keyboard     { width: 250px; }
  .mouse        { right: -5px; bottom: 50px; }
}
@media (max-width: 440px) {
  .hero-stats { flex-direction: column; }
  .stat-div   { width: 60px; height: 1px; }
  .monitor-body { width: 240px; }
  .keyboard     { width: 210px; }
}


/* ═══════════════════════════════════
   TRUST BANNER
═══════════════════════════════════ */
.trust-banner {
  background: var(--white); padding: 20px 24px;
}
.trust-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 14px 28px;
}
.trust-label {
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-mid);
}
.trust-list { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trust-list li {
  font-family: var(--font-head); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--black);
}
.trust-pipe { color: var(--grey-mid) !important; font-weight: 300 !important; }


/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services-section { background: var(--black-mid); padding: var(--section-pad) 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

.svc-card {
  position: relative; padding: 44px 32px;
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: background 0.28s, border-color 0.28s, transform 0.28s;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background 0.28s;
}
.svc-card:hover { background: var(--grey-dark); border-color: rgba(255,255,255,0.16); transform: translateY(-4px); }
.svc-card:hover::before { background: var(--white); }

.svc-card--featured { background: var(--white); border-color: var(--white); }
.svc-card--featured .svc-num,
.svc-card--featured .svc-title,
.svc-card--featured .svc-desc { color: var(--black); }
.svc-card--featured .svc-icon { color: var(--black); }
.svc-card--featured .svc-tag { background: rgba(0,0,0,0.07); color: rgba(0,0,0,0.5); }
.svc-card--featured:hover { background: var(--white-dim); transform: translateY(-4px); }

/* Card hanging lights container */
.card-lights {
  position: absolute; top: 0; left: 0; right: 0; height: 32px;
  pointer-events: none; z-index: 10; overflow: visible;
}

.svc-num {
  font-family: var(--font-head); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--grey-mid); margin-bottom: 22px;
  margin-top: 18px; /* leave room for lights */
}
.svc-icon { width: 48px; height: 48px; color: var(--white); margin-bottom: 22px; }
.svc-icon svg { width: 100%; height: 100%; }
.svc-title {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  line-height: 1.3; color: var(--white); margin-bottom: 14px;
}
.svc-desc {
  font-size: 0.86rem; color: rgba(255,255,255,0.52); line-height: 1.78; margin-bottom: 26px;
}
.svc-tag {
  display: inline-block; font-family: var(--font-head); font-size: 0.6rem;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.45);
  padding: 5px 12px; border-radius: 2px;
}
@media (max-width: 780px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-card--featured { order: -1; }
}


/* ═══════════════════════════════════
   APPROACH
═══════════════════════════════════ */
.approach-section { background: var(--white); padding: var(--section-pad) 0; }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.approach-visual { position: relative; }
.approach-img-frame {
  position: relative; background: var(--white);
  border: 1px solid rgba(0,0,0,0.1); border-radius: 3px;
  padding: 28px; box-shadow: 8px 8px 0 0 var(--black); overflow: hidden;
}
.approach-logo-img { width: 100%; object-fit: contain; }
.approach-chip {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--black); color: var(--white);
  font-family: var(--font-head); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px;
}
.float-node {
  position: absolute; background: var(--black); color: var(--white);
  font-family: var(--font-head); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 2px; white-space: nowrap; z-index: 2;
}
.fn-1 { top: -12px; left: 12px;    animation: floatY 4s ease-in-out infinite; }
.fn-2 { top: 28%;   right: -18px;  animation: floatY 4s 1s ease-in-out infinite; }
.fn-3 { bottom: 28%; left: -18px;  animation: floatY 4s 2s ease-in-out infinite; }
.fn-4 { bottom: -12px; right: 12px; animation: floatY 4s 0.5s ease-in-out infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.approach-text .section-h2 { color: var(--black); }
.approach-text p { font-size: 0.93rem; color: var(--grey-mid); line-height: 1.82; margin-bottom: 14px; }
.approach-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 13px; }
.approach-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 0.88rem; color: var(--black-soft); line-height: 1.62; }
.li-diamond { color: var(--black); font-size: 0.48rem; flex-shrink: 0; margin-top: 6px; }
@media (max-width: 820px) {
  .approach-grid { grid-template-columns: 1fr; gap: 48px; }
  .fn-2, .fn-3 { display: none; }
}


/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact-section { background: var(--black-mid); padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: start; }
.contact-info .section-h2 { margin-bottom: 14px; }
.contact-blurb { font-size: 0.9rem; color: rgba(255,255,255,0.48); line-height: 1.82; margin-bottom: 32px; }
.contact-logo-panel { background: var(--white); border-radius: 3px; padding: 20px; display: inline-block; margin-bottom: 28px; }
.contact-logo-img { width: 180px; object-fit: contain; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.09em; color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.14); padding: 10px 18px; border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--white); border-color: var(--white); }
.ig-icon { width: 17px; height: 17px; }

.contact-form-wrap {
  position: relative;
  background: var(--black-soft); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: clamp(26px,4vw,44px); overflow: visible;
}
/* Form lights container — top edge of form */
.form-lights {
  position: absolute; top: -18px; left: 0; right: 0; height: 32px;
  pointer-events: none; z-index: 10; overflow: visible;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-family: var(--font-head); font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.req { color: rgba(255,255,255,0.28); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 2px; color: var(--white); font-family: var(--font-body);
  font-size: 0.88rem; padding: 13px 15px; outline: none; width: 100%;
  transition: border-color 0.2s, background 0.2s; -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; cursor: pointer;
}
.form-group select option { background: var(--black-mid); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.08); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-group textarea { resize: vertical; min-height: 115px; }
.form-note { text-align: center; margin-top: 13px; font-size: 0.72rem; color: rgba(255,255,255,0.22); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.07); padding: 32px 0; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px,5vw,64px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-logo {
  height: 46px; width: auto; object-fit: contain;
  filter: invert(1) brightness(10); opacity: 0.5; transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 0.9; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.28); line-height: 1.7; text-align: center; }
.footer-copy span { display: block; }
.footer-ig {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%; color: rgba(255,255,255,0.38); transition: color 0.2s, border-color 0.2s;
}
.footer-ig:hover { color: var(--white); border-color: var(--white); }
.footer-ig svg { width: 17px; height: 17px; }


/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
