/* ================================================
   NatureTech — Industrial Nature + Modern Engineering
   Design System v5
   ================================================ */

:root {
  /* Brand */
  --forest:        #0F3D2E;
  --forest-deep:   #082C20;
  --forest-mid:    #1B5340;
  --forest-soft:   #2D6A53;
  --sage:          #D4DCC8;
  --sage-light:    #E8EDE4;
  --teal:          #14B8A6;
  --teal-bright:   #2DD4BF;
  --teal-deep:     #0F766E;
  --lime:          #BEF264;
  --lime-bright:   #A3E635;

  /* Neutrals */
  --paper:         #FAFAF7;
  --paper-warm:    #F5F1E8;
  --bone:          #EFE9DA;
  --grey-50:       #F8FAFC;
  --grey-100:      #F1F5F4;
  --grey-200:      #E2E8E5;
  --grey-300:      #CBD5D0;
  --grey-400:      #94A3A0;
  --grey-500:      #64748B;
  --grey-600:      #475569;
  --grey-700:      #334155;
  --grey-800:      #1F2937;
  --grey-900:      #0F172A;
  --ink:           #0A0F0D;
  --white:         #FFFFFF;

  /* Functional */
  --success:       #16A34A;
  --warning:       #EA580C;
  --error:         #DC2626;

  /* Spacing scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 61, 46, .06);
  --shadow-md: 0 8px 24px -8px rgba(15, 61, 46, .12), 0 2px 6px rgba(15, 61, 46, .04);
  --shadow-lg: 0 24px 48px -12px rgba(15, 61, 46, .18), 0 6px 12px rgba(15, 61, 46, .06);
  --shadow-xl: 0 40px 80px -20px rgba(8, 44, 32, .25);

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --container:    1320px;
  --header-h:     88px;
}

/* ============== RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-800);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--forest-deep);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.125rem); }
h4 { font-size: 1.375rem; line-height: 1.2; }

p { color: var(--grey-700); }
strong { color: var(--forest-deep); font-weight: 600; }

::selection { background: var(--lime); color: var(--forest-deep); }

/* ============== LAYOUT HELPERS ============== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.container-lg { max-width: 1480px; margin: 0 auto; padding: 0 32px; }

.section { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }

.row { display: flex; flex-wrap: wrap; gap: 32px; }
.col { flex: 1; min-width: 0; }

.divider { height: 1px; background: var(--grey-200); }

/* ============== UTILS ============== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-mid);
}
.eyebrow::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--forest-mid);
}
.eyebrow.light { color: var(--lime); }
.eyebrow.light::before { background: var(--lime); }
.eyebrow.center { justify-content: center; }

.text-mute { color: var(--grey-500); }
.text-light { color: var(--paper); }
.bg-forest { background: var(--forest-deep); color: var(--paper); }
.bg-sage { background: var(--sage-light); }
.bg-paper { background: var(--paper); }
.bg-warm { background: var(--paper-warm); }

.lead { font-size: 1.25rem; line-height: 1.55; color: var(--grey-600); max-width: 56ch; }

.serif { font-family: var(--font-display); }
.italic { font-style: italic; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: var(--r-full);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--forest-deep); color: var(--paper); }
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-lime { background: var(--lime-bright); color: var(--forest-deep); }
.btn-lime:hover { background: var(--lime); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--forest-deep); border-color: var(--forest-deep); }
.btn-ghost:hover { background: var(--forest-deep); color: var(--paper); }

.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(250,250,247,.3); }
.btn-ghost-light:hover { background: var(--paper); color: var(--forest-deep); border-color: var(--paper); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 20px 34px; font-size: 15px; }

.btn-icon {
  width: 44px; height: 44px; padding: 0;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--paper);
}
.btn-icon:hover { background: var(--forest-mid); }

/* ============== HEADER ============== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--grey-200);
}
.header-top {
  background: var(--forest-deep); color: var(--paper);
  font-size: 12px; letter-spacing: 0.04em;
}
.header-top-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; gap: 24px;
}
.header-top-row .pings { display: flex; gap: 20px; align-items: center; }
.header-top-row .ping { display: inline-flex; align-items: center; gap: 8px; color: rgba(250,250,247,.85); }
.header-top-row .ping svg { width: 14px; height: 14px; opacity: .8; }
.header-top-row .socials { display: flex; gap: 14px; }
.header-top-row .socials a { color: rgba(250,250,247,.7); }
.header-top-row .socials a:hover { color: var(--lime); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; color: var(--forest-deep); }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--forest-deep);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--lime);
  position: relative; overflow: hidden;
}
.logo-mark::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent 49%, rgba(190, 242, 100, .25) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(190, 242, 100, .25) 50%, transparent 51%);
  background-size: 8px 8px;
  opacity: .5;
}
.logo-mark svg { width: 24px; height: 24px; position: relative; }
.logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forest-soft);
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  display: inline-block; padding: 10px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--grey-800);
  border-radius: var(--r-full);
  transition: all .2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--forest-deep); background: var(--sage-light); }
.nav-links a.active { background: var(--forest-deep); color: var(--paper); }
.nav-links .has-dropdown::after {
  content: '▾'; font-size: 9px; margin-left: 6px; opacity: .5;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
  z-index: 50;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--grey-200);
  border-top: 1px solid var(--grey-200);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .25s ease, transform .25s ease, visibility 0s;
}
.dropdown-menu a {
  display: block !important;
  padding: 14px 16px !important;
  border-radius: var(--r-md) !important;
  font-size: 14px;
  color: var(--grey-800);
}
.dropdown-menu a:hover { background: var(--sage-light) !important; color: var(--forest-deep) !important; }
.dropdown-menu a strong { display: block; font-weight: 600; color: var(--forest-deep); font-size: 14px; margin-bottom: 2px; }
.dropdown-menu a small { display: block; font-size: 12px; color: var(--grey-500); font-weight: 400; line-height: 1.4; }
.dropdown-menu .divider { height: 1px; background: var(--grey-200); margin: 8px 4px; }
.dropdown-menu a.dd-overview strong { color: var(--forest-mid); }
.dropdown-menu a.dd-overview { background: var(--sage-light) !important; }
.dropdown-menu a.dd-overview:hover { background: var(--sage) !important; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, #154933 0%, transparent 60%),
    linear-gradient(180deg, #0a2c1d 0%, var(--forest-deep) 100%);
  color: var(--paper);
  overflow: hidden;
  padding: 56px 0 120px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(190,242,100,.04) 100%),
    linear-gradient(0deg, transparent 0, transparent calc(100% - 1px), rgba(190,242,100,.04) 100%);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  top: -120px; right: 10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(190, 242, 100, .22), transparent 70%);
}
.hero-orb-2 {
  bottom: -100px; left: 5%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(20, 184, 166, .22), transparent 70%);
}
.hero-inner { position: relative; z-index: 2; }

/* Top ribbon */
.hero-ribbon {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 22px;
  background: rgba(250, 250, 247, .04);
  border: 1px solid rgba(250, 250, 247, .1);
  border-radius: var(--r-full);
  margin-bottom: 64px;
  width: fit-content;
  max-width: 100%;
  backdrop-filter: blur(8px);
}
.hero-ribbon-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--paper);
}
.hero-ribbon-pill .dot {
  width: 8px; height: 8px; background: var(--lime); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(190, 242, 100, .25);
  animation: pulse 2s ease-in-out infinite;
}
.hero-ribbon-divider { width: 1px; height: 14px; background: rgba(250,250,247,.18); }
.hero-ribbon-tags {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: rgba(250,250,247,.6);
  letter-spacing: 0.02em;
}
.hero-ribbon-tags span:not([class]) { color: rgba(250,250,247,.85); font-weight: 500; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start;
}
.hero h1 {
  color: var(--paper);
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 80;
  color: var(--lime);
}
.hero p.lead { color: rgba(250,250,247,.78); margin-top: 32px; font-size: 1.25rem; }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(250,250,247,.12);
  margin-bottom: 32px;
}
.hero-meta .item { padding: 4px 0; }
.hero-meta .item .n {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 400;
  color: var(--lime); line-height: 1;
  display: block;
}
.hero-meta .item .l {
  display: block; margin-top: 8px;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,247,.65);
}

.hero-actions { margin-top: 40px; display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

.hero-play {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--paper);
  padding: 4px;
  transition: opacity .25s ease;
}
.hero-play:hover { opacity: .85; }
.hero-play-icon {
  width: 48px; height: 48px;
  background: rgba(250, 250, 247, .08);
  border: 1px solid rgba(190, 242, 100, .3);
  color: var(--lime);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  padding-left: 3px;
  transition: all .25s ease;
}
.hero-play:hover .hero-play-icon { background: var(--lime); color: var(--forest-deep); transform: scale(1.05); }
.hero-play > span:last-child {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 14px; font-weight: 600;
}
.hero-play > span:last-child small {
  font-size: 11.5px; font-weight: 400;
  color: rgba(250,250,247,.55); letter-spacing: 0.04em;
}

/* Trust strip */
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 250, 247, .1);
}
.hero-trust-avatars {
  display: inline-flex;
  --avatar-overlap: -10px;
}
.hero-trust-avatars .ta {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 11px; font-weight: 700;
  margin-left: var(--avatar-overlap);
  border: 2px solid var(--forest-deep);
  font-family: var(--font-sans);
}
.hero-trust-avatars .ta:first-child { margin-left: 0; }
.hero-trust-text { display: flex; flex-direction: column; }
.hero-trust-text strong {
  font-size: 13.5px;
  color: var(--paper);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero-trust-text small {
  font-size: 11.5px;
  color: rgba(250,250,247,.55);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.hero-side {
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-card {
  background: rgba(250, 250, 247, .06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(250,250,247,.12);
  border-radius: var(--r-lg);
  padding: 24px;
  color: var(--paper);
}
.hero-card h4 { color: var(--lime); font-family: var(--font-sans); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-card p { color: rgba(250,250,247,.78); margin-top: 8px; font-size: 14px; }

/* Hero visual (image + floating overlays) */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--forest-mid);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(250,250,247,.06);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
}
.hero-visual-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,44,32,.2) 0%, transparent 30%, transparent 50%, rgba(8,44,32,.9) 100%),
    linear-gradient(45deg, rgba(15,61,46,.25), transparent 60%);
  pointer-events: none;
}

/* Product chips overlay */
.hero-chips {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  z-index: 2;
}
.hero-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px 8px 8px;
  background: rgba(8, 44, 32, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(250, 250, 247, .12);
  border-radius: var(--r-md);
  color: var(--paper);
  transition: all .25s ease;
}
.hero-chip:hover {
  background: rgba(15, 61, 46, .85);
  border-color: rgba(190, 242, 100, .35);
  transform: translateY(-2px);
}
.hero-chip-thumb {
  width: 36px; height: 36px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(250,250,247,.15);
}
.hero-chip-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.hero-chip-text small {
  font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(190, 242, 100, .8);
  font-weight: 600;
}
.hero-chip-text strong {
  font-size: 13px; color: var(--paper);
  font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Live capacity card foot */
.hero-float-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.hero-float-foot a {
  color: var(--lime);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.hero-float-foot a:hover { color: var(--lime-bright); }

/* Hero stat strip (moved below image) */
.hero-stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(250, 250, 247, .04);
  border: 1px solid rgba(250, 250, 247, .1);
  border-radius: var(--r-lg);
  padding: 18px 14px;
  backdrop-filter: blur(8px);
  margin-top: 18px;
}
.hero-stat-strip > div {
  text-align: center;
  border-right: 1px solid rgba(250,250,247,.1);
  padding: 0 8px;
}
.hero-stat-strip > div:last-child { border-right: 0; }
.hero-stat-strip .n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-strip .n small {
  font-size: .65em;
  vertical-align: super;
  margin-left: 1px;
  opacity: .8;
}
.hero-stat-strip .l {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,247,.6);
  margin-top: 6px;
}
.hero-visual-tag {
  position: absolute; top: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(8, 44, 32, .55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(190, 242, 100, .35);
  border-radius: var(--r-full);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  z-index: 2;
}
.hero-visual-tag .dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(190, 242, 100, .25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(190, 242, 100, .25); }
  50%      { box-shadow: 0 0 0 10px rgba(190, 242, 100, 0); }
}

.hero-float-card {
  position: absolute; top: 76px; right: 20px;
  width: 230px;
  background: linear-gradient(155deg, rgba(8, 44, 32, .88), rgba(15, 61, 46, .82));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(190, 242, 100, .15);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  color: var(--paper);
  z-index: 3;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,.5);
}
.hero-float-card .kv {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.hero-float-card .k {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,247,.6);
}
.hero-float-card .v {
  font-family: var(--font-display);
  font-size: 1.625rem;
  color: var(--lime);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.hero-float-card .bar {
  height: 4px;
  background: rgba(250,250,247,.1);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 12px;
}
.hero-float-card .bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--teal-bright));
  border-radius: var(--r-full);
}
.hero-float-card p {
  font-size: 12.5px;
  color: rgba(250,250,247,.7);
  line-height: 1.45;
}

.hero-visual-stats {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(8, 44, 32, .55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(250,250,247,.12);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  z-index: 2;
}
.hero-visual-stats > div {
  text-align: center;
  border-right: 1px solid rgba(250,250,247,.1);
  padding: 0 8px;
}
.hero-visual-stats > div:last-child { border-right: 0; }
.hero-visual-stats .n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-visual-stats .n small {
  font-size: .85rem;
  vertical-align: super;
  margin-left: 1px;
}
.hero-visual-stats .l {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,247,.6);
  margin-top: 6px;
}

/* Page hero (smaller) */
.page-hero {
  position: relative;
  background: var(--forest-deep);
  color: var(--paper);
  padding: 96px 0 80px;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(190, 242, 100, .1) 0%, transparent 35%),
    radial-gradient(circle at 90% 70%, rgba(20, 184, 166, .12) 0%, transparent 38%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(190,242,100,.04) 100%),
    linear-gradient(0deg, transparent 0, transparent calc(100% - 1px), rgba(190,242,100,.04) 100%);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 880px; }
.page-hero h1 {
  color: var(--paper);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  margin-top: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--lime); }
.page-hero p.lead { color: rgba(250,250,247,.78); margin-top: 24px; max-width: 60ch; }

.crumbs {
  display: flex; gap: 8px;
  font-size: 13px; color: rgba(250,250,247,.6);
  margin-bottom: 8px;
}
.crumbs a:hover { color: var(--lime); }
.crumbs span { color: rgba(250,250,247,.35); }

/* ============== TRIO 33/33/33 PRODUCT SECTION ============== */
.trio { padding: var(--space-3xl) 0; background: var(--paper); }
.trio-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.trio-head h2 { max-width: 18ch; }
.trio-head .lead { max-width: 44ch; }

.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trio-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  position: relative;
}
.trio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.trio-card-media {
  aspect-ratio: 4 / 3;
  background: var(--grey-200);
  position: relative;
  overflow: hidden;
}
.trio-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.trio-card:hover .trio-card-media img { transform: scale(1.06); }
.trio-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(250,250,247, .92);
  backdrop-filter: blur(6px);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--forest-deep);
}
.trio-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex; flex-direction: column;
}
.trio-card-body h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.trio-card-body p {
  color: var(--grey-600);
  font-size: 15px;
  margin-bottom: 24px;
  flex: 1;
}
.trio-card-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 24px;
}
.trio-card-features li {
  font-size: 13px;
  color: var(--grey-600);
  padding-left: 20px;
  position: relative;
}
.trio-card-features li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1.5px; background: var(--forest-soft);
}
.trio-card-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--forest-deep);
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--forest-deep);
}
.trio-card-link:hover { color: var(--forest-mid); border-color: var(--lime); }

/* ============== FOOTER ============== */
.footer {
  background: var(--forest-deep);
  color: var(--paper);
  padding: 96px 0 32px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(190,242,100,.04) 100%),
    linear-gradient(0deg, transparent 0, transparent calc(100% - 1px), rgba(190,242,100,.04) 100%);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
  pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(250,250,247,.1);
}
.footer-brand .logo { color: var(--paper); }
.footer-brand .logo-mark { background: var(--lime); }
.footer-brand .logo-mark svg { color: var(--forest-deep); }
.footer-brand .logo-text small { color: rgba(250,250,247,.55); }
.footer-brand p {
  color: rgba(250,250,247,.7);
  font-size: 14px;
  margin-top: 24px;
  max-width: 32ch;
}
.footer-newsletter { margin-top: 28px; }
.footer-newsletter h5 {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,247,.6);
  margin-bottom: 12px;
}
.footer-newsletter form {
  display: flex; gap: 8px;
  background: rgba(250,250,247,.08);
  padding: 6px;
  border-radius: var(--r-full);
  border: 1px solid rgba(250,250,247,.12);
}
.footer-newsletter input {
  flex: 1; padding: 10px 16px;
  background: transparent; border: 0;
  color: var(--paper);
  outline: none;
  font-size: 14px;
}
.footer-newsletter input::placeholder { color: rgba(250,250,247,.4); }
.footer-newsletter button {
  padding: 10px 22px;
  background: var(--lime);
  color: var(--forest-deep);
  border-radius: var(--r-full);
  font-weight: 600; font-size: 13px;
}
.footer-newsletter button:hover { background: var(--lime-bright); }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,250,247,.6);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: rgba(250,250,247,.8);
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12.5px;
  color: rgba(250,250,247,.5);
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(250,250,247,.06);
  color: rgba(250,250,247,.8);
}
.footer-bottom .socials a:hover { background: var(--lime); color: var(--forest-deep); }

/* ============== INFO CARDS ============== */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all .3s ease;
}
.feature-card:hover { border-color: var(--forest-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-card .ico {
  width: 56px; height: 56px;
  background: var(--sage-light); color: var(--forest-deep);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.feature-card .ico svg { width: 28px; height: 28px; }
.feature-card h4 { color: var(--forest-deep); margin-bottom: 12px; }
.feature-card p { font-size: 14.5px; color: var(--grey-600); }

/* ============== STAT BAND ============== */
.stat-band {
  background: var(--sage-light);
  padding: 80px 0;
}
.stat-band-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item { border-left: 1px solid var(--forest-soft); padding-left: 24px; }
.stat-item .n {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 400;
  color: var(--forest-deep); line-height: 1;
  display: block; letter-spacing: -0.03em;
}
.stat-item .n .u { font-size: 1.5rem; vertical-align: super; color: var(--forest-soft); margin-left: 4px;}
.stat-item .l {
  display: block; margin-top: 12px;
  font-size: 13px;
  color: var(--grey-700);
  max-width: 18ch;
}

/* ============== CTA BAND ============== */
.cta-band {
  background: var(--forest-deep);
  color: var(--paper);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(190, 242, 100, .12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(20, 184, 166, .12), transparent 50%);
}
.cta-band-inner {
  position: relative;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
}
.cta-band h2 {
  color: var(--paper);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.cta-band h2 em { color: var(--lime); font-style: italic; }
.cta-band p { color: rgba(250,250,247,.75); margin-top: 24px; max-width: 48ch; }
.cta-actions { display: flex; gap: 16px; justify-content: flex-end; flex-wrap: wrap; }

/* ============== FORM ============== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey-700);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--r-md);
  outline: none;
  font-size: 15px;
  color: var(--grey-900);
  transition: all .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--forest-deep);
  box-shadow: 0 0 0 4px rgba(15, 61, 46, .08);
}
.field textarea { resize: vertical; min-height: 140px; font-family: inherit; }

/* ============== BLOG ============== */
.blog-search {
  background: var(--white);
  padding: 8px 8px 8px 24px;
  border-radius: var(--r-full);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  max-width: 540px;
}
.blog-search svg { color: var(--grey-500); width: 18px; height: 18px; }
.blog-search input {
  flex: 1; padding: 12px 0;
  background: transparent; border: 0; outline: none;
  font-size: 15px;
}
.blog-search button {
  padding: 12px 22px;
  background: var(--forest-deep); color: var(--paper);
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 600;
}

.blog-cats {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.blog-cat {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 500;
  color: var(--grey-700);
  transition: all .2s ease;
}
.blog-cat:hover, .blog-cat.active {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--paper);
}

.post-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: all .3s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card-media {
  aspect-ratio: 16/10;
  background: var(--grey-200);
  overflow: hidden;
  position: relative;
}
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(15, 61, 46, .92);
  color: var(--lime);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.post-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.post-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--grey-500);
  margin-bottom: 12px;
}
.post-card-meta .dot { width: 3px; height: 3px; background: var(--grey-400); border-radius: 50%; }
.post-card h3 { font-size: 1.375rem; margin-bottom: 10px; line-height: 1.2; }
.post-card p { font-size: 14.5px; color: var(--grey-600); margin-bottom: 16px; flex: 1; }
.post-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}
.post-card-author { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--grey-700); }
.post-card-author .avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: var(--forest-deep);
}
.post-card-read { font-size: 13px; font-weight: 600; color: var(--forest-deep); }

.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 64px;
}
.pagination a, .pagination span {
  min-width: 40px; height: 40px;
  padding: 0 8px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-200);
  font-size: 13px; font-weight: 600;
  color: var(--grey-700);
  transition: all .2s ease;
}
.pagination a:hover, .pagination .active {
  background: var(--forest-deep); color: var(--paper); border-color: var(--forest-deep);
}
.pagination .gap { background: transparent; border: 0; }

/* Comments */
.comment {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--grey-200);
}
.comment:last-child { border-bottom: 0; }
.comment .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sage);
  display: grid; place-items: center;
  font-weight: 700; color: var(--forest-deep);
  flex-shrink: 0;
}
.comment .avatar.lime { background: var(--lime); }
.comment .avatar.teal { background: var(--teal); color: var(--paper); }
.comment-body { flex: 1; }
.comment-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 6px;
}
.comment-head .name { font-weight: 700; color: var(--forest-deep); font-size: 14.5px; }
.comment-head .when { font-size: 12px; color: var(--grey-500); }
.comment p { font-size: 14.5px; color: var(--grey-700); margin-bottom: 10px; }
.comment-actions { display: flex; gap: 16px; font-size: 12.5px; color: var(--grey-500); }
.comment-actions button:hover { color: var(--forest-deep); }
.comment-reply { margin-left: 36px; padding-left: 32px; border-left: 2px solid var(--grey-200); }

/* ============== TIMBER / PELLETS / BURNERS specific ============== */
.product-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  padding: 96px 0;
}
.product-hero-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grey-200);
  position: relative;
}
.product-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}
.spec-table th, .spec-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
  font-size: 14.5px;
}
.spec-table th {
  background: var(--forest-deep);
  color: var(--paper);
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table tr:hover td { background: var(--sage-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gallery-grid > a {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--grey-200);
}
.gallery-grid > a:first-child { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid a:hover img { transform: scale(1.05); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero-grid, .cta-band-inner, .product-hero { grid-template-columns: 1fr; gap: 56px; }
  .trio-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .stat-band-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { display: none; }
  .hero-visual { aspect-ratio: 16 / 11; max-width: 720px; margin: 0 auto; }
  .hero-float-card { right: 16px; top: 16px; }
  .hero-ribbon { flex-wrap: wrap; gap: 12px; }
  .hero-trust { margin-top: 40px; }
  .hero-stat-strip { max-width: 720px; margin: 18px auto 0; }
}
@media (max-width: 700px) {
  :root { --header-h: 72px; }
  .container, .container-lg, .container-sm { padding: 0 20px; }
  .section, .section-sm { padding: 64px 0; }
  .hero { padding: 64px 0; }
  .trio-grid, .feature-grid { grid-template-columns: 1fr; }
  .stat-band-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trio-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .header-top-row { display: none; }
  .nav-cta .btn { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; }
  .gallery-grid > a:first-child { grid-row: auto; grid-column: span 2; }
  .hero { padding: 40px 0 64px; }
  .hero-ribbon { padding: 12px 16px; margin-bottom: 40px; font-size: 11px; }
  .hero-ribbon-tags { display: none; }
  .hero-ribbon-divider { display: none; }
  .hero-visual { aspect-ratio: 4 / 3; }
  .hero-float-card { display: none; }
  .hero-chips { left: 8px; right: 8px; bottom: 8px; gap: 6px; }
  .hero-chip { padding: 6px; gap: 8px; }
  .hero-chip-thumb { width: 30px; height: 30px; }
  .hero-chip-text small { font-size: 9px; }
  .hero-chip-text strong { font-size: 12px; }
  .hero-stat-strip { grid-template-columns: 1fr 1fr; gap: 8px 0; padding: 14px 8px; }
  .hero-stat-strip > div:nth-child(2) { border-right: 0; }
  .hero-stat-strip > div { padding: 6px 4px; }
  .hero-play { display: none; }
  .hero-trust { flex-wrap: wrap; }
}

/* Subtle reveal animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) both; }
.reveal-2 { animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) .1s both; }
.reveal-3 { animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) .2s both; }

/* ============== VIDEO MODAL ============== */
.video-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: grid; place-items: center;
  opacity: 0;
  visibility: hidden;
  padding: 24px;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.video-modal:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(8, 44, 32, .85), rgba(0,0,0,.92));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.video-modal-inner {
  position: relative; z-index: 1;
  width: min(960px, 100%);
  background: var(--forest-deep);
  border-radius: var(--r-xl);
  padding: 16px;
  border: 1px solid rgba(190, 242, 100, .25);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6);
  transform: scale(.96) translateY(8px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.video-modal:target .video-modal-inner { transform: scale(1) translateY(0); }
.video-modal-close {
  position: absolute; top: -18px; right: -18px;
  width: 44px; height: 44px;
  background: var(--lime);
  color: var(--forest-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: transform .2s ease, background .2s ease;
}
.video-modal-close:hover { background: var(--lime-bright); transform: scale(1.05) rotate(90deg); }
.video-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
}
.video-modal-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-modal-caption {
  padding: 18px 12px 8px;
  color: var(--paper);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.video-modal-eyebrow {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}
.video-modal-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.video-modal-sub {
  display: block;
  font-size: 13.5px;
  color: rgba(250,250,247,.65);
  max-width: 56ch;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .video-modal { padding: 12px; }
  .video-modal-inner { padding: 10px; border-radius: var(--r-lg); }
  .video-modal-close { width: 38px; height: 38px; top: -12px; right: -12px; }
  .video-modal-caption { padding: 14px 4px 4px; }
  .video-modal-caption strong { font-size: 1.05rem; }
  .video-modal-sub { font-size: 12.5px; }
}
