:root {
    --bg: #f4efe7;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #fffdf9;
    --text: #1f1a17;
    --muted: #6b5d54;
    --line: rgba(64, 47, 35, 0.12);
    --accent: #c7672e;
    --accent-dark: #9f4d1f;
    --secondary: #0d5b56;
    --shadow: 0 20px 60px rgba(31, 26, 23, 0.12);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(199, 103, 46, 0.18), transparent 24%),
        radial-gradient(circle at 85% 20%, rgba(13, 91, 86, 0.18), transparent 18%),
        linear-gradient(180deg, #fcf7f0 0%, var(--bg) 100%);
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 40;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

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

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(252, 247, 240, 0.8);
    border-bottom: 1px solid rgba(64, 47, 35, 0.08);
}

.nav-wrap,
.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-visual {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: fit-content;
}

.brand-copy {
    display: grid;
    gap: 4px;
}

.brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: auto;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand-logo {
    display: block;
    width: 148px;
    height: auto;
}

.brand-tagline {
    display: block;
    margin-left: 4px;
    color: var(--muted);
    max-width: 100%;
    font-size: 0.28rem;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    line-height: 1.05;
    white-space: nowrap;
}

.brand strong,
.hero h1,
.section h2,
.service-card h3,
.product-card h3,
.insight-card h2 {
    font-family: "Space Grotesk", sans-serif;
}

.brand small {
    display: block;
    color: var(--muted);
    margin-top: 2px;
    font-size: 0.95rem;
}

.nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--muted);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(64, 47, 35, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding: 84px 0 56px;
}

.hero-grid,
.contact-grid,
.split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(13, 91, 86, 0.1);
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 0.98;
    max-width: 12ch;
}

.hero-text,
.section-head p,
.service-card p,
.product-card p,
.contact-copy p,
.split-section p,
.insight-card p,
.stat-item span {
    color: var(--muted);
    line-height: 1.75;
}

.hero-text {
    font-size: 1.08rem;
    max-width: 60ch;
    margin: 24px 0 0;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 18px 32px rgba(199, 103, 46, 0.24);
    border: 0;
    cursor: pointer;
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

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

.hero-points li {
    position: relative;
    padding-left: 20px;
    color: var(--muted);
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-card,
.contact-form-wrap,
.stats-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(64, 47, 35, 0.08);
    border-radius: 30px;
    padding: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
}

.orb-one {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -24px;
    background: rgba(199, 103, 46, 0.2);
}

.orb-two {
    width: 220px;
    height: 220px;
    bottom: -90px;
    left: -60px;
    background: rgba(13, 91, 86, 0.18);
}

.insight-card {
    position: relative;
    z-index: 1;
    padding: 24px;
    border-radius: 22px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.insight-card + .insight-card {
    margin-top: 18px;
}

.insight-card span,
.card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 32px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(13, 91, 86, 0.1);
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 700;
}

.insight-card.alternate span,
.product-card:nth-child(2) .card-badge {
    background: rgba(199, 103, 46, 0.12);
    color: var(--accent-dark);
}

.section {
    padding: 42px 0 88px;
}

.alt-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(252, 247, 240, 0.2));
}

.section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.section h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.cards-grid,
.services-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card,
.service-card,
.faq-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.product-card a {
    display: inline-block;
    margin-top: 18px;
    font-weight: 700;
    color: var(--accent-dark);
}

.stats-panel {
    display: grid;
    gap: 18px;
}

.faq-card h3 {
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.22rem;
}

.faq-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.stat-item {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 253, 249, 0.9);
    border: 1px solid var(--line);
}

.stat-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.contact-section {
    padding-top: 22px;
}

.contact-info p {
    margin: 0 0 12px;
}

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

.field label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 700;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(64, 47, 35, 0.14);
    background: #fffdf9;
    font: inherit;
    color: var(--text);
}

.field textarea {
    resize: vertical;
}

.field-note {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.honey-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.full-width {
    width: 100%;
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
}

.form-alert.success {
    color: #0d5b56;
    background: rgba(13, 91, 86, 0.12);
}

.form-alert.error {
    color: #9f4d1f;
    background: rgba(199, 103, 46, 0.12);
}

.site-footer {
    position: relative;
    margin-top: 40px;
    padding: 38px 0 18px;
    border-top: 1px solid rgba(64, 47, 35, 0.08);
    background:
        radial-gradient(circle at top right, rgba(199, 103, 46, 0.18), transparent 24%),
        radial-gradient(circle at left bottom, rgba(13, 91, 86, 0.18), transparent 22%),
        linear-gradient(180deg, #171311 0%, #100d0c 100%);
}

.site-footer p {
    margin: 0;
    color: rgba(244, 239, 231, 0.72);
}

.footer-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 34px;
    padding: 10px 0 8px;
}

.footer-brand {
    display: grid;
    gap: 22px;
    align-content: start;
}

.footer-brand .brand {
    color: #fffdf9;
    align-items: flex-start;
}

.footer-brand-head {
    gap: 18px;
}

.footer-brand-copy strong {
    font-size: 1.05rem;
}

.footer-brand .brand small {
    color: rgba(244, 239, 231, 0.66);
    max-width: 34ch;
}

.footer-tagline-copy {
    color: rgba(244, 239, 231, 0.52);
    max-width: 100%;
}

.footer-note {
    max-width: 58ch;
    line-height: 1.8;
}

.footer-cta {
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(199, 103, 46, 0.16), rgba(13, 91, 86, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta p {
    color: #fffdf9;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.12rem;
    line-height: 1.5;
}

.footer-button {
    width: fit-content;
}

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

.footer-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.footer-card h3 {
    margin: 0 0 16px;
    color: #fffdf9;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
}

.footer-links,
.footer-details {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-details span {
    color: rgba(244, 239, 231, 0.78);
    line-height: 1.7;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.95rem;
}

.footer-tagline {
    text-align: right;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .contact-grid,
    .split-section,
    .cards-grid,
    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .nav-wrap,
    .footer-wrap {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header {
        position: sticky;
    }

    .nav-wrap {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 14px;
    }

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

    .nav {
        grid-column: 1 / -1;
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 12px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(64, 47, 35, 0.08);
        box-shadow: 0 16px 32px rgba(31, 26, 23, 0.08);
    }

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

    .nav a {
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(244, 239, 231, 0.72);
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 54px;
    }

    .hero-card,
    .contact-form-wrap,
    .stats-panel,
    .product-card,
    .service-card,
    .faq-card {
        padding: 20px;
        border-radius: 22px;
    }

    .nav-wrap {
        padding: 14px 0;
    }

    .brand {
        align-items: flex-start;
    }

    .brand-logo {
        width: 126px;
    }

    .brand-tagline,
    .footer-tagline-copy {
        max-width: 100%;
        font-size: 0.24rem;
        letter-spacing: 0.004em;
    }

    .brand-logo-wrap {
        padding: 0;
        min-height: auto;
    }
}
