:root {
    --cream: #f5efe5;
    --paper: rgba(255, 250, 244, 0.88);
    --paper-strong: #fffaf4;
    --forest: #264131;
    --forest-deep: #193024;
    --sage: #76885a;
    --sage-soft: #a5b28a;
    --soil: #8b5c36;
    --coffee: #5a3d29;
    --amber: #c28f4d;
    --clay: #ccab8a;
    --ink: #2e2b26;
    --muted: #655d53;
    --line: rgba(74, 57, 40, 0.12);
    --shadow: 0 22px 48px rgba(55, 40, 25, 0.12);
    --shadow-soft: 0 14px 28px rgba(55, 40, 25, 0.08);
    --radius-xl: 2rem;
    --radius-lg: 1.5rem;
    --radius-md: 1.1rem;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(167, 184, 135, 0.28), transparent 32%),
        radial-gradient(circle at right 10% top 18%, rgba(194, 143, 77, 0.16), transparent 28%),
        linear-gradient(180deg, #f8f3ea 0%, #f4eee4 46%, #efe5d8 100%);
    min-height: 100vh;
}

body.nav-open {
    overflow: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 16rem;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(56px);
    pointer-events: none;
    opacity: 0.48;
    z-index: -1;
}

body::before {
    top: 3rem;
    left: -5rem;
    background: rgba(168, 187, 130, 0.4);
}

body::after {
    right: -3rem;
    bottom: 6rem;
    background: rgba(194, 143, 77, 0.26);
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    overflow: clip;
}

.container {
    width: min(calc(100% - 1.5rem), var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
    position: relative;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    background: var(--forest);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    z-index: 60;
    transition: top 0.25s ease;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(248, 243, 234, 0.58);
    border-bottom: 1px solid transparent;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(248, 243, 234, 0.92);
    border-color: rgba(74, 57, 40, 0.08);
    box-shadow: 0 10px 28px rgba(61, 47, 31, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--forest);
}

.brand-mark {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, var(--sage), var(--soil));
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 26px rgba(64, 51, 35, 0.2);
}

.brand-mark svg {
    width: 1.4rem;
    height: 1.4rem;
}

.nav-toggle {
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 1rem;
    display: inline-grid;
    place-items: center;
    gap: 0.25rem;
    padding: 0.7rem;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--forest);
}

.site-nav {
    position: fixed;
    inset: 5.5rem 0.75rem auto;
    padding: 0.85rem;
    display: grid;
    gap: 0.45rem;
    background: rgba(255, 250, 244, 0.97);
    border: 1px solid var(--line);
    border-radius: 1.3rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.35rem) scale(0.98);
    transform-origin: top;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.site-nav a {
    padding: 0.8rem 1rem;
    border-radius: 0.9rem;
    color: var(--muted);
    font-weight: 700;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(38, 65, 49, 0.08);
    color: var(--forest);
    transform: translateX(2px);
}

.site-nav .nav-button {
    background: linear-gradient(135deg, var(--forest), #30573f);
    color: #fff;
}

.hero {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    color: var(--soil);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-tag::before {
    content: "";
    width: 2.4rem;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.section-tag-light {
    color: rgba(255, 248, 241, 0.8);
}

.hero h1,
.section-title,
.showcase-copy h3,
.sector-panel h3 {
    font-family: "Cormorant Garamond", serif;
    line-height: 0.94;
    letter-spacing: -0.03em;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3rem, 12vw, 5.7rem);
    color: var(--forest-deep);
    max-width: 12ch;
}

.hero-text,
.section-lead,
.about-panel p,
.showcase-copy p,
.product-card p,
.process-step p,
.benefit-card p,
.sector-card span,
.sector-panel p,
.stat-card p,
.footer-text,
.trust-card p {
    color: var(--muted);
    line-height: 1.82;
}

.hero-text {
    margin: 1.15rem 0 0;
    max-width: 37rem;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.8rem 0 1.4rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.75rem;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--forest), #355841);
    box-shadow: 0 16px 30px rgba(38, 65, 49, 0.28);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(74, 57, 40, 0.12);
    color: var(--forest);
}

.button-wide {
    width: 100%;
}

.hero-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-badges li,
.contact-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(74, 57, 40, 0.1);
    box-shadow: var(--shadow-soft);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    padding: 0.85rem;
    border-radius: 2.1rem;
    background: linear-gradient(145deg, rgba(255, 250, 244, 0.95), rgba(214, 196, 167, 0.8));
    border: 1px solid rgba(74, 57, 40, 0.1);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 184, 135, 0.4) 0%, rgba(167, 184, 135, 0) 72%);
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 1.55rem;
}

.floating-note {
    position: absolute;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 12px 24px rgba(28, 26, 22, 0.18);
}

.note-one {
    right: 0.8rem;
    top: 0.9rem;
    background: rgba(38, 65, 49, 0.94);
}

.note-two {
    left: 0.55rem;
    bottom: 0.85rem;
    background: rgba(139, 92, 54, 0.92);
}

.trust-strip {
    padding-bottom: 1rem;
}

.trust-grid,
.product-grid,
.benefit-grid,
.stats-grid,
.footer-layout,
.contact-layout,
.about-layout,
.sector-layout,
.process-track,
.info-grid,
.sector-grid {
    display: grid;
    gap: 1rem;
}

.trust-card,
.info-card,
.product-card,
.process-step,
.benefit-card,
.sector-card,
.contact-form,
.contact-copy,
.about-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.trust-card,
.info-card,
.product-card,
.process-step,
.benefit-card,
.sector-card,
.contact-copy,
.contact-form {
    padding: 1.4rem;
}

.trust-card span,
.info-card h3,
.product-card h3,
.process-step h3,
.benefit-card h3,
.sector-card strong,
.stat-card h3 {
    color: var(--forest-deep);
}

.trust-card span,
.sector-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.02rem;
    font-weight: 800;
}

.trust-card p,
.product-card p,
.process-step p,
.benefit-card p,
.sector-card span,
.stat-card p,
.footer-text {
    margin: 0;
}

.section-heading {
    max-width: 43rem;
    margin-bottom: 2rem;
}

.section-heading-centered {
    text-align: center;
    margin-inline: auto;
}

.section-heading-centered .section-tag::before {
    display: none;
}

.section-title {
    margin: 0 0 0.95rem;
    font-size: clamp(2.55rem, 7vw, 4.25rem);
    color: var(--forest-deep);
}

.section-title-light {
    color: #fff;
}

.section-lead {
    margin: 0;
}

.about-panel {
    padding: 1.5rem;
}

.about-panel p {
    margin: 0 0 1.3rem;
}

.about-image-frame {
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(160deg, rgba(245, 239, 229, 0.8), rgba(226, 210, 181, 0.72));
}

.about-image-frame img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.icon-circle,
.benefit-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--forest), var(--sage));
    box-shadow: 0 14px 24px rgba(38, 65, 49, 0.18);
}

.icon-circle svg,
.benefit-icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.info-card h3,
.benefit-card h3,
.process-step h3,
.product-card h3,
.sector-panel h3,
.showcase-copy h3,
.stat-card h3 {
    margin: 1rem 0 0.55rem;
    font-size: 1.15rem;
}

.info-card p {
    margin: 0;
    line-height: 1.78;
    color: var(--muted);
}

.products {
    background: linear-gradient(180deg, rgba(255, 249, 241, 0) 0%, rgba(255, 249, 241, 0.4) 100%);
}

.showcase-banner,
.sector-panel,
.stat-card {
    position: relative;
    overflow: hidden;
}

.showcase-banner {
    display: grid;
    gap: 1.4rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(135deg, var(--forest), var(--coffee));
    color: #fff;
    box-shadow: var(--shadow);
}

.showcase-copy h3,
.sector-panel h3 {
    margin: 0 0 0.9rem;
    font-size: clamp(2rem, 6vw, 3.2rem);
}

.showcase-copy p,
.sector-panel p {
    color: rgba(255, 244, 236, 0.8);
    margin: 0;
}

.showcase-banner img,
.sector-panel img {
    width: 100%;
    max-width: 29rem;
    justify-self: center;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 1.35rem;
    box-shadow: 0 18px 30px rgba(30, 22, 16, 0.22);
}

.product-card {
    position: relative;
    overflow: hidden;
    padding: 0 0 1.4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5.3rem;
    background: linear-gradient(135deg, var(--tone-a, var(--sage)), var(--tone-b, var(--clay)));
    opacity: 0.16;
}

.product-card:hover,
.product-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px rgba(55, 40, 25, 0.15);
    border-color: rgba(118, 136, 90, 0.28);
}

.product-media {
    margin: 0 0 0.5rem;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 1.2rem 1.2rem;
    background: rgba(255, 255, 255, 0.94);
}

.product-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
    transform: scale(1.05);
}

.product-badge,
.step-number {
    display: inline-grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.product-badge {
    position: relative;
    margin: -1.1rem 0 0.2rem 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, var(--tone-a, var(--forest)), var(--tone-b, var(--sage)));
    box-shadow: 0 12px 22px rgba(56, 47, 35, 0.18);
}

.product-card h3,
.product-card p {
    padding: 0 1.4rem;
}

.process-step {
    position: relative;
}

.step-number {
    color: var(--forest);
    background: rgba(118, 136, 90, 0.14);
}

.benefit-card,
.sector-card,
.process-step {
    min-height: 100%;
}

.benefit-grid .benefit-card {
    display: grid;
    align-content: start;
}

.sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sector-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-height: 9rem;
}

.sector-panel {
    padding: 1.6rem;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(145deg, #304f3b, #6a4a31);
    color: #fff;
    box-shadow: var(--shadow);
}

.stats-section {
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, var(--forest-deep), #34513d 55%, #6f4d34 100%);
}

.stats-grid {
    gap: 1.1rem;
}

.stat-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.stat-card::after {
    content: "";
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

.stat-value {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.2rem, 12vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.stat-card h3 {
    margin: 0.9rem 0 0.55rem;
    color: #fff;
    font-size: 1.15rem;
}

.stat-card p {
    color: rgba(255, 247, 239, 0.78);
}

.contact-copy {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.55rem;
}

.field label {
    color: var(--forest);
    font-size: 0.95rem;
    font-weight: 800;
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(74, 57, 40, 0.13);
    background: var(--paper-strong);
    color: var(--ink);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(118, 136, 90, 0.72);
    box-shadow: 0 0 0 4px rgba(118, 136, 90, 0.14);
    transform: translateY(-1px);
}

.field textarea {
    min-height: 9rem;
    resize: vertical;
}

.form-feedback {
    min-height: 1.5rem;
    margin: 0;
    color: var(--forest);
    font-weight: 700;
}

.site-footer {
    padding: 2.2rem 0 1.8rem;
    color: rgba(255, 247, 239, 0.82);
    background: #203126;
}

.brand-footer {
    color: #fff;
}

.footer-text {
    max-width: 37rem;
    margin: 1rem 0 0;
    color: rgba(255, 247, 239, 0.72);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 0.95rem;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.social-link svg {
    width: 1.2rem;
    height: 1.2rem;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.65, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (min-width: 40rem) {
    .container {
        width: min(calc(100% - 2rem), var(--max-width));
    }

    .section {
        padding: 5rem 0;
    }

    .trust-grid,
    .stats-grid,
    .contact-layout,
    .about-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-grid,
    .benefit-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase-banner,
    .sector-layout,
    .footer-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }
}

@media (min-width: 64rem) {
    .container {
        width: min(calc(100% - 3rem), var(--max-width));
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        inset: auto;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        transform: translateY(-1px);
    }

    .hero {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }

    .hero-grid,
    .contact-layout,
    .about-layout {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
        gap: 2.4rem;
    }

    .trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-track {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sector-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    }

    .footer-layout {
        grid-template-columns: 1fr auto;
        align-items: end;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}