/* =====================================================
   NORECH HOLDINGS — 2026 PREMIUM AESTHETIC SYSTEM
   ===================================================== */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #F5F4F0;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: #007F3E; color: #fff; }

/* ── Design Tokens ── */
:root {
  --green:        #007F3E;
  --green-mid:    #00A050;
  --green-light:  #E4F3EC;
  --green-glow:   rgba(0,127,62,0.12);
  --amber:        #E8960A;
  --amber-light:  #FEF3DA;
  --ink:          #0A0A0A;
  --ink-2:        #1A1A1A;
  --ink-soft:     #666;
  --ink-xsoft:    #999;
  --surface:      #FFFFFF;
  --bg:           #F5F4F0;
  --bg-2:         #EFEEEA;
  --border:       rgba(0,0,0,0.07);
  --border-2:     rgba(0,0,0,0.12);
  --shadow-xs:    0 1px 4px rgba(0,0,0,0.04);
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.1);
  --shadow-xl:    0 32px 80px rgba(0,0,0,0.14);
  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #C8C7C3; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ── Custom Cursor ── */
.cursor, .cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--green);
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              opacity 0.25s, background 0.25s;
}
.cursor.hover { width: 44px; height: 44px; background: rgba(0,127,62,0.18); }
.cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(0,127,62,0.35);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s;
}
.cursor-follower.hover { width: 52px; height: 52px; border-color: transparent; }
@media (hover: none) { .cursor,.cursor-follower { display:none; } }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.line-wrap { display: block; overflow: hidden; }
.line {
  display: block;
  transform: translateY(105%);
  transition: transform 0.9s var(--ease);
}
.line.visible { transform: translateY(0); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 200;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(245,244,240,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 32px;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 120px; width: auto; mix-blend-mode: multiply; transition: height 0.4s var(--ease); }
.navbar.scrolled .logo-img { height: 80px; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--ink-soft); padding: 8px 14px; border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
.btn-nav {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 22px; background: var(--green); color: #fff;
  font-size: 0.875rem; font-weight: 700; border-radius: 999px;
  transition: all 0.25s var(--ease); flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,127,62,0.3);
}
.btn-nav:hover { background: #005d2e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,127,62,0.35); }
.btn-arrow { transition: transform 0.25s; }
.btn-nav:hover .btn-arrow { transform: translateX(3px); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 900px) { .nav-links,.btn-nav { display: none; } .burger { display: flex; } }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0; background: var(--surface); z-index: 300;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink-soft);
}
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-nav a { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700; color: var(--ink); }
.mobile-nav a:hover { color: var(--green); }
.mobile-footer-text { position: absolute; bottom: 32px; font-size: 0.8rem; color: var(--ink-xsoft); text-align: center; line-height: 1.8; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 40px 140px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,127,62,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 100%, rgba(232,150,10,0.05) 0%, transparent 60%),
              var(--bg);
}

/* Decorative floating orbs */
.hero::before {
  content: '';
  position: absolute; top: 10%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,127,62,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: orb-drift 12s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute; bottom: 5%; left: -8%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,150,10,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: orb-drift 16s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.05); }
}

.hero-bg-media { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width:100%; height:100%; object-fit:cover; opacity:0.09; }
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}

.hero-body {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink-2);
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.tag-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tag-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(0,127,62,0.22);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(0,127,62,0.22); }
  50%      { box-shadow: 0 0 0 8px rgba(0,127,62,0); }
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 28px;
}
.hero-h1 .accent { color: var(--green); position: relative; display: inline-block; }
.hero-h1 .accent::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: underline-in 0.8s var(--ease) 1.2s forwards;
}
@keyframes underline-in { to { transform: scaleX(1); } }

.hero-desc {
  font-size: 1.08rem; color: var(--ink-soft);
  max-width: 580px; margin: 0 auto 44px;
  line-height: 1.82; font-weight: 400;
}

.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* CTA Buttons */
.cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--green); color: #fff;
  font-weight: 700; font-size: 0.95rem; border-radius: 999px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0,127,62,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.cta-primary:hover {
  background: #005d2e; transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,127,62,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.cta-primary span { transition: transform 0.25s; }
.cta-primary:hover span { transform: translateX(4px); }
.cta-primary.full-w { width: 100%; justify-content: center; }

.cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: var(--surface); color: var(--ink);
  font-weight: 600; font-size: 0.95rem; border-radius: 999px;
  border: 1.5px solid var(--border-2);
  box-shadow: var(--shadow-xs);
  transition: all 0.25s var(--ease);
}
.cta-secondary:hover { border-color: rgba(0,0,0,0.25); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Hero Stat bar */
.hero-stats {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; align-items: center; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden; white-space: nowrap;
}
.stat-pill {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 16px 32px;
  position: relative;
}
.stat-pill + .stat-pill { border-left: 1px solid var(--border); }
.stat-pill strong { font-size: 1.1rem; font-weight: 800; color: var(--ink); font-family: 'Syne', sans-serif; }
.stat-pill strong.text-stat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-pill span { font-size: 0.7rem; color: var(--ink-xsoft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* Scroll cue */
.scroll-cue {
  position: absolute; left: 48px; bottom: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.scroll-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-xsoft); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--ink-soft), transparent); animation: scroll-anim 1.8s ease-in-out infinite; }
@keyframes scroll-anim { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.4); opacity: 0.3; } }

@media (max-width: 768px) { .hero-stats,.scroll-cue { display: none; } .hero { padding: 100px 20px 80px; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MARQUEE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.marquee-row {
  overflow: hidden; background: var(--ink-2);
  padding: 15px 0; display: flex; user-select: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: marquee 24s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); padding: 0 24px;
}
.marquee-track .sep { color: var(--amber); font-size: 0.42rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTIONS — SHARED
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section { padding: 110px 0; }
.section-alt {
  background: var(--surface);
  position: relative;
}
.section-alt::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
.section-alt::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: block; width: 20px; height: 2px;
  background: var(--green); border-radius: 1px;
}

.section-intro-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; margin-bottom: 64px;
}
@media (max-width: 768px) { .section-intro-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; } }

.section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
}
.section-h2 em { font-style: normal; color: var(--green); }

.section-intro-text { font-size: 1rem; color: var(--ink-soft); line-height: 1.82; padding-top: 4px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PHILOSOPHY CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }

.card-wide { grid-column: span 2; }
.card-pillars { 
  grid-column: span 3; 
  background: linear-gradient(135deg, #004d25 0%, #003619 100%); 
  color: #fff; 
  border: 1px solid rgba(255,255,255,0.08); 
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}
.card-pillars::after {
  content: '';
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.card-pillars h3 { color: #fff; position: relative; z-index: 2; }
.card-pillars .pillars-list { position: relative; z-index: 2; }
.card-pillars .pillars-list li { color: rgba(255,255,255,0.85); }
.card-pillars strong { color: #fff; }
.card-pillars .check.green { color: var(--amber); }

/* Card decoration circle */
.card-deco {
  position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--green-light); opacity: 0.6;
  transition: transform 0.4s var(--ease);
}
.card:hover .card-deco { transform: scale(1.2); }

.card-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon.green { background: var(--green-light); color: var(--green); }
.card-icon.amber { background: var(--amber-light); color: var(--amber); }

.card h3 { font-family:'Syne',sans-serif; font-size:1.18rem; font-weight:700; margin-bottom:10px; color:var(--ink); }
.card p { color:var(--ink-soft); font-size:0.9rem; line-height:1.75; }
.card-tag {
  display: inline-block; margin-top: 18px;
  padding: 3px 12px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.7rem; font-weight: 700; color: var(--ink-xsoft); letter-spacing: 0.05em;
}
.pillars-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; margin-top: 20px; }
.pillars-list li { display:flex; align-items:flex-start; gap:10px; font-size:0.88rem; color:var(--ink-soft); }
.check { font-size:0.78rem; font-weight:800; flex-shrink:0; margin-top:2px; }
.check.green { color:var(--green); }

@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr; } .card-wide,.card-pillars { grid-column: span 1; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES LIST
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services-list { border-top: 1px solid var(--border); margin-top: 20px; }
.service-row {
  display: grid; grid-template-columns: 44px 48px 1fr auto;
  align-items: center; gap: 24px;
  padding: 30px 24px; border-bottom: 1px solid var(--border);
  border-radius: var(--radius); margin: 0 -24px;
  transition: all 0.4s var(--ease);
  cursor: default;
  position: relative;
}
.service-row:hover { 
  background: var(--surface); 
  box-shadow: var(--shadow-md); 
  transform: translateY(-2px);
  border-bottom-color: transparent;
}
.service-row::before {
  content: '';
  position: absolute; left: 0; top: 15%; bottom: 15%; width: 3px;
  background: var(--green); border-radius: 0 4px 4px 0;
  opacity: 0; transform: scaleY(0.4);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.service-row:hover::before { opacity: 1; transform: scaleY(1); }

.service-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem; font-weight: 800; color: var(--green);
  letter-spacing: 0.06em;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.service-row:hover .service-num { background: var(--green); color: #fff; }
.service-body h3 { font-family:'Syne',sans-serif; font-size:1.12rem; font-weight:700; margin-bottom:5px; }
.service-body p { color:var(--ink-soft); font-size:0.88rem; line-height:1.7; }
.service-tags { display:flex; flex-wrap:wrap; gap:6px; justify-content:flex-end; }
.service-tags span {
  padding: 3px 10px;
  border: 1px solid var(--border-2);
  border-radius: 999px; font-size: 0.68rem;
  font-weight: 700; color: var(--ink-soft); white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.service-row:hover .service-tags span { background: var(--green-light); border-color: var(--green-light); color: var(--green); }
@media (max-width: 768px) { .service-row { grid-template-columns:1fr; gap:12px; } .service-tags { justify-content:flex-start; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SPOTLIGHT / PRODUCTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.spotlight-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.spotlight-left .section-eyebrow { margin-bottom: 16px; }
.spotlight-left .section-h2 { margin-bottom: 18px; }
.spotlight-left .section-intro-text { margin-bottom: 32px; }

.product-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }
.product-list li {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.product-list li:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
  background: var(--green-light);
  color: var(--green);
}
.product-list li .prod-arrow {
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.25s, transform 0.25s var(--ease);
  color: var(--green); font-weight: 700;
}
.product-list li:hover .prod-arrow { opacity: 1; transform: translateX(0); }

.spotlight-image-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: visible; aspect-ratio: 4/3;
}
.spotlight-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.img-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-md);
  animation: badge-float 4s ease-in-out infinite alternate;
}
.img-badge strong { font-family:'Syne',sans-serif; font-size:1rem; font-weight:800; color:var(--green); }
.img-badge span { font-size:0.68rem; color:var(--ink-xsoft); text-transform:uppercase; letter-spacing:0.07em; font-weight:700; }
.img-badge-1 { bottom: -16px; left: -24px; animation-delay: 0s; }
.img-badge-2 { top: -16px; right: -24px; animation-delay: -2s; }
@keyframes badge-float { from { transform: translateY(0px); } to { transform: translateY(-8px); } }

@media (max-width: 900px) {
  .spotlight-split { grid-template-columns: 1fr; gap: 48px; }
  .img-badge-1 { left: 12px; bottom: 12px; }
  .img-badge-2 { right: 12px; top: 12px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS BAND
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-band {
  background: linear-gradient(180deg, var(--bg) 0%, #004d25 0%, #003619 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
}
.stats-band-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); overflow: hidden;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.stats-band-item {
  padding: 44px 32px;
  background: transparent;
  text-align: center;
  position: relative;
  transition: all 0.3s var(--ease);
}
.stats-band-item + .stats-band-item {
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stats-band-item:hover { background: rgba(255,255,255,0.05); }
.stats-band-item strong { display: block; font-family:'Syne',sans-serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.stats-band-item strong.text-stat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--amber);
}
.stats-band-item span { font-size: 0.72rem; color: rgba(255,255,255,0.65); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 768px) { 
  .stats-band-grid { grid-template-columns: 1fr 1fr; } 
  .stats-band-item:nth-child(2n) { border-left: none; }
  .stats-band-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px; gap: 12px;
  padding: 0 40px; max-width: 1400px; margin: 0 auto;
}
.g-item {
  overflow: hidden; border-radius: var(--radius);
  position: relative; background: var(--bg-2);
  cursor: pointer;
}
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
  opacity: 0.4; transition: opacity 0.4s;
  z-index: 1;
}
.g-item:hover::after { opacity: 0.85; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
  filter: grayscale(0.2) contrast(1.05) saturate(0.9);
}
.g-item:hover img { transform: scale(1.05); filter: grayscale(0) contrast(1) brightness(1); }
.gallery-grid .g-item:first-child img {
  object-position: center 15%;
}
.g-large { grid-column: span 2; grid-row: span 2; }
.g-tall  { grid-row: span 2; }
.g-wide  { grid-column: span 2; }

.g-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: #fff;
  transform: translateY(15px); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  z-index: 5; pointer-events: none;
}
.g-item:hover .g-caption { transform: translateY(0); opacity: 1; }
.g-caption h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.g-caption span { font-size: 0.7rem; color: var(--amber); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2,1fr); padding: 0 20px; } .g-large { grid-column: span 2; } .g-tall,.g-wide { grid-column: span 1; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } .g-large,.g-tall,.g-wide { grid-column: span 1; grid-row: span 1; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-split {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px; align-items: start;
}
.contact-left .section-h2 { margin-bottom: 14px; }
.contact-sub { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.82; margin-bottom: 40px; }

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.contact-info-item:hover { box-shadow: var(--shadow-sm); border-color: var(--green-light); }
.ci-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.ci-icon.green { background: var(--green-light); color: var(--green); }
.ci-icon.amber { background: var(--amber-light); color: var(--amber); }
.ci-label { display: block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-xsoft); margin-bottom: 3px; }
.ci-value { font-size: 0.92rem; font-weight: 600; color: var(--ink); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-mid), var(--amber));
}
.contact-form h3 { font-family:'Syne',sans-serif; font-size:1.4rem; font-weight:700; margin-bottom:28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 0.75rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; }
.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem; color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,127,62,0.08);
}
.form-field textarea { resize: vertical; }

@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--surface);
  color: var(--ink-soft);
  padding-top: 80px;
  position: relative;
  border-top: 1px solid var(--border);
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--amber), transparent);
}
.footer-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { height: 110px; width: auto; margin-bottom: 20px; mix-blend-mode: multiply; transition: opacity 0.3s; }
.footer-brand p { font-size: 0.88rem; line-height: 1.82; margin-bottom: 28px; max-width: 280px; color: var(--ink-soft); }
.social-row { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.soc-btn:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }
.footer-links-col h4 { font-family:'Syne',sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--ink); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links-col a { display: block; font-size: 0.86rem; margin-bottom: 12px; transition: color 0.2s; color: var(--ink-soft); }
.footer-links-col a:hover { color: var(--green); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  color: var(--ink-xsoft);
}
.footer-bottom p { font-size: 0.8rem; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1/3; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } .footer-brand { grid-column: 1; } }
