/* Herbal – South African Herbal Wellness
   Earthy greens, soft terracotta, botanical calm */

:root {
    --sage: #8BA888;
    --sage-dark: #5A7A57;
    --sage-light: #E8F0E6;
    --terracotta: #C4785A;
    --terracotta-soft: #F5E6DF;
    --cream: #FBF7F0;
    --warm-white: #FFFCFA;
    --ink: #2F2A26;
    --ink-soft: #5C534C;
    --shadow: 0 10px 36px rgba(47, 42, 38, 0.08);
    --radius: 20px;
    --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito Sans', system-ui, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--sage-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }

.container {
    width: min(1100px, 92%);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 240, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 168, 136, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--ink);
}

.logo-leaf {
    font-size: 1.6rem;
}

.main-nav {
    display: flex;
    gap: 1.8rem;
}

.main-nav a {
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--sage-dark);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--sage);
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: 0.25s;
}

/* Hero */
.hero {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(165deg, var(--warm-white) 0%, var(--sage-light) 40%, var(--terracotta-soft) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(139, 168, 136, 0.2) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.2rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--ink);
}

.hero-content p {
    font-size: 1.12rem;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 36ch;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--sage-dark);
    color: white;
    box-shadow: 0 8px 22px rgba(90, 122, 87, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(90, 122, 87, 0.38);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--sage-dark);
    border: 2px solid var(--sage);
    margin-left: 0.7rem;
}

.btn-secondary:hover {
    background: var(--sage);
    color: white;
}

.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 1.3rem;
    left: 1.3rem;
    background: white;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Sections */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.85rem, 4vw, 2.4rem);
    margin-bottom: 0.85rem;
}

.section-header p {
    color: var(--ink-soft);
    font-size: 1.05rem;
}

/* Feature cards */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.7rem;
}

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
}

.feature-card:nth-child(1) .feature-icon { background: var(--sage-light); }
.feature-card:nth-child(2) .feature-icon { background: var(--terracotta-soft); }
.feature-card:nth-child(3) .feature-icon { background: #F0EAE4; }

.feature-card h3 {
    font-size: 1.22rem;
    margin-bottom: 0.55rem;
    font-family: 'Lora', serif;
}

.feature-card p {
    color: var(--ink-soft);
    font-size: 0.97rem;
}

/* Split layouts */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    align-items: center;
}

.split-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-image img {
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: cover;
}

.split-content h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.split-content p {
    color: var(--ink-soft);
    margin-bottom: 1.1rem;
}

.list-check {
    list-style: none;
    margin: 1.4rem 0;
}

.list-check li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-weight: 600;
}

.list-check li::before {
    content: '🌿';
    flex-shrink: 0;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-body {
    padding: 1.6rem 1.7rem 1.9rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-body h3 {
    font-family: 'Lora', serif;
    font-size: 1.28rem;
    margin-bottom: 0.55rem;
}

.product-body p {
    color: var(--ink-soft);
    flex: 1;
    margin-bottom: 1.1rem;
}

/* Wisdom / Resources */
.wisdom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.7rem;
}

.wisdom-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s;
}

.wisdom-card:hover {
    transform: translateY(-5px);
}

.wisdom-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.wisdom-body {
    padding: 1.35rem 1.45rem 1.6rem;
}

.wisdom-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sage-dark);
    background: var(--sage-light);
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.65rem;
}

.wisdom-body h3 {
    font-family: 'Lora', serif;
    font-size: 1.12rem;
    margin-bottom: 0.45rem;
}

.wisdom-body p {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.7rem;
}

.team-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.8rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.1rem;
    border: 3px solid var(--sage-light);
}

.team-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.18rem;
    margin-bottom: 0.25rem;
}

.team-card .role {
    color: var(--sage-dark);
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
}

.team-card p {
    color: var(--ink-soft);
    font-size: 0.93rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.8rem;
}

.contact-info {
    background: white;
    border-radius: var(--radius);
    padding: 2.1rem;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-family: 'Lora', serif;
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.contact-item .icon {
    width: 42px;
    height: 42px;
    background: var(--sage-light);
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-form {
    background: white;
    border-radius: var(--radius);
    padding: 2.1rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-size: 0.94rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1.05rem;
    border: 2px solid #E8E2DA;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--warm-white);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sage);
}

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

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--sage-dark), #4A6B47);
    color: white;
    border-radius: var(--radius);
    padding: 3rem 2.3rem;
    text-align: center;
}

.cta-band h2 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}

.cta-band p {
    opacity: 0.92;
    margin-bottom: 1.5rem;
    max-width: 460px;
    margin-inline: auto;
}

.cta-band .btn-primary {
    background: white;
    color: var(--sage-dark);
    box-shadow: none;
}

.cta-band .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Footer */
.site-footer {
    background: #2A2622;
    color: #D4CFC8;
    padding-top: 3.8rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2.4rem;
    padding-bottom: 2.8rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 0.9rem;
}

.footer-brand p {
    font-size: 0.94rem;
    line-height: 1.6;
    max-width: 28ch;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.95rem;
}

.footer-links a {
    display: block;
    color: #D4CFC8;
    margin-bottom: 0.5rem;
    font-size: 0.94rem;
}

.footer-links a:hover {
    color: var(--sage);
}

.footer-contact p {
    font-size: 0.94rem;
    margin-bottom: 0.9rem;
}

.footer-contact a {
    color: #D4CFC8;
}

.footer-contact a:hover {
    color: var(--sage);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.3rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #9A948C;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features,
    .wisdom-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.4rem;
        gap: 1rem;
        box-shadow: var(--shadow);
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 0.7rem;
    }

    .hero-content .btn {
        display: block;
        width: fit-content;
    }
}
