/* ============================================
   WHOLESALE MEAT TEMPLATE — Logo-Master Color Variant
   Premium meat wholesale template
   Red #E31B23, Silver #C0C0C0, Gold #C8A84E
   ============================================ */

:root {
  /* ===========================================
     LOGO-MASTER PALETTE
     Every color extracted from Your Brand logo
     Red #E31B23 | Gold #B09030 | Silver #C0C0C0
     =========================================== */

  /* Backgrounds — black with red warmth (from logo's dark tones) */
  --bg-dark: #1A1214;
  --bg-darker: #120B0C;
  --bg-darkest: #0A0506;
  --bg-cream: #F5EAEA;
  --bg-cream-dark: #E8D8D8;

  /* Text — silver from MEAT text in logo */
  --text-light: #E6E2E2;
  --text-cream: #F5EAEA;
  --text-muted: rgba(192,192,192,0.5);
  --text-silver: #C0C0C0;

  /* LOGO RED — "brand" text, bull horns, maple leaf, Chinese stamp */
  --red: #E31B23;
  --red-dark: #901010;
  --red-deep: #5C0A0A;
  --red-glow: rgba(227,27,35,0.15);
  --red-border: rgba(227,27,35,0.25);

  /* LOGO SILVER — "accent" text */
  --silver: #C0C0C0;
  --silver-light: #D8D8D8;
  --silver-muted: rgba(192,192,192,0.3);

  /* LOGO GOLD — underline bar, "tagline." text */
  --gold: #B09030;
  --gold-light: #C8A84E;
  --gold-muted: rgba(176,144,48,0.3);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--bg-darkest);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* --- CUSTOM CURSOR (removed) --- */
.cursor, .cursor-follower { display: none; }

/* --- PRELOADER --- */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg-darkest);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-in-out), visibility 0.8s;
}

.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo { text-align: center; }

.preloader-major {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 4rem;
  color: var(--red);
  letter-spacing: 0.15em;
  animation: preloaderFade 1.5s ease infinite alternate;
}

.preloader-meat {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 4rem;
  color: var(--silver);
  letter-spacing: 0.15em;
  animation: preloaderFade 1.5s ease 0.2s infinite alternate;
}

.preloader-line {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--silver));
  margin: 0.8rem 0;
  animation: preloaderLine 1.5s ease infinite alternate;
}

.preloader-ltd {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-align: right;
}

@keyframes preloaderFade {
  0% { opacity: 0.4; } 100% { opacity: 1; }
}
@keyframes preloaderLine {
  0% { transform: scaleX(0.3); } 100% { transform: scaleX(1); }
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--silver));
  z-index: 150;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--red-glow);
}

/* --- NAVIGATION HEADER --- */
.nav-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 2rem 4rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  background: transparent;
}

.nav-header > * { pointer-events: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 101;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 32px; height: 1.5px;
  background: var(--text-light);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}

.nav-toggle:hover span:first-child { transform: translateX(4px); }
.nav-toggle:hover span:last-child { transform: translateX(-4px); }

/* --- NAV LOGO --- */
.nav-logo-link {
  display: block;
  z-index: 101;
  background: linear-gradient(145deg, rgba(50, 30, 30, 0.95) 0%, rgba(28, 16, 18, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 168, 78, 0.3);
  border-radius: 10px;
  padding: 12px 20px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo-link:hover {
  border-color: rgba(227, 27, 35, 0.5);
  box-shadow: 0 4px 25px rgba(227, 27, 35, 0.15);
}

.nav-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

/* Text-only nav brand for inner pages (no logo image) */
.nav-logo-text-only {
  display: flex !important;
  align-items: baseline;
  gap: 0;
  padding: 12px 20px !important;
  background: linear-gradient(145deg, rgba(50, 30, 30, 0.95) 0%, rgba(28, 16, 18, 0.95) 100%) !important;
}

.nav-text-major {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--red);
  letter-spacing: 0.1em;
}

.nav-text-meat {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--silver);
  letter-spacing: 0.1em;
}

.nav-text-ltd {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-left: 6px;
}

/* --- NAV OVERLAY --- */
.nav-overlay {
  position: fixed; inset: 0;
  background: var(--bg-darkest);
  z-index: 200;
  clip-path: circle(0% at 40px 40px);
  transition: clip-path 0.8s var(--ease-out);
}

.nav-overlay.active {
  clip-path: circle(150% at 40px 40px);
}

.nav-overlay-inner {
  padding: 10rem 8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-close {
  position: absolute;
  top: 2.5rem; left: 4rem;
  width: 44px; height: 44px;
  z-index: 201;
  cursor: pointer;
}

.nav-close span {
  display: block;
  width: 28px; height: 1.5px;
  background: var(--text-light);
  position: absolute;
  top: 50%; left: 50%;
}

.nav-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.nav-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.nav-overlay-links li {
  margin-bottom: 1rem;
  overflow: hidden;
}

.nav-overlay-links a {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
  transition: color 0.3s ease, transform 0.4s var(--ease-out);
  transform: translateY(100%);
}

.nav-overlay.active .nav-overlay-links a {
  transform: translateY(0);
}

.nav-overlay-links li:nth-child(1) a { transition-delay: 0.1s; }
.nav-overlay-links li:nth-child(2) a { transition-delay: 0.15s; }
.nav-overlay-links li:nth-child(3) a { transition-delay: 0.2s; }
.nav-overlay-links li:nth-child(4) a { transition-delay: 0.25s; }
.nav-overlay-links li:nth-child(5) a { transition-delay: 0.3s; }

.nav-overlay-links a:hover { color: var(--red); text-shadow: 0 0 30px var(--red-glow); }

.nav-num {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.nav-overlay-info {
  max-width: 24rem;
  text-align: right;
}

.nav-overlay-info p {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.nav-overlay-info a {
  font-size: 1.4rem;
  color: var(--silver);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.nav-overlay-info a:hover { border-color: var(--red); color: var(--red); }

/* --- FLOATING BADGE --- */
.floating-badge {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 90;
  width: 75px;
  height: 75px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(50, 30, 30, 0.95) 0%, rgba(28, 16, 18, 0.95) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  border: 1px solid rgba(200, 168, 78, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.floating-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(227, 27, 35, 0.2);
  border-color: var(--red);
}

.floating-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =============================================
   SECTION 1: HERO — Split pinned
   ============================================= */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: linear-gradient(160deg, #E31B23 0%, #B8151B 40%, #901010 75%, #5C0A0A 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  display: none;
}

.hero-left-inner {
  padding: 12rem 6rem 8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3rem;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-subtitle a {
  font-size: 1.7rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
  font-weight: 300;
}

.hero-subtitle .arrow-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  transition: transform 0.3s var(--ease-out);
}

.hero-subtitle a:hover .arrow-icon { transform: translateX(6px); }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 7.5vw, 10rem);
  line-height: 0.92;
  color: var(--text-light);
  letter-spacing: -0.03em;
}

.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}

.hero-headline.animated .word { transform: translateY(0); }
.hero-headline .line:nth-child(2) .word { transition-delay: 0.15s; }
.hero-headline .line:nth-child(3) .word { transition-delay: 0.3s; }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-wrapper {
  position: absolute;
  inset: 0;
  transform: scale(1.15);
  transition: transform 1.4s var(--ease-out);
}

.hero-img-wrapper.revealed { transform: scale(1); }

/* =============================================
   SECTIONS 2-5: PINNED SCROLL PANELS
   ============================================= */
.panel-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.panel-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.panel-bg img {
  transform: scale(1.15);
  will-change: transform;
}

.panel-bg::after {
  display: none;
}

.panel-content {
  position: relative;
  z-index: 3;
  padding: 10rem 8rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.panel-text {
  max-width: 38rem;
  font-size: 1.8rem;
  line-height: 1.6;
  color: rgba(255,253,250,0.85);
  letter-spacing: 0.03em;
  font-weight: 300;
}

.panel-heading { display: block; margin-top: auto; }

.panel-heading h3,
.panel-heading h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 8vw, 10rem);
  line-height: 0.92;
  color: var(--text-light);
  letter-spacing: -0.03em;
}

.panel-heading h3 span,
.panel-heading h2 span {
  display: block;
}

.heading-arrow {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  transition: transform 0.4s var(--ease-out);
}

.panel-heading:hover .heading-arrow { transform: translateX(12px); }

.feature-panel .panel-heading h2 {
  font-size: clamp(5rem, 9vw, 12rem);
}

/* =============================================
   SECTION 6: VIDEO / TESTIMONIAL QUOTE
   ============================================= */
.video-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-bg::after {
  display: none;
}

.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 4rem;
}

.video-play-btn {
  margin-bottom: 4rem;
  cursor: pointer;
  display: inline-block;
}

.play-circle {
  width: 80px; height: 80px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.08);
}

.video-play-btn:hover .play-circle {
  transform: scale(1.15);
  border-color: var(--red);
  background: rgba(227, 27, 35, 0.15);
}

.play-circle svg { margin-left: 3px; }

.video-quote {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 10rem);
  line-height: 1;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.video-quote span { display: block; }

.video-attribution {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- VIDEO MODAL --- */
.video-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.video-modal.active { opacity: 1; visibility: visible; }

.video-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(13, 7, 8, 0.6);
}

.video-modal-content {
  position: relative;
  width: 80vw;
  max-width: 1000px;
  z-index: 2;
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-out);
}

.video-modal.active .video-modal-content { transform: scale(1); }

.video-modal-close-btn {
  position: absolute;
  top: -4rem; right: 0;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s;
}

.video-modal-close-btn:hover { color: var(--red); }

.video-modal-player video {
  width: 100%;
  border-radius: 4px;
  background: #000;
}

/* =============================================
   SECTION 7: PRODUCT GRID
   ============================================= */
.stories-section {
  background: var(--bg-cream);
  padding: 12rem 8rem 6rem;
  color: var(--bg-dark);
}

.stories-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 6vw, 7rem);
  line-height: 1.05;
  margin-bottom: 6rem;
  letter-spacing: -0.02em;
  color: var(--bg-dark);
}

.stories-heading span { display: block; }

.stories-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
}

.story-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.story-card:nth-child(1),
.story-card:nth-child(3) { aspect-ratio: 16/10; }

.story-card:nth-child(2),
.story-card:nth-child(4) { aspect-ratio: 4/3; }

.story-card-img {
  position: absolute; inset: 0;
  overflow: hidden;
}

.story-card-img img {
  transition: transform 0.8s var(--ease-out);
}

.story-card:hover .story-card-img img {
  transform: scale(1.06);
}

.story-card::after {
  display: none;
}

.story-label {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--text-light);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.label-arrow {
  transition: transform 0.3s var(--ease-out);
}

a:hover .label-arrow,
button:hover .label-arrow {
  transform: translateX(6px);
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 5rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 6px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.see-all-link:hover {
  color: var(--red-dark);
  border-color: var(--red-dark);
}

/* =============================================
   SECTION 8: MAILING LIST / CONTACT CTA
   ============================================= */
.mailing-section {
  background: var(--bg-darker);
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--red), var(--gold), var(--silver), transparent) 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  padding: 12rem 8rem;
}

.mailing-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 5vw, 6rem);
  line-height: 1.05;
  color: var(--text-light);
  font-style: italic;
}

.mailing-heading span { display: block; }

.mailing-text {
  font-size: 1.8rem;
  color: rgba(255,253,250,0.7);
  line-height: 1.7;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
  font-weight: 300;
}

.mailing-form input[type="email"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,253,250,0.2);
  padding: 1.5rem 0;
  font-size: 1.8rem;
  color: var(--text-light);
  outline: none;
  font-family: var(--font-body);
  font-weight: 300;
  transition: border-color 0.4s var(--ease-out);
  cursor: pointer;
}

.mailing-form input[type="email"]::placeholder {
  color: rgba(255,253,250,0.3);
}

.mailing-form input[type="email"]:focus {
  border-bottom-color: var(--red);
}

.mailing-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.mailing-checkbox input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--red);
  width: 16px; height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.mailing-checkbox label {
  font-size: 1.3rem;
  color: rgba(255,253,250,0.5);
  line-height: 1.5;
}

.mailing-checkbox a {
  text-decoration: underline;
  color: var(--silver);
}

.subscribe-btn {
  margin-top: 3rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.subscribe-btn:hover { color: var(--red); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-darkest);
  color: var(--text-cream);
  padding: 0 8rem 5rem;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--red), var(--gold), var(--silver), transparent) 1;
}

.footer-top {
  padding: 6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-nav { display: flex; gap: 8rem; }

.footer-col h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col h2 a { color: var(--red); }

.footer-col ul li { margin-bottom: 0.8rem; }

.footer-col ul li a {
  font-size: 1.4rem;
  color: rgba(255,253,250,0.5);
  transition: color 0.3s ease;
  font-weight: 300;
  cursor: pointer;
}

.footer-col ul li a:hover { color: var(--text-light); }

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

.footer-social a {
  width: 20px; height: 20px;
  color: rgba(255,253,250,0.4);
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-social a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,253,250,0.06);
  padding-top: 4rem;
  margin-top: 2rem;
}

/* --- FOOTER LOGO --- */
.footer-logo {
  margin-bottom: 4rem;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: var(--text-light);
  margin-bottom: 3rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-legal ul { display: flex; gap: 2rem; }

.footer-legal ul li a {
  font-size: 1.3rem;
  color: var(--silver);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s, color 0.3s;
}

.footer-legal ul li a:hover { opacity: 1; color: var(--red); }

.footer-legal p {
  font-size: 1.3rem;
  color: rgba(192,192,192,0.5);
}

/* =============================================
   GSAP SCROLL ANIMATIONS
   ============================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(50px);
}

[data-animate].revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .cursor, .cursor-follower { display: none; }
  body, button, a, input { cursor: auto; }

  .nav-logo-img { height: 60px; }
  .nav-logo-link { padding: 10px 14px; }

  .hero-section { grid-template-columns: 1fr; height: auto; }
  .hero-left-inner { padding: 12rem 4rem 6rem; min-height: 60vh; }
  .hero-right { height: 50vh; position: relative; }
  .hero-img-wrapper { position: absolute; inset: 0; transform: none; }

  .panel-content { padding: 8rem 4rem 5rem; }

  .stories-section { padding: 8rem 4rem 4rem; }
  .stories-grid { grid-template-columns: 1fr 1fr; }

  .mailing-section { grid-template-columns: 1fr; padding: 8rem 4rem; gap: 4rem; }
  .site-footer { padding: 0 4rem 4rem; }
  .footer-top { flex-direction: column; gap: 4rem; }

  .nav-overlay-inner { padding: 8rem 4rem; }
  .nav-overlay-content { flex-direction: column; gap: 4rem; }
  .nav-overlay-info { text-align: left; }

  .nav-header { padding: 2rem 2.5rem; }

  .heading-arrow { width: 32px; height: 32px; }
  .video-modal-content { width: 92vw; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 640px) {
  html { font-size: 55%; }

  .hero-section { grid-template-columns: 1fr; height: auto; }
  .hero-left-inner { padding: 8rem 2.5rem 3rem; min-height: auto; }
  .hero-right { height: 45vh; }
  .hero-headline { font-size: clamp(3.5rem, 12vw, 6rem); }
  .hero-subtitle a { font-size: 1.5rem; }

  .panel-section { height: 85vh; min-height: 500px; }
  .panel-content { padding: 6rem 2.5rem 4rem; }
  .panel-heading h3, .panel-heading h2 { font-size: clamp(3.5rem, 12vw, 6rem); }
  .feature-panel .panel-heading h2 { font-size: clamp(3.5rem, 12vw, 6rem); }
  .panel-text { font-size: 1.6rem; max-width: 100%; }
  .heading-arrow { width: 28px; height: 28px; }

  .video-section { height: 70vh; min-height: 400px; }
  .video-quote { font-size: clamp(3.5rem, 10vw, 6rem); }
  .video-content { padding: 2.5rem; }

  .stories-section { padding: 6rem 2.5rem 3rem; }
  .stories-heading { font-size: clamp(3rem, 9vw, 5rem); margin-bottom: 3rem; }
  .stories-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-card:nth-child(n) { aspect-ratio: 16/10; }
  .story-label { font-size: 2rem; bottom: 2rem; left: 2rem; }

  .mailing-section { padding: 6rem 2.5rem; gap: 3rem; }
  .mailing-heading { font-size: clamp(3rem, 9vw, 5rem); }
  .mailing-text { font-size: 1.6rem; }

  .site-footer { padding: 0 2.5rem 3rem; }
  .footer-nav { flex-direction: column; gap: 3rem; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .footer-tagline { font-size: clamp(2.2rem, 7vw, 3.5rem); }

  .nav-overlay-links a { font-size: 3.2rem; }
  .nav-overlay-inner { padding: 8rem 2.5rem; }

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

  .video-modal-content { width: 95vw; }
  .video-modal-close-btn { top: -3rem; }
}
