/* ================================================================
   Roy Weathers — styles.css
   Vanilla CSS · No preprocessors · No frameworks
   ================================================================ */

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

:root {
  --bg:          #FAFAF8;
  --text:        #1A1A1A;
  --green:       #1B2E4B;
  --green-hover: #142440;
  --gold:        #B8922A;
  --gold-light:  rgba(184, 146, 42, 0.08);
  --divider:     #E8E4DE;
  --card:        #F5F2ED;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, sans-serif;

  --max-width:    1200px;
  --section-pad:  6rem 2rem;
  --radius:       6px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:visited,
a:active {
  color: inherit;
}

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

/* Focus ring — visible custom alternative */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}


/* ================================================================
   SCROLL REVEAL — used across all sections
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 700ms cubic-bezier(0.32, 0.72, 0, 1),
    transform 700ms cubic-bezier(0.32, 0.72, 0, 1);
}

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

.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }
.reveal-d6 { transition-delay: 480ms; }


/* ================================================================
   NAV
   ================================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  transition: padding 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  padding: 1.25rem 0;
}

.nav.scrolled {
  padding: 0.65rem 0;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:visited {
  color: #fff;
}

.nav-links a.active {
  color: var(--green);
}


/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:visited,
.btn-primary:active {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(27, 46, 75, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}


/* ================================================================
   HAMBURGER
   ================================================================ */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ================================================================
   HERO
   ================================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(184, 146, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-text {
  max-width: 620px;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-idea {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.headshot-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}


/* ================================================================
   STATS BAR
   ================================================================ */

.stats {
  background: var(--card);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 3rem 2rem;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 0 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.02em;
}


/* ================================================================
   SECTION COMMON
   ================================================================ */

.section {
  padding: var(--section-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-border {
  border-top: 1px solid var(--divider);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  max-width: 640px;
}


/* ================================================================
   ABOUT — SPLIT LAYOUT
   ================================================================ */

.about-split {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 5rem;
  align-items: start;
}

/* Left: Pull Quote + Bento */
.about-left {
  position: sticky;
  top: 8rem;
}

.about-pullquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 3rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

/* Double-Bezel Bento Cards */
.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-bento-shell {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 1.25rem;
  padding: 0.35rem;
  transition: transform 600ms cubic-bezier(0.32, 0.72, 0, 1);
}

.about-bento-shell:hover {
  transform: translateY(-3px);
}

.about-bento-shell.wide {
  grid-column: span 2;
}

.about-bento-core {
  background: var(--card);
  border-radius: calc(1.25rem - 0.35rem);
  padding: 1.75rem 1.5rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5);
  min-height: 100%;
}

.bento-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.bento-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  line-height: 1.4;
}

/* Right: Bio Prose */
.about-right {
  display: flex;
  flex-direction: column;
}

.about-bio-text {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.75rem;
}

.about-bio-text:last-child {
  margin-bottom: 0;
}

.about-bio-text strong {
  color: var(--text);
  font-weight: 600;
}


/* ================================================================
   MEDIA
   ================================================================ */

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

.media-card {
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.media-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.media-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
}

.media-thumb svg {
  opacity: 0.35;
}

.media-body {
  padding: 1.5rem;
}

.media-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.media-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.media-source {
  font-size: 0.82rem;
  color: #888;
}

.media-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}

.media-card:hover .media-link {
  transform: translateX(3px);
}


/* ================================================================
   SPEAKING TOPICS
   ================================================================ */

.topics-header {
  margin-bottom: 3rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.topic-card {
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.topic-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.topic-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.topic-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
}

.topics-note {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--green);
}


/* ================================================================
   VIDEO REEL
   ================================================================ */

.reel {
  background: var(--card);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: var(--section-pad);
}

.reel-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.reel-sub {
  margin: 0 auto 3rem;
}

.video-wrapper {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1A1A1A;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.video-wrapper.playing {
  cursor: default;
  transform: none;
  box-shadow: none;
}

.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-thumb-img {
  opacity: 0.9;
}

.video-wrapper.playing .video-thumb-img,
.video-wrapper.playing .video-play,
.video-wrapper.playing .video-caption {
  display: none;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.3s ease;
}

.video-wrapper:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(27, 46, 75, 0.3);
}

.video-play svg {
  margin-left: 4px;
}

.video-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}


/* ================================================================
   TAKEAWAYS
   ================================================================ */

.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.takeaway {
  padding: 2rem 0;
  border-top: 2px solid var(--green);
}

.takeaway-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.takeaway-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.takeaway-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
}


/* ================================================================
   TRUSTED BY
   ================================================================ */

.trusted {
  background: var(--bg);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 3rem 2rem;
}

.trusted-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.trusted-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.5rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
}

.logo-chip {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.01em;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.logo-chip:hover {
  opacity: 1;
}


/* ================================================================
   TESTIMONIALS
   ================================================================ */

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

.testimonial {
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--divider);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}


/* ================================================================
   PULL QUOTE
   ================================================================ */

.quote-section {
  padding: var(--section-pad);
  text-align: center;
  border-top: 1px solid var(--divider);
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.quote-attr {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
}


/* ================================================================
   CONTACT
   ================================================================ */

.contact {
  padding: var(--section-pad);
  border-top: 1px solid var(--divider);
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-sub {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 46, 75, 0.08);
}

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

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Success state */
.form-submit .btn.success {
  background: var(--gold);
}


/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  border-top: 1px solid var(--divider);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.footer-email {
  font-size: 0.85rem;
  color: #888;
}

.footer-email a {
  color: var(--green);
  transition: opacity 0.2s;
}

.footer-email a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.8rem;
  color: #aaa;
}


/* ================================================================
   RESPONSIVE — TABLET (min-width: 640px handled by desktop-first
   overrides below for sub-640 and sub-900)
   ================================================================ */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .headshot-img {
    max-width: 300px;
    margin: 0 auto;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

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

  .about-left {
    position: static;
  }

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

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

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

  .takeaways-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    border-left: 1px solid var(--divider);
    transition: right 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 1000;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
    min-height: auto;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .reel {
    padding: 4rem 1.5rem;
  }

  .trusted {
    padding: 2.5rem 1.5rem;
  }

  .stats {
    display: none;
  }

  .trusted-logos {
    gap: 1.5rem 2rem;
  }

  .logo-chip {
    font-size: 0.9rem;
  }

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

  .video-play {
    width: 60px;
    height: 60px;
  }

  .video-play svg {
    width: 22px;
    height: 22px;
  }
}
