/* GREEN BIOFUELS AUSTRALIA — STYLESHEET v7 — Full Responsive */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --green-deep:    #071a0d;
  --green-mid:     #0f2e1a;
  --green-rich:    #163d22;
  --green-bright:  #2d7a4f;
  --green-light:   #4caf78;
  --gold:          #c89a2e;
  --gold-light:    #e8b84b;
  --gold-pale:     #f5d98a;
  --cream:         #f8f5ee;
  --white:         #ffffff;
  --off-white:     #f4f4f0;
  --grey-light:    #ededea;
  --grey-mid:      #64645c;
  --text-dark:     #1a1a1a;
  --text-body:     #3a3a3a;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg:     0 20px 64px rgba(0,0,0,0.18);
  --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-h:         68px;
  --section-pad-x: clamp(16px, 4vw, 64px);
  --section-pad-y: clamp(48px, 7vw, 96px);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-body); background: var(--white);
       line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; color: var(--text-dark); line-height: 1.15; }
p { line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; }

/* ── CONTAINER ───────────────────────────────────────────────────────────── */
.container, .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
  width: 100%;
}

/* ── TYPOGRAPHY SCALE ────────────────────────────────────────────────────── */
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green-bright); margin-bottom: 10px; }
.section-label-light { color: var(--gold-light); }
.section-title { font-size: clamp(26px, 3.8vw, 48px); font-weight: 800;
  color: var(--text-dark); margin-bottom: 14px; max-width: 800px; line-height: 1.1; }
.section-title-light { color: var(--white); }
.section-title em { font-style: normal; color: var(--green-bright); }
.section-intro { font-size: clamp(14px, 1.6vw, 17px); color: #5a5a52;
  max-width: 700px; line-height: 1.75; margin-bottom: 40px; }
.section-intro-light { color: rgba(255,255,255,0.82); }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 40px);
  height: var(--nav-h);
  background: rgba(7,26,13,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,154,46,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 46px; width: 46px; object-fit: contain; border-radius: 4px; }
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 16px;
  font-weight: 700; color: var(--white); letter-spacing: .03em; line-height: 1.2; }
.nav-logo-text span { color: var(--gold-light); display: block; font-size: 9px;
  font-weight: 400; letter-spacing: .1em; text-transform: uppercase; }

/* Desktop nav links */
.nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 13px;
  font-weight: 500; transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links .nav-cta { background: var(--gold); color: var(--green-deep) !important;
  padding: 7px 16px; border-radius: 4px; font-weight: 700; transition: background .2s; }
.nav-links .nav-cta:hover { background: var(--gold-light); }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 6px;
  background: none; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 201;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(7,26,13,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px var(--section-pad-x) 40px;
  overflow-y: auto;
  z-index: 199;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.nav-drawer.open {
  display: flex;
  transform: translateX(0);
}
.nav-drawer a {
  display: block; padding: 16px 0;
  color: rgba(255,255,255,0.88); font-size: 20px; font-weight: 600;
  text-decoration: none; font-family: 'Barlow Condensed', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--gold-light); }
.nav-drawer .nav-cta-drawer {
  margin-top: 20px;
  display: inline-block;
  background: var(--gold); color: var(--green-deep) !important;
  padding: 14px 28px; border-radius: 6px; font-weight: 800;
  font-size: 18px; text-align: center;
  border: none;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn { display: inline-block; padding: 12px 26px; border-radius: 5px;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--transition);
  cursor: pointer; white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-outline-green { background: transparent; color: var(--green-bright);
  border: 1.5px solid var(--green-bright); }
.btn-outline-green:hover { background: var(--green-bright); color: var(--white); }
.hero-btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
.section { padding: var(--section-pad-y) 0; }
.section > .container,
.section > .section-inner { padding-top: 0; padding-bottom: 0; }
.bg-cream    { background: var(--cream); }
.bg-white    { background: var(--white); }
.bg-grey     { background: var(--grey-light); }
.bg-off      { background: var(--off-white); }
.bg-dark     { background: var(--green-deep); }
.bg-mid      { background: var(--green-mid); }

/* ── PAGE HERO ───────────────────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 80px));
  padding-bottom: clamp(48px, 7vw, 88px);
  padding-left: 0; padding-right: 0;
  position: relative; overflow: hidden;
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
  position: relative; z-index: 1;
}
.page-hero h1 { font-size: clamp(30px, 5vw, 60px); font-weight: 900;
  color: var(--white); margin-bottom: 18px; }
.page-hero h1 em { font-style: normal; color: var(--gold-light); }
.page-hero p.lead { font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.78); max-width: 640px;
  line-height: 1.75; margin-bottom: 28px; }
.hero-bg-dark { background: linear-gradient(150deg,#060d07 0%,var(--green-mid) 60%,#1a3520 100%); }
.hero-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ── PARALLAX — disabled on touch devices (iOS fix) ──────────────────────── */
.parallax-hero {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;   /* desktop */
  position: relative;
}
@media (hover: none), (pointer: coarse) {
  /* Touch devices: fixed parallax causes rendering bugs on iOS Safari */
  .parallax-hero { background-attachment: scroll; }
}
.parallax-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(150deg,rgba(7,26,13,.90) 0%,rgba(7,26,13,.72) 55%,rgba(7,26,13,.55) 100%);
  z-index: 0; pointer-events: none;
}
.parallax-hero.hero-red::before {
  background: linear-gradient(150deg,rgba(28,4,4,.93) 0%,rgba(28,4,4,.78) 55%,rgba(7,26,13,.55) 100%);
}
.parallax-hero > * { position: relative; z-index: 1; }

/* ── RESPONSIVE GRIDS ────────────────────────────────────────────────────── */
/* Semantic grid helpers — all collapse to 1col on mobile */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; align-items: start; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }

/* Inline-style grid overrides — responsive utility classes applied via JS */
.rg-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rg-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rg-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }

/* ── CARDS ────────────────────────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.08); padding: clamp(20px,3vw,32px);
  transition: var(--shadow-md), transform .2s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-dark { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-md); padding: clamp(20px,3vw,32px); }
.card-gold-top { border-top: 3px solid var(--gold); }
.card-green-top { border-top: 3px solid var(--green-bright); }

/* ── PHOTO CAPTION BLOCK ──────────────────────────────────────────────────── */
.photo-block { border-radius: var(--radius-md); overflow: hidden; }
.photo-block img { width: 100%; object-fit: cover; }
.photo-caption { padding: 12px 16px; background: var(--green-deep); }
.photo-caption p { font-size: 12px; color: rgba(255,255,255,.75); line-height: 1.5; }
.photo-caption strong { color: var(--gold-light); }

/* ── EYEBROW ─────────────────────────────────────────────────────────────── */
.eyebrow { display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,154,46,.15); border: 1px solid rgba(200,154,46,.35);
  border-radius: 100px; padding: 5px 13px; font-size: 11px; font-weight: 700;
  color: var(--gold-light); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.eyebrow::before { content: '●'; font-size: 7px; }

/* ── TABLES ──────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,.09); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
thead { background: var(--green-deep); }
thead th { padding: 13px 16px; text-align: left;
  font-family: 'Barlow Condensed',sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-light); }
tbody tr { border-bottom: 1px solid rgba(0,0,0,.06); transition: background .15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: var(--grey-light); }
tbody tr:hover { background: rgba(45,122,79,.04); }
tbody td { padding: 12px 16px; font-size: 13px; color: var(--text-body); }
tbody td:first-child { font-weight: 600; color: var(--text-dark); }
td.pass { color: #2d7a4f; font-weight: 600; }
td.highlight { background: rgba(45,122,79,.07) !important;
  color: var(--green-mid) !important; font-weight: 600 !important; }

/* ── VIDEO CARD ──────────────────────────────────────────────────────────── */
.video-card { border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid rgba(0,0,0,.08); background: var(--white);
  transition: var(--transition); }
.video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.video-thumb { position: relative; overflow: hidden; }
.video-thumb img { width: 100%; height: 200px; object-fit: cover; display: block;
  transition: transform .3s; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-play-btn { position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 52px; height: 52px;
  background: rgba(200,154,46,.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background .2s; }
.video-play-btn::after { content: '▶'; color: var(--green-deep); font-size: 17px; margin-left: 3px; }
.video-card:hover .video-play-btn { background: var(--gold-light); }
.video-label { position: absolute; top: 10px; left: 10px;
  background: rgba(7,26,13,.88); border: 1px solid rgba(200,154,46,.3);
  border-radius: 100px; padding: 3px 9px; font-size: 10px; font-weight: 700;
  color: var(--gold-light); letter-spacing: .06em; text-transform: uppercase; }
.video-body { padding: 18px; }
.video-source { font-size: 10px; font-weight: 700; color: var(--green-bright);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 5px; }
.video-body h3 { font-size: 17px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 7px; line-height: 1.3; }
.video-body p { font-size: 13px; color: var(--grey-mid); line-height: 1.65; margin-bottom: 10px; }
.video-link { display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-bright); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: color .2s; }
.video-link:hover { color: var(--gold); }
.video-link::before { content: '▶'; font-size: 9px; }

/* ── INFO BOXES ──────────────────────────────────────────────────────────── */
.note-box { background: rgba(45,122,79,.07); border-left: 3px solid var(--green-bright);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 15px 20px;
  font-size: 14px; line-height: 1.75; }
.warning-box { background: rgba(200,154,46,.08); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 15px 20px;
  font-size: 14px; line-height: 1.75; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer { background: #050c06; padding: clamp(40px,6vw,60px) 0 clamp(24px,4vw,36px); color: rgba(255,255,255,.7); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--section-pad-x); }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo-row img { height: 44px; width: 44px; object-fit: contain; }
.footer-logo-name { font-family: 'Barlow Condensed',sans-serif; font-size: 20px;
  font-weight: 700; color: var(--white); }
.footer-logo-name span { color: var(--gold-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 5px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: var(--white);
  letter-spacing: .09em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 13px;
  text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 12px; }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ── TEXT ON DARK BACKGROUNDS ────────────────────────────────────────────── */
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4,
.bg-mid  h1,.bg-mid  h2,.bg-mid  h3,.bg-mid  h4 { color: var(--white); }
.bg-dark .section-title,.bg-mid .section-title { color: var(--white); }
.bg-dark .hub-phase h4,.bg-mid .hub-phase h4 { color: var(--white); }
.bg-dark .hub-phase .ph-yr,.bg-mid .hub-phase .ph-yr { color: rgba(255,255,255,.60); }
.bg-dark .hub-phase p,.bg-mid .hub-phase p,
.bg-dark .hub-phase ul li,.bg-mid .hub-phase ul li { color: rgba(255,255,255,.82); }
.bg-dark .hub-phase.p1,.bg-dark .hub-phase.p2,.bg-dark .hub-phase.p3
  { background: rgba(255,255,255,.05); border-left-color: var(--gold-light); }
.bg-dark .faq-q,.bg-mid .faq-q { color: var(--white); }
.bg-dark .faq-a,.bg-mid .faq-a { color: rgba(255,255,255,.80); }
.bg-dark tbody td,.bg-mid tbody td { color: rgba(255,255,255,.85); }
.bg-dark tbody td:first-child,.bg-mid tbody td:first-child { color: var(--white); }
.bg-dark tbody tr:nth-child(even),.bg-mid tbody tr:nth-child(even)
  { background: rgba(255,255,255,.04); }
.bg-dark .ps-title,.bg-mid .ps-title { color: var(--white); }
.bg-dark .ps-items li,.bg-mid .ps-items li { color: rgba(255,255,255,.80); }
.bg-dark .vulnerability-card h3,.bg-mid .vulnerability-card h3 { color: var(--white); }
.bg-dark .te-content h4 { color: var(--white); }
.bg-dark .te-content p { color: rgba(255,255,255,.80); }
.bg-dark .card h3,.bg-dark .card h4 { color: var(--text-dark); }

/* ── SCROLL REVEAL ────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-child { opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease; }
.reveal-child.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-child { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── RESPONSIVE IMAGE HEIGHTS ─────────────────────────────────────────────── */
.img-cover-lg { height: clamp(200px, 30vw, 380px); object-fit: cover; width: 100%; }
.img-cover-md { height: clamp(160px, 22vw, 280px); object-fit: cover; width: 100%; }
.img-cover-sm { height: clamp(140px, 18vw, 220px); object-fit: cover; width: 100%; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TABLET  600–1023px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1023px) {
  /* Nav */
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-two-col  { grid-template-columns: 1fr; gap: 32px; }

  /* Grids */
  .grid-2  { grid-template-columns: 1fr 1fr; }
  .grid-3  { grid-template-columns: 1fr 1fr; }
  .grid-4  { grid-template-columns: 1fr 1fr; }
  .grid-2-3{ grid-template-columns: 1fr; gap: 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Inline grids set via style — override with responsive class */
  .rg-process-compare { grid-template-columns: 1fr !important; gap: 16px !important; }
  .rg-expeller        { grid-template-columns: 1fr !important; }
  .rg-steps-3         { grid-template-columns: 1fr 1fr !important; }
  .rg-stats-3         { grid-template-columns: 1fr 1fr !important; }
  .rg-stats-5         { grid-template-columns: repeat(3,1fr) !important; }
  .rg-photo-2         { grid-template-columns: 1fr !important; }
  .rg-mine-2          { grid-template-columns: 1fr !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE  < 600px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 599px) {
  :root { --nav-h: 60px; }

  /* Nav */
  .nav-logo-text span { display: none; }

  /* Grids → all single column */
  .grid-2, .grid-3, .grid-4, .grid-2-3,
  .rg-2, .rg-3, .rg-auto,
  .rg-process-compare, .rg-expeller,
  .rg-steps-3, .rg-stats-3, .rg-stats-5,
  .rg-photo-2, .rg-mine-2 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Hero buttons stack */
  .hero-btn-row { flex-direction: column; gap: 10px; }
  .hero-btn-row .btn { text-align: center; }

  /* Page hero spacing */
  .page-hero h1 { font-size: clamp(26px, 8vw, 36px); }
  .page-hero p.lead { font-size: 14px; }

  /* Section padding */
  .section { padding: 44px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Tables — hint to scroll */
  .table-wrap::before {
    content: '← scroll →';
    display: block; text-align: center;
    font-size: 11px; color: var(--grey-mid);
    padding: 6px; background: var(--grey-light);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  }

  /* Process comparison on pd100 */
  .process-compare-grid { grid-template-columns: 1fr !important; }
  .process-compare-grid .compare-arrow { display: none; }

  /* Image heights reduce on mobile */
  .img-cover-lg { height: 220px; }
  .img-cover-md { height: 180px; }
  .img-cover-sm { height: 150px; }

  /* Intercrop diagram */
  .intercrop-img { max-height: 280px; object-fit: contain; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LANDSCAPE PHONE  (wide but short)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-height: 500px) and (orientation: landscape) {
  :root { --nav-h: 52px; }
  .page-hero { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 32px; }
  .img-cover-lg { height: 160px; }
  .parallax-hero { background-attachment: scroll; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LARGE DESKTOP  1400px+
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 1400px) {
  .container, .section-inner { max-width: 1320px; }
  .section-title { font-size: 52px; }
}

/* ── PRODUCT CARDS ───────────────────────────────────────────────────────── */
.product-card { background: var(--white); border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,.08); overflow: hidden; transition: var(--transition); }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card-head { padding: 20px 20px 0; }
.product-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 5px; }
.product-card .product-tag { font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 100px;
  display: inline-block; margin-bottom: 10px; }
.product-card-body { padding: 0 20px 20px; }
.product-card p { font-size: 13px; color: #4a4a3e; line-height: 1.7; margin-bottom: 8px; }
.product-spec { background: var(--grey-light); border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 12px; color: var(--grey-mid); line-height: 1.6; margin-top: 10px; }
