:root {
    --bg: #f0f7f2;
    --surface: #e2ede5;
    --surface-strong: #cfe0d4;
    --ink: #0d1e15;
    --ink-soft: #3a5243;
    --accent: #1a7a50;
    --accent-light: #22a368;
    --accent-soft: rgba(26, 122, 80, 0.10);
    --accent-glow: rgba(26, 122, 80, 0.22);
    --border: rgba(13, 30, 21, 0.10);
    --border-strong: rgba(13, 30, 21, 0.18);
    --shadow-sm: 0 4px 16px rgba(13, 30, 21, 0.07);
    --shadow: 0 20px 50px rgba(13, 30, 21, 0.09);
    --shadow-lg: 0 36px 80px rgba(13, 30, 21, 0.14);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(ellipse 65% 45% at 8% 5%, rgba(26, 122, 80, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 92% 85%, rgba(13, 30, 21, 0.07) 0%, transparent 55%),
        var(--bg);
    background-attachment: fixed;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    min-height: 100vh;
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 32px), var(--container));
    margin: 14px auto 0;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(240, 247, 242, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 28px rgba(13, 30, 21, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.94rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand .logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 0;
    mix-blend-mode: multiply;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.92rem;
}

.site-nav a {
    position: relative;
    color: var(--ink-soft);
    font-weight: 600;
    transition: color 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--accent);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
    background: var(--accent);
    border-radius: 999px;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px var(--accent-glow);
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

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

.section {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
    padding: 100px 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    border: 1px solid rgba(26, 122, 80, 0.25);
    border-radius: 999px;
    background: rgba(26, 122, 80, 0.08);
    margin-bottom: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex: none;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 800;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.8rem, 6.5vw, 4.8rem);
    max-width: 13ch;
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    max-width: 14ch;
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0;
    line-height: 1.75;
    color: var(--ink-soft);
}

.hero-text,
.section-heading p {
    max-width: 60ch;
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        background-color 200ms ease,
        border-color 200ms ease;
    font-weight: 700;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 12px 28px var(--accent-glow);
}

.button-primary:hover {
    background: var(--accent-light);
    box-shadow: 0 18px 40px rgba(26, 122, 80, 0.32);
}

.button-secondary {
    color: var(--ink);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(26, 122, 80, 0.28);
}

.hero-points {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--ink-soft);
}

.hero-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 8px;
    flex: none;
    border-radius: 50%;
    background: var(--accent);
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 18px;
}

.hero-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.logo-card {
    margin-bottom: 1rem;
}

.logo-card .logo-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 20px;
    mix-blend-mode: multiply;
}

.fact-card {
    padding: 22px;
}

.fact-label {
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fact-value {
    font-family: "Fraunces", serif;
    font-size: 1.7rem;
    line-height: 1.15;
    color: var(--ink);
}

.fact-copy {
    margin-top: 8px;
    font-size: 0.9rem;
}

.section-heading {
    display: grid;
    gap: 16px;
    margin-bottom: 48px;
}

.benefit-grid,
.application-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card,
.application-card {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: var(--shadow-sm);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

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

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: var(--radius-md);
    background: var(--accent-soft);
    color: var(--accent);
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    flex: none;
}

.benefit-card h3,
.application-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.story-block,
.contact-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.story-media {
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(26, 122, 80, 0.08), rgba(13, 30, 21, 0.04));
    box-shadow: var(--shadow);
}

.story-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: left center;
    border-radius: 22px;
    animation: story-pan 20s ease-in-out infinite alternate;
}

@keyframes story-pan {
    from {
        object-position: left center;
    }

    to {
        object-position: right center;
    }
}

.story-copy {
    display: grid;
    gap: 16px;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
}

.story-stats {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.story-stats div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
}

.story-stats strong {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent);
}

.story-stats span {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.application-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.founders-section {
    /* inherits .section */
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.founder-card {
    display: grid;
    gap: 12px;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
}

.founder-role {
    margin: 0;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.products-section {
    /* inherits .section */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.product-card {
    position: relative;
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity 250ms ease;
}

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

.product-card:hover::before {
    opacity: 1;
}

.product-number {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-card h3 {
    margin-bottom: 10px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.product-tags li {
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 700;
}

.quote-band {
    padding: 52px 48px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(13, 30, 21, 0.97) 0%, rgba(26, 80, 50, 0.93) 100%);
    box-shadow: var(--shadow-lg);
}

.quote-band p {
    max-width: 36ch;
    margin: 0 auto;
    color: rgba(240, 247, 242, 0.95);
    font-family: "Fraunces", serif;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    font-style: italic;
    line-height: 1.35;
}

.quote-band cite {
    display: block;
    margin-top: 20px;
    color: var(--accent-light);
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.faq-section {
    /* inherits .section */
}

.faq-list {
    display: grid;
    gap: 8px;
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.70);
    overflow: hidden;
    transition: box-shadow 200ms ease, border-color 200ms ease;
}

.faq-item:hover,
.faq-item.is-open {
    box-shadow: var(--shadow-sm);
}

.faq-item.is-open {
    border-color: rgba(26, 122, 80, 0.28);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: color 200ms ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question::after {
    content: "+";
    flex: none;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 250ms ease, background 200ms ease, color 200ms ease;
}

.faq-item.is-open .faq-question::after {
    content: "\2212";
    transform: rotate(0);
    background: var(--accent);
    color: #fff;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 300ms ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--ink-soft);
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: var(--shadow);
}

.contact-section {
    align-items: center;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.contact-details div {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: var(--accent-soft);
}

.contact-details span {
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.contact-details a,
.contact-details p {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.94rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label>span {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    outline: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.full-width {
    grid-column: 1 / -1;
}

.form-note {
    min-height: 24px;
    margin: 0;
    color: var(--accent);
    font-weight: 700;
}

.form-note.is-error {
    color: #c0392b;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.10);
}

.field-error {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c0392b;
}

.site-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
    padding: 0 0 60px;
}

.site-footer>div {
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(13, 30, 21, 0.95), rgba(22, 56, 36, 0.92));
}

.site-footer strong {
    display: inline-block;
    margin-bottom: 10px;
    font-family: "Fraunces", serif;
    font-size: 1.3rem;
    color: #fff;
}

.site-footer p {
    color: rgba(240, 247, 242, 0.68);
    font-size: 0.9rem;
}

.site-footer span {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-light);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(26, 122, 80, 0.42);
    transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
    animation: float-bob 3s ease-in-out infinite;
}

.float-cta:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 122, 80, 0.52);
    animation-play-state: paused;
}

@keyframes float-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 480px) {
    .float-cta span {
        display: none;
    }

    .float-cta {
        padding: 16px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

.reveal-delay {
    transition-delay: 100ms;
}

.reveal-delay-2 {
    transition-delay: 200ms;
}

.reveal-delay-3 {
    transition-delay: 300ms;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .story-media img {
        animation: none;
    }

    .badge-dot {
        animation: none;
    }
}

@media (max-width: 1040px) {

    .hero,
    .story-block,
    .contact-section,
    .benefit-grid,
    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        align-items: start;
    }

    .application-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header {
        width: calc(100% - 24px);
        padding: 10px 14px;
        border-radius: 24px;
    }

    .brand span {
        font-size: 0.88rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 12px;
        padding: 20px;
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        background: rgba(240, 247, 242, 0.97);
        backdrop-filter: blur(18px);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 220ms ease,
            transform 220ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-cta {
        display: inline-flex;
        justify-content: center;
    }

    .section,
    .site-footer {
        width: calc(100% - 24px);
    }

    .hero,
    .story-block,
    .contact-section,
    .benefit-grid,
    .application-grid,
    .contact-form,
    .product-grid,
    .founders-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .story-media,
    .story-copy,
    .contact-copy,
    .contact-form,
    .founder-card,
    .quote-band {
        padding: 22px;
    }

    .story-media img {
        min-height: 260px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .faq-answer-inner p {
        padding: 0 18px 16px;
    }
}