/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
  /* Emily Ford Dark Theme */
  --bg-primary: #0c0c0c;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-hover: #1e1e1e;

  /* Text */
  --text-primary: #f2ece0;
  --text-secondary: #b8ad9a;
  --text-muted: #7a7265;

  /* Accent – warm gold */
  --accent: #c8a96e;
  --accent-light: #e0c898;
  --accent-dark: #9e7d44;

  /* Borders */
  --border: rgba(200, 169, 110, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1200px;
  --nav-h: 76px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.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;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
  width: 92%;
  max-width: var(--container);
  margin-inline: auto;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--accent-light);
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .section-subtitle { margin-inline: auto; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0c0c0c;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(242, 236, 224, 0.35);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent);
  color: #0c0c0c;
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

.text-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.2s ease;
  display: inline-block;
}
.text-link:hover { color: var(--accent-light); }

/* ========================================
   NAVIGATION
   ======================================== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav-header.scrolled {
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 92%;
  max-width: var(--container);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  text-decoration: none;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-title {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 0.7rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0.7rem; right: 0.7rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--text-primary); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: 2px;
  transition: all 0.25s ease;
  margin-left: 0.5rem;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent);
  color: #0c0c0c;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 ratio */
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,0.55) 0%,
    rgba(12,12,12,0.62) 50%,
    rgba(12,12,12,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 500;
  line-height: 1.03;
  color: var(--text-primary);
  margin-bottom: 1.6rem;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-light);
}

.hero-subtext {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.4rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ========================================
   AS SEEN IN
   ======================================== */
.as-seen-in {
  background: #111111;
  padding: 2.4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.seen-label {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 1.6rem;
}

.logos-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: logoScroll 36s linear infinite;
}

/* Image logos — all rendered greyscale, no brand colours */
.media-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;

  /* Strip all colour → flat greyscale */
  filter: grayscale(100%) brightness(0.55) contrast(1.1);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.media-logo-img:hover {
  filter: grayscale(100%) brightness(0.85) contrast(1.1);
  opacity: 1;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg-card);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  transition: background 0.3s ease;
}

.service-card:hover { background: var(--bg-hover); }

.service-card.featured {
  background: var(--bg-hover);
  border-top: 2px solid var(--accent);
}

.service-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0c0c0c;
  background: var(--accent);
  padding: 0.25rem 0.7rem;
  margin-bottom: 1.2rem;
  border-radius: 1px;
}

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

/* Secondary services */
.services-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.secondary-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-card);
  transition: border-color 0.25s ease;
}

.secondary-card:hover { border-color: var(--accent); }

.secondary-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.secondary-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.about-image-col { position: relative; }

.about-image-frame {
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%;
  max-width: 500px;
  height: 620px;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s ease;
}

.about-img:hover { filter: grayscale(0%) contrast(1); }

.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 1.5px solid var(--accent);
  z-index: -1;
  pointer-events: none;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.8rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.about-content-col {
  padding-top: 1.5rem;
}

.about-body {
  margin-bottom: 2rem;
}

.about-body p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.about-body strong { color: var(--text-primary); font-weight: 500; }
.about-body em { color: var(--accent-light); font-style: italic; }

.education-block {
  margin: 2rem 0;
  padding: 1.8rem;
  border-left: 2px solid var(--accent);
  background: rgba(200, 169, 110, 0.04);
}

.education-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.edu-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.edu-list strong {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ========================================
   QUOTE BREAK
   ======================================== */
.quote-break {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.big-quote {
  max-width: 820px;
  margin-inline: auto;
}

.big-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.big-quote cite {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-slider {
  overflow: hidden;
  margin-bottom: 2rem;
  cursor: grab;
  user-select: none;
}

.testimonials-slider:active { cursor: grabbing; }

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.4;
}

.testimonial-footer {
  display: flex;
  align-items: center;
}

.testimonial-video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.testimonial-video-link:hover {
  background: var(--accent);
  color: #0c0c0c;
}

.play-icon {
  font-size: 0.6rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}

.slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200,169,110,0.06);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 3px;
}

.reviews-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.review-badge {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.review-badge:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ========================================
   MEDIA
   ======================================== */
.media-section {
  padding: var(--section-pad) 0;
  background: var(--bg-primary);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.media-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-card);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.media-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.media-card-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.media-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.media-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.media-card em { color: var(--accent-light); font-style: italic; }

/* ========================================
   CONTACT / NEWSLETTER
   ======================================== */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.contact-text .section-title { margin-bottom: 1rem; }

.contact-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 1rem 1.2rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input:focus {
  border-color: var(--accent);
  background: rgba(200,169,110,0.03);
}

.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.form-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #080808;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-external {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

.footer-link-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.25s ease;
  border-radius: 2px;
}

.footer-link-cta:hover {
  background: var(--accent);
  color: #0c0c0c;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.28s; }
.delay-3 { transition-delay: 0.42s; }

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .services-secondary {
    grid-template-columns: 1fr 1fr;
  }

  .secondary-card:last-child {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

  .media-card:last-child {
    grid-column: 1 / -1;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .testimonial-card {
    min-width: calc(50% - 0.75rem);
  }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav Mobile */
  .nav-toggle {
    display: flex;
    z-index: 10;
  }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: #0c0c0c;
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 5;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.9rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-link::after { display: none; }

  .nav-cta {
    margin: 1rem 0 0;
    width: 100%;
    text-align: center;
    display: block;
    padding: 0.9rem;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* Hero */
  .hero-headline { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card:last-child { grid-column: auto; }
  .services-secondary {
    grid-template-columns: 1fr;
  }
  .secondary-card:last-child { grid-column: auto; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img { height: 420px; max-width: 100%; }
  .about-image-accent { display: none; }

  /* Testimonials */
  .testimonial-card {
    min-width: calc(100% - 0rem);
  }

  /* Media */
  .media-grid {
    grid-template-columns: 1fr;
  }
  .media-card:last-child { grid-column: auto; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: auto; }

  /* Quote */
  .big-quote p { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .testimonials-slider { overflow: visible; }
  .testimonial-card { min-width: 85vw; }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .logos-slide { animation: none; }
  .scroll-line { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ========================================
   FOCUS STYLES (accessibility)
   ======================================== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
