*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --forest: #1B4332;
    --forest-mid: #2D6A4F;
    --forest-lt: #40916C;
    --moss: #74C69D;
    --cream: #F8F5F0;
    --warm-white: #FDFCFA;
    --ink: #111A13;
    --muted: #5C6B5E;
    --border: #D8E4DC;
    --amber: #C9850A;
    --amber-lt: #F9EDD4;
    --sand: #EDE8DF;
    --radius: 4px;
    --radius-lg: 12px;
    --nav-h: 72px;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}


/* ─── TYPOGRAPHY ─────────────────────────────────────── */

.serif {
    font-family: 'Playfair Display', serif;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    line-height: 1.75;
    color: var(--muted);
}

strong {
    color: var(--ink);
}

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

.label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest-lt);
}


/* ─── NAV ─────────────────────────────────────────────── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 5%;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(27, 67, 50, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest);
}

.nav-logo span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--forest);
}

.nav-cta {
    background: var(--forest);
    color: white;
    padding: 9px 22px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
    background: var(--forest-mid);
    transform: translateY(-1px);
}


/* ─── SECTIONS ────────────────────────────────────────── */

section {
    padding: 100px 5%;
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
}


/* ─── HERO ────────────────────────────────────────────── */

#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(116, 198, 157, 0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(27, 67, 50, 0.07) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, var(--border) 1px, transparent 1px), linear-gradient(to bottom, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
}

.hero-content {
    padding: 0 5%;
    max-width: 640px;
    animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber-lt);
    color: var(--amber);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

.hero-content h1 {
    color: var(--forest);
    margin-bottom: 1.25rem;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--forest-lt);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
}

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

.btn-primary {
    background: var(--forest);
    color: white;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--forest-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

.btn-outline {
    border: 1.5px solid var(--forest);
    color: var(--forest);
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--forest);
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    animation: fadeUp 0.9s 0.2s ease both;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(27, 67, 50, 0.08);
    position: relative;
}

.stat-card.main {
    z-index: 2;
}

.stat-card.accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--forest);
    color: white;
    padding: 1.2rem 1.5rem;
    z-index: 3;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
}

.stat-card.accent .stat-num {
    color: var(--moss);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
}

.stat-card.accent .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.stat-card.accent .stat-num-lg {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--moss);
}

.floating-badge {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--amber);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 4;
    letter-spacing: 0.05em;
}


/* ─── CAPABILITY HIGHLIGHTS ───────────────────────────── */

#about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-left p {
    font-size: 1.05rem;
    margin-top: 1.25rem;
}

.cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
}

.cap-item {
    background: white;
    padding: 1.75rem;
    transition: background 0.2s;
}

.cap-item:hover {
    background: var(--cream);
}

.cap-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.cap-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    stroke-width: 1.8;
}

.cap-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.cap-item p {
    font-size: 0.88rem;
    line-height: 1.6;
}


/* ─── STATS STRIP ─────────────────────────────────────── */

#stats {
    background: var(--forest);
    padding: 70px 5%;
}

.stats-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stat-block {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.stat-block+.stat-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-block .num {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--moss);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-block .lbl {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}


/* ─── APPROACH ────────────────────────────────────────── */

#approach {
    background: var(--cream);
}

.approach-header {
    max-width: 680px;
    margin-bottom: 3.5rem;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pillar-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 67, 50, 0.1);
}

.pillar-card::before {
    content: attr(data-num);
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    pointer-events: none;
}

.pillar-card h3 {
    color: var(--forest);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.pillar-card p {
    font-size: 0.9rem;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 5rem;
}

.step-list {
    list-style: none;
}

.step-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.step-list li:last-child {
    border-bottom: none;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-list li p {
    font-size: 0.92rem;
}


/* ─── SERVICES ────────────────────────────────────────── */

#services {
    background: var(--warm-white);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 67, 50, 0.1);
}

.service-card-top {
    padding: 2rem 2rem 1.5rem;
    background: var(--forest);
    position: relative;
}

.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.12);
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    line-height: 1;
}

.service-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--moss);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.service-card-top h3 {
    color: white;
    font-size: 1.2rem;
}

.service-card-body {
    padding: 1.75rem 2rem;
}

.service-card-body p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.bullet-list {
    list-style: none;
}

.bullet-list li {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 5px 0;
    padding-left: 1.25rem;
    position: relative;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--forest-lt);
}

.service-featured {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-featured .feat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-featured .feat-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--forest);
}


/* ─── EXPERIENCE ──────────────────────────────────────── */

#experience {
    background: var(--cream);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.project-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(27, 67, 50, 0.09);
}

.project-card.featured {
    grid-column: 1 / -1;
    background: var(--forest);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.project-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.project-tag.client {
    background: var(--amber-lt);
    color: var(--amber);
}

.project-tag.initiative {
    background: rgba(255, 255, 255, 0.15);
    color: var(--moss);
}

.project-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.project-card.featured h3 {
    color: white;
    font-size: 1.3rem;
}

.project-card p {
    font-size: 0.9rem;
}

.project-card.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.mini-stat .n {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--moss);
}

.mini-stat .l {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}


/* ─── CLIENTS ─────────────────────────────────────────── */

#clients {
    background: var(--warm-white);
    padding: 80px 5%;
}

.clients-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-header h2 {
    font-size: 1.8rem;
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}

.logo-item {
    padding: 14px 22px;
    border: 1px solid var(--border);
    margin: -1px 0 0 -1px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.02em;
}

.logo-item:hover {
    background: var(--cream);
    color: var(--forest);
}

.logo-section-label {
    width: 100%;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest-lt);
    padding: 16px 0 8px;
    margin-top: 0.5rem;
}


/* ─── CONTACT ─────────────────────────────────────────── */

#contact {
    background: var(--forest);
}

.contact-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-left h2 {
    color: white;
    margin-bottom: 1.25rem;
}

.contact-left p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.75;
}

.contact-person {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-person .name {
    font-weight: 600;
    color: white;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-person .role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.contact-person a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--moss);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 6px;
}

.contact-person a:hover {
    color: white;
}

.contact-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    color: var(--forest);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--ink);
    background: var(--warm-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--forest-lt);
    box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    width: 100%;
    background: var(--forest);
    color: white;
    padding: 14px;
    border: none;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.form-submit:hover {
    background: var(--forest-mid);
    transform: translateY(-1px);
}


/* ─── FOOTER ──────────────────────────────────────────── */

footer {
    background: var(--ink);
    padding: 50px 5% 30px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 260px;
    line-height: 1.65;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--moss);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
    font-size: 0.8rem;
}

.social-links a:hover {
    border-color: var(--moss);
    color: var(--moss);
}


/* ─── CTA BANNER ──────────────────────────────────────── */

#cta-banner {
    background: var(--sand);
    padding: 80px 5%;
    text-align: center;
}

.cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.cta-inner h2 {
    color: var(--forest);
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ─── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 900px) {
    #hero {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        display: none;
    }
    .about-grid,
    .how-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .service-cards,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-card.featured {
        grid-template-columns: 1fr;
    }
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-block::before {
        display: none;
    }
    .pillars {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .cap-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── SCROLL ANIMATIONS ───────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}


/* ─── MISC ────────────────────────────────────────────── */

.divider {
    width: 48px;
    height: 3px;
    background: var(--forest-lt);
    border-radius: 2px;
    margin: 1.25rem 0;
}

.section-label {
    margin-bottom: 0.75rem;
}

.contact-inner {
  display: block;
}

.contact-left.full-width {
  width: 100%;
  
}

.contact-person-wrapper {
  display: flex;
  gap: 20px;
}

.contact-person {
  width: 50%;
}


@media (max-width: 768px) {
  .contact-person-wrapper {
    flex-direction: column;
  }

  .contact-person {
    width: 100%;
  }
}


