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

:root {
    --bg-soft-white: #F8F7F3;
    --deep-forest: #123629;
    --deep: #0F2A1F;
    --panel: #EBE8E0;
    --harvest-amber: #C97A32;
    --harvest-amber-hover: #B36B2B;
    --stone: #D9D3C7;
    --stone-mid: #B8B0A2;
    --charcoal: #242424;
    --charcoal-mid: #4A4A4A;
    --off-white: #FFFFFF;
    --white: #FFFFFF;
    --midnight-forest: #0B1D18;
    --accent: var(--harvest-amber);
    --font-display: 'Bricolage Grotesque', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--bg-soft-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(24px) saturate(180%);
    background: rgba(248,247,243,0.94);
    border-bottom: 1px solid var(--stone);
}

.site-logo img,
.logo img {
    height: 36px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    header { padding: 0 1.25rem; height: 68px; }
    .site-logo img, .logo img { height: 30px; max-width: 160px; }
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal-mid);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--deep-forest); }

.nav-cta {
    background: transparent !important;
    color: var(--deep-forest) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.02em !important;
    transition: all 0.2s !important;
    border: 1.5px solid var(--deep-forest) !important;
}

.nav-cta:hover { background: rgba(18,54,41,0.05) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 210;
    position: relative;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: var(--off-white);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--deep-forest); }
.mobile-menu .btn-primary { margin-top: 1rem; }

/* UTILITIES */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--harvest-amber);
    margin-bottom: 1.2rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--harvest-amber);
    opacity: 0.7;
}

.section-label.light { color: var(--charcoal-mid); }
.section-label.light::before { background: var(--charcoal-mid); }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--harvest-amber);
    color: #FFFFFF;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover { background: var(--harvest-amber-hover); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--deep-forest);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    border: 1px solid var(--deep-forest);
    cursor: pointer;
}

.btn-outline:hover { background: rgba(18,54,41,0.05); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    background-color: var(--bg-soft-white);
    background-image: url('/assets/hero.jpg');
    background-image: image-set(url('/assets/hero.webp') type('image/webp'), url('/assets/hero.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,29,24,0.55) 0%, rgba(11,29,24,0.25) 100%);
    z-index: 0;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s ease-out;
}

.hero-logo {
    display: block;
    margin: 0 auto 2.5rem;
    height: 48px;
    width: auto;
    max-width: min(280px, 70vw);
    object-fit: contain;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6.5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-ctas .btn-primary {
    background: var(--harvest-amber);
    color: #FFFFFF;
}
.hero-ctas .btn-primary:hover { background: var(--harvest-amber-hover); }
.hero-ctas .btn-outline {
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.45);
}
.hero-ctas .btn-outline:hover {
    border-color: rgba(255,255,255,0.80);
    background: rgba(255,255,255,0.08);
}

/* FRAMEWORK */
.framework-section {
    padding: 6rem 2rem;
    background: var(--bg-soft-white);
}

.framework-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.framework-header {
    text-align: center;
    margin-bottom: 3rem;
}

.framework-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--deep-forest);
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.framework-sub {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--charcoal-mid);
    max-width: 520px;
    margin: 0 auto;
}

.cnc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.cnc-card {
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cnc-card:hover {
    border-color: var(--harvest-amber);
    box-shadow: 0 8px 28px rgba(201,122,50,0.08);
}

.cnc-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.cnc-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal-mid);
}

@media (max-width: 900px) {
    .cnc-grid { grid-template-columns: 1fr; }
}

/* PRICING */
.pricing-section {
    padding: 6rem 2rem;
    background: var(--off-white);
}

.pricing-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--deep-forest);
    letter-spacing: -0.02em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.price-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--stone);
    background: var(--white);
    transition: box-shadow 0.3s;
}

.price-card:hover { box-shadow: 0 12px 40px rgba(13,21,38,0.1); }

.price-card.featured {
    border: 2px solid var(--charcoal);
    box-shadow: 0 8px 32px rgba(36,36,36,0.12);
}

.price-card-badge {
    display: block;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 0.5rem;
}

.price-card-body { padding: 2rem 2rem 2.25rem; }

.price-tier-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal-mid);
    margin-bottom: 0.5rem;
}

.price-card h3 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.price-amount-row {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--stone);
}

.price-amount-row .currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-mid);
}

.price-amount-row .amount {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.04em;
}

.price-amount-row .period {
    font-size: 0.85rem;
    color: var(--charcoal-mid);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}

.price-features li {
    font-size: 0.87rem;
    color: var(--charcoal);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.5;
}

.price-features li .check {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 0.8rem;
}

.price-card.featured .check { color: var(--charcoal); }

.price-card .price-cta {
    display: block;
    text-align: center;
    background: var(--harvest-amber);
    color: #FFFFFF;
    padding: 0.85rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
}

.price-card .price-cta:hover { background: var(--harvest-amber-hover); }

.price-card.custom .price-amount-row .amount { font-size: 1.6rem; }

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* OUTCOMES */
.outcomes-section {
    padding: 5rem 2rem;
    background: var(--bg-soft-white);
    text-align: center;
}

.outcomes-inner {
    max-width: 960px;
    margin: 0 auto;
}

.outcomes-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--deep-forest);
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.outcome-item {
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: 14px;
    padding: 2rem 1.5rem;
}

.outcome-metric {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--harvest-amber);
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}

.outcome-item p {
    font-size: 0.9rem;
    color: var(--charcoal-mid);
    line-height: 1.5;
}

@media (max-width: 700px) {
    .outcomes-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-section {
    padding: 5rem 2rem;
    background: var(--off-white);
}

.faq-inner {
    max-width: 720px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--deep-forest);
    letter-spacing: -0.02em;
}

.faq-item { border-bottom: 1px solid var(--stone); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-question h3 {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--charcoal);
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.3rem;
    color: var(--charcoal-mid);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer { max-height: 280px; }

.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--charcoal-mid);
    padding-bottom: 1.25rem;
}

/* CONTACT */
.contact-section {
    background: var(--midnight-forest);
    color: var(--white);
    padding: 6rem 2rem;
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 0.6rem;
}

.contact-inner > p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.contact-cta-row {
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    color: #FFFFFF;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option { background: #0B1D18; color: #FFFFFF; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201,122,50,0.5);
    background: rgba(255,255,255,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-submit { margin-top: 0.35rem; }

.contact-submit button {
    background: var(--harvest-amber);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.02em;
    width: 100%;
}

.contact-submit button:hover { background: var(--harvest-amber-hover); }
.contact-submit button:disabled { opacity: 0.5; cursor: not-allowed; }

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--white);
    color: var(--charcoal);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); }

.toast-icon {
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon svg { width: 13px; height: 13px; }

/* FOOTER */
footer {
    padding: 3.5rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: var(--midnight-forest);
    color: var(--white);
}

.footer-main {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand img {
    height: 40px !important;
    width: auto !important;
    object-fit: contain;
}

.footer-brand .footer-tagline {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--harvest-amber);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand .footer-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    max-width: 260px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-bottom: 0.55rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: #FFFFFF; }

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom .footer-copy,
.footer-bottom .footer-location {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 6rem 1.25rem 3.5rem; min-height: 100svh; }
    .hero-logo { margin-bottom: 2rem; }
    .hero-ctas { flex-direction: column; align-items: center; gap: 0.85rem; }
    .framework-section,
    .pricing-section,
    .outcomes-section,
    .faq-section { padding: 4.5rem 1.25rem; }
    .contact-section { padding: 4.5rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 3rem 1.25rem 1.5rem; }
    .footer-main { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
