:root {
    --cu-green: #0d4a34;
    --cu-green-deep: #083626;
    --cu-green-soft: #e9f3ed;
    --cu-mint: #cce7d7;
    --cu-cream: #f7f6f1;
    --cu-ink: #17231d;
    --cu-muted: #68746e;
    --cu-line: #dfe6e1;
    --cu-white: #ffffff;
    --cu-shadow: 0 18px 50px rgba(17, 49, 35, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--cu-ink);
    background: var(--cu-white);
}

::selection {
    background: var(--cu-mint);
    color: var(--cu-green-deep);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(13, 74, 52, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--cu-green-deep);
    text-decoration: none;
}

.brand-logo {
    width: 50px;
    height: 50px;
}

.brand-text {
    display: grid;
    line-height: 1.02;
}

.brand-text strong {
    font-size: 1rem;
    font-weight: 850;
}

.brand-text span {
    font-size: 0.82rem;
    color: var(--cu-muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    position: relative;
    color: var(--cu-ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
}

.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--cu-green);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

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

.nav-cta {
    padding: 11px 17px;
    border-radius: 999px;
    background: var(--cu-green);
    color: var(--cu-white) !important;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--cu-line);
    border-radius: 12px;
    padding: 9px 13px;
    background: var(--cu-white);
    color: var(--cu-green-deep);
    font: inherit;
    font-weight: 750;
}

.hero {
    overflow: hidden;
    padding-top: clamp(64px, 9vw, 116px);
    padding-bottom: clamp(70px, 10vw, 126px);
    background:
        radial-gradient(circle at 85% 20%, #dcebe1 0, transparent 28%),
        linear-gradient(180deg, #fbfcfa 0%, #f5f8f5 100%);
}

.hero-grid {
    align-items: center;
    gap: clamp(40px, 7vw, 90px);
}

.hero-copy {
    max-width: 760px;
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 26px;
    font-size: clamp(2.8rem, 6.2vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-lead {
    max-width: 700px;
    color: var(--cu-muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.65;
}

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

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
    background: var(--cu-green);
    color: var(--cu-white);
    box-shadow: 0 12px 28px rgba(13, 74, 52, 0.18);
}

.button-secondary {
    border: 1px solid var(--cu-line);
    background: var(--cu-white);
    color: var(--cu-green-deep);
}

.hero-panel {
    padding: 18px;
    border: 1px solid var(--cu-line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--cu-shadow);
}

.hero-panel-copy {
    padding: 24px 12px 10px;
}

.hero-panel-copy span {
    display: block;
    margin-bottom: 8px;
    color: var(--cu-green);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-panel-copy strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.45;
}

.section {
    padding-top: clamp(74px, 9vw, 112px);
    padding-bottom: clamp(74px, 9vw, 112px);
}

.section-heading {
    margin-bottom: 44px;
}

.section-heading h2,
.split h2,
.contact-box h2 {
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--cu-green);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.info-card {
    border: 1px solid var(--cu-line);
    border-radius: 22px;
    padding: 28px;
    background: var(--cu-white);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: 13px;
    background: var(--cu-green-soft);
    color: var(--cu-green);
    font-weight: 850;
}

.contact-box {
    border-radius: 30px;
    padding: clamp(30px, 5vw, 58px);
    background: var(--cu-cream);
}

.site-footer {
    padding: 52px 0 34px;
    background: var(--cu-green-deep);
    color: var(--cu-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: end;
}

.footer-brand {
    max-width: 520px;
}

.footer-brand strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.footer-brand p {
    margin: 0;
    color: #c8d8cf;
    line-height: 1.65;
}

.footer-meta {
    text-align: right;
    color: #aebfb6;
    font-size: 0.86rem;
}

.footer-meta a {
    color: var(--cu-white);
}
