/* ======================================
   DJ FORRY 2026 BRAND KIT — Design Tokens
   Palette: Blue/Green gradient system
   Fonts: Horndon (H1), Vonder Clean (H2/H4), Hesland (H3), 
          Ridgeway (H5), Quicksand (H6/H7/Body)
   ====================================== */

/* CDNfonts — Custom Brand Fonts */
@import url('https://fonts.cdnfonts.com/css/horndond');
@import url('https://fonts.cdnfonts.com/css/hesland');
@import url('https://fonts.cdnfonts.com/css/vonder-clean');
@import url('https://fonts.cdnfonts.com/css/ridgeway');

:root {
  /* ── Type Scale ── */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* ── Spacing ── */
  --space-1:  0.25rem;  --space-2:  0.5rem;   --space-3:  0.75rem;
  --space-4:  1rem;     --space-5:  1.25rem;   --space-6:  1.5rem;
  --space-8:  2rem;     --space-10: 2.5rem;    --space-12: 3rem;
  --space-16: 4rem;     --space-20: 5rem;      --space-24: 6rem;
  --space-32: 8rem;

  /* ── Brand Fonts ── */
  --font-h1:      'HorndonD', 'Georgia', serif;            /* Horndon 50pt */
  --font-h2:      'Vonder Clean', 'Georgia', serif;        /* Vonder Clean 38pt */
  --font-h3:      'Hesland', 'Georgia', serif;             /* Hesland 34pt */
  --font-h4:      'Vonder Clean', 'Georgia', serif;        /* Vonder Clean 26pt */
  --font-h5:      'Ridgeway', 'Georgia', serif;            /* Ridgeway 23pt */
  --font-body:    'Quicksand', 'Helvetica Neue', sans-serif;
  --font-display: 'HorndonD', 'Georgia', serif;

  /* ── Radius ── */
  --radius-sm: 0.375rem;  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;   --radius-xl: 1rem;
  --radius-full: 9999px;

  /* ── Transitions ── */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Content widths ── */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ═══════════════ LIGHT MODE ═══════════════ */
:root, [data-theme="light"] {
  /* Brand Primary Palette */
  --color-royal:          #1554AA;
  --color-royal-hover:    #114490;
  --color-royal-active:   #0D3476;
  --color-royal-light:    #D9DFF7;

  --color-lime:           #EAFFA3;
  --color-teal:           #3A65D6;
  --color-mint:           #D4E3BB;
  --color-lavender:       #D9DFF7;
  --color-sage:           #95AC92;
  --color-deep-blue:      #143F87;
  --color-cream:          #FFFAC4;

  /* Secondary */
  --color-mauve:          #9C8AB6;
  --color-lilac:          #BEB1DF;
  --color-rose:           #C08CA1;
  --color-pink:           #DFB1C8;
  --color-olive:          #B1C08D;

  /* Gradient stops */
  --color-grad-1:         #1554A9;
  --color-grad-2:         #143F87;
  --color-grad-3:         #95AC92;

  /* Surfaces */
  --color-bg:             #F8F9FC;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F0F2F8;
  --color-surface-offset: #E8EAF2;
  --color-divider:        #D9DFF7;
  --color-border:         #C8CEE0;

  /* Text */
  --color-text:           #1A1F36;
  --color-text-muted:     #4A5068;
  --color-text-faint:     #7A809A;
  --color-text-inverse:   #FFFFFF;

  /* Primary = Royal Blue */
  --color-primary:        #1554AA;
  --color-primary-hover:  #114490;
  --color-primary-active: #0D3476;
  --color-primary-light:  #D9DFF7;

  /* Accent = Lime */
  --color-accent:         #EAFFA3;
  --color-accent-hover:   #D8F080;
  --color-accent-active:  #C5E060;
  --color-accent-text:    #1A1F36;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(21, 84, 170, 0.06);
  --shadow-md: 0 4px 16px rgba(21, 84, 170, 0.1);
  --shadow-lg: 0 12px 40px rgba(21, 84, 170, 0.14);

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #1554AA 0%, #3A65D6 50%, #95AC92 100%);
  --gradient-hero:  linear-gradient(135deg, #143F87 0%, #1554AA 40%, #3A65D6 80%, #95AC92 100%);
  --gradient-soft:  linear-gradient(135deg, #D9DFF7 0%, #D4E3BB 50%, #FFFAC4 100%);
  --gradient-card:  linear-gradient(180deg, #F8F9FC 0%, #D9DFF7 100%);
}

/* ═══════════════ DARK MODE ═══════════════ */
[data-theme="dark"] {
  --color-bg:             #0E1525;
  --color-surface:        #151D30;
  --color-surface-2:      #1C2640;
  --color-surface-offset: #243050;
  --color-divider:        #2A3558;
  --color-border:         #354068;

  --color-text:           #E4E8F4;
  --color-text-muted:     #8A92B0;
  --color-text-faint:     #5A6280;
  --color-text-inverse:   #0E1525;

  --color-primary:        #5A8AE8;
  --color-primary-hover:  #4A7AD8;
  --color-primary-active: #3A6AC8;
  --color-primary-light:  #1C2640;

  --color-accent:         #EAFFA3;
  --color-accent-hover:   #D8F080;
  --color-accent-active:  #C5E060;
  --color-accent-text:    #0E1525;

  --color-royal:          #5A8AE8;
  --color-lime:           #EAFFA3;
  --color-cream:          #3A3520;
  --color-sage:           #6A8068;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);

  --gradient-brand: linear-gradient(135deg, #1C2640 0%, #243050 50%, #2A3A40 100%);
  --gradient-hero:  linear-gradient(135deg, #0E1525 0%, #1C2640 50%, #1A2A38 100%);
  --gradient-soft:  linear-gradient(135deg, #151D30 0%, #1C2640 50%, #1A2520 100%);
  --gradient-card:  linear-gradient(180deg, #151D30 0%, #1C2640 100%);
}

/* ═══════════════ BASE LAYOUT ═══════════════ */

body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

section { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }

/* ═══════════════ TYPOGRAPHY HIERARCHY ═══════════════ */

.h1, h1 { font-family: var(--font-h1); font-weight: 400; letter-spacing: 0; }
.h2, h2 { font-family: var(--font-h2); font-weight: 400; letter-spacing: 0; }
.h3      { font-family: var(--font-h3); font-weight: 400; letter-spacing: 0; }
.h4      { font-family: var(--font-h4); font-weight: 400; letter-spacing: 0.085em; }
.h5      { font-family: var(--font-h5); font-weight: 400; letter-spacing: 0; }
.h6      { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.45em; font-size: var(--text-xs); }
.h7      { font-family: var(--font-body); font-weight: 400; text-transform: uppercase; letter-spacing: 0.262em; font-size: var(--text-xs); }

/* ═══════════════ TOP BAR ═══════════════ */

.top-bar {
  background: var(--color-deep-blue);
  color: #fff;
  padding: var(--space-2) 0;
  font-size: var(--text-xs);
}

.top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-2);
}

.top-bar a { color: #fff; text-decoration: none; opacity: 0.9; }
.top-bar a:hover { opacity: 1; }

.top-bar__contact { display: flex; gap: var(--space-6); align-items: center; }

@media (max-width: 600px) {
  .top-bar .container { justify-content: center; text-align: center; }
  .top-bar__contact { flex-direction: column; gap: var(--space-2); }
}

/* ═══════════════ HEADER ═══════════════ */

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 249, 252, 0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}

[data-theme="dark"] .header { background: rgba(14, 21, 37, 0.96); }

.header .container {
  display: flex; justify-content: space-between; align-items: center; height: 76px;
}

.header__logo { display: flex; align-items: center; text-decoration: none; }
.header__logo img { height: 56px; width: auto; object-fit: contain; }

.header__nav { display: flex; align-items: center; gap: var(--space-8); }

.header__nav a {
  color: var(--color-text); text-decoration: none;
  font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; padding-bottom: 2px;
}

.header__nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--color-royal);
  transition: width 0.3s ease;
}

.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: var(--space-4); }

.theme-toggle {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full); color: var(--color-text);
}
.theme-toggle:hover { background: var(--color-surface-2); }

.mobile-toggle {
  display: none; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); transition: all 0.3s ease; }

.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--color-bg); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: var(--space-8);
}
.mobile-nav.active { display: flex; }
.mobile-nav a { color: var(--color-text); text-decoration: none; font-family: var(--font-h2); font-size: var(--text-xl); }
.mobile-nav__close {
  position: absolute; top: var(--space-6); right: var(--space-6);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--color-text);
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .mobile-toggle { display: flex; }
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm); font-weight: 700;
  text-decoration: none; letter-spacing: 0.06em;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s ease; text-transform: uppercase;
}

.btn--primary {
  background: var(--color-royal); color: #fff;
  border-color: var(--color-royal);
}
.btn--primary:hover {
  background: var(--color-royal-hover); border-color: var(--color-royal-hover);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--color-lime); color: var(--color-deep-blue);
  border-color: var(--color-lime); font-weight: 700;
}
.btn--accent:hover {
  background: var(--color-accent-hover); border-color: var(--color-accent-hover);
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ═══════════════ SECTION HEADINGS ═══════════════ */

.section-label {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xs); letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--color-royal);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-h2);
  font-size: var(--text-2xl); color: var(--color-text);
  margin-bottom: var(--space-4); font-weight: 400; line-height: 1.1;
}

.section-desc {
  font-size: var(--text-base); color: var(--color-text-muted);
  max-width: 600px; line-height: 1.7;
}

.section-header { margin-bottom: clamp(var(--space-10), 4vw, var(--space-16)); }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin-inline: auto; }

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════ FOOTER ═══════════════ */

.footer {
  background: var(--color-deep-blue); color: #fff;
  padding-top: clamp(var(--space-12), 6vw, var(--space-20));
  padding-bottom: var(--space-8);
}

.footer__top {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-12); padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer__logo-wrap { text-align: center; }
.footer__logo-wrap img { height: 72px; margin-inline: auto; margin-bottom: var(--space-3); }

.footer__logo-tagline {
  font-family: var(--font-h3); font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-8); margin-bottom: var(--space-12);
}

.footer__brand p {
  font-size: var(--text-sm); color: rgba(255,255,255,0.7);
  max-width: 300px; line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--font-body); font-size: var(--text-sm);
  font-weight: 700; margin-bottom: var(--space-4);
  color: var(--color-lime); text-transform: uppercase; letter-spacing: 0.08em;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: var(--space-2); }
.footer__col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: var(--text-sm); transition: color 0.2s ease; }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-6);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-4);
  font-size: var(--text-xs); color: rgba(255,255,255,0.55);
}
.footer__bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer__bottom a:hover { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ═══════════════ HERO (HOMEPAGE) ═══════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 0;
  background: var(--color-deep-blue);
}
.hero__bg, .hero__video-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__bg img, .hero__video-wrap iframe, .hero__video-wrap video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__video-wrap iframe {
  /* YouTube background: scale so no letterboxing */
  min-width: 100%; min-height: 100%;
  width: 177.77vh; height: 56.25vw;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; border: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(20,63,135,0.88) 0%,
    rgba(21,84,170,0.72) 50%,
    rgba(58,101,214,0.4) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 760px;
  padding-block: var(--space-24);
}
.hero__badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(234,255,163,0.18);
  border: 1px solid rgba(234,255,163,0.4);
  border-radius: var(--radius-full);
  color: var(--color-lime);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.262em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero__title {
  font-family: var(--font-h1);
  font-size: var(--text-3xl);
  color: #fff; font-weight: 400;
  line-height: 1.05;
  margin-bottom: var(--space-4);
  letter-spacing: 0;
}
.hero__subtitle {
  font-family: var(--font-h3);
  font-size: var(--text-xl);
  color: var(--color-lime);
  margin-bottom: var(--space-6);
  font-weight: 400;
}
.hero__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.hero__cta {
  display: flex; gap: var(--space-4); flex-wrap: wrap;
}

/* ═══════════════ STATS BAR ═══════════════ */
.stats {
  background: var(--gradient-hero);
  color: #fff;
  padding-block: var(--space-16);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
.stat__num {
  font-family: var(--font-h1);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--color-lime);
  line-height: 1; margin-bottom: var(--space-2);
  font-weight: 400;
}
.stat__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.262em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
@media (max-width: 768px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); } }

/* ═══════════════ ABOUT SECTION ═══════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}
.about-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}
.about-split__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-split__content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__media { aspect-ratio: 16/10; max-width: 600px; margin-inline: auto; }
}

/* Quote */
.founders-quote {
  margin: var(--space-8) 0;
  padding: var(--space-6) var(--space-8);
  background: var(--color-surface-2);
  border-left: 4px solid var(--color-lime);
  border-radius: var(--radius-md);
}
.founders-quote p {
  font-family: var(--font-h3);
  font-size: var(--text-lg);
  color: var(--color-text);
  line-height: 1.5;
  font-style: italic;
}
.founders-quote__attr {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-royal);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Feature cards (about) */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.feature-card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--color-primary-light); color: var(--color-royal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.feature-card h4 {
  font-family: var(--font-h4);
  font-size: var(--text-lg); margin-bottom: var(--space-2);
  letter-spacing: 0.085em;
}
.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
@media (max-width: 768px) { .features { grid-template-columns: 1fr; } }

/* Core Values */
.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}
.value-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-full);
  background: var(--gradient-brand);
  color: #fff;
  margin: 0 auto var(--space-4);
  display: flex; align-items: center; justify-content: center;
}
.value-card h4 {
  font-family: var(--font-h5);
  font-size: var(--text-base);
  color: var(--color-royal);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) { .values { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 500px) { .values { grid-template-columns: 1fr 1fr; } }

/* ═══════════════ PRODUCTS GRID ═══════════════ */
.products-section { background: var(--gradient-soft); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card__img {
  aspect-ratio: 16/10; overflow: hidden; background: var(--color-surface-2);
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }
.product-card__tag {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.262em;
  color: var(--color-royal);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.product-card h3 {
  font-family: var(--font-h3);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  flex: 1;
}
.product-card__varieties {
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}
.product-card__varieties h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.262em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.product-card__chips {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
}
.chip {
  padding: var(--space-1) var(--space-3);
  background: var(--color-primary-light);
  color: var(--color-royal);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}
@media (max-width: 800px) { .products-grid { grid-template-columns: 1fr; } }

/* ═══════════════ PAGE HERO (inner pages) ═══════════════ */
.page-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-h1);
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: var(--text-lg);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.6;
}
.page-hero .section-label { color: var(--color-lime); }

/* ═══════════════ SUSTAINABILITY ═══════════════ */
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.sustain-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sustain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sustain-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: var(--gradient-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.sustain-card h3 {
  font-family: var(--font-h4);
  font-size: var(--text-lg);
  letter-spacing: 0.085em;
  margin-bottom: var(--space-2);
}
.sustain-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
@media (max-width: 768px) { .sustain-grid { grid-template-columns: 1fr; } }

.partnership-box {
  margin-top: var(--space-12);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  text-align: center;
}
.partnership-box h3 {
  font-family: var(--font-h2);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-deep-blue);
}
.partnership-box p {
  font-size: var(--text-base);
  color: var(--color-text);
  max-width: 720px; margin-inline: auto;
  line-height: 1.8;
}

/* ═══════════════ GALLERY ═══════════════ */
.gallery-section { background: var(--gradient-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  grid-auto-rows: 280px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item--wide { grid-column: span 1; }
}

/* ═══════════════ CONTACT ═══════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
}
.contact-info__item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.contact-info__icon {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-royal);
  display: flex; align-items: center; justify-content: center;
}
.contact-info__body h4 {
  font-family: var(--font-h5);
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
  color: var(--color-royal);
}
.contact-info__body p, .contact-info__body a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  line-height: 1.5;
}
.contact-info__body a:hover { color: var(--color-royal); }

.contact-form {
  background: var(--color-surface);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-divider);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-group { margin-bottom: var(--space-5); }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.262em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-royal);
  box-shadow: 0 0 0 3px rgba(21, 84, 170, 0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════ CTA SECTION (shared) ═══════════════ */
.cta-section {
  background: var(--gradient-hero);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  font-family: var(--font-h2);
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.cta-section p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

/* ═══════════════ HUNTER PAGE SPECIFIC ═══════════════ */
.hunter-hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-block: 0;
  background: var(--color-deep-blue);
}
.hunter-hero__bg { position: absolute; inset: 0; z-index: 0; }
.hunter-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hunter-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(20,63,135,0.88) 0%,
    rgba(21,84,170,0.72) 50%,
    rgba(58,101,214,0.4) 100%);
}
.hunter-hero__content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding-block: var(--space-24);
}
.hunter-hero__name {
  font-family: var(--font-h1); font-weight: 400;
  font-size: var(--text-3xl);
  color: #fff; line-height: 1.08;
  margin-bottom: var(--space-3);
}
.hunter-hero__role {
  font-family: var(--font-h3);
  font-size: var(--text-xl);
  color: var(--color-lime);
  margin-bottom: var(--space-6);
  font-weight: 400;
}
.hunter-hero__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.video-section { background: var(--color-bg); }
.video-section__wrap { max-width: 900px; margin-inline: auto; }
.video-player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: #000;
}
.video-player iframe, .video-player video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; inset: 0; border: 0;
}

.why-partner__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6);
}
.partner-card {
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.partner-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: var(--color-primary-light); color: var(--color-royal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.partner-card h4 {
  font-family: var(--font-h4); font-size: var(--text-lg);
  letter-spacing: 0.085em; margin-bottom: var(--space-2);
}
.partner-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
@media (max-width: 768px) { .why-partner__grid { grid-template-columns: 1fr; } }

.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.market-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  border-top: 4px solid var(--color-lime);
}
.market-card__flag { font-size: 2rem; margin-bottom: var(--space-3); }
.market-card h4 {
  font-family: var(--font-h4); font-size: var(--text-lg);
  letter-spacing: 0.085em; margin-bottom: var(--space-4);
}
.market-stat {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: var(--space-2) 0; border-bottom: 1px solid var(--color-divider);
}
.market-stat:last-of-type { border-bottom: none; }
.market-stat__label { font-size: var(--text-sm); color: var(--color-text-muted); }
.market-stat__value {
  font-family: var(--font-h5); font-size: var(--text-lg);
  font-weight: 400; color: var(--color-royal);
}
.market-stat__value--up { color: #2E7D32; }
.market-stat__value--down { color: #C62828; }
.market-card__note {
  margin-top: var(--space-4); font-size: var(--text-xs);
  color: var(--color-text-muted); line-height: 1.5; font-style: italic;
}
@media (max-width: 768px) { .market-grid { grid-template-columns: 1fr; } }

.reach-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6);
  margin-top: var(--space-8);
}
.reach-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
}
.reach-card h4 {
  font-family: var(--font-h4); font-size: var(--text-lg);
  letter-spacing: 0.085em; color: var(--color-royal);
  margin-bottom: var(--space-4);
}
.reach-card__tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.reach-tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--color-primary-light); color: var(--color-royal);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600;
}
@media (max-width: 768px) { .reach-grid { grid-template-columns: 1fr; } }

.approach__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.approach-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  text-align: center;
}
.approach-card__num {
  width: 48px; height: 48px; border-radius: var(--radius-full);
  background: var(--color-lime); color: var(--color-deep-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h1); font-size: var(--text-lg);
  margin: 0 auto var(--space-4);
}
.approach-card h4 {
  font-family: var(--font-h4); font-size: var(--text-lg);
  letter-spacing: 0.085em; margin-bottom: var(--space-2);
}
.approach-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
@media (max-width: 768px) { .approach__grid { grid-template-columns: 1fr; } }

/* Soft background section helper */
.bg-soft { background: var(--gradient-soft); }
.bg-surface { background: var(--color-bg); }

/* Hero YouTube video background */
.hero__bg--video { overflow: hidden; }
.hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__bg--video iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none; border: 0; z-index: 1;
}

/* ═══════════════ HOMEPAGE HERO — Larger Type & Buttons ═══════════════ */
.hero__content {
  max-width: 880px;
}

.hero__title {
  font-size: clamp(3rem, 1.5rem + 5vw, 6.5rem);
  line-height: 1.02;
  margin-bottom: var(--space-5);
}

.hero__subtitle {
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.75rem);
  margin-bottom: var(--space-6);
}

.hero__desc {
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  max-width: 620px;
  margin-bottom: var(--space-10);
}

.hero__badge {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
  margin-bottom: var(--space-6);
}

.hero__cta { gap: var(--space-5); }

.hero__cta .btn {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
}

/* Hero overlay — reduce opacity so YouTube video shows through */
.hero .hero__overlay {
  background: linear-gradient(135deg,
    rgba(20,63,135,0.55) 0%,
    rgba(21,84,170,0.45) 50%,
    rgba(58,101,214,0.30) 100%);
  z-index: 2;
}

/* Ensure iframe sits above poster but below overlay */
.hero__bg--video iframe { z-index: 1; }
.hero__poster { z-index: 0; }
.hero__content { z-index: 3; }
