:root {
    --ink: #102418;
    --ink-soft: #355446;
    --line: rgba(16, 36, 24, 0.12);
    --green: #2d8f5b;
    --green-deep: #1b5e3b;
    --blue: #2f6b93;
    --gold: #d7ad48;
    --shadow: 0 18px 45px rgba(12, 28, 23, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

*,
*::before,
*::after {
    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(215, 173, 72, 0.18), transparent 26%),
        linear-gradient(180deg, #f8f6ef 0%, #edf5ef 42%, #fbfaf6 100%);
}

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

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

.shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

.section-heading h2,
.hero-copy h1,
.contact-copy h2,
.section-copy h2 {
    font-family: "Sora", sans-serif;
    letter-spacing: -0.04em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-deep);
}

.eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--green), transparent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(250, 249, 244, 0.76);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    color: white;
    font-family: "Sora", sans-serif;
    font-weight: 700;
}

.brand-copy {
    display: grid;
    gap: 0.15rem;
}

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

.brand-copy span {
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.site-nav a {
    font-weight: 600;
    color: var(--ink-soft);
}

.site-nav a:hover {
    color: var(--green-deep);
}

.nav-cta {
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: var(--ink);
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    border: 0;
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
}

.hero {
    padding: 5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.hero-lead {
    max-width: 680px;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--ink-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 25px rgba(25, 46, 35, 0.12);
}

.button-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    color: white;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(47, 107, 147, 0.18);
    color: var(--ink);
}

.button-block {
    width: 100%;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-metrics li,
.hero-card,
.feature-card,
.gallery-card,
.contact-card,
.about-visual {
    border: 1px solid rgba(16, 36, 24, 0.08);
    box-shadow: var(--shadow);
}

.hero-metrics li {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.7);
}

.hero-metrics strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1rem;
}

.hero-metrics span {
    display: block;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.5;
}

.hero-panel {
    position: relative;
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.hero-panel::before {
    width: 140px;
    height: 140px;
    background: rgba(45, 143, 91, 0.18);
    top: -1.5rem;
    right: 1rem;
}

.hero-panel::after {
    width: 100px;
    height: 100px;
    background: rgba(47, 107, 147, 0.18);
    bottom: -0.5rem;
    left: -1rem;
}

.hero-card {
    position: relative;
    padding: 2.2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(14, 44, 34, 0.92), rgba(30, 88, 60, 0.92));
    color: white;
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(215, 173, 72, 0.2);
}

.card-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card h2 {
    margin: 0 0 1rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1.1;
}

.hero-card p {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-badge-row span,
.hardware-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    font-weight: 700;
}

.hero-badge-row span {
    background: rgba(255, 255, 255, 0.12);
}

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

.section-copy p,
.contact-copy p {
    color: var(--ink-soft);
    line-height: 1.8;
}

.about-visual {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features {
    background: linear-gradient(180deg, rgba(45, 143, 91, 0.07), rgba(47, 107, 147, 0.05));
}

.section-heading.center {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.75);
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(45, 143, 91, 0.16), rgba(47, 107, 147, 0.16));
    font-size: 1.5rem;
}

.feature-card h3 {
    margin: 0 0 0.7rem;
    font-family: "Sora", sans-serif;
}

.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: white;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card figcaption {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1rem 1.2rem;
}

.gallery-card figcaption span {
    color: var(--ink-soft);
    line-height: 1.6;
}

.hardware-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.hardware-list span {
    background: rgba(16, 36, 24, 0.06);
    color: var(--ink);
}

.contact-points {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 2rem 0 0;
    list-style: none;
}

.contact-points li {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(16, 36, 24, 0.08);
}

.contact-points strong {
    display: block;
    margin-bottom: 0.35rem;
}

.contact-card {
    padding: 1.8rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.86);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field span {
    font-size: 0.95rem;
    font-weight: 700;
}

.field small {
    color: #a33528;
}

.site-input {
    width: 100%;
    min-height: 54px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(16, 36, 24, 0.12);
    border-radius: 16px;
    background: #fff;
    font: inherit;
    color: var(--ink);
}

.site-input:focus {
    outline: 2px solid rgba(45, 143, 91, 0.22);
    border-color: rgba(45, 143, 91, 0.55);
}

.site-textarea {
    min-height: 136px;
    resize: vertical;
}

.flash {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    font-weight: 700;
}

.flash-success {
    background: rgba(45, 143, 91, 0.14);
    color: var(--green-deep);
}

.flash-error {
    background: rgba(180, 56, 40, 0.12);
    color: #842e22;
}

.site-footer {
    padding: 2.2rem 0 3rem;
    border-top: 1px solid var(--line);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-row p {
    margin: 0.45rem 0 0;
    color: var(--ink-soft);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--ink-soft);
    font-weight: 700;
}

@media (max-width: 980px) {
    .hero-grid,
    .section-grid,
    .contact-grid,
    .feature-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 82px;
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

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

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
