/* ============================================================
   ALPHA — Exclusive Talent
   Brand: Black #0A0A0A / Yellow #FED500 / Olive-Gold #9F8D3B
   Type:  Cabinet Grotesk (display) + General Sans (body)
   ============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #121212;
  --ink-2: #1a1a1a;
  --yellow: #fed500;
  --yellow-dim: #e6c000;
  --gold: #9f8d3b;
  --gold-soft: #c7b56a;
  --white: #ffffff;
  --paper: #fafaf8;
  --paper-2: #f2f1ec;
  --gray: #6b6b68;
  --gray-line: #e3e2dc;
  --gray-line-dark: #2a2a2a;

  --font-display: 'Cabinet Grotesk', 'Georgia', sans-serif;
  --font-body: 'General Sans', system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --text-hero: clamp(2.6rem, 6vw, 5rem);
  --text-2xl: clamp(2rem, 4vw, 3rem);
  --text-xl: clamp(1.5rem, 2.6vw, 2rem);
  --text-lg: 1.25rem;
  --text-base: 1.0625rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.8125rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container-narrow { max-width: 640px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-title--light { color: var(--white); }

.section-lead {
  font-size: var(--text-lg);
  color: var(--gray);
  max-width: 60ch;
  margin-top: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dim); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-light-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-light-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-dark-ghost { background: transparent; color: var(--ink); border-color: rgba(0,0,0,0.25); }
.btn-dark-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-full { width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: var(--text-base); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-line-dark);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand-logo { height: 34px; width: auto; }
.brand-logo--dark { display: none; }
.brand-logo--light { display: block; }

.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.tab-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gray-line-dark);
  border-radius: 999px;
  padding: 4px;
}
.tab-btn {
  font-family: var(--font-body);
  font-weight: 600; font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  background: transparent; border: none; cursor: pointer;
  padding: 0.5rem 1.15rem; border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.tab-btn.is-active { background: var(--yellow); color: var(--black); }
.tab-btn:not(.is-active):hover { color: var(--white); }

.nav-link { color: rgba(255,255,255,0.8); font-size: var(--text-sm); font-weight: 500; }
.nav-link:hover { color: var(--yellow); }
.nav-cta {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--gold);
  padding: 0.55rem 1.2rem; border-radius: var(--radius);
  font-size: var(--text-sm); font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--white); transition: 0.3s var(--ease); }

/* Line breaks in hero titles only apply on wider screens */
.hero-title br { display: none; }
@media (min-width: 620px) { .hero-title br { display: inline; } }

.mobile-menu {
  display: none;
  flex-direction: column; gap: 0.5rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  background: var(--black);
  border-bottom: 1px solid var(--gray-line-dark);
}
.mobile-menu.open { display: flex; }
.mobile-menu .tab-btn { text-align: left; border: 1px solid var(--gray-line-dark); }
.mobile-menu .mm-link { color: rgba(255,255,255,0.85); padding: 0.65rem 0.25rem; font-weight: 500; border-bottom: 1px solid var(--gray-line-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }
.hero--clients { min-height: 88vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 4.5rem; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-hero);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 16ch;
}
.hero-title--dark { color: var(--ink); }
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 56ch;
  margin-top: 1.5rem;
}
.hero-sub--dark { color: var(--gray); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats div { display: flex; flex-direction: column; }

/* Boxed stat variant */
.hero-stats--boxed {
  border-top: none; padding-top: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.hero-stats--boxed .stat-box {
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  text-align: center;
  align-items: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero-stats--boxed .stat-box:hover { transform: translateY(-4px); border-color: var(--yellow); }
.hero-stats strong {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.4rem; color: var(--yellow); letter-spacing: -0.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stats span { font-size: var(--text-sm); color: rgba(255,255,255,0.7); }

/* Candidate split hero */
.hero--candidates { background: var(--paper); }
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 82vh; }
.hero-split-text { display: flex; align-items: center; padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3.5rem); }
.hero-split-text .container-narrow { padding: 0; }
.hero-split-media { position: relative; overflow: hidden; }
.hero-split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--black); color: var(--white); }
.section--trends { background: var(--ink); color: var(--white); }
.section--testi { background: var(--black); color: var(--white); }
.section--trends .section-title,
.section--testi .section-title { color: var(--white); }

/* ---- Why grid ---- */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-top: 3px solid var(--yellow);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  cursor: default;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.why-card::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--yellow); transition: width 0.45s var(--ease);
}
.why-card:hover, .why-card:focus-within { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.3); }
.why-card:hover::after, .why-card:focus-within::after { width: 100%; }
.why-num { font-family: var(--font-display); font-weight: 800; font-size: 2.25rem; color: var(--gray-line); line-height: 1; transition: color 0.35s var(--ease); }
.why-card:hover .why-num, .why-card:focus-within .why-num { color: var(--gold); }
.why-card h3 { font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); margin: 0.6rem 0 0.5rem; letter-spacing: -0.01em; }
.why-lead { font-size: var(--text-base); color: var(--ink); font-weight: 500; }
/* hover-expand detail line */
.why-more {
  font-size: var(--text-sm); color: var(--gray);
  max-height: 0; opacity: 0; margin-top: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), margin-top 0.35s var(--ease);
}
.why-card:hover .why-more, .why-card:focus-within .why-more { max-height: 100px; opacity: 1; margin-top: 0.6rem; }
@media (hover: none) { .why-more { max-height: 100px; opacity: 1; margin-top: 0.6rem; } }

/* ---- Practices / chips ---- */
.practice { margin-top: 3rem; }
.practice-head h3 { font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); letter-spacing: -0.01em; }
.practice-head h3::before {
  content: ""; display: inline-block; width: 22px; height: 3px;
  background: var(--yellow); vertical-align: middle; margin-right: 0.75rem;
}
.practice-head p { color: var(--gray); margin-top: 0.4rem; margin-left: 0; }
.chip-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.6rem; margin-top: 1.5rem;
}
.chip {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.section--alt .chip { background: #fff; }
.chip:hover { border-color: var(--yellow); background: var(--yellow); color: var(--black); }

/* ---- Process ---- */
.process-list { list-style: none; margin-top: 3rem; display: grid; gap: 0; }
.process-list li {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem;
  padding: 1.75rem 0; border-top: 1px solid var(--gray-line);
}
.process-list li:last-child { border-bottom: 1px solid var(--gray-line); }
.process-list .step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.75rem;
  color: var(--gold); line-height: 1;
}
.process-list h3 { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); margin-bottom: 0.35rem; }
.process-list p { color: var(--gray); font-size: var(--text-sm); max-width: 62ch; }

/* ---- Value grid (candidates) ---- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  padding: 2rem 1.75rem; border: 1px solid var(--gray-line);
  border-left: 3px solid var(--gold); border-radius: var(--radius); background: var(--white);
}
.value-card h3 { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); margin-bottom: 0.6rem; }
.value-card p { color: var(--gray); font-size: var(--text-sm); }

/* ---- Careers block ---- */
.careers-block { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ============================================================
   FORMS
   ============================================================ */
.form-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.form-intro .section-title { margin-bottom: 1rem; }
.form-note { color: rgba(255,255,255,0.7); max-width: 44ch; }
.tick-list { list-style: none; margin-top: 1.75rem; display: grid; gap: 0.75rem; }
.tick-list li { position: relative; padding-left: 1.75rem; color: rgba(255,255,255,0.85); font-size: var(--text-sm); }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }

.alpha-form {
  background: var(--ink-2);
  border: 1px solid var(--gray-line-dark);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field span { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--text-base);
  background: var(--black); color: var(--white);
  border: 1px solid var(--gray-line-dark); border-radius: var(--radius);
  padding: 0.8rem 0.9rem; width: 100%;
  transition: border-color 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--yellow); }
.field textarea { resize: vertical; }
.file-hint { font-size: var(--text-sm); color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }
.file-hint a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.form-status { margin-top: 1rem; font-size: var(--text-sm); font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--yellow); }
.form-status.err { color: #ff8a8a; }

/* ============================================================
   TRENDS
   ============================================================ */
.trends-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.trends-intro { color: rgba(255,255,255,0.78); max-width: 60ch; margin-top: 1.25rem; font-size: var(--text-lg); }
.trends-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.trend-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gray-line-dark);
  border-radius: var(--radius); padding: 1.75rem;
}
.trend-tag {
  display: inline-block; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 0.85rem;
}
.trend-card h3 { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); margin-bottom: 0.5rem; color: var(--white); }
.trend-card p { font-size: var(--text-sm); color: rgba(255,255,255,0.72); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
  border: 1px solid var(--gray-line-dark); border-radius: var(--radius);
  padding: 2rem 1.75rem; background: var(--ink);
  display: flex; flex-direction: column;
}
.testi-card .quote-mark { font-family: var(--font-display); font-size: 2.5rem; color: var(--yellow); line-height: 0.6; margin-bottom: 0.5rem; }
.testi-card blockquote { font-size: var(--text-base); color: rgba(255,255,255,0.9); flex: 1; }
.testi-by { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12); }
.testi-card cite { display: block; font-style: normal; font-weight: 700; font-size: var(--text-sm); color: var(--gold-soft); }
.testi-role { display: block; margin-top: 0.15rem; font-size: var(--text-xs); color: rgba(255,255,255,0.55); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-block { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.contact-actions { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.contact-email {
  font-family: var(--font-display); font-weight: 800;
  font-size: var(--text-xl); color: var(--ink);
  border-bottom: 3px solid var(--yellow); padding-bottom: 2px;
}
.contact-email:hover { color: var(--gold); }
.contact-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: var(--white); padding: 3.5rem 0 2rem; border-top: 1px solid var(--gray-line-dark); }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid var(--gray-line-dark); }
.footer-brand img { height: 34px; margin-bottom: 0.75rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: var(--text-sm); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--gray-line-dark); color: rgba(255,255,255,0.75); transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.footer-social a:hover { color: var(--black); background: var(--yellow); border-color: var(--yellow); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: var(--text-sm); font-weight: 500; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; padding-top: 1.5rem; font-size: var(--text-xs); color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }

/* ============================================================
   PANELS + REVEAL
   ============================================================ */
.panel { display: none; }
.panel.is-active { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Scroll reveal (data-reveal) with stagger */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
.why-grid [data-reveal].in:nth-child(2) { transition-delay: 0.1s; }
.why-grid [data-reveal].in:nth-child(3) { transition-delay: 0.2s; }
.value-grid [data-reveal].in:nth-child(2) { transition-delay: 0.1s; }
.value-grid [data-reveal].in:nth-child(3) { transition-delay: 0.2s; }

/* ---- Staff split (Domestic vs Offshore) ---- */
.staff-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.staff-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.staff-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -26px rgba(0,0,0,0.28); }
.staff-card--accent { background: var(--ink); color: var(--white); border-color: var(--ink); }
.staff-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black); background: var(--yellow);
  padding: 0.35rem 0.7rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.staff-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl);
  letter-spacing: -0.02em; line-height: 1.1;
}
.staff-lead { font-size: var(--text-base); color: var(--gray); margin-top: 0.9rem; }
.staff-card--accent .staff-lead { color: rgba(255,255,255,0.75); }

/* ---- Role dropdown (accordion) ---- */
.role-menu { margin-top: 1.6rem; border-top: 1px solid var(--gray-line); }
.staff-card--accent .role-menu { border-top-color: rgba(255,255,255,0.16); }
.role-menu summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0 0;
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-base);
  color: var(--ink);
}
.staff-card--accent .role-menu summary { color: var(--white); }
.role-menu summary::-webkit-details-marker { display: none; }
.role-menu .chev { transition: transform 0.3s var(--ease); color: var(--gold); font-size: 1.1rem; }
.role-menu[open] .chev { transform: rotate(180deg); }
.role-menu .chip-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); margin-top: 1.2rem; }
.staff-card--accent .chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); color: var(--white); }
.staff-card--accent .chip:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.chip { animation: chipIn 0.4s var(--ease) both; }
@keyframes chipIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }

/* ---- Newsletter (Insights) ---- */
.trends-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: end; }
.news-form { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.news-form input {
  flex: 1 1 200px; min-width: 0;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius); padding: 0.85rem 1.1rem;
  font-family: var(--font-body); font-size: var(--text-base); color: var(--white);
}
.news-form input::placeholder { color: rgba(255,255,255,0.5); }
.news-form input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(254,213,0,0.25); }
.news-form .form-status { flex-basis: 100%; }
.trends-edition { margin-top: 2.5rem; }
.trends-edition .trends-date {
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  color: var(--gold); letter-spacing: 0.02em;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-media img { transform: none !important; }
  .why-more { max-height: 100px; opacity: 1; margin-top: 0.6rem; }
  * { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .why-grid, .value-grid, .trends-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-media { min-height: 320px; order: -1; }
  .staff-split { grid-template-columns: 1fr; }
  .trends-head { grid-template-columns: 1fr; align-items: start; gap: 1.75rem; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .why-grid, .value-grid, .trends-grid, .testi-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero--clients { min-height: 90vh; }
  .hero-stats { gap: 1.5rem; }
  .hero-stats--boxed { grid-template-columns: 1fr; gap: 0.75rem; }
  .hero-stats--boxed .stat-box { padding: 1rem 1.15rem; }
  .hero-stats strong { font-size: 1.9rem; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 1rem; }
  .contact-block, .careers-block { flex-direction: column; align-items: flex-start; }
}
