/*
Theme Name:        Jora Composters
Theme URI:         https://www.joracomposters.com
Author:            Jora Composters
Description:       WordPress theme for Jora Composters. All CSS from 9 HTML pages merged with properly scoped hero variants — .hero-dark for dark gradient banners, .hero for split layouts.
Version:           3.2.0
Requires at least: 6.0
Tested up to:      6.6
Requires PHP:      8.0
License:           GNU General Public License v2 or later
Text Domain:       jora
Tags:              custom-menu, featured-images, full-width-template, translation-ready
*/

/* ── EXTRA TOKENS ── */
:root {
  --amber-bdr: rgba(196,122,26,.25);
  --sky: #e8f4fb; --sky-dark: #2a6a8a; --ice: #e8f4fb;
}

/* ── WORDPRESS NAV MENU ── */
#site-navigation .menu { display:flex; align-items:center; gap:2px; list-style:none; }
#site-navigation .menu li a {
  font-size:13px; font-weight:500; letter-spacing:.03em; text-decoration:none; color:var(--bark);
  padding:7px 13px; border-radius:8px; transition:background .2s,color .2s; display:block;
}
#site-navigation .menu li a:hover,
#site-navigation .menu .current-menu-item > a { background:var(--parchment); color:var(--moss); }
#site-navigation .menu .nav-cta > a { background:var(--moss); color:var(--white) !important; border-radius:40px; padding:9px 22px !important; font-weight:600; }
#site-navigation .menu .nav-cta > a:hover { background:var(--leaf); }
#colophon { background:var(--bark); color:var(--parchment); padding:64px 72px 40px; }

/* ── WP CONTENT ── */
.entry-content h2,.entry-content h3 { margin:28px 0 12px; }
.entry-content p { margin-bottom:16px; }
.entry-content ul { list-style:disc; padding-left:24px; margin-bottom:16px; }
.entry-content ol { list-style:decimal; padding-left:24px; margin-bottom:16px; }
.entry-content a { color:var(--leaf); }
.entry-content a:hover { text-decoration:underline; }
.entry-content img { border-radius:12px; margin-bottom:16px; max-width:100%; }
.alignleft  { float:left;  margin:0 24px 16px 0; }
.alignright { float:right; margin:0 0 16px 24px; }
.aligncenter { margin:0 auto 16px; display:block; }
img { max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; }


/* ══════════════════════════════════════════
   CRITICAL NAV / HAMBURGER FIXES
   Ensures hamburger shows on mobile and
   mobile drawer slides in correctly
══════════════════════════════════════════ */

/* Hamburger: hidden by default, shown via @media */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer: hidden by default */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 299;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-nav.open {
  max-height: 560px;
}
.mobile-nav a {
  display: block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--bark);
  text-decoration: none;
  border-bottom: 1px solid rgba(62, 42, 16, 0.06);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover { background: var(--parchment); color: var(--leaf); }
.mobile-nav .mob-cta {
  margin: 14px 28px 18px;
  background: var(--moss);
  color: var(--white) !important;
  border-radius: 40px;
  text-align: center;
  padding: 13px 24px;
  border-bottom: none !important;
  font-weight: 600;
}
.mobile-nav .mob-cta:hover { background: var(--leaf) !important; }

/* Show hamburger + drawer on mobile */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-nav { display: flex !important; }
}

:root{
  --soil:      #1c1409;
  --bark:      #3e2a10;
  --moss:      #344e1a;
  --leaf:      #5c8c2e;
  --sage:      #8bb05c;
  --lime:      #b8d97a;
  --cream:     #f5f0e6;
  --parchment: #ede5d0;
  --white:     #faf8f3;
  --muted:     #6b5e48;
  --border:    rgba(62,42,16,.12);
  --amber:     #c47a1a;
  --amber-bg:  #fff8ed;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Outfit',sans-serif;background:var(--white);color:var(--soil);overflow-x:hidden}
nav{
  position:fixed;top:0;left:0;width:100%;z-index:300;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 48px;height:68px;
  background:rgba(250,248,243,.95);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 4px 30px rgba(28,20,9,.1)}
.nav-logo img{height:42px}
.nav-links{display:flex;align-items:center;gap:2px;list-style:none}
.nav-links a{
  font-size:13px;font-weight:500;letter-spacing:.03em;
  text-decoration:none;color:var(--bark);
  padding:7px 13px;border-radius:8px;transition:background .2s,color .2s;
}
.nav-links a:hover{background:var(--parchment);color:var(--moss)}
.nav-cta{
  background:var(--moss)!important;color:var(--white)!important;
  border-radius:40px!important;padding:9px 22px!important;
  font-weight:600!important;transition:background .2s,transform .15s!important;
}
.nav-cta:hover{background:var(--leaf)!important;transform:translateY(-1px)}
.mobile-nav{
  display:none;
  flex-direction:column;
  position:fixed;top:68px;left:0;right:0;z-index:299;
  background:rgba(250,248,243,.98);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  max-height:0;overflow:hidden;transition:max-height .4s ease;
}
.mobile-nav.open{max-height:560px}
.mobile-nav a{
  display:block;padding:14px 28px;font-size:15px;font-weight:500;
  color:var(--bark);text-decoration:none;
  border-bottom:1px solid rgba(62,42,16,.06);transition:background .15s,color .15s;
}
.mobile-nav a:hover{background:var(--parchment);color:var(--leaf)}
.mobile-nav .mob-cta{
  margin:14px 28px 18px;background:var(--moss);
  color:var(--white)!important;border-radius:40px;text-align:center;
  padding:13px 24px!important;border-bottom:none!important;font-weight:600!important;
}
.mobile-nav .mob-cta:hover{background:var(--leaf)!important}
.hero{
  padding-top:68px;min-height:100vh;
  display:grid;grid-template-columns:52% 48%;
  overflow:hidden;position:relative;
}
.hero-left{
  display:flex;flex-direction:column;justify-content:center;
  padding:88px 64px 88px 72px;position:relative;z-index:2;background:var(--white);
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--leaf);font-weight:600;margin-bottom:24px;
}
.hero-eyebrow span{width:28px;height:1.5px;background:var(--leaf)}
.hero-h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(52px,6vw,90px);font-weight:700;line-height:1.0;
  color:var(--soil);margin-bottom:14px;
}
.hero-h1 em{font-style:italic;color:var(--leaf)}
.hero-tagline{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(18px,2vw,26px);color:var(--muted);
  font-style:italic;font-weight:400;margin-bottom:28px;
}
.hero-desc{
  font-size:16px;line-height:1.85;color:var(--muted);
  max-width:420px;margin-bottom:44px;
}
.hero-actions{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin-bottom:52px}
.btn-primary{
  background:var(--moss);color:var(--white);
  padding:15px 36px;border-radius:50px;font-size:14px;font-weight:600;
  letter-spacing:.04em;text-decoration:none;border:none;cursor:pointer;
  transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 6px 24px rgba(52,78,26,.3);
}
.btn-primary:hover{background:var(--leaf);transform:translateY(-2px);box-shadow:0 10px 32px rgba(52,78,26,.38)}
.btn-outline{
  color:var(--bark);font-size:14px;font-weight:500;
  text-decoration:none;display:flex;align-items:center;gap:8px;
  border:1.5px solid var(--border);border-radius:50px;
  padding:13px 28px;transition:border-color .2s,color .2s;
}
.btn-outline:hover{border-color:var(--leaf);color:var(--leaf)}
.hero-trust{
  display:flex;gap:24px;flex-wrap:wrap;
  border-top:1px solid var(--border);padding-top:36px;
}
.trust-item{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--muted)}
.trust-dot{width:7px;height:7px;border-radius:50%;background:var(--leaf);flex-shrink:0}
.hero-right{position:relative;overflow:hidden}
.hero-right img{width:100%;height:100%;object-fit:cover;display:block;animation:heroZoom 16s ease-in-out infinite alternate}
@keyframes heroZoom{from{transform:scale(1)}to{transform:scale(1.05)}}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to right,var(--white) 0%,transparent 12%),
             linear-gradient(to top,rgba(28,20,9,.28) 0%,transparent 50%);
}
.hero-badge{
  position:absolute;bottom:40px;right:36px;
  background:rgba(250,248,243,.95);backdrop-filter:blur(10px);
  border-radius:18px;padding:20px 22px;
  box-shadow:0 8px 32px rgba(28,20,9,.16);text-align:center;
}
.hero-badge .big{
  font-family:'Cormorant Garamond',serif;
  font-size:38px;font-weight:700;color:var(--leaf);line-height:1;
}
.hero-badge p{font-size:12px;color:var(--muted);margin-top:4px;line-height:1.45;max-width:120px}
.stats-strip{
  background:var(--moss);
  display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.08);
}
.stat-cell{
  padding:36px 24px;border-right:1px solid rgba(255,255,255,.12);
  text-align:center;display:flex;flex-direction:column;gap:6px;transition:background .2s;
}
.stat-cell:last-child{border-right:none}
.stat-cell:hover{background:rgba(255,255,255,.06)}
.stat-num{
  font-family:'Cormorant Garamond',serif;
  font-size:42px;font-weight:700;color:var(--lime);line-height:1;
}
.stat-label{font-size:13px;color:rgba(245,240,230,.72);line-height:1.4;max-width:150px;margin:0 auto}
.section{padding:80px 72px}
.section-eyebrow{
  font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--leaf);font-weight:600;margin-bottom:12px;
  display:flex;align-items:center;gap:10px;
}
.section-eyebrow::before{content:'';width:24px;height:1.5px;background:var(--leaf)}
.section-h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(30px,3.5vw,50px);font-weight:700;line-height:1.15;
  color:var(--soil);margin-bottom:14px;
}
.section-h2 em{font-style:italic;color:var(--leaf)}
.section-lead{font-size:16px;color:var(--muted);line-height:1.85;max-width:600px}
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:0}
.about-img{overflow:hidden;position:relative}
.about-img img{width:100%;height:100%;object-fit:cover;display:block;min-height:540px;transition:transform .6s}
.about-img:hover img{transform:scale(1.03)}
.about-img-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(28,20,9,.45) 0%,transparent 55%);
}
.about-img-quote{
  position:absolute;bottom:28px;left:28px;right:28px;
  font-family:'Cormorant Garamond',serif;
  font-size:15px;font-style:italic;color:rgba(245,240,230,.82);line-height:1.6;
}
.about-text{
  padding:72px 64px;display:flex;flex-direction:column;justify-content:center;
  background:var(--parchment);
}
.about-text p{font-size:15px;color:var(--muted);line-height:1.9;margin-bottom:18px}
.about-text p:last-of-type{margin-bottom:0}
.about-btn{
  display:inline-flex;align-items:center;gap:8px;margin-top:28px;
  background:var(--moss);color:var(--white);border-radius:50px;
  padding:13px 28px;font-size:14px;font-weight:600;text-decoration:none;
  transition:background .2s,transform .15s;width:fit-content;
  box-shadow:0 4px 16px rgba(52,78,26,.25);
}
.about-btn:hover{background:var(--leaf);transform:translateY(-1px)}
.features-strip{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
  background:var(--border);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.feature-cell{
  background:var(--white);padding:44px 36px;
  display:flex;flex-direction:column;gap:14px;transition:background .2s;
}
.feature-cell:hover{background:var(--parchment)}
.feature-icon{
  width:56px;height:56px;border-radius:16px;
  background:var(--parchment);display:grid;place-items:center;overflow:hidden;
}
.feature-icon img{width:34px;height:34px;object-fit:contain}
.feature-title{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:700;color:var(--soil);
}
.feature-desc{font-size:14px;color:var(--muted);line-height:1.7}
.feature-link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:13px;font-weight:600;color:var(--leaf);
  text-decoration:none;margin-top:auto;
}
.feature-link:hover{text-decoration:underline}
.video-section{background:var(--soil);padding:88px 72px;text-align:center;position:relative;overflow:hidden}
.video-section::after{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 50% at 50% 50%,rgba(92,140,46,.08),transparent);
  pointer-events:none;
}
.video-section .section-eyebrow{justify-content:center;color:var(--lime)}
.video-section .section-eyebrow::before{background:var(--lime)}
.video-section .section-h2{color:var(--cream);text-align:center;margin-bottom:14px}
.video-section .section-h2 em{color:var(--lime)}
.video-section .section-lead{color:rgba(245,240,230,.65);margin:0 auto 48px}
.video-wrap{
  max-width:860px;margin:0 auto;
  border-radius:22px;overflow:hidden;
  box-shadow:0 28px 80px rgba(0,0,0,.55);position:relative;z-index:1;
}
.video-wrap video{display:block;width:100%}
.testimonial-section{background:var(--parchment);padding:88px 72px;text-align:center}
.testimonial-card{
  background:var(--white);border:1px solid var(--border);border-radius:22px;
  padding:52px 56px;max-width:760px;margin:48px auto 0;
  position:relative;
}
.quote-mark{
  font-family:'Cormorant Garamond',serif;
  font-size:120px;color:var(--lime);line-height:.5;
  position:absolute;top:32px;left:40px;opacity:.6;user-select:none;
}
.testimonial-body{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(18px,2vw,24px);font-style:italic;
  line-height:1.75;color:var(--soil);margin-bottom:28px;position:relative;z-index:1;
}
.testimonial-author{
  display:flex;align-items:center;justify-content:center;gap:12px;
}
.author-dot{width:8px;height:8px;border-radius:50%;background:var(--leaf)}
.author-name{font-size:13px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--sage)}
.stars{color:var(--amber);font-size:18px;letter-spacing:2px;margin-bottom:12px;display:block}
.warn-banner{
  background:var(--amber-bg);border-left:4px solid var(--amber);
  margin:0 72px;border-radius:16px;padding:28px 36px;
  display:flex;gap:20px;align-items:flex-start;
}
.warn-icon{font-size:28px;flex-shrink:0;margin-top:2px}
.warn-title{
  font-family:'Cormorant Garamond',serif;
  font-size:20px;font-weight:700;color:var(--bark);margin-bottom:8px;
}
.warn-body{font-size:14px;color:var(--muted);line-height:1.75}
.warn-body a{color:var(--moss);font-weight:600;text-decoration:none}
.warn-body a:hover{text-decoration:underline}
.retailers-section{background:var(--white);padding:80px 72px}
.retailers-header{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:24px;flex-wrap:wrap;margin-bottom:40px;
}
.retailers-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.retailer-card{
  background:var(--white);border:1px solid var(--border);border-radius:18px;
  padding:28px 20px;display:flex;flex-direction:column;align-items:center;
  justify-content:center;gap:14px;text-align:center;
  text-decoration:none;transition:box-shadow .25s,transform .2s,border-color .2s;
}
.retailer-card:hover{box-shadow:0 12px 40px rgba(28,20,9,.1);transform:translateY(-3px);border-color:var(--sage)}
.retailer-img-wrap{height:52px;display:flex;align-items:center;justify-content:center}
.retailer-card img{max-height:44px;max-width:130px;object-fit:contain;filter:grayscale(20%);transition:filter .2s}
.retailer-card:hover img{filter:grayscale(0%)}
.retailer-cta{font-size:12px;font-weight:600;color:var(--leaf);display:flex;align-items:center;gap:4px}
.school-banner{
  background:var(--parchment);
  display:grid;grid-template-columns:1fr 1fr;gap:0;
  border-top:1px solid var(--border);border-bottom:1px solid var(--border);
}
.school-text{
  padding:72px 64px;display:flex;flex-direction:column;justify-content:center;
}
.school-text p{font-size:15px;color:var(--muted);line-height:1.85;margin-top:16px;margin-bottom:28px;max-width:420px}
.school-img{overflow:hidden}
.school-img img{width:100%;height:100%;object-fit:cover;min-height:380px;display:block;transition:transform .6s}
.school-img:hover img{transform:scale(1.04)}
.cta-banner{
  background:var(--soil);padding:88px 72px;
  display:flex;align-items:center;justify-content:space-between;
  gap:48px;flex-wrap:wrap;
}
.cta-banner h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(30px,3.5vw,52px);font-weight:700;line-height:1.15;color:var(--cream);
}
.cta-banner h2 em{font-style:italic;color:var(--lime)}
.cta-banner p{font-size:15px;color:rgba(245,240,230,.6);margin-top:10px;max-width:420px;line-height:1.7}
.btn-large{
  background:var(--leaf);color:var(--white);
  padding:17px 42px;border-radius:50px;font-size:15px;font-weight:600;
  letter-spacing:.04em;text-decoration:none;white-space:nowrap;flex-shrink:0;
  transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 8px 28px rgba(92,140,46,.4);
}
.btn-large:hover{background:var(--sage);transform:translateY(-2px)}
footer{background:var(--bark);color:var(--parchment);padding:64px 72px 40px}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:52px}
.footer-brand img{height:38px;filter:brightness(2) saturate(0);opacity:.85;margin-bottom:16px}
.footer-brand p{font-size:14px;color:rgba(237,229,208,.55);line-height:1.8;max-width:260px}
.footer-socials{display:flex;gap:10px;margin-top:22px}
.social-btn{
  width:36px;height:36px;border:1px solid rgba(255,255,255,.18);
  border-radius:10px;display:grid;place-items:center;
  font-size:13px;font-weight:600;color:var(--cream);text-decoration:none;
  transition:background .2s,border-color .2s;
}
.social-btn:hover{background:var(--leaf);border-color:var(--leaf)}
.footer-col h5{
  font-size:11px;letter-spacing:.15em;text-transform:uppercase;
  color:var(--sage);margin-bottom:16px;font-weight:600;
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:9px}
.footer-col a{font-size:14px;color:rgba(237,229,208,.55);text-decoration:none;transition:color .2s}
.footer-col a:hover{color:var(--cream)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);padding-top:28px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
}
.footer-bottom p{font-size:12px;color:rgba(237,229,208,.3)}
.fade-up{opacity:0;transform:translateY(28px);transition:opacity .75s ease,transform .75s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}
@media(max-width:1100px){
  .retailers-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:1024px){
  .section{padding:60px 36px}
  .video-section{padding:64px 36px}
  .testimonial-section{padding:64px 36px}
  .retailers-section{padding:60px 36px}
  .warn-banner{margin:0 36px}
  .cta-banner{padding:64px 36px}
  footer{padding:56px 36px 36px}
  .footer-top{grid-template-columns:1fr 1fr}
  nav{padding:0 28px}
  .about-text{padding:56px 40px}
  .school-text{padding:56px 36px}
}
@media(max-width:768px){
  .nav-links{display:none}
  .hamburger{display:flex;flex-direction:column;gap:5px}
  .mobile-nav{display:flex;flex-direction:column}
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-right{height:60vw}
  .hero-left{padding:56px 24px 40px}
  .stats-strip{grid-template-columns:1fr 1fr}
  .stat-cell{border-right:none;border-bottom:1px solid rgba(255,255,255,.12);padding:28px 20px}
  .stats-strip .stat-cell:nth-child(2n){border-right:none}
  .features-strip{grid-template-columns:1fr}
  .about-split{grid-template-columns:1fr}
  .about-img img{min-height:240px}
  .about-text{padding:44px 24px}
  .school-banner{grid-template-columns:1fr}
  .school-img img{min-height:220px}
  .school-text{padding:44px 24px}
  .testimonial-card{padding:36px 28px}
  .retailers-section{padding:52px 24px}
  .warn-banner{margin:0 24px;padding:22px 20px;flex-direction:column}
  .section{padding:52px 24px}
  .cta-banner{padding:52px 24px;flex-direction:column;text-align:center}
  .cta-banner p{margin:0 auto}
  footer{padding:48px 24px 28px}
  .footer-top{grid-template-columns:1fr;gap:32px}
  .video-section,.testimonial-section{padding:56px 24px}
  .hero-trust{gap:14px}
}
@media(max-width:480px){
  .stats-strip{grid-template-columns:1fr}
  .retailers-grid{grid-template-columns:1fr 1fr}
}
*, *::before, *::after{ box-sizing: border-box; margin: 0; padding: 0; }
.nav-links a.active{ color: var(--leaf); }
.hero-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px,6vw,88px); font-weight: 700; line-height: 1.0;
  color: var(--soil); margin-bottom: 10px;
}
.hero-title em{ font-style: italic; color: var(--leaf); }
.hero-sub-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px,2vw,26px); color: var(--muted);
  margin-bottom: 28px; font-style: italic; font-weight: 400;
}
.hero-badges{
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 48px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.badge{
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.badge-dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); flex-shrink: 0; }
.temp-pill{
  position: absolute; bottom: 36px; right: 36px;
  background: rgba(250,248,243,.95); backdrop-filter: blur(10px);
  border-radius: 18px; padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(28,20,9,.16);
  text-align: center;
}
.temp-pill .big{
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 700; color: var(--leaf); line-height: 1;
}
.temp-pill p{ font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.4; max-width: 130px; }
.feature-cell:last-child{ border-right: none; }
.feature-text h3{ font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--soil); margin-bottom: 6px; }
.feature-text p{ font-size: 13px; color: var(--muted); line-height: 1.6; }
.section-body{ font-size: 16px; color: var(--muted); line-height: 1.85; max-width: 540px; }
.split{ display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-img{ overflow: hidden; }
.split-img img{ width: 100%; height: 100%; object-fit: cover; display: block; min-height: 480px; transition: transform .6s ease; }
.split-img:hover img{ transform: scale(1.03); }
.split-text{ padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--parchment); }
.split.reverse .split-img{ order: 2; }
.split.reverse .split-text{ order: 1; background: var(--white); }
.benefits-grid{
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
  margin-top: 36px;
}
.benefit-item{
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border-radius: 12px; padding: 16px 18px;
  border: 1px solid var(--border);
}
.benefit-check{
  width: 22px; height: 22px; border-radius: 50%; background: #e4f0d4;
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
  font-size: 12px; color: var(--leaf); font-weight: 700;
}
.benefit-item span{ font-size: 14px; color: var(--bark); line-height: 1.5; }
.video-section .section-body{ color: rgba(245,240,230,.65); margin: 0 auto 44px; }
.video-wrap iframe{ display: block; width: 100%; aspect-ratio: 16/9; border: none; }
.products-section{ background: var(--white); }
.products-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.product-card{
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  background: var(--white); transition: box-shadow .25s, transform .2s;
}
.product-card:hover{ box-shadow: 0 16px 48px rgba(28,20,9,.12); transform: translateY(-4px); }
.product-img{ aspect-ratio: 4/3; overflow: hidden; background: var(--parchment); }
.product-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img img{ transform: scale(1.05); }
.product-body{ padding: 28px 28px 32px; }
.product-name{
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--soil); margin-bottom: 16px;
}
.product-specs{ list-style: none; border-top: 1px solid var(--border); padding-top: 16px; }
.product-specs li{
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(62,42,16,.06);
}
.product-specs li:last-child{ border-bottom: none; }
.spec-label{ color: var(--muted); font-weight: 400; }
.spec-val{ color: var(--bark); font-weight: 600; text-align: right; max-width: 55%; }
.product-tag{
  display: inline-block; margin-top: 18px;
  font-size: 12px; background: #e4f0d4; color: var(--moss);
  border-radius: 20px; padding: 5px 14px; font-weight: 500;
}
.suitable-section{ background: var(--parchment); }
.suitable-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.suitable-card{
  border-radius: 16px; padding: 32px 36px;
}
.suitable-card.yes{ background: #edf6e0; border: 1px solid #c4dfa0; }
.suitable-card.no{ background: #fdf3f3; border: 1px solid #f0c8c8; }
.suitable-card h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.suitable-card.yes h3{ color: var(--moss); }
.suitable-card.no h3{ color: #7a2020; }
.suitable-card ul{ list-style: none; display: flex; flex-direction: column; gap: 8px; }
.suitable-card ul li{
  font-size: 14px; line-height: 1.5;
  display: flex; align-items: flex-start; gap: 10px;
}
.suitable-card.yes li::before{ content: '✓'; color: var(--leaf); font-weight: 700; flex-shrink: 0; }
.suitable-card.no li::before{ content: '✗'; color: #c04040; font-weight: 700; flex-shrink: 0; }
.testimonial-section::before{
  content: '"'; font-family: 'Cormorant Garamond', serif;
  font-size: 500px; line-height: .6; color: rgba(255,255,255,.04);
  position: absolute; top: -40px; left: 20px;
  pointer-events: none; user-select: none;
}
.testimonial-inner{
  max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.testimonial-inner blockquote{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px,2.5vw,30px); font-style: italic;
  line-height: 1.7; color: var(--cream); margin-bottom: 32px;
}
.faq-section{ background: var(--white); }
.faq-list{ max-width: 800px; margin-top: 40px; }
.faq-item{
  border-bottom: 1px solid var(--border);
}
.faq-q{
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; background: none; border: none; cursor: pointer;
  text-align: left; gap: 20px;
}
.faq-q-text{
  font-size: 16px; font-weight: 500; color: var(--soil);
  transition: color .2s;
}
.faq-q:hover .faq-q-text{ color: var(--leaf); }
.faq-arrow{
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border); display: grid; place-items: center;
  font-size: 16px; color: var(--muted); transition: transform .3s, background .2s;
}
.faq-item.open .faq-arrow{ transform: rotate(45deg); background: var(--leaf); border-color: var(--leaf); color: var(--white); }
.faq-a{
  font-size: 15px; color: var(--muted); line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a{ max-height: 400px; padding-bottom: 22px; }
@keyframes fadeUp{ from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1024px){
  .section { padding: 64px 36px; }
  .split-text { padding: 56px 40px; }
  .hero-left { padding: 60px 36px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 60px 36px; }
  footer { padding: 56px 36px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 28px; }
}
@media (max-width: 768px){
  .nav-links { display: none; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; }
  .mobile-nav { display: flex; flex-direction: column; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 55vw; }
  .hero-left { padding: 48px 24px 36px; }
  .features-strip { grid-template-columns: 1fr; }
  .feature-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split-img img { min-height: 260px; }
  .split.reverse .split-img { order: 0; }
  .split.reverse .split-text { order: 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .suitable-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 24px; }
  .video-section, .testimonial-section { padding: 60px 24px; }
  .cta-banner { padding: 52px 24px; flex-direction: column; text-align: center; }
  .cta-banner p { margin: 0 auto; }
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
.hero-dark{
  padding-top: 68px; min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1c1409 0%, #344e1a 60%, #5c8c2e 100%);
  position: relative; overflow: hidden; text-align: center;
}
.hero-dark::before{
  content: ''; position: absolute; inset: 0;
  background: url('https://www.joracomposters.com/wp-content/uploads/2017/12/kitchen-waste.jpg') center/cover no-repeat;
  opacity: .12; pointer-events: none;
}
.hero-dark .hero-inner, .hero-dark > .hero-inner{ position: relative; z-index: 2; padding: 72px 28px; }
.hero-dark h1{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,6vw,80px); font-weight: 700; line-height: 1.05;
  color: var(--cream); margin-bottom: 18px;
}
.hero-dark h1 em{ font-style: italic; color: var(--lime); }
.hero-pills{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pill{
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 40px;
  padding: 8px 20px; font-size: 13px; font-weight: 500; color: var(--cream);
}
.trouble-section{ background: var(--white); }
.trouble-intro{
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; margin-bottom: 56px;
}
.trouble-contact{
  background: var(--parchment); border-radius: 20px;
  padding: 36px; display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--border);
}
.trouble-contact h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--soil);
}
.trouble-contact p{ font-size: 14px; color: var(--muted); line-height: 1.7; }
.contact-row{ display: flex; align-items: center; gap: 12px; }
.contact-icon{
  width: 42px; height: 42px; border-radius: 12px;
  background: #e4f0d4; display: grid; place-items: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-label{ font-size: 12px; color: var(--muted); }
.contact-val{ font-size: 15px; font-weight: 600; color: var(--soil); }
.contact-val a{ color: var(--leaf); text-decoration: none; }
.contact-val a:hover{ text-decoration: underline; }
.trouble-table-wrap{ overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); }
table.trouble{
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
table.trouble thead tr{ background: var(--moss); }
table.trouble thead th{
  padding: 16px 22px; text-align: left;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lime); font-weight: 600;
}
table.trouble tbody tr{ border-bottom: 1px solid var(--border); transition: background .15s; }
table.trouble tbody tr:last-child{ border-bottom: none; }
table.trouble tbody tr:hover{ background: var(--cream); }
table.trouble td{ padding: 18px 22px; vertical-align: top; color: var(--bark); line-height: 1.6; }
table.trouble td:first-child{ font-weight: 600; color: var(--soil); white-space: nowrap; }
.cause-tag{
  display: inline-block; background: var(--amber-bg); color: var(--amber);
  border: 1px solid var(--amber-bdr); border-radius: 6px;
  padding: 3px 10px; font-size: 12px; font-weight: 500; margin-bottom: 4px;
}
.fix-list{ list-style: none; display: flex; flex-direction: column; gap: 5px; }
.fix-list li{ display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--bark); }
.fix-list li::before{ content: '→'; color: var(--leaf); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tips-section{ background: var(--parchment); }
.tips-grid{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 48px;
}
.tip-card{
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .2s;
  display: flex; flex-direction: column;
}
.tip-card:hover{ box-shadow: 0 16px 48px rgba(28,20,9,.1); transform: translateY(-4px); }
.tip-img{ aspect-ratio: 16/9; overflow: hidden; }
.tip-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.tip-card:hover .tip-img img{ transform: scale(1.04); }
.tip-body{ padding: 28px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.tip-number{
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 10px;
}
.tip-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; color: var(--soil); margin-bottom: 14px; line-height: 1.2;
}
.tip-body p{ font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.tip-body p:last-of-type{ margin-bottom: 0; }
.quick-tips-section{ background: var(--white); }
.quick-grid{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 16px; margin-top: 40px;
}
.quick-card{
  background: var(--parchment); border-radius: 16px; padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s;
}
.quick-card:hover{ background: #e3d9c0; }
.quick-icon{
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--white); display: grid; place-items: center;
  font-size: 24px; box-shadow: 0 2px 8px rgba(28,20,9,.07);
}
.quick-title{ font-size: 15px; font-weight: 600; color: var(--soil); }
.quick-desc{ font-size: 13px; color: var(--muted); line-height: 1.7; }
.btn-ghost{
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(245,240,230,.6); font-size: 14px; font-weight: 500;
  text-decoration: none; margin-top: 16px;
  border: 1.5px solid rgba(255,255,255,.18); border-radius: 40px;
  padding: 11px 24px; transition: border-color .2s, color .2s;
}
.btn-ghost:hover{ border-color: var(--lime); color: var(--lime); }
.product-card.featured{ border-color: var(--leaf); box-shadow: 0 0 0 2px var(--leaf); }
.featured-badge{
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: var(--leaf); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
}
.product-model{ font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); font-weight: 600; margin-bottom: 6px; }
.product-tagline{ font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.specs-table{ border-top: 1px solid var(--border); padding-top: 18px; margin-bottom: 20px; }
.spec-row{
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid rgba(62,42,16,.06); font-size: 13px;
}
.spec-row:last-child{ border-bottom: none; }
.spec-k{ color: var(--muted); }
.spec-v{ color: var(--bark); font-weight: 600; text-align: right; max-width: 58%; }
.product-suitable{
  background: #edf6e0; border-radius: 10px; padding: 12px 16px;
  font-size: 13px; color: var(--moss); line-height: 1.6; margin-bottom: 22px;
}
.product-suitable strong{ font-weight: 600; }
.btn-buy-product{
  display: block; text-align: center; text-decoration: none;
  background: var(--moss); color: var(--white);
  border-radius: 50px; padding: 14px 24px; font-size: 14px; font-weight: 600;
  letter-spacing: .03em; margin-top: auto;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(52,78,26,.25);
}
.btn-buy-product:hover{ background: var(--leaf); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(52,78,26,.32); }
.compare-section{ background: var(--parchment); }
.compare-wrap{ overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); }
table.compare{
  width: 100%; border-collapse: collapse; min-width: 560px;
}
table.compare thead tr{ background: var(--moss); }
table.compare thead th{
  padding: 18px 24px; text-align: left;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lime); font-weight: 600;
}
table.compare thead th:first-child{ background: #2a3e15; }
table.compare tbody tr{ border-bottom: 1px solid var(--border); transition: background .15s; }
table.compare tbody tr:last-child{ border-bottom: none; }
table.compare tbody tr:hover{ background: #e8dfc8; }
table.compare td{
  padding: 15px 24px; font-size: 14px; color: var(--bark); vertical-align: middle;
}
table.compare td:first-child{ color: var(--muted); font-weight: 500; font-size: 13px; }
table.compare td.highlight{ font-weight: 700; color: var(--moss); }
.stores-section{ background: var(--parchment); }
.store-card{
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: start;
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 36px 40px; max-width: 680px;
}
.store-logo-wrap{
  width: 120px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: var(--parchment); border-radius: 12px; overflow: hidden; flex-shrink: 0;
}
.store-logo-wrap img{ max-width: 100px; max-height: 60px; object-fit: contain; }
.store-name{
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700; color: var(--soil); margin-bottom: 6px;
}
.store-location{ font-size: 13px; color: var(--leaf); font-weight: 600; letter-spacing: .04em; margin-bottom: 14px; }
.store-details{ display: flex; flex-direction: column; gap: 8px; }
.store-row{ display: flex; gap: 10px; font-size: 14px; color: var(--muted); align-items: flex-start; }
.store-row strong{ color: var(--bark); min-width: 90px; flex-shrink: 0; }
.store-socials{ display: flex; gap: 10px; margin-top: 8px; }
.store-social-btn{
  font-size: 12px; font-weight: 600; color: var(--leaf);
  background: #edf6e0; border-radius: 20px; padding: 5px 14px;
  text-decoration: none; transition: background .2s;
}
.store-social-btn:hover{ background: #d4eab8; }
.store-visit-btn{
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  background: var(--moss); color: var(--white); border-radius: 40px;
  padding: 10px 22px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background .2s;
}
.store-visit-btn:hover{ background: var(--leaf); }
.warn-banner .wi{ font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.warn-banner h4{
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--bark); margin-bottom: 8px;
}
.warn-banner p{ font-size: 14px; color: var(--muted); line-height: 1.75; }
.warn-banner a{ color: var(--moss); font-weight: 600; text-decoration: none; }
.warn-banner a:hover{ text-decoration: underline; }
@media (max-width: 1100px){
  .retailers-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px){
  .retailers-grid { grid-template-columns: 1fr 1fr; }
}
.steps-section{background:var(--parchment)}
.steps-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  border:1px solid var(--border);border-radius:18px;overflow:hidden;
  margin-top:0;
}
.step-cell{
  padding:36px 28px;background:var(--white);
  border-right:1px solid var(--border);
  display:flex;flex-direction:column;gap:14px;
  transition:background .2s;
}
.step-cell:last-child{border-right:none}
.step-cell:hover{background:var(--parchment)}
.step-num{
  font-family:'Cormorant Garamond',serif;
  font-size:48px;font-weight:700;color:var(--lime);line-height:1;
}
.step-title{font-size:15px;font-weight:600;color:var(--soil)}
.step-desc{font-size:13px;color:var(--muted);line-height:1.7}
.assembly-section{background:var(--white)}
.assembly-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
}
.assembly-card{
  border:1px solid var(--border);border-radius:22px;overflow:hidden;
  background:var(--white);display:flex;flex-direction:column;
  transition:box-shadow .3s,transform .2s;
}
.assembly-card:hover{box-shadow:0 16px 52px rgba(28,20,9,.11);transform:translateY(-4px)}
.video-thumb{
  position:relative;aspect-ratio:16/9;background:var(--soil);overflow:hidden;cursor:pointer;
}
.video-thumb iframe{
  position:absolute;inset:0;width:100%;height:100%;border:none;
}
.play-overlay{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:rgba(28,20,9,.35);transition:background .2s;z-index:2;pointer-events:none;
}
.assembly-card:hover .play-overlay{background:rgba(28,20,9,.15)}
.play-btn{
  width:60px;height:60px;border-radius:50%;
  background:rgba(250,248,243,.95);backdrop-filter:blur(8px);
  display:grid;place-items:center;
  box-shadow:0 4px 20px rgba(0,0,0,.3);
}
.play-btn::after{
  content:'';display:block;
  width:0;height:0;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
  border-left:20px solid var(--moss);
  margin-left:4px;
}
.card-body{padding:26px 28px 30px;flex:1;display:flex;flex-direction:column;gap:10px}
.card-model{
  font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--sage);font-weight:600;
}
.card-title{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;font-weight:700;color:var(--soil);
}
.card-subtitle{font-size:13px;color:var(--muted);line-height:1.6}
.card-actions{display:flex;flex-direction:column;gap:10px;margin-top:auto;padding-top:16px}
.btn-pdf{
  display:flex;align-items:center;gap:10px;
  background:var(--parchment);color:var(--bark);
  border-radius:10px;padding:12px 16px;font-size:13px;font-weight:600;
  text-decoration:none;transition:background .2s,color .2s;
  border:1px solid var(--border);
}
.btn-pdf:hover{background:#e3d9c0;color:var(--moss)}
.pdf-icon{
  width:32px;height:32px;border-radius:8px;
  background:var(--white);display:grid;place-items:center;
  font-size:16px;flex-shrink:0;border:1px solid var(--border);
}
.manual-section{background:var(--parchment)}
.manual-card{
  display:grid;grid-template-columns:1fr auto;gap:36px;align-items:center;
  background:var(--white);border:1px solid var(--border);border-radius:20px;
  padding:40px 44px;max-width:860px;
}
.manual-icon{
  width:80px;height:80px;border-radius:20px;
  background:linear-gradient(135deg,#344e1a,#5c8c2e);
  display:grid;place-items:center;font-size:36px;flex-shrink:0;
}
.manual-info{flex:1}
.manual-title{
  font-family:'Cormorant Garamond',serif;
  font-size:28px;font-weight:700;color:var(--soil);margin-bottom:8px;
}
.manual-desc{font-size:15px;color:var(--muted);line-height:1.75;max-width:480px;margin-bottom:20px}
.btn-download{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--moss);color:var(--white);
  border-radius:50px;padding:14px 28px;font-size:14px;font-weight:600;
  text-decoration:none;letter-spacing:.03em;
  box-shadow:0 4px 16px rgba(52,78,26,.25);
  transition:background .2s,transform .15s,box-shadow .2s;
}
.btn-download:hover{background:var(--leaf);transform:translateY(-1px);box-shadow:0 8px 24px rgba(52,78,26,.32)}
.time-banner{
  background:var(--moss);padding:48px 72px;
  display:flex;align-items:center;justify-content:space-between;gap:40px;flex-wrap:wrap;
}
.time-stat{display:flex;align-items:center;gap:20px}
.time-num{
  font-family:'Cormorant Garamond',serif;
  font-size:60px;font-weight:700;color:var(--lime);line-height:1;
}
.time-label{font-size:14px;color:rgba(245,240,230,.75);line-height:1.5;max-width:180px}
.time-divider{width:1px;height:60px;background:rgba(255,255,255,.15);flex-shrink:0}
.time-note{font-size:15px;color:rgba(245,240,230,.7);max-width:360px;line-height:1.75}
.contact-section{background:var(--white)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:760px}
.contact-card{
  background:var(--parchment);border:1px solid var(--border);
  border-radius:18px;padding:32px 36px;
  display:flex;flex-direction:column;gap:12px;
}
.contact-card-icon{
  width:52px;height:52px;border-radius:14px;
  background:var(--white);display:grid;place-items:center;
  font-size:24px;box-shadow:0 2px 8px rgba(28,20,9,.07);
}
.contact-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:700;color:var(--soil);
}
.contact-card p{font-size:14px;color:var(--muted);line-height:1.7}
.contact-card a{
  display:inline-flex;align-items:center;gap:6px;margin-top:4px;
  font-size:16px;font-weight:600;color:var(--leaf);text-decoration:none;
}
.contact-card a:hover{text-decoration:underline}
.hero-sub{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(18px,2vw,24px);color:var(--muted);
  font-style:italic;font-weight:400;margin-bottom:26px;
}
.stat-badge{
  position:absolute;bottom:36px;right:36px;
  background:rgba(250,248,243,.95);backdrop-filter:blur(10px);
  border-radius:18px;padding:20px 24px;
  box-shadow:0 8px 32px rgba(28,20,9,.16);text-align:center;
}
.stat-badge .big{
  font-family:'Cormorant Garamond',serif;
  font-size:38px;font-weight:700;color:var(--leaf);line-height:1;
}
.stat-badge p{font-size:12px;color:var(--muted);margin-top:4px;line-height:1.45;max-width:130px}
.impact-bar{
  background:var(--moss);
  display:grid;grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,.08);
}
.impact-cell{
  padding:40px 36px;border-right:1px solid rgba(255,255,255,.12);
  text-align:center;display:flex;flex-direction:column;gap:8px;
  transition:background .2s;
}
.impact-cell:last-child{border-right:none}
.impact-cell:hover{background:rgba(255,255,255,.06)}
.impact-num{
  font-family:'Cormorant Garamond',serif;
  font-size:52px;font-weight:700;color:var(--lime);line-height:1;
}
.impact-label{font-size:14px;color:rgba(245,240,230,.75);line-height:1.5;max-width:200px;margin:0 auto}
.threefold-section{background:var(--parchment)}
.threefold-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.tf-card{
  background:var(--white);border:1px solid var(--border);border-radius:20px;
  padding:36px 30px;display:flex;flex-direction:column;gap:14px;
  transition:box-shadow .25s,transform .2s;
}
.tf-card:hover{box-shadow:0 16px 48px rgba(28,20,9,.1);transform:translateY(-4px)}
.tf-icon{
  width:60px;height:60px;border-radius:18px;
  display:grid;place-items:center;font-size:28px;flex-shrink:0;
}
.tf-icon.green{background:#e4f0d4}
.tf-icon.blue{background:#e4f0fb}
.tf-icon.amber{background:#fef3d8}
.tf-num{
  font-family:'Cormorant Garamond',serif;
  font-size:13px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--sage);font-weight:700;
}
.tf-title{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;font-weight:700;color:var(--soil);line-height:1.2;
}
.tf-desc{font-size:14px;color:var(--muted);line-height:1.8}
.why-split{display:grid;grid-template-columns:1fr 1fr;gap:0}
.why-img{overflow:hidden}
.why-img img{width:100%;height:100%;object-fit:cover;display:block;min-height:480px;transition:transform .6s ease}
.why-img:hover img{transform:scale(1.03)}
.why-text{
  padding:72px 64px;display:flex;flex-direction:column;justify-content:center;
  background:var(--white);
}
.why-text p{font-size:15px;color:var(--muted);line-height:1.85;margin-bottom:16px}
.why-text p:last-of-type{margin-bottom:0}
.highlight-box{
  background:#e4f0d4;border-left:4px solid var(--leaf);
  border-radius:0 12px 12px 0;padding:18px 22px;
  font-size:14px;color:var(--moss);line-height:1.7;margin-top:20px;
}
.highlight-box strong{font-weight:600;display:block;margin-bottom:4px}
.circle-split{display:grid;grid-template-columns:1fr 1fr;gap:0;background:var(--parchment)}
.circle-img{overflow:hidden}
.circle-img img{width:100%;height:100%;object-fit:contain;display:block;min-height:400px;padding:40px;background:var(--parchment)}
.circle-text{
  padding:72px 64px;display:flex;flex-direction:column;justify-content:center;
  background:var(--parchment);
}
.circle-text p{font-size:15px;color:var(--muted);line-height:1.85;margin-bottom:14px}
.training-section{background:var(--white)}
.training-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;
}
.training-text p{font-size:15px;color:var(--muted);line-height:1.85;margin-bottom:16px}
.training-steps{display:flex;flex-direction:column;gap:16px;margin-top:8px}
.tstep{
  display:flex;align-items:flex-start;gap:16px;
  background:var(--parchment);border-radius:14px;padding:20px;
  border:1px solid var(--border);
}
.tstep-icon{
  width:44px;height:44px;border-radius:12px;
  background:var(--white);display:grid;place-items:center;
  font-size:20px;flex-shrink:0;box-shadow:0 2px 8px rgba(28,20,9,.06);
}
.tstep-text h4{font-size:15px;font-weight:600;color:var(--soil);margin-bottom:4px}
.tstep-text p{font-size:13px;color:var(--muted);line-height:1.65;margin:0}
.contact-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;
}
.contact-info{display:flex;flex-direction:column;gap:20px}
.contact-info p{font-size:15px;color:var(--muted);line-height:1.85}
.cinfo-row{
  display:flex;align-items:center;gap:14px;
  background:var(--white);border-radius:14px;padding:18px 20px;
  border:1px solid var(--border);
}
.cinfo-icon{
  width:46px;height:46px;border-radius:12px;
  background:#e4f0d4;display:grid;place-items:center;
  font-size:20px;flex-shrink:0;
}
.cinfo-label{font-size:12px;color:var(--muted);margin-bottom:2px}
.cinfo-val{font-size:15px;font-weight:600;color:var(--soil)}
.cinfo-val a{color:var(--leaf);text-decoration:none}
.cinfo-val a:hover{text-decoration:underline}
.contact-form{
  background:var(--white);border-radius:22px;padding:40px 40px 44px;
  border:1px solid var(--border);box-shadow:0 8px 40px rgba(28,20,9,.07);
}
.contact-form h3{
  font-family:'Cormorant Garamond',serif;
  font-size:26px;font-weight:700;color:var(--soil);margin-bottom:24px;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.form-group label{font-size:12px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
.form-group input, .form-group select, .form-group textarea{
  font-family:'Outfit',sans-serif;font-size:14px;
  background:var(--parchment);border:1px solid var(--border);
  border-radius:10px;padding:12px 16px;color:var(--soil);
  transition:border-color .2s,box-shadow .2s;outline:none;
  -webkit-appearance:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  border-color:var(--leaf);box-shadow:0 0 0 3px rgba(92,140,46,.12);
}
.form-group textarea{resize:vertical;min-height:110px}
.form-group.full{grid-column:1/-1}
.btn-submit{
  width:100%;background:var(--moss);color:var(--white);
  border:none;border-radius:50px;padding:15px 32px;
  font-family:'Outfit',sans-serif;font-size:15px;font-weight:600;
  letter-spacing:.04em;cursor:pointer;margin-top:6px;
  transition:background .2s,transform .15s,box-shadow .2s;
  box-shadow:0 4px 16px rgba(52,78,26,.25);
}
.btn-submit:hover{background:var(--leaf);transform:translateY(-1px);box-shadow:0 8px 24px rgba(52,78,26,.32)}
.form-note{font-size:12px;color:var(--muted);text-align:center;margin-top:12px;line-height:1.6}
.filter-bar{
  background:var(--white);
  border-bottom:1px solid var(--border);
  padding:20px 72px;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;flex-wrap:wrap;
  position:sticky;top:68px;z-index:200;
}
.filter-tabs{display:flex;gap:8px;flex-wrap:wrap}
.filter-btn{
  font-family:'Outfit',sans-serif;
  background:none;border:1.5px solid var(--border);border-radius:40px;
  padding:7px 18px;font-size:13px;font-weight:500;color:var(--muted);
  cursor:pointer;transition:all .2s;
}
.filter-btn:hover{border-color:var(--sage);color:var(--moss)}
.filter-btn.active{background:var(--moss);border-color:var(--moss);color:var(--white)}
.photo-count{font-size:13px;color:var(--muted);font-weight:500;white-space:nowrap}
.gallery-section{padding:48px 72px 80px}
.gallery-grid{
  columns:4;column-gap:16px;
}
.gallery-item{
  break-inside:avoid;margin-bottom:16px;
  position:relative;border-radius:14px;overflow:hidden;
  cursor:pointer;
  border:1px solid var(--border);
}
.gallery-item img{
  display:block;width:100%;
  transition:transform .5s ease,filter .3s;
  filter:brightness(.98);
}
.gallery-item:hover img{transform:scale(1.04);filter:brightness(.85)}
.gallery-caption{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(28,20,9,.88) 0%,rgba(28,20,9,.2) 55%,transparent 100%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:20px 18px;
  opacity:0;transition:opacity .3s;
}
.gallery-item:hover .gallery-caption{opacity:1}
.caption-location{
  font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--lime);font-weight:600;margin-bottom:5px;
}
.caption-title{
  font-family:'Cormorant Garamond',serif;
  font-size:17px;font-weight:600;color:var(--cream);line-height:1.3;
}
.caption-zoom{
  position:absolute;top:14px;right:14px;
  width:36px;height:36px;border-radius:50%;
  background:rgba(250,248,243,.2);backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.3);
  display:grid;place-items:center;
  font-size:16px;color:var(--white);
  opacity:0;transition:opacity .3s;
}
.gallery-item:hover .caption-zoom{opacity:1}
.gallery-item.hidden{display:none}
.lightbox{
  position:fixed;inset:0;z-index:1000;
  background:rgba(10,8,5,.93);backdrop-filter:blur(12px);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .3s;
}
.lightbox.open{opacity:1;pointer-events:all}
.lb-inner{
  position:relative;max-width:min(900px,90vw);width:100%;
  display:flex;flex-direction:column;align-items:center;gap:16px;
}
.lb-img-wrap{
  width:100%;border-radius:16px;overflow:hidden;
  box-shadow:0 32px 100px rgba(0,0,0,.6);
}
.lb-img-wrap img{display:block;width:100%;max-height:75vh;object-fit:contain;background:var(--soil)}
.lb-caption{
  text-align:center;
}
.lb-caption-loc{
  font-size:11px;letter-spacing:.15em;text-transform:uppercase;
  color:var(--lime);font-weight:600;margin-bottom:6px;
}
.lb-caption-title{
  font-family:'Cormorant Garamond',serif;
  font-size:20px;font-weight:600;color:var(--cream);
}
.lb-close{
  position:fixed;top:24px;right:28px;
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);
  display:grid;place-items:center;cursor:pointer;
  font-size:22px;color:var(--cream);
  transition:background .2s;
}
.lb-close:hover{background:rgba(255,255,255,.2)}
.lb-prev,.lb-next{
  position:fixed;top:50%;transform:translateY(-50%);
  width:52px;height:52px;border-radius:50%;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);
  display:grid;place-items:center;cursor:pointer;
  font-size:22px;color:var(--cream);
  transition:background .2s;
}
.lb-prev:hover,.lb-next:hover{background:rgba(255,255,255,.22)}
.lb-prev{left:20px}
.lb-next{right:20px}
.lb-counter{
  font-size:12px;color:rgba(245,240,230,.45);letter-spacing:.08em;
}
@media(max-width:1200px){.gallery-grid{columns:3}}
.hero-meta{
  display:flex;gap:32px;flex-wrap:wrap;
  padding-top:36px;border-top:1px solid var(--border);
}
.hero-meta-item{display:flex;flex-direction:column;gap:4px}
.hero-meta-num{
  font-family:'Cormorant Garamond',serif;
  font-size:36px;font-weight:700;color:var(--leaf);line-height:1;
}
.hero-meta-label{font-size:12px;color:var(--muted);letter-spacing:.04em}
.year-chip{
  position:absolute;bottom:36px;right:36px;
  background:rgba(250,248,243,.95);backdrop-filter:blur(10px);
  border-radius:18px;padding:20px 24px;
  box-shadow:0 8px 32px rgba(28,20,9,.16);text-align:center;
}
.year-chip .big{
  font-family:'Cormorant Garamond',serif;
  font-size:40px;font-weight:700;color:var(--leaf);line-height:1;
}
.year-chip p{font-size:12px;color:var(--muted);margin-top:4px;line-height:1.45;max-width:120px}
.origin-split{display:grid;grid-template-columns:1fr 1fr;gap:0}
.origin-img{overflow:hidden;position:relative}
.origin-img img{width:100%;height:100%;object-fit:cover;display:block;min-height:520px;transition:transform .6s}
.origin-img:hover img{transform:scale(1.03)}
.origin-img-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(28,20,9,.5) 0%,transparent 55%);
}
.origin-img-caption{
  position:absolute;bottom:28px;left:28px;right:28px;
  font-family:'Cormorant Garamond',serif;
  font-size:14px;font-style:italic;color:rgba(245,240,230,.75);line-height:1.5;
}
.origin-text{
  padding:72px 64px;display:flex;flex-direction:column;justify-content:center;
  background:var(--parchment);
}
.origin-text p{font-size:15px;color:var(--muted);line-height:1.9;margin-bottom:18px}
.origin-text p:last-of-type{margin-bottom:0}
.sweden-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--white);border:1px solid var(--border);border-radius:10px;
  padding:10px 16px;font-size:13px;color:var(--bark);font-weight:500;margin-top:16px;
}
.timeline-section{background:var(--white)}
.timeline{
  position:relative;max-width:820px;margin-top:48px;
}
.timeline::before{
  content:'';position:absolute;left:28px;top:0;bottom:0;
  width:2px;background:linear-gradient(to bottom,var(--leaf),var(--lime),transparent);
}
.tl-item{
  display:flex;gap:36px;margin-bottom:52px;position:relative;
}
.tl-item:last-child{margin-bottom:0}
.tl-dot-wrap{
  flex-shrink:0;display:flex;flex-direction:column;align-items:center;
  position:relative;z-index:2;
}
.tl-dot{
  width:56px;height:56px;border-radius:50%;
  background:var(--moss);display:grid;place-items:center;
  font-size:18px;flex-shrink:0;
  box-shadow:0 4px 16px rgba(52,78,26,.3);
  border:3px solid var(--white);
}
.tl-body{padding-top:8px;flex:1}
.tl-year{
  font-size:12px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--sage);font-weight:600;margin-bottom:8px;
}
.tl-title{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;font-weight:700;color:var(--soil);margin-bottom:10px;
}
.tl-desc{font-size:14px;color:var(--muted);line-height:1.8}
.company-split{display:grid;grid-template-columns:1fr 1fr;gap:0;background:var(--parchment)}
.company-img{overflow:hidden}
.company-img img{width:100%;height:100%;object-fit:cover;display:block;min-height:480px;transition:transform .6s}
.company-img:hover img{transform:scale(1.03)}
.company-text{padding:72px 64px;display:flex;flex-direction:column;justify-content:center}
.company-text p{font-size:15px;color:var(--muted);line-height:1.9;margin-bottom:18px}
.company-text p:last-of-type{margin-bottom:0}
.highlight-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:#e4f0d4;border-radius:10px;padding:12px 18px;
  font-size:13px;color:var(--moss);line-height:1.6;margin-top:8px;border:1px solid #c4dfa0;
}
.mission-section{
  background:var(--soil);padding:88px 72px;position:relative;overflow:hidden;
}
.mission-section::before{
  content:'"';font-family:'Cormorant Garamond',serif;
  font-size:500px;line-height:.6;color:rgba(255,255,255,.03);
  position:absolute;top:-40px;left:20px;pointer-events:none;user-select:none;
}
.mission-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;position:relative;z-index:1;
}
.mission-text .section-eyebrow{color:var(--lime)}
.mission-text .section-eyebrow::before{background:var(--lime)}
.mission-text .section-h2{color:var(--cream)}
.mission-text .section-h2 em{color:var(--lime)}
.mission-text p{font-size:15px;color:rgba(245,240,230,.7);line-height:1.9;margin-top:20px}
.mission-img{border-radius:20px;overflow:hidden;box-shadow:0 28px 80px rgba(0,0,0,.4)}
.mission-img img{width:100%;display:block;transition:transform .6s}
.mission-img:hover img{transform:scale(1.04)}
.values-section{background:var(--parchment)}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px}
.value-card{
  background:var(--white);border:1px solid var(--border);border-radius:20px;
  padding:34px 28px;display:flex;flex-direction:column;gap:14px;
  transition:box-shadow .25s,transform .2s;
}
.value-card:hover{box-shadow:0 16px 48px rgba(28,20,9,.1);transform:translateY(-4px)}
.value-icon{
  width:56px;height:56px;border-radius:16px;
  display:grid;place-items:center;font-size:26px;flex-shrink:0;
}
.vi-green{background:#e4f0d4}
.vi-earth{background:#f0e8d8}
.vi-blue{background:#e4f0fb}
.value-title{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:700;color:var(--soil);
}
.value-desc{font-size:14px;color:var(--muted);line-height:1.8}
.stats-bar{
  background:var(--moss);
  display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.08);
}
.contact-main{
  padding:72px 72px 88px;
  display:grid;grid-template-columns:1fr 1.6fr;gap:56px;align-items:start;
}
.contact-info-col{display:flex;flex-direction:column;gap:20px}
.info-eyebrow{
  font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--leaf);font-weight:600;margin-bottom:4px;
  display:flex;align-items:center;gap:10px;
}
.info-eyebrow::before{content:'';width:20px;height:1.5px;background:var(--leaf)}
.info-heading{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(26px,3vw,42px);font-weight:700;line-height:1.15;
  color:var(--soil);margin-bottom:4px;
}
.info-heading em{font-style:italic;color:var(--leaf)}
.info-sub{font-size:15px;color:var(--muted);line-height:1.8;margin-bottom:8px}
.info-card{
  display:flex;align-items:flex-start;gap:16px;
  background:var(--parchment);border:1px solid var(--border);
  border-radius:16px;padding:22px 22px;
  transition:box-shadow .2s,transform .18s;
  text-decoration:none;
}
.info-card:hover{
  box-shadow:0 8px 28px rgba(28,20,9,.09);transform:translateY(-2px);
}
.info-card-icon{
  width:48px;height:48px;border-radius:14px;
  background:var(--white);display:grid;place-items:center;
  font-size:22px;flex-shrink:0;
  box-shadow:0 2px 8px rgba(28,20,9,.07);
}
.info-card-body{}
.info-card-label{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--sage);font-weight:600;margin-bottom:4px}
.info-card-val{font-size:16px;font-weight:600;color:var(--soil)}
.info-card-sub{font-size:13px;color:var(--muted);margin-top:2px;line-height:1.5}
.address-card{
  background:var(--parchment);border:1px solid var(--border);
  border-radius:16px;padding:22px 22px;
  display:flex;gap:16px;align-items:flex-start;
}
.address-icon{
  width:48px;height:48px;border-radius:14px;
  background:var(--white);display:grid;place-items:center;
  font-size:22px;flex-shrink:0;
  box-shadow:0 2px 8px rgba(28,20,9,.07);
}
.address-label{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--sage);font-weight:600;margin-bottom:6px}
.address-val{font-size:15px;font-weight:600;color:var(--soil);line-height:1.5}
.address-map-link{
  display:inline-flex;align-items:center;gap:5px;
  margin-top:8px;font-size:13px;color:var(--leaf);font-weight:500;
  text-decoration:none;
}
.address-map-link:hover{text-decoration:underline}
.hours-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:16px;padding:22px 22px;
}
.hours-label{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--sage);font-weight:600;margin-bottom:14px}
.hours-rows{display:flex;flex-direction:column;gap:8px}
.hours-row{display:flex;justify-content:space-between;align-items:center;font-size:14px}
.hours-day{color:var(--muted)}
.hours-time{font-weight:600;color:var(--bark)}
.hours-badge{
  display:inline-flex;align-items:center;gap:6px;
  background:#e4f0d4;border-radius:20px;padding:5px 12px;
  font-size:12px;color:var(--moss);font-weight:600;margin-top:12px;
}
.hours-badge::before{content:'';width:7px;height:7px;border-radius:50%;background:var(--leaf)}
.social-row{display:flex;gap:10px;flex-wrap:wrap;padding-top:4px}
.soc-btn{
  display:flex;align-items:center;gap:8px;
  background:var(--parchment);border:1px solid var(--border);border-radius:10px;
  padding:9px 16px;font-size:13px;font-weight:500;color:var(--bark);
  text-decoration:none;transition:background .2s,color .2s,border-color .2s;
}
.soc-btn:hover{background:var(--white);border-color:var(--sage);color:var(--moss)}
.soc-icon{font-size:16px}
.contact-form-col{}
.form-card{
  background:var(--white);border:1px solid var(--border);border-radius:22px;
  padding:44px 44px 48px;
  box-shadow:0 8px 48px rgba(28,20,9,.07);
}
.form-card h2{
  font-family:'Cormorant Garamond',serif;
  font-size:30px;font-weight:700;color:var(--soil);margin-bottom:6px;
}
.form-card .form-sub{font-size:14px;color:var(--muted);line-height:1.6;margin-bottom:28px}
.char-count{font-size:11px;color:var(--muted);text-align:right;margin-top:3px}
.btn-submit:hover:not(:disabled){background:var(--leaf);transform:translateY(-1px);box-shadow:0 8px 24px rgba(52,78,26,.32)}
.btn-submit:disabled{opacity:.7;cursor:not-allowed;transform:none}
.form-success{
  display:none;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;gap:16px;padding:48px 28px;
}
.form-success.show{display:flex}
.form-card.submitted .form-fields{display:none}
.success-icon{
  width:72px;height:72px;border-radius:50%;
  background:#e4f0d4;display:grid;place-items:center;font-size:32px;
}
.success-title{
  font-family:'Cormorant Garamond',serif;
  font-size:28px;font-weight:700;color:var(--soil);
}
.success-body{font-size:15px;color:var(--muted);line-height:1.75;max-width:340px}
.map-section{background:var(--parchment);padding:0}
.map-header{padding:52px 72px 32px}
.map-eyebrow{
  font-size:11px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--leaf);font-weight:600;margin-bottom:10px;
  display:flex;align-items:center;gap:10px;
}
.map-eyebrow::before{content:'';width:20px;height:1.5px;background:var(--leaf)}
.map-header h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(26px,3vw,42px);font-weight:700;color:var(--soil);
}
.map-header h2 em{font-style:italic;color:var(--leaf)}
.map-embed{
  width:100%;height:420px;border:none;display:block;
  filter:grayscale(15%) contrast(1.05);
}
.map-caption{
  padding:20px 72px;background:var(--parchment);
  display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
  border-top:1px solid var(--border);
}
.map-address-text{font-size:14px;color:var(--muted)}
.map-address-text strong{color:var(--bark);font-weight:600}
.btn-directions{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--moss);color:var(--white);border-radius:40px;
  padding:11px 24px;font-size:13px;font-weight:600;
  text-decoration:none;white-space:nowrap;
  transition:background .2s,transform .15s;
}
.btn-directions:hover{background:var(--leaf);transform:translateY(-1px)}
.quick-help{background:var(--white);padding:64px 72px}
.qh-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:40px}
.qh-card{
  background:var(--parchment);border:1px solid var(--border);border-radius:16px;
  padding:28px 22px;display:flex;flex-direction:column;gap:10px;
  text-decoration:none;transition:box-shadow .2s,transform .18s;
}
.qh-card:hover{box-shadow:0 10px 32px rgba(28,20,9,.09);transform:translateY(-3px)}
.qh-icon{font-size:26px;margin-bottom:2px}
.qh-title{font-size:15px;font-weight:600;color:var(--soil)}
.qh-desc{font-size:13px;color:var(--muted);line-height:1.6}
.qh-arrow{font-size:13px;color:var(--leaf);margin-top:4px;font-weight:600}
.fsoc-btn{
  width:36px;height:36px;border:1px solid rgba(255,255,255,.18);
  border-radius:10px;display:grid;place-items:center;
  font-size:13px;font-weight:600;color:var(--cream);text-decoration:none;
  transition:background .2s,border-color .2s;
}
.fsoc-btn:hover{background:var(--leaf);border-color:var(--leaf)}

/* ══════════════════════════════════════════════════════════
   HERO-DARK: Full dark gradient hero (help-tips, buy, 
   assembly, gallery, contact pages)
   Activated by adding class="hero hero-dark" in templates
══════════════════════════════════════════════════════════ */
.hero-dark {
  padding-top: 68px;
  background: linear-gradient(135deg, #1c1409 0%, #2e4a14 55%, #5c8c2e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 360px;
  text-align: center;
  /* Override grid from base .hero */
  grid-template-columns: unset !important;
}
.hero-dark.hero-gallery { min-height: 320px; }
.hero-dark.hero-helptips {
  background: linear-gradient(135deg, #1c1409 0%, #344e1a 60%, #5c8c2e 100%);
  min-height: 340px;
}
.hero-dark.hero-contact { min-height: 340px; }

/* eyebrow on dark hero */
.hero-dark .hero-eyebrow { color: var(--lime); }
.hero-dark .hero-eyebrow span { background: var(--lime); }

/* desc text on dark hero */
.hero-dark .hero-desc {
  font-size: 17px;
  color: rgba(245,240,230,.72);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* inner wrapper on dark hero */
.hero-dark .hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 28px;
  width: 100%;
}

/* h1 on dark hero */
.hero-dark h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,6vw,82px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 18px;
}
.hero-dark h1 em {
  font-style: italic;
  color: var(--lime);
}

/* background image overlays per page */
.hero-dark.hero-helptips::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.joracomposters.com/wp-content/uploads/2017/12/kitchen-waste.jpg') center/cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.hero-dark.hero-buy::before,
.hero-dark.hero-assembly::before,
.hero-dark.hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.joracomposters.com/wp-content/uploads/2017/12/jora-tumbler.jpg') center/cover no-repeat;
  opacity: .1;
  pointer-events: none;
}
.hero-dark.hero-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.joracomposters.com/wp-content/uploads/2017/12/jora-west-los.jpg') center/cover no-repeat;
  opacity: .14;
  pointer-events: none;
}

/* SPLIT GRID hero variants (our-composter, school, about) */
.hero.hero-split-oc  { min-height: 92vh; grid-template-columns: 55% 45%; }
.hero.hero-split-sc  { min-height: 88vh; grid-template-columns: 55% 45%; }
.hero.hero-split-ab  { min-height: 92vh; grid-template-columns: 55% 45%; }

/* h1 class variants for split pages */
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px,6vw,90px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--soil);
  margin-bottom: 14px;
}
.hero-h1 em { font-style: italic; color: var(--leaf); }

/* Responsive: dark hero */
@media (max-width: 768px) {
  .hero-dark { min-height: 280px; padding: 0; }
  .hero-dark .hero-inner { padding: 52px 24px; }
  .hero-dark .hero-desc { font-size: 15px; }
  /* Split heroes collapse to 1 col */
  .hero.hero-split-oc,
  .hero.hero-split-sc,
  .hero.hero-split-ab { grid-template-columns: 1fr; min-height: auto; }
  .hero.hero-split-oc .hero-right,
  .hero.hero-split-sc .hero-right,
  .hero.hero-split-ab .hero-right { height: 55vw; }
  .hero.hero-split-oc .hero-left,
  .hero.hero-split-sc .hero-left,
  .hero.hero-split-ab .hero-left { padding: 48px 24px 36px; }
}

.cta-banner .btn-group { display:flex; flex-direction:column; align-items:center; gap:12px; }
