/* ==========================================================================
   Eyespark Media — shared styles
   ========================================================================== */

:root {
  --bg: #FFFFFF;
  --section-bg: #F7F7F2;
  --dark: #111611;
  --text: #111611;
  --text-secondary: #3D453E;
  --text-muted: #5A625B;
  --text-faint: #9AA09A;
  --border: #E8E8E3;
  --border-input: #D5D5CE;
  --accent: #1E4D33;
  --accent-hover: #163B27;
  --star: #B8860B;
  --success-bg: #EFF5F0;
  --success-text: #163B27;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
}

a:hover {
  color: #2E6B48;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ---------- Header / nav ---------- */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-header.header-minimal .container {
  justify-content: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.accent { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-secondary);
}

.main-nav a.active {
  color: var(--text);
  font-weight: 600;
}

.main-nav a.btn-primary,
.main-nav a.btn-primary:hover {
  color: #FFFFFF;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  margin: -8px;
  cursor: pointer;
  color: var(--text);
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #FFFFFF;
}

.btn-nav {
  padding: 11px 22px;
  font-size: 15px;
}

.btn-large {
  font-size: 17px;
  padding: 16px 32px;
}

.btn-xl {
  font-size: 18px;
  padding: 18px 40px;
}

.btn-inverse {
  background: #FFFFFF;
  color: var(--dark);
}

.btn-inverse:hover {
  background: var(--border);
  color: var(--dark);
}

.link-arrow {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* ---------- Sections ---------- */

section { }

.section-pad {
  padding: 96px 0;
}

.section-tight {
  padding: 80px 0;
}

.section-heading {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.section-subhead {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 0 0 56px;
  max-width: 34em;
  line-height: 1.6;
}

.bg-alt { background: var(--section-bg); }
.bg-dark { background: var(--dark); color: #FFFFFF; }
.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }

/* ---------- Hero ---------- */

.hero {
  padding: 96px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}

.hero p.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 30em;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text-muted);
}

.stars { color: var(--star); }

.photo-placeholder {
  border-radius: 12px;
  background: repeating-linear-gradient(-45deg, #EDECE5 0 14px, #E4E3DA 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(17, 22, 17, 0.08);
}

.photo-placeholder span {
  font-family: monospace;
  font-size: 13px;
  color: #6B7269;
  background: #FFFFFF;
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
}

/* ---------- Logo strip ---------- */

.logo-strip .container {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-strip span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

/* ---------- Grids ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  border-top: 2px solid var(--dark);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-big {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-metric {
  font-size: 17px;
  font-weight: 600;
}

.stat-detail {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

.stat-name {
  font-size: 14px;
  color: var(--text-faint);
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Process steps ---------- */

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.step p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Testimonial / CTA split ---------- */

.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-cta h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.split-cta p.lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
  max-width: 30em;
}

.split-cta .fine-print {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}

.quote-block {
  border-left: 2px solid rgba(255,255,255,0.25);
  padding-left: 32px;
}

.quote-block p {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 20px;
}

.quote-name { font-size: 15px; font-weight: 600; }
.quote-role { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ---------- Footer ---------- */

footer.site-footer {
  border-top: 1px solid var(--border);
}

footer.site-footer .container {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}

footer.site-footer .footer-logo {
  font-weight: 700;
  color: var(--dark);
}

footer.site-footer .footer-links {
  display: flex;
  gap: 24px;
}

footer.site-footer a {
  text-decoration: none;
  color: var(--text-muted);
}

/* ---------- Centered CTA section (About / Case Studies) ---------- */

.cta-center {
  padding: 80px 0;
  text-align: center;
}

.cta-center h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}

.cta-center p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin: 0 auto 28px;
  max-width: 32em;
  line-height: 1.6;
}

/* ---------- Booking page ---------- */

.booking-section {
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.booking-section h1 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 18px;
}

.booking-section > div:first-child > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 32px;
}

.deliverables {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.deliverable-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.deliverable-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.deliverable-row > div:last-child {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.mini-quote {
  border-left: 2px solid var(--border);
  padding-left: 24px;
  margin-bottom: 28px;
}

.mini-quote p {
  font-size: 16.5px;
  line-height: 1.55;
  font-style: italic;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.mini-quote div {
  font-size: 14px;
  font-weight: 600;
}

.booking-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}

.booking-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
}

.booking-card > p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
}

.form-field input {
  font-size: 16px;
  padding: 13px 14px;
  border: 1px solid var(--border-input);
  border-radius: 8px;
  font-family: inherit;
}

.form-field input:focus {
  border: 1px solid var(--accent);
  outline: none;
}

.rev-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rev-option {
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-input);
  background: #FFFFFF;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
}

.rev-option.rev-active {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.submit-btn {
  background: var(--accent);
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  padding: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

.submit-btn:hover { background: var(--accent-hover); }

.success-box {
  display: none;
  background: var(--success-bg);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--success-text);
}

.form-footnote {
  font-size: 13.5px;
  color: var(--text-faint);
  text-align: center;
}

.form-footnote a { font-weight: 600; }

/* ---------- VSL page ---------- */

.vsl-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.vsl-hero {
  padding: 64px 0 48px;
  text-align: center;
}

.vsl-hero h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}

.vsl-hero p.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 auto 36px;
  max-width: 36em;
}

.video-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}

.play-button {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.play-button:hover { transform: scale(1.06); }

.play-triangle {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #FFFFFF;
  margin-left: 6px;
}

.video-player span {
  font-family: monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.video-caption {
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 36px;
}

.point-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
}

.point-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.point-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.point-desc { font-size: 15.5px; line-height: 1.6; color: var(--text-secondary); }

.vsl-proof-quote {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
  border-left: 2px solid var(--border);
  padding-left: 28px;
}

.vsl-proof-quote p {
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
  margin: 0 0 16px;
}

/* ---------- Case studies page ---------- */

.case-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.case-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.case-card h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.case-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.case-card p:last-of-type { margin-bottom: 0; }

.case-stat-big {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}

.case-metric {
  font-size: 18px;
  font-weight: 600;
  margin-top: -12px;
}

.case-before-after {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.case-before-after .label {
  font-size: 13px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.case-before-after .value {
  font-size: 20px;
  font-weight: 700;
}

.case-arrow {
  align-self: center;
  color: var(--accent);
  font-size: 20px;
}

.case-quote {
  border-left: 2px solid var(--border);
  padding-left: 20px;
}

.case-quote p {
  font-size: 15.5px;
  line-height: 1.55;
  font-style: italic;
  color: var(--text-secondary);
  margin: 0 0 8px;
}

/* ---------- About page ---------- */

.about-intro {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-intro h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 20px;
}

.about-intro p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 18px;
}

.about-intro p:last-of-type { margin-bottom: 0; }

.about-intro .photo-placeholder { aspect-ratio: 4/4.4; }

.founders-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.founders-track {
  display: flex;
  transition: transform 0.5s ease;
}

.founder-card {
  margin: 0;
  flex: 0 0 100%;
  max-width: 100%;
}

.founder-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(17, 22, 17, 0.08);
}

.founder-card figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.founders-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.founders-nav:hover {
  background: #FFFFFF;
}

.founders-nav-prev { left: 12px; }
.founders-nav-next { right: 12px; }

.founders-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.founders-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
}

.founders-dot.active {
  background: #FFFFFF;
}

.principle-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}

.principle-card h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.principle-card p { font-size: 15.5px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

.track-record { padding: 80px 0; text-align: center; }

.track-stat {
  border-top: 2px solid var(--dark);
  padding-top: 20px;
}

.track-stat .big { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.track-stat .label { font-size: 14.5px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .split-cta { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; gap: 32px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .main-nav { gap: 18px; }
  .hero h1 { font-size: 38px; }
  .section-heading { font-size: 30px; }
  .booking-section { grid-template-columns: 1fr; gap: 40px; }
  .booking-card { padding: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .case-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .vsl-hero h1 { font-size: 32px; }
}

@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .site-header .container { flex-wrap: nowrap; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 4px 32px 20px;
  }

  .main-nav.is-open { display: flex; }

  .main-nav a:not(.btn) {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .main-nav .btn-nav {
    margin-top: 16px;
    text-align: center;
  }
}
