*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
--gd: #1a3a2a;
--gm: #2d6a4f;
--gl: #52b788;
--go: #c9a84c;
--gol: #e8c876;
--cream: #f8f4ed;
--cream2: #f0ece4;
--white: #ffffff;
--dark: #111;
--mid: #444;
--light: #777;
--ltg: #eaf5ef;
--ltgo: #fef9ee;
--border: #d0e8d8;
}

html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }

/* ── NAV ── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 1rem 5%;
background: rgba(26,58,42,0.97);
backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(201,168,76,0.18);
}
.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.7rem; font-weight: 700; color: var(--go);
letter-spacing: 0.06em; text-decoration: none;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.87rem; font-weight: 500; letter-spacing: 0.02em; transition: color .2s; }
.nav-links a:hover { color: var(--gol); }
.nav-cta {
background: var(--go); color: var(--gd); font-weight: 700; font-size: 0.82rem;
padding: 0.6rem 1.4rem; border-radius: 6px; text-decoration: none; letter-spacing: 0.02em; transition: all .2s;
}
.nav-cta:hover { background: var(--gol); }

/* ── HERO ── */
#hero {
min-height: 100vh;
background: linear-gradient(150deg, #0f2318 0%, var(--gd) 50%, #1e4535 100%);
display: flex; align-items: center; justify-content: center;
position: relative; overflow: hidden;
padding: 8rem 5% 5rem;
}
.hero-grid {
position: absolute; inset: 0; opacity: 0.04;
background-image: radial-gradient(circle, #fff 1px, transparent 1px);
background-size: 44px 44px;
}
.hero-orb1 {
position: absolute; top: -12%; right: -8%;
width: 520px; height: 520px; border-radius: 50%;
background: radial-gradient(circle, rgba(82,183,136,0.18) 0%, transparent 65%);
}
.hero-orb2 {
position: absolute; bottom: -15%; left: -6%;
width: 400px; height: 400px; border-radius: 50%;
background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 65%);
}
.hero-inner { position: relative; text-align: center; max-width: 860px; animation: fadeUp .9s ease both; }
.hero-badge {
display: inline-flex; align-items: center; gap: 0.5rem;
background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35);
color: var(--gol); font-size: 0.73rem; font-weight: 700;
letter-spacing: 0.14em; text-transform: uppercase;
padding: 0.45rem 1.2rem; border-radius: 100px; margin-bottom: 2rem;
}
.hero-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(3rem, 7.5vw, 6rem); font-weight: 700; line-height: 1.0;
color: var(--white); margin-bottom: 1.5rem;
}
.hero-title em { color: var(--go); font-style: italic; }
.hero-sub {
font-size: 1.05rem; color: rgba(255,255,255,0.68); line-height: 1.75;
max-width: 600px; margin: 0 auto 2.5rem; font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-p {
background: var(--go); color: var(--gd); font-weight: 700; font-size: 0.92rem;
padding: 1rem 2.4rem; border-radius: 8px; text-decoration: none; letter-spacing: 0.02em; transition: all .25s;
}
.btn-p:hover { background: var(--gol); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,168,76,.3); }
.btn-o {
background: transparent; border: 1.5px solid rgba(255,255,255,.32);
color: var(--white); font-weight: 500; font-size: 0.92rem;
padding: 1rem 2.4rem; border-radius: 8px; text-decoration: none; transition: all .25s;
}
.btn-o:hover { border-color: var(--go); color: var(--go); }

.hero-stats {
display: grid; grid-template-columns: repeat(5, 1fr);
gap: 0; margin-top: 4.5rem;
border-top: 1px solid rgba(255,255,255,.1); padding-top: 2.5rem;
}
.hstat { text-align: center; padding: 0 1rem; border-right: 1px solid rgba(255,255,255,.08); }
.hstat:last-child { border-right: none; }
.hstat-num {
font-family: 'Cormorant Garamond', serif;
font-size: 1.9rem; font-weight: 700; color: var(--go); display: block; line-height: 1.1;
}
.hstat-lbl { font-size: 0.7rem; color: rgba(255,255,255,.45); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

/* ── SECTION BASE ── */
section { padding: 5.5rem 5%; }
.sec-inner { max-width: 1180px; margin: 0 auto; }
.sec-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gm); display: block; margin-bottom: 0.6rem; }
.sec-h {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gd); line-height: 1.12; margin-bottom: 1rem;
}
.sec-sub { font-size: 1rem; color: var(--mid); line-height: 1.75; max-width: 560px; }
.sec-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-card {
background: var(--gd); border-radius: 16px; padding: 2.5rem;
position: relative; overflow: hidden;
}
.about-card::before {
content: ''; position: absolute; top: -50px; right: -50px;
width: 200px; height: 200px; border-radius: 50%;
background: rgba(82,183,136,0.12);
}
.about-year {
font-family: 'Cormorant Garamond', serif;
font-size: 4.5rem; font-weight: 700; color: rgba(201,168,76,.2); line-height: 1; margin-bottom: 1rem;
}
.about-card p { font-size: 0.96rem; color: rgba(255,255,255,.78); line-height: 1.72; }
.about-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--go); margin: 1.4rem 0 0.5rem; }
.vision-box {
background: var(--ltg); border-left: 4px solid var(--gm);
border-radius: 0 10px 10px 0; padding: 1.4rem 1.6rem; margin-bottom: 1.6rem;
font-style: italic; font-size: 1rem; color: var(--gd); line-height: 1.7;
}
.misi-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.misi-list li {
display: flex; gap: 0.7rem; align-items: flex-start;
font-size: 0.93rem; color: var(--mid); line-height: 1.6;
}
.misi-list li::before { content: '▸'; color: var(--gl); flex-shrink: 0; margin-top: 0.1rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.8rem; }
.val-card {
background: var(--ltgo); border-left: 3px solid var(--go);
border-radius: 0 8px 8px 0; padding: 0.85rem 1rem;
}
.val-card strong { display: block; font-size: 0.87rem; color: var(--gd); margin-bottom: 0.2rem; }
.val-card span { font-size: 0.8rem; color: var(--light); }

/* ── PRODUCTS ── */
#products { background: var(--cream); }
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; margin-top: 3rem; }
.prod-card {
background: var(--white); border-radius: 14px; overflow: hidden;
box-shadow: 0 2px 18px rgba(0,0,0,.05); transition: all .3s;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,.1); }
.prod-img {
height: 180px; display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.prod-img.pine { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.prod-img.watr { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.prod-img.supp { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.prod-body { padding: 1.6rem; }
.prod-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--gd); margin-bottom: 0.65rem; }
.prod-body p { font-size: 0.88rem; color: var(--mid); line-height: 1.65; margin-bottom: 1.2rem; }
.prod-tags { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.ptag {
background: var(--ltg); color: var(--gm); font-size: 0.72rem; font-weight: 600;
padding: 0.28rem 0.7rem; border-radius: 100px; border: 1px solid var(--border);
}

/* ── WHY ── */
#why { background: var(--gd); }
#why .sec-tag { color: var(--gol); }
#why .sec-h { color: var(--white); }
#why .sec-sub { color: rgba(255,255,255,.62); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.3rem; margin-top: 3rem; }
.why-card {
background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
border-radius: 12px; padding: 1.6rem; transition: all .3s;
}
.why-card:hover { background: rgba(255,255,255,.09); border-color: rgba(201,168,76,.35); }
.why-icon {
width: 44px; height: 44px; border-radius: 10px;
background: rgba(201,168,76,.13); display: flex; align-items: center; justify-content: center;
font-size: 1.3rem; margin-bottom: 1rem;
}
.why-card h3 { color: var(--gol); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,.6); font-size: 0.87rem; line-height: 1.65; }

/* ── WORKFLOW ── */
#workflow { background: var(--white); }
.wf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; margin-top: 3rem; }
.wf-step {
background: var(--cream); border-radius: 12px; padding: 1.8rem 1.4rem;
text-align: center; border-top: 3px solid var(--gd);
}
.wf-num {
font-family: 'Cormorant Garamond', serif;
font-size: 2.2rem; font-weight: 700; color: var(--go); display: block; margin-bottom: 0.75rem;
}
.wf-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--gd); margin-bottom: 0.4rem; }
.wf-step p { font-size: 0.82rem; color: var(--light); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card {
background: var(--white); border-radius: 12px; padding: 1.8rem;
border-left: 4px solid var(--go);
box-shadow: 0 2px 14px rgba(0,0,0,.05); display: flex; flex-direction: column;
}
.testi-stars { color: var(--go); font-size: 0.85rem; margin-bottom: 0.8rem; }
.testi-card blockquote { font-size: 0.9rem; color: var(--mid); line-height: 1.7; flex: 1; margin-bottom: 1.4rem; font-style: italic; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--gd); }
.testi-role { font-size: 0.78rem; color: var(--light); margin-top: 0.15rem; }
.testi-co { font-size: 0.78rem; color: var(--gm); font-weight: 600; }

/* ── TEAM ── */
#team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card {
text-align: center; padding: 2rem 1.2rem;
background: var(--cream); border-radius: 14px;
border-top: 3px solid var(--go);
}
.team-av {
width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1rem;
background: var(--gd); color: var(--go);
font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700;
display: flex; align-items: center; justify-content: center;
}
.team-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--gd); }
.team-dept { font-size: 0.78rem; color: var(--gm); font-weight: 600; margin: 0.2rem 0 0.6rem; }
.team-card p { font-size: 0.8rem; color: var(--light); line-height: 1.55; }

/* ── CTA ── */
#cta {
background: linear-gradient(140deg, var(--gm), var(--gd));
text-align: center; padding: 6rem 5%; position: relative; overflow: hidden;
}
#cta::before {
content: ''; position: absolute; inset: 0;
background: url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='1' fill='%23ffffff' opacity='0.05'/%3E%3C/svg%3E") repeat;
}
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-inner .sec-tag { color: var(--gol); text-align: center; }
.cta-inner .sec-h { color: var(--white); text-align: center; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.68); line-height: 1.75; margin: 0 auto 2.5rem; }
.cta-note { font-size: 0.78rem; color: var(--go); font-weight: 700; letter-spacing: 0.08em; margin-top: 1.5rem; text-transform: uppercase; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
#contact { background: var(--gd); }
#contact .sec-tag { color: var(--go); }
#contact .sec-h { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.c-card {
background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
border-radius: 12px; padding: 1.8rem 1.2rem; text-align: center;
border-top: 2px solid var(--gl); transition: all .25s;
}
.c-card:hover { background: rgba(255,255,255,.1); }
.c-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.c-label { font-size: 0.68rem; font-weight: 700; color: var(--go); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }
.c-val { color: rgba(255,255,255,.82); font-size: 0.88rem; line-height: 1.55; }

/* ── FOOTER ── */
footer {
background: #0a1a10; text-align: center; padding: 2rem 5%;
color: rgba(255,255,255,.3); font-size: 0.8rem;
border-top: 1px solid rgba(201,168,76,.15);
}
footer strong { color: var(--go); }

/* ── ANIM ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px);} to { opacity:1; transform:translateY(0);} }

/* ── RESPONSIVE ── */
@media(max-width:900px){
.about-layout,.testi-grid,.prod-grid,.wf-grid { grid-template-columns:1fr; }
.team-grid,.contact-grid { grid-template-columns:repeat(2,1fr); }
.hero-stats { grid-template-columns: repeat(3,1fr); }
.nav-links,.nav-cta { display:none; }
}
@media(max-width:580px){
.team-grid,.contact-grid,.values-grid { grid-template-columns:1fr; }
.hero-stats { grid-template-columns: repeat(2,1fr); }
}