/* Mint-cream apothecary — light, rounded, friendly soda-fountain energy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #faf8f3;
    --cream-dark: #f0ebe2;
    --mint: #2f6f5e;
    --mint-light: #52a38a;
    --mint-wash: rgba(82, 163, 138, 0.14);
    --coral: #e07a5f;
    --coral-hover: #c96a52;
    --ink: #1c2824;
    --ink-soft: #3d4f48;
    --muted: #6b7f78;
    --white: #ffffff;
    --card: #ffffff;
    --border: rgba(47, 111, 94, 0.18);
    --shadow: 0 8px 32px rgba(28, 40, 36, 0.08);
    --shadow-lg: 0 20px 50px rgba(28, 40, 36, 0.12);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-pill: 999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 45% at 10% 0%, rgba(82, 163, 138, 0.2), transparent),
        radial-gradient(ellipse 55% 40% at 95% 15%, rgba(224, 122, 95, 0.12), transparent),
        radial-gradient(ellipse 50% 35% at 50% 100%, rgba(240, 235, 226, 0.9), transparent);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Nav */
.navbar {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1060px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    z-index: 1000;
    padding: 0.65rem 1.25rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Literata', Georgia, serif;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    font-weight: 700;
    color: var(--mint);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo-icon {
    font-size: 1.15rem;
    padding: 0.45rem 0.55rem;
    background: linear-gradient(135deg, var(--mint-light), var(--mint));
    border-radius: var(--radius-sm);
    line-height: 1;
    box-shadow: 0 4px 14px var(--mint-wash);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.35rem;
}

.nav-link {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--coral);
}

.nav-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--mint);
    border-radius: 2px;
    transition: all 0.2s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 22px 96px;
    position: relative;
}

.hero-background {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-grid {
    display: none;
}

.hero-sun {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 8%;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82, 163, 138, 0.35) 0%, transparent 68%);
    filter: blur(8px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--cream), transparent);
    pointer-events: none;
}

.particles {
    display: none;
}

.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Literata', Georgia, serif;
    font-size: clamp(2.1rem, 6.5vw, 3.35rem);
    font-weight: 700;
    margin-bottom: 1.1rem;
    line-height: 1.12;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--mint);
    font-style: italic;
}

.hero-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 5px;
    margin: 1.25rem auto 0;
    background: linear-gradient(90deg, var(--mint-light), var(--coral));
    border-radius: var(--radius-pill);
}

.hero-subtitle {
    font-size: 1.02rem;
    color: var(--ink-soft);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.95rem 1.9rem;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    color: var(--white);
    box-shadow: 0 10px 28px rgba(224, 122, 95, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 36px rgba(224, 122, 95, 0.42);
}

.btn-secondary {
    background: var(--white);
    color: var(--mint);
    border: 2px solid var(--mint);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--mint-wash);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.arrow {
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--mint);
    border-bottom: 2px solid var(--mint);
    transform: rotate(45deg);
}

/* Sections */
section {
    padding: 84px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.section-title {
    font-family: 'Literata', Georgia, serif;
    font-size: clamp(1.6rem, 3.8vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--mint);
    letter-spacing: -0.02em;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    margin: 0.85rem auto 0;
    background: linear-gradient(90deg, var(--mint-light), var(--coral));
    border-radius: var(--radius-pill);
}

.section-subtitle {
    font-size: 0.98rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
}

.products-section {
    background: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-1 { background: linear-gradient(145deg, #d8f0e8 0%, #a8d5c8 100%); }
.product-2 { background: linear-gradient(145deg, #fde8e0 0%, #f5c4b2 100%); }
.product-3 { background: linear-gradient(145deg, #e8f4f0 0%, #b8ddd0 100%); }

.product-overlay {
    position: absolute;
    top: 14px;
    right: 14px;
}

.product-badge {
    background: var(--white);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--mint);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.product-content {
    padding: 1.5rem 1.5rem 1.65rem;
}

.product-title {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--ink);
}

.product-meta {
    color: var(--coral);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.product-description {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-link {
    color: var(--mint);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.product-link:hover {
    color: var(--coral);
}

.about-section {
    background: var(--cream-dark);
    position: relative;
    border-radius: var(--radius);
    margin: 0 12px;
    border: 1px solid var(--border);
}

.about-section::before {
    display: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
    align-items: center;
    padding: 0 8px;
}

.about-description {
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
    line-height: 1.75;
    font-size: 0.98rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

.stat-item:hover {
    transform: scale(1.03);
}

.stat-number {
    font-family: 'Literata', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--mint);
    margin-bottom: 0.2rem;
}

.stat-label {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.about-placeholder {
    width: 100%;
    height: 300px;
    background:
        linear-gradient(135deg, rgba(82, 163, 138, 0.25) 0%, transparent 55%),
        linear-gradient(135deg, var(--white) 0%, var(--cream-dark) 100%);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.team-section {
    background: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.35rem;
}

.team-member {
    text-align: center;
    padding: 1.6rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.member-avatar {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--border);
}

.member-avatar .why-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint-light), var(--mint));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 8px 24px var(--mint-wash);
}

.member-name {
    font-family: 'Literata', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--ink);
}

.member-role {
    color: var(--coral);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.55;
}

.contact-section {
    background: var(--white);
    border-radius: var(--radius);
    margin: 0 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-section::before {
    display: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 2.5rem;
    padding: 0 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: 'Literata', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--mint);
}

.info-text p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.65;
}

.info-text a {
    color: var(--mint);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.info-text a:hover {
    color: var(--coral);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mint-light);
    box-shadow: 0 0 0 4px var(--mint-wash);
    background: var(--white);
}

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

.footer {
    background: var(--mint);
    padding: 2.75rem 0 1.5rem;
    margin-top: 2rem;
    border-radius: var(--radius) var(--radius) 0 0;
}

.footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 2.25rem 2.5rem;
    margin-bottom: 1.75rem;
    align-items: start;
}

.footer-newsletter {
    min-width: 0;
}

.footer .logo {
    color: var(--white);
}

.footer .logo .logo-icon {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.footer-title {
    font-family: 'Literata', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    transition: all 0.2s;
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--white);
    color: var(--mint);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffd4c4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.8125rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .navbar {
        top: 8px;
        width: calc(100% - 20px);
        border-radius: var(--radius);
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        text-align: center;
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.2s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-section,
    .contact-section {
        margin: 0;
        border-radius: 0;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 56px 0;
    }

    .hero {
        padding: 108px 18px 80px;
    }
}
