/* style.css v2.0.0 — SeqTek Design System */

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

:root {
  --navy: #1B365D;
  --navy-90: rgba(27, 54, 93, 0.9);
  --navy-60: rgba(27, 54, 93, 0.6);
  --green: #2E7D32;
  --green-light: #388E3C;
  --green-glow: rgba(46, 125, 50, 0.25);
  --warm-white: #F8F6F1;
  --charcoal: #0D1117;
  --charcoal-light: #161B22;
  --charcoal-mid: #21262D;
  --text-primary: #E6EDF3;
  --text-secondary: #A0A0A0;
  --text-tertiary: #6E7681;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(0, 0, 0, 0.08);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lift: 0 8px 30px rgba(0, 0, 0, 0.35);
  --max-width: 1200px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--charcoal);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Light mode */
body.light-mode {
  --charcoal: #F8F6F1;
  --charcoal-light: #EFEDE8;
  --charcoal-mid: #E5E3DE;
  --text-primary: #1B365D;
  --text-secondary: #4A5568;
  --text-tertiary: #718096;
  --border-dark: rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lift: 0 8px 30px rgba(0, 0, 0, 0.1);
  background: var(--warm-white);
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw + 0.5rem, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw + 0.3rem, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw + 0.2rem, 1.35rem); }

p { max-width: 65ch; }

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--green);
}

.text-secondary { color: var(--text-secondary); }
.text-balance { text-wrap: balance; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 300ms var(--ease-in-out), backdrop-filter 300ms var(--ease-in-out);
}

.nav.scrolled {
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid var(--border-dark);
}

body.light-mode .nav.scrolled {
  background: rgba(248, 246, 241, 0.85);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  z-index: 1001;
}

.nav__logo svg {
  width: 36px;
  height: 36px;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 200ms ease-out;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 200ms var(--ease-out);
}

.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--text-primary); }

.nav__cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.nav__cta:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px var(--green-glow);
}

.nav__cta:active { transform: scale(0.97); }
.nav__cta:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  min-width: 60px;
  min-height: 60px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 300ms var(--ease-out), opacity 200ms ease-out;
  border-radius: 1px;
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}

.nav__overlay.open { display: flex; opacity: 1; }

.nav__overlay a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.nav__overlay.open a {
  opacity: 1;
  transform: translateY(0);
}

/* stagger mobile links */
.nav__overlay a:nth-child(1) { transition-delay: 100ms; }
.nav__overlay a:nth-child(2) { transition-delay: 150ms; }
.nav__overlay a:nth-child(3) { transition-delay: 200ms; }
.nav__overlay a:nth-child(4) { transition-delay: 250ms; }
.nav__overlay a:nth-child(5) { transition-delay: 300ms; }
.nav__overlay a:nth-child(6) { transition-delay: 350ms; }

/* Theme toggle */
.theme-toggle {
  background: none;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: color 200ms ease-out, border-color 200ms ease-out;
}

.theme-toggle:hover { color: var(--text-primary); border-color: var(--text-tertiary); }
.theme-toggle:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.theme-toggle svg { width: 18px; height: 18px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(27, 54, 93, 0.6), transparent),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(27, 54, 93, 0.3), transparent),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(46, 125, 50, 0.08), transparent),
    var(--charcoal);
  z-index: 0;
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.hero__tagline {
  margin-bottom: 1.25rem;
}

.hero__title {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px);
  transition: opacity 400ms var(--ease-out), filter 400ms var(--ease-out), transform 400ms var(--ease-out);
}

.hero__title .word.revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  min-height: 48px;
}

.btn:hover {
  transform: scale(1.02);
}

.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  box-shadow: 0 4px 20px var(--green-glow), var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-dark);
}

.btn--secondary:hover {
  border-color: var(--text-tertiary);
  box-shadow: var(--shadow-sm);
}

/* ===== STATS ===== */
.stats {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 50ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 100ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 150ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 200ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 250ms; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 350ms; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 450ms; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SERVICES GRID (asymmetric) ===== */
.services-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.services-grid__featured {
  grid-row: 1 / 3;
}

.service-card {
  background: var(--charcoal-light);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(46, 125, 50, 0.3);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--green);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.service-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-card--featured {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
}

.service-card--featured .service-card__icon {
  width: 56px;
  height: 56px;
}

.service-card--featured .service-card__title {
  font-size: 1.35rem;
  font-family: 'Playfair Display', serif;
}

/* ===== SERVICES COMPACT (right column) ===== */
.services-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.testimonial {
  background: var(--charcoal-light);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.testimonial__quote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__quote::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--green);
  margin-bottom: 1rem;
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(27, 54, 93, 0.4), transparent),
    var(--charcoal-light);
  border-radius: 16px;
  padding: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--border-dark);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin: 0 auto 2rem;
  color: var(--text-secondary);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.advantage-list {
  display: grid;
  gap: 1rem;
}

.advantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--charcoal-light);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  transition: border-color 200ms ease-out;
}

.advantage-item:hover { border-color: rgba(46, 125, 50, 0.3); }

.advantage-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--green);
  margin-top: 2px;
}

.advantage-item__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Benefits numbered */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.benefit {
  padding: 1.5rem;
  background: var(--charcoal-light);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  transition: transform 200ms var(--ease-out), border-color 200ms ease-out;
}

.benefit:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 125, 50, 0.3);
}

.benefit__number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.benefit__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.benefit__desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== WORKSHOPS ===== */
.workshop-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.workshops-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.workshop-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  background: var(--charcoal-light);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 200ms var(--ease-out), border-color 200ms ease-out;
}

.workshop-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 125, 50, 0.3);
}

.workshop-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.workshop-card__subtitle {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.workshop-card__outcomes h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.workshop-card__outcomes li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.workshop-card__outcomes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green);
  margin-top: 3px;
}

.contact-info__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info__text a {
  color: var(--text-primary);
  transition: color 200ms ease-out;
}

.contact-info__text a:hover { color: var(--green); }

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--charcoal-light);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group textarea { resize: vertical; min-height: 140px; }

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

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal-light);
  border-top: 1px solid var(--border-dark);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__logo svg { width: 32px; height: 32px; }

.footer__tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 200ms ease-out;
}

.footer__link:hover { color: var(--green); }

.footer__contact-item {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer__contact-item a {
  transition: color 200ms ease-out;
}

.footer__contact-item a:hover { color: var(--green); }

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__social {
  color: var(--text-tertiary);
  transition: color 200ms ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.footer__social:hover { color: var(--green); }
.footer__social svg { width: 20px; height: 20px; }

/* ===== PAGE HERO (non-home pages) ===== */
.page-hero {
  padding-top: calc(var(--nav-height) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(27, 54, 93, 0.4), transparent),
    radial-gradient(ellipse 50% 40% at 70% 60%, rgba(46, 125, 50, 0.06), transparent);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

/* ===== 404 PAGE ===== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page__code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  opacity: 0.3;
}

.error-page__title {
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.error-page__text {
  color: var(--text-secondary);
  margin: 0 auto 2rem;
}

/* ===== PARTNERS ===== */
.partners {
  text-align: center;
}

.partners__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.4;
  filter: grayscale(1);
}

/* ===== INSIGHTS (blog previews) ===== */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.insight-card {
  background: var(--charcoal-light);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 200ms var(--ease-out), border-color 200ms ease-out;
}

.insight-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 125, 50, 0.3);
}

.insight-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.insight-card__excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.insight-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 200ms var(--ease-out);
}

.insight-card__link:hover { gap: 0.6rem; }

/* ===== VALUE PROP ===== */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__title .word {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta.desktop-only { display: none; }
  .nav__hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid__featured { grid-row: auto; }
  .services-compact { grid-template-columns: 1fr; }
  .services-intro { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .workshop-card { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero__content { padding: 2rem 0; }
  .stats { flex-direction: column; gap: 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .workshop-stats { flex-direction: column; gap: 1.5rem; }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--green);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 600;
  transition: top 200ms ease-out;
}

.skip-link:focus { top: 0; }

/* ===== DIVIDER ===== */
.section-divider {
  border: none;
  height: 1px;
  background: var(--border-dark);
  margin: 0;
}
