/* ═══════════════════════════════════════════════════════
   Umami Kitchens — Informational Website Styles
   Brand: Green #5B9B53, Red #C76247, Yellow #F0BC01
   Font: Gabarito (shared with Umami Finders)
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --green: #5B9B53;
    --green-dark: #4A8244;
    --green-light: #6DB563;
    --green-bg: rgba(91, 155, 83, 0.08);

    --warm: #C76247;
    --warm-dark: #A84E38;
    --warm-light: #D4785F;
    --warm-bg: rgba(199, 98, 71, 0.08);

    --yellow: #F0BC01;
    --yellow-light: #F5CE3A;
    --yellow-bg: rgba(240, 188, 1, 0.08);

    /* Neutrals */
    --cream: #FDFAF1;
    --cream-deep: #F5EFE0;
    --text-primary: #2C2418;
    --text-secondary: #6B5E4D;
    --text-light: #9A8D7C;
    --white: #FFFFFF;
    --card-shadow: 0 2px 16px rgba(44, 36, 24, 0.07);
    --card-shadow-hover: 0 8px 32px rgba(44, 36, 24, 0.12);

    /* Layout */
    --max-width: 1100px;
    --section-pad: 100px 24px;
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Gabarito', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3 {
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 56px;
    font-weight: 400;
}

/* ── Scroll Reveal ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for cards */
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }

.pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-card:nth-child(2) { transition-delay: 0.12s; }
.pricing-card:nth-child(3) { transition-delay: 0.24s; }

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(165deg,
        #3d6b38 0%,
        #4a8244 20%,
        #5B9B53 40%,
        #6aad5e 60%,
        #7dbc6f 80%,
        #C76247 100%
    );
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(240, 188, 1, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(199, 98, 71, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Animated subtle grain/texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    max-width: 700px;
}

.hero-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.2));
}

.hero-title {
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.hero-title-accent {
    color: var(--yellow);
}

.hero-tagline {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-style: italic;
}

.hero-description {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-b2b {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.badge-ecosystem {
    background: rgba(240, 188, 1, 0.2);
    color: var(--yellow-light);
    border: 1px solid rgba(240, 188, 1, 0.3);
    backdrop-filter: blur(8px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    cursor: pointer;
    transition: color 0.3s;
}

.hero-scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hero-scroll-indicator span {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 20px;
    animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════ */
.features {
    padding: var(--section-pad);
    background: var(--cream);
}

.features .section-title {
    margin-bottom: 48px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 28px;
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(44, 36, 24, 0.04);
}

.feature-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 36px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-deep);
    border-radius: var(--radius-sm);
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   ECOSYSTEM SECTION
   ═══════════════════════════════════════════════════════ */
.ecosystem {
    padding: var(--section-pad);
    background: var(--white);
}

.ecosystem-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 48px;
}

.eco-card {
    flex: 1;
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1.5px solid;
}

.eco-card-header {
    margin-bottom: 20px;
}

.eco-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 50px;
}

.eco-finders {
    border-color: rgba(91, 155, 83, 0.25);
    background: var(--green-bg);
}

.eco-finders .eco-label {
    background: rgba(91, 155, 83, 0.12);
    color: var(--green-dark);
}

.eco-finders h3 {
    font-size: 22px;
    font-weight: 800;
}

.text-green { color: var(--green); }

.eco-kitchens {
    border-color: rgba(199, 98, 71, 0.25);
    background: var(--warm-bg);
}

.eco-kitchens .eco-label {
    background: rgba(199, 98, 71, 0.12);
    color: var(--warm-dark);
}

.eco-kitchens h3 {
    font-size: 22px;
    font-weight: 800;
}

.text-warm { color: var(--warm); }

.eco-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eco-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-secondary);
}

.eco-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-weight: 600;
}

.eco-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    min-width: 80px;
}

.eco-connector-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--green), var(--warm));
    opacity: 0.3;
}

.eco-connector-icon {
    text-align: center;
    padding: 12px 0;
}

.eco-connector-icon span {
    font-size: 28px;
    display: block;
}

.eco-connector-icon small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.ecosystem-insight {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-secondary);
    background: var(--cream);
    padding: 28px 32px;
    border-radius: var(--radius);
    border-left: 4px solid var(--green);
    line-height: 1.7;
}

.ecosystem-insight strong {
    color: var(--green-dark);
}

/* ═══════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════ */
.pricing {
    padding: var(--section-pad);
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px 32px;
    box-shadow: var(--card-shadow);
    border: 1.5px solid rgba(44, 36, 24, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.pricing-card-featured {
    border-color: var(--green);
    box-shadow: 0 4px 24px rgba(91, 155, 83, 0.15);
    transform: scale(1.04);
}

.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-target {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════ */
.about {
    padding: var(--section-pad);
    background: var(--white);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-mission {
    font-size: clamp(17px, 2.5vw, 20px);
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-mission em,
.about-detail em {
    color: var(--green);
    font-style: normal;
    font-weight: 600;
}

.about-detail {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   LAUNCH / COUNTDOWN SECTION
   ═══════════════════════════════════════════════════════ */
.launch {
    padding: var(--section-pad);
    background: linear-gradient(170deg,
        var(--cream-deep) 0%,
        #EDE6D3 50%,
        var(--cream-deep) 100%
    );
    text-align: center;
}

.launch-heading {
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.launch-location {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 88px;
    background: var(--warm);
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(199, 98, 71, 0.3);
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.launch-cta {
    font-size: 16px;
    color: var(--text-secondary);
}

.launch-email {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(91, 155, 83, 0.3);
    transition: border-color 0.3s;
}

.launch-email:hover {
    border-bottom-color: var(--green);
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════ */
.contact {
    padding: var(--section-pad);
    background: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group label .optional {
    font-weight: 400;
    color: var(--text-light);
    font-size: 13px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Gabarito', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--cream);
    border: 1.5px solid rgba(44, 36, 24, 0.1);
    border-radius: var(--radius-sm);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(91, 155, 83, 0.1);
}

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

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 32px;
    font-family: 'Gabarito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--green);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(91, 155, 83, 0.25);
}

.form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(91, 155, 83, 0.35);
}

.form-submit:active {
    transform: translateY(0);
}

.form-result {
    margin-top: 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.form-result.success {
    color: var(--green-dark);
    background: rgba(91, 155, 83, 0.08);
    padding: 14px 20px;
}

.form-result.error {
    color: var(--warm-dark);
    background: rgba(199, 98, 71, 0.08);
    padding: 14px 20px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    padding: 48px 24px 32px;
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

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

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-style: italic;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--green-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --section-pad: 72px 20px;
    }

    .ecosystem-flow {
        flex-direction: column;
        gap: 0;
    }

    .eco-connector {
        flex-direction: row;
        padding: 16px 0;
        min-width: unset;
    }

    .eco-connector-line {
        height: 2px;
        width: auto;
        flex: 1;
        background: linear-gradient(to right, var(--green), var(--warm));
    }

    .eco-connector-icon {
        padding: 0 12px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .feature-card {
        padding: 22px 20px;
    }

    .countdown {
        gap: 12px;
    }

    .countdown-number {
        width: 68px;
        height: 76px;
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .countdown-number {
        width: 60px;
        height: 68px;
        font-size: 26px;
    }
}
