/* ============================================================
   BIOFORM — Shared Stylesheet
   Palette: #3B5240 (green) · #F7F4EF (cream) · #C8A44A (gold)
   Fonts: Cormorant Garamond (display) · DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: preloaderFade 1.8s ease-in-out infinite;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderFade {
  0%, 100% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

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

/* ── TOKENS ── */
:root {
  --green: #3B5240;
  --green-mid: #4E6E55;
  --green-light: #E8EFE9;
  --gold: #C8A44A;
  --gold-light: #F5EDD8;
  --cream: #F7F4EF;
  --white: #FFFFFF;
  --ink: #1C1C1A;
  --ink-mid: #4A4A46;
  --ink-light: #8A8A84;
  --border: #E0DDD6;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --side: clamp(20px, 5vw, 64px);
}

/* ── BASE ── */
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side);
}

.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 13px 28px;
  transition: background .2s, color .2s;
}

.btn:hover {
  background: var(--green);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #b8903a;
  border-color: #b8903a;
  color: var(--white);
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: transparent;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .35s;
}

.site-nav.scrolled {
  background: var(--green);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color .2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::before {
  content: '';
  position: absolute;
  bottom: -18px;
  left: -20px;
  right: -20px;
  height: 18px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-top: 2px solid var(--gold);
  min-width: 200px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
}

.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-mid) !important;
  text-transform: uppercase;
  transition: background .15s;
}

.dropdown-menu a:hover {
  background: var(--green-light);
  color: var(--green) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: .3s;
}

/* ── HERO ── */
.hero {
  margin-top: 0;
  position: relative;
  overflow: hidden;
  background: var(--green);
}

.hero-full .hero-img {
  height: 100vh;
}

.hero-img {
  width: 100%;
  height: clamp(480px, 65vh, 760px);
  object-fit: cover;
  opacity: .55;
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--side);
  max-width: var(--max-w);
  margin: 0 auto;
  left: 0;
  right: 0;
}

.hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 7px 16px;
}

/* Hero stats overlay */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(59, 82, 64, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

/* Scroll hint arrow */
.scroll-hint {
  position: absolute;
  bottom: 112px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  animation: scrollPulse 2s ease-in-out infinite;
  transition: color .2s;
  z-index: 2;
  cursor: pointer;
}

.scroll-hint:hover {
  color: var(--white);
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: .5;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  margin-top: 0;
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 52px;
  padding-left: var(--side);
  padding-right: var(--side);
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(200, 164, 74, 0.35);
}

.page-header .section-label {
  color: var(--gold);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  max-width: 640px;
}

.page-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin-top: 14px;
  line-height: 1.7;
}

/* ── SECTIONS ── */
.section {
  padding: clamp(60px, 8vw, 100px) var(--side);
}

.section-green {
  background: var(--green);
}

.section-cream {
  background: var(--cream);
}

.section-white {
  background: var(--white);
}

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
}

.stat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 6px;
}

/* ── PRODUCT CAROUSEL ── */
.carousel-wrap {
  position: relative;
}

.carousel-track-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.carousel-track-outer:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}

.carousel-track.no-transition {
  transition: none;
}

/* Card — width set by JS, but define base */
.product-card {
  flex: 0 0 auto;
  background: var(--white);
  overflow: hidden;
  transition: transform .3s;
  display: block;
  text-decoration: none;
  border: none;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  object-fit: contain;
  transition: transform .5s;
  pointer-events: none;
}

.product-card:hover img {
  transform: scale(1.03);
}

.product-card-body {
  padding: 18px 6px;
}

.product-card:hover .product-card-body {
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.3;
  transition: color .3s;
}

.product-card:hover .product-card-name {
  color: var(--ink);
}

.product-card-sub {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--ink-light);
  margin-top: 3px;
  text-transform: uppercase;
  font-style: italic;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.carousel-dot.active {
  background: var(--green);
  transform: scale(1.4);
}

.carousel-arrows {
  display: flex;
  gap: 8px;
}

.carousel-arrow {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background: var(--green);
  border-color: var(--green);
}

.carousel-arrow:hover svg path {
  stroke: var(--white);
}

.carousel-arrow svg {
  width: 16px;
  height: 16px;
}

.carousel-arrow svg path {
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
  background: var(--white);
  border-color: var(--border);
}

.carousel-arrow:disabled:hover svg path {
  stroke: var(--green);
}

/* ── View toggle ── */
.view-toggle {
  display: flex;
  gap: 4px;
}

.view-toggle-btn {
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.view-toggle-btn.active {
  background: var(--green);
  border-color: var(--green);
}

.view-toggle-btn svg {
  width: 16px;
  height: 16px;
}

.view-toggle-btn svg rect,
.view-toggle-btn svg line {
  stroke: var(--green);
  stroke-width: 1.5;
  fill: none;
}

.view-toggle-btn.active svg rect,
.view-toggle-btn.active svg line {
  stroke: var(--white);
}

.view-toggle-btn:hover:not(.active) {
  background: var(--green-light);
  border-color: var(--green);
}

/* Grid view mode */
.carousel-wrap.grid-view .carousel-track-outer {
  overflow: visible;
}

.carousel-wrap.grid-view .carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transform: none !important;
  transition: none;
}

.carousel-wrap.grid-view .carousel-track .product-card {
  width: auto !important;
}

.carousel-wrap.grid-view .carousel-controls {
  display: none;
}

@media (max-width: 860px) {
  .carousel-wrap.grid-view .carousel-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .carousel-wrap.grid-view .carousel-track {
    grid-template-columns: 1fr;
  }
}

/* Keep the old product-grid name working for cert grid only */

/* ── PRODUCT CATEGORY GRID ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 860px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.category-card {
  background: var(--white);
  border: none;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform .3s;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card img {
  width: 100%;
  object-fit: contain;
  transition: transform .5s;
  pointer-events: none;
}

.category-card:hover img {
  transform: scale(1.03);
}

.category-card-body {
  padding: 18px 6px 20px;
}

.category-card:hover .category-card-body {
}

.category-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.3;
  transition: color .3s;
}

.category-card:hover .category-card-name {
  color: var(--ink);
}

.category-card-count {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--ink-light);
  margin-top: 3px;
  text-transform: uppercase;
  font-style: italic;
}

.category-card-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-top: 10px;
}


/* ── CERT GRID ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
}

.cert-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.cert-card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.cert-card-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse>* {
  direction: ltr;
}

.two-col img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ── ABOUT SECTIONS ── */
.about-section {
  padding: clamp(60px, 8vw, 100px) var(--side);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

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

/* Feature list */
.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.55;
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── FIELD TABLE ── */
.field-table {
  width: 100%;
  border-collapse: collapse;
}

.field-table tr {
  border-bottom: 1px solid var(--border);
}

.field-table td {
  padding: 12px 0;
  font-size: 14px;
  color: var(--ink-mid);
  vertical-align: top;
}

.field-table td:first-child {
  width: 44%;
  color: var(--ink-light);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding-right: 16px;
}

.field-table td strong {
  color: var(--green);
  font-weight: 500;
}

/* ── INDUSTRIES ── */
.industries-section {
  position: relative;
  overflow: hidden;
  background: #1a2a1c;
}

.industries-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  pointer-events: none;
}

.industries-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 28, 0.45);
  pointer-events: none;
  z-index: 1;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 28px;
  text-align: center;
  transition: background .3s, border-color .3s, transform .3s;
}

.industry-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.industry-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 16px;
  opacity: .7;
  transition: opacity .3s;
  filter: brightness(0) invert(1);
}

.industry-item:hover img {
  opacity: 1;
}

.industry-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.industry-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  transition: color .3s;
}

.industry-item:hover .industry-desc {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 860px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .industry-item {
    padding: 24px 20px;
  }
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.contact-block {
  background: var(--white);
  padding: 36px 32px;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-mid);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row span:first-child {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-light);
  min-width: 70px;
  padding-top: 2px;
}

.contact-row a {
  color: var(--green);
}

.contact-row a:hover {
  text-decoration: underline;
}

/* ── PRODUCT DETAIL ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.product-detail-img {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.product-detail-img > img:first-child {
  width: 100%;
  object-fit: contain;
  background: var(--white);
  transition: transform .4s, box-shadow .4s;
}

.product-detail-img > img:first-child:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.product-detail-img img {
  width: 100%;
}

.product-detail-body h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 6px;
}

.product-detail-body .latin {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-light);
  margin-bottom: 28px;
}

.product-detail-body p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

.spec-table td {
  padding: 11px 0;
  font-size: 13.5px;
  color: var(--ink-mid);
  vertical-align: top;
}

.spec-table td:first-child {
  color: var(--ink-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 38%;
  padding-right: 16px;
  padding-top: 14px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green);
  padding: 56px var(--side) 36px;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-logo {
  display: block;
  margin-bottom: 16px;
}

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

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 260px;
}

.footer-brochure {
  display: inline-block;
  margin-top: 16px;
  opacity: .7;
  transition: opacity .3s;
}

.footer-brochure:hover {
  opacity: 1;
}

.footer-brochure img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-col h4 {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  transition: color .2s;
}

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

.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .65s ease both;
}

.fade-up-1 {
  animation-delay: .1s;
}

.fade-up-2 {
  animation-delay: .22s;
}

.fade-up-3 {
  animation-delay: .34s;
}

.fade-up-4 {
  animation-delay: .46s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--green);
    padding: 24px var(--side) 32px;
    gap: 20px;
    z-index: 99;
    width: 100%;
    box-sizing: border-box;
  }

  /* Position nav-right below nav-left in the dropdown */
  .nav-right.open {
    position: fixed;
    top: calc(var(--nav-h) + 170px);
    left: 0;
    right: 0;
    background: var(--green);
    padding: 20px var(--side) 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
    z-index: 97;
    width: 100%;
    box-sizing: border-box;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    border-top: none;
    border-left: 2px solid var(--gold);
    padding: 4px 0 4px 12px;
    margin-top: 8px;
    opacity: 1;
    pointer-events: all;
    display: none;
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.65) !important;
  }

  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-bottom: 1px solid var(--border);
  }

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

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-img {
    position: static;
  }

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

@media (max-width: 560px) {
  .hero-stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat-item:nth-child(2) {
    border-right: none;
  }

  .hero-stat-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .scroll-hint {
    bottom: 180px;
  }

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

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

  .footer-brand-desc {
    max-width: 100%;
  }
}