@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Nunito:wght@300;400;500;600&display=swap');

:root {
    --primary: #c49a00;
    --primary-dark: #8a6c00;
    --primary-light: #e8b800;
    --accent: #2d5016;
    --accent-light: #4a8025;
    --text-dark: #1a1500;
    --text-mid: #4a3d00;
    --text-light: #8a7a30;
    --bg-main: #fffdf0;
    --bg-card: #ffffff;
    --bg-section: #fdf8d8;
    --bg-dark: #1a1500;
    --border: #e8d870;
    --shadow-sm: 0 2px 12px rgba(196,154,0,0.10);
    --shadow-md: 0 6px 28px rgba(196,154,0,0.18);
    --shadow-lg: 0 16px 52px rgba(196,154,0,0.22);
    --radius: 0px;
    --radius-sm: 0px;
    --radius-lg: 4px;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--text-dark); background: var(--bg-main); line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { margin-bottom: 1em; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg-dark); border-bottom: 3px solid var(--primary); padding: 0; }
.site-header .container { display: flex; justify-content: space-between; align-items: stretch; min-height: 64px; }
.logo { display: flex; align-items: center; }
.logo a { display: flex; align-items: center; gap: 12px; padding: 0 24px 0 0; border-right: 1px solid rgba(255,255,255,0.1); }
.logo img { height: 38px; width: auto; }
.logo span { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--primary-light); letter-spacing: 0.06em; text-transform: uppercase; }

#menu-toggle { display: none; }
.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; cursor: pointer; padding: 8px; background: transparent; transition: background 0.2s; }
.hamburger:hover { background: rgba(255,255,255,0.08); }
.line { display: block; height: 2px; width: 100%; background: var(--primary-light); transition: transform 0.3s, opacity 0.3s; }
#menu-toggle:checked ~ .hamburger .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle:checked ~ .hamburger .line:nth-child(2) { opacity: 0; }
#menu-toggle:checked ~ .hamburger .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navigation { display: none; }
.navigation ul { display: flex; list-style: none; height: 100%; }
.navigation ul li a { display: flex; align-items: center; padding: 0 20px; font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); border-bottom: 3px solid transparent; transition: color 0.2s, border-color 0.2s; height: 100%; }
.navigation ul li a:hover { color: var(--primary-light); border-bottom-color: var(--primary); }

.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-dark); z-index: 98; padding-top: 80px; flex-direction: column; align-items: center; justify-content: center; }
#menu-toggle:checked ~ .mobile-nav { display: flex; }
.mobile-nav-close { position: absolute; top: 18px; right: 20px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); transition: background 0.2s; }
.mobile-nav-close:hover { background: rgba(255,255,255,0.1); }
.mobile-nav-close::before, .mobile-nav-close::after { content: ''; position: absolute; width: 22px; height: 2px; background: #fff; }
.mobile-nav-close::before { transform: rotate(45deg); }
.mobile-nav-close::after { transform: rotate(-45deg); }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 16px; }
.mobile-nav ul li a { color: #fff; font-size: 1.4rem; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.mobile-nav ul li a:hover { color: var(--primary-light); }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 36px; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; transition: all 0.2s; letter-spacing: 0.08em; text-transform: uppercase; }
.btn-primary { background: var(--primary); color: var(--bg-dark); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--bg-dark); }
.btn-white { background: #fff; color: var(--primary-dark); }
.btn-white:hover { background: var(--primary-light); color: var(--bg-dark); }

/* SECTIONS */
section { padding: 88px 0; }
.section-label { display: inline-block; font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary-dark); background: var(--primary); padding: 4px 12px; margin-bottom: 18px; }
.section-title { color: var(--text-dark); margin-bottom: 18px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 620px; line-height: 1.75; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.bg-section { background: var(--bg-section); }
.bg-dark-section { background: var(--bg-dark); }

/* HERO — unique: diagonal split */
.hero { min-height: 86vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--bg-dark); }
.hero-img-half { position: absolute; right: 0; top: 0; width: 52%; height: 100%; background-image: url('img/bg.jpg'); background-size: cover; background-position: center; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%); }
.hero-img-half::after { content: ''; position: absolute; inset: 0; background: rgba(26,21,0,0.45); }
.hero .container { position: relative; z-index: 1; max-width: 580px; }
.hero-eyebrow { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 18px; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 span { color: var(--primary-light); }
.hero p { font-size: 1.08rem; color: rgba(255,255,255,0.82); margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--primary-light); }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* 3-COL PROBLEM BLOCK */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0; border: 1px solid var(--border); }
.problem-item { padding: 36px 32px; border-right: 1px solid var(--border); }
.problem-item:last-child { border-right: none; }
.problem-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 14px; opacity: 0.4; }
.problem-item h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--text-dark); }
.problem-item p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* PILLAR CARDS — horizontal layout */
.pillar-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.pillar-item { display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 0; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.pillar-item:last-child { border-bottom: none; }
.pillar-item:hover { background: var(--bg-section); }
.pillar-icon { width: 80px; height: 80px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.pillar-body { padding: 22px 28px; }
.pillar-body h3 { margin-bottom: 6px; font-size: 1.05rem; }
.pillar-body p { color: var(--text-light); margin: 0; font-size: 0.95rem; }

/* CHECKLIST SPLIT */
.checklist { list-style: none; }
.checklist li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.checklist li:last-child { border-bottom: none; }
.check-icon { width: 26px; height: 26px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--bg-dark); font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.checklist li p { margin: 0; color: var(--text-mid); font-size: 0.96rem; }
.checklist li strong { display: block; color: var(--text-dark); font-weight: 600; margin-bottom: 2px; }

/* DARK STATS BAR */
.stats-bar { background: var(--bg-dark); padding: 56px 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; }
.stats-bar-item { padding: 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--primary-light); line-height: 1; }
.stats-bar-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* MODULES — timeline style */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -36px; top: 8px; width: 22px; height: 22px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.7rem; font-weight: 800; color: var(--bg-dark); }
.timeline-week { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.timeline-item h3 { margin-bottom: 12px; }
.timeline-item p { color: var(--text-mid); }
.timeline-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.timeline-tag { background: var(--bg-section); border: 1px solid var(--border); color: var(--text-mid); padding: 3px 10px; font-size: 0.78rem; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.04em; }

/* TESTIMONIALS — quote style */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.quote-card { border-left: 4px solid var(--primary); padding: 28px 24px; background: var(--bg-card); box-shadow: var(--shadow-sm); }
.quote-text { font-size: 1.02rem; color: var(--text-mid); font-style: italic; margin-bottom: 18px; line-height: 1.75; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-avatar { width: 40px; height: 40px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.9rem; font-weight: 800; color: var(--bg-dark); }
.quote-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.quote-role { font-size: 0.8rem; color: var(--text-light); }
.stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 12px; }

/* VALUE CARDS — grid 2x3 */
.value-grid-alt { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; background: var(--border); }
.value-alt-card { background: var(--bg-card); padding: 32px 28px; }
.value-alt-icon { font-size: 2rem; margin-bottom: 14px; }
.value-alt-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text-dark); }
.value-alt-card p { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* BIG CTA BAND */
.cta-band { background: var(--primary); padding: 64px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--bg-dark); max-width: 560px; }
.cta-band p { color: rgba(26,21,0,0.7); margin-top: 8px; max-width: 480px; }

/* FORM */
.form-section { background: var(--bg-section); }
.wide-form { max-width: 800px; margin: 0 auto; background: var(--bg-card); padding: 52px 48px; box-shadow: var(--shadow-lg); border-top: 4px solid var(--primary); }
.form-grid { display: grid; gap: 20px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; color: var(--text-dark); letter-spacing: 0.1em; text-transform: uppercase; }
.form-group input, .form-group textarea { padding: 13px 16px; border: 1.5px solid var(--border); font-family: var(--font-body); font-size: 1rem; color: var(--text-dark); background: var(--bg-main); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; padding: 16px; font-size: 0.95rem; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-top: 14px; }

.contact-two-col { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.mission-two-col { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.checklist-split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }

/* CONTACT PAGE */
.contact-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; border: 1px solid var(--border); margin-bottom: 60px; }
.contact-strip-item { padding: 32px 24px; border-right: 1px solid var(--border); }
.contact-strip-item:last-child { border-right: none; }
.contact-strip-icon { font-size: 1.6rem; margin-bottom: 12px; }
.contact-strip-item h3 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-dark); margin-bottom: 8px; }
.contact-strip-item p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { padding: 20px 0; font-family: var(--font-display); font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-dark); font-size: 1rem; user-select: none; }
.faq-question:hover { color: var(--primary-dark); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-family: var(--font-body); font-weight: 300; }
.faq-answer { padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: var(--text-mid); }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 0 20px; }

/* FOOTER */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); padding: 64px 0 32px; }
.footer-top { display: grid; gap: 48px; margin-bottom: 48px; }
.footer-brand h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--primary-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-links h5 { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* COOKIE */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--bg-dark); border-top: 3px solid var(--primary); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; box-shadow: 0 -4px 24px rgba(0,0,0,0.4); transform: translateY(0); transition: transform 0.4s ease; }
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin: 0; flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--primary-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept { background: var(--primary); color: var(--bg-dark); border: none; padding: 10px 24px; font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.cookie-btn-accept:hover { background: var(--primary-light); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25); padding: 10px 18px; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* RESPONSIVE */
@media (min-width: 768px) {
    .hamburger { display: none; }
    .navigation { display: block; }
    .footer-top { grid-template-columns: 2fr 1fr 1fr; }
    .contact-two-col { grid-template-columns: 1fr 1fr; }
    .mission-two-col { grid-template-columns: 1fr 1fr; }
    .checklist-split { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    section { padding: 56px 0; }
    .hero-img-half { display: none; }
    .wide-form { padding: 32px 18px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: 1fr; }
    .pillar-item { grid-template-columns: 60px 1fr; }
    .cta-band .container { flex-direction: column; }
    .contact-strip { grid-template-columns: 1fr 1fr; }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
    .contact-strip { grid-template-columns: 1fr; }
}
header img[alt="logo"], footer img[alt="logo"] { filter: brightness(0) invert(1); }