/* ═══════════════════════════════════════════
   Z Strategies Corp — Global Styles
   White, Green & Gold — Mobile-first, accessible
   ═══════════════════════════════════════════ */

:root {
  --gold: #B8922A;
  --gold-light: #D4A843;
  --gold-bright: #E8C060;
  --gold-dim: rgba(184,146,42,0.10);
  --gold-border: rgba(184,146,42,0.35);
  --green: #1B5E3B;
  --green-light: #2A7A50;
  --green-bright: #34966A;
  --green-dim: rgba(27,94,59,0.08);
  --green-dark: #143D28;
  --ink: #FFFFFF;
  --ink-2: #F7F7F5;
  --ink-3: #F0EDE8;
  --ink-4: #E8E4DD;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-dim: #7E7870;
  --white: #FFFFFF;
  --radius: 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── CONTACT TOP BAR ── */
.contact-bar {
  background: var(--green);
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 300;
}
.contact-bar a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 16px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}
.contact-bar a:hover {
  background: rgba(255,255,255,0.15);
}
.contact-bar .separator {
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  user-select: none;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 44px;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-brand a { text-decoration: none; }
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--green-dark);
  text-transform: uppercase;
}
.nav-brand-tag {
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 400;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--green); }
.nav-cta {
  padding: 10px 24px !important;
  border: 1px solid var(--green) !important;
  color: var(--green) !important;
  border-radius: 4px;
  transition: background 0.25s, border-color 0.25s !important;
}
.nav-cta:hover {
  background: var(--green-dim) !important;
  border-color: var(--green-light) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: #FFFFFF;
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green);
  color: #FFFFFF;
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn-outline:hover {
  background: var(--green-dim);
  border-color: var(--green-light);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline-gold:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.btn-lg {
  padding: 20px 48px;
  font-size: 0.88rem;
}

/* ── LAYOUT ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.section {
  padding: 100px 0;
}
.section.alt {
  background: var(--ink-2);
}
.section.dark {
  background: var(--green-dark);
  color: #FFFFFF;
}
.section.dark .section-h2 { color: #FFFFFF; }
.section.dark .section-h2 em { color: var(--gold-bright); }
.section.dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section.dark .eyebrow-text { color: var(--gold-bright); }
.section.dark .eyebrow-line { background: var(--gold-bright); }

/* ── EYEBROW ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--green);
}
.eyebrow-text {
  font-size: 0.61rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}

/* ── HEADINGS ── */
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--green-dark);
}
.section-h2 em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 600px;
}

/* ── HERO ── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,61,40,0.92) 0%, rgba(20,61,40,0.7) 50%, rgba(20,61,40,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: #FFFFFF;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .eyebrow-text { color: var(--gold-bright); }
.hero .eyebrow-line { background: var(--gold-bright); }
.hero .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
}

/* ── IMAGE CARDS ── */
.img-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--green), var(--gold));
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover::after { width: 100%; }
.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--green);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.service-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(27,94,59,0.25);
  padding: 5px 14px;
  border-radius: 3px;
}

/* ── FEATURE GRID (2-col with image) ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.feature-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ── FOUNDER SECTION ── */
.founder-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 4px solid var(--gold-border);
}
.founder-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
}
.founder-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.founder-title {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}
.founder-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.founder-highlight {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(27,94,59,0.25);
  padding: 8px 16px;
  border-radius: 4px;
  background: var(--green-dim);
  font-weight: 500;
}

/* ── CREDENTIALS ── */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.credential-card {
  background: #FFFFFF;
  border-left: 3px solid var(--green);
  padding: 28px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.credential-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.credential-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: process;
}
.process-step {
  background: rgba(255,255,255,0.06);
  padding: 40px 28px;
  border-radius: var(--radius);
  position: relative;
  counter-increment: process;
}
.process-step::before {
  content: counter(process, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(232,192,96,0.2);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

/* ── WHY CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.why-card {
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.why-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.why-card-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--green);
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ── CTA BANNER ── */
.cta-banner {
  text-align: center;
  padding: 100px 48px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,146,42,0.15) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-bright); }
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.cta-banner .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .eyebrow-text { color: var(--gold-bright); }
.cta-banner .eyebrow-line { background: var(--gold-bright); }
.cta-banner .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.35);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
}

/* ── CONTACT FORM ── */
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0;
  color: #FFFFFF;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--gold-bright);
  margin-top: 6px;
  text-transform: uppercase;
}
.footer-brand-sub a {
  color: var(--gold-bright);
  text-decoration: none;
}
.footer-cols {
  display: flex;
  gap: 56px;
}
.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
}
.footer-col-links a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}
.footer-seo {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
  line-height: 1.8;
}

/* ── TICKER BAND ── */
.ticker-band {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.ticker-text {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 500;
  padding: 0 32px;
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(20,61,40,0.35);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ANIMATIONS ── */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.stat-item {
  text-align: center;
  padding: 24px;
}
.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  text-transform: uppercase;
}

/* ── INDUSTRY CARDS ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.industry-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.industry-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.industry-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--green);
}
.industry-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ═══════════════════
   RESPONSIVE
   ═══════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  html { font-size: 17px; }
  .container { padding: 0 32px; }
  nav { padding: 0 32px; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
  .founder-section { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo img { height: 360px; }
  .nav-menu a:not(.nav-cta) { display: none; }
  .menu-toggle { display: block; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-cols { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-seo { text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
  html { font-size: 18px; }
  .container { padding: 0 20px; }
  nav {
    padding: 0 20px;
    top: 40px;
  }
  .contact-bar {
    padding: 8px 16px;
    gap: 8px;
  }
  .contact-bar a {
    font-size: 0.85rem;
    padding: 4px 10px;
  }
  .contact-bar .separator { display: none; }
  .hero { min-height: 70vh; padding: 60px 0; }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-desc { font-size: 1.05rem; }
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .credential-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 72px 20px; }
  .cta-banner .cta-actions { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  footer { padding: 40px 0; }
  .founder-section { grid-template-columns: 1fr; gap: 24px; }
  .founder-photo { max-width: 280px; }
  .founder-photo img { height: 340px; }

  /* Mobile nav overlay */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 500;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu.open a {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--green-dark);
  }
  .nav-menu.open .nav-cta {
    font-size: 1rem;
  }
  .menu-toggle { display: block; z-index: 600; }
}

/* Small mobile */
@media (max-width: 480px) {
  html { font-size: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* Print */
@media print {
  .contact-bar, nav, .ticker-band { display: none; }
  body { background: white; color: black; }
}
