:root {
    --color-primary: #005500;       /* deep forest green — from logo */
    --color-primary-dark: #023a0a;  /* darker shade for header/footer */
    --color-teal: #087c89;          /* logo gradient mid-tone */
    --color-lime: #d5d302;          /* logo accent — used sparingly */
    --color-ink: #10140f;
    --color-cream: #faf8f2;
    --color-muted: #6b7368;
    --color-border: #e6e3d8;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-ink);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 .75rem;
    letter-spacing: -.01em;
}

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

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Scroll-reveal (JS toggles .in-view) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ Top bar ============ */
.top-bar {
    background: var(--color-primary-dark);
    color: #cfe0d0;
    font-size: .82rem;
    letter-spacing: .03em;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.top-bar-links { display: flex; gap: 1.75rem; }
.top-bar-links a { display: flex; align-items: center; gap: .4rem; color: #cfe0d0; }
.top-bar-links a:hover { color: var(--color-lime); }
.top-bar-social { display: flex; gap: .9rem; }
.top-bar-social a { color: #cfe0d0; font-size: .9rem; }
.top-bar-social a:hover { color: var(--color-lime); }

/* ============ Header ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    transition: box-shadow .3s, padding .3s;
}

.site-header::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-teal), var(--color-lime));
}

.site-header.scrolled {
    box-shadow: 0 12px 30px -10px rgba(0,0,0,.15);
}

.site-header.scrolled .container { height: 88px; }

.site-header .container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    height: 128px;
    transition: height .3s;
}

.site-header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform .3s ease;
}
.logo:hover { transform: translateY(-2px) scale(1.02); }

.site-header .logo img { max-height: 80px; width: auto; max-width: none; display: block; transition: max-height .3s ease; }
.site-header.scrolled .logo img { max-height: 60px; }

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

.header-actions { display: flex; align-items: center; gap: .85rem; margin-left: auto; flex-shrink: 0; }
.nav-cta-btn { white-space: nowrap; }

.site-nav .nav-item { position: relative; display: flex; align-items: center; }
.site-nav .nav-item.nav-cta-mobile { display: none; }

.site-nav > .nav-item:not(.nav-cta) > a {
    color: var(--color-ink);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    transition: color .25s, background .25s;
    white-space: nowrap;
    position: relative;
    padding: .6rem .7rem;
    border-radius: .6rem;
}

.site-nav > .nav-item:not(.nav-cta) > a::after {
    content: '';
    position: absolute;
    left: .7rem; right: .7rem; bottom: .3rem;
    height: 2px;
    background: var(--color-lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.site-nav > .nav-item:not(.nav-cta) > a:hover { color: var(--color-primary); background: var(--color-cream); }
.site-nav > .nav-item:not(.nav-cta) > a:hover::after { transform: scaleX(1); }

.nav-cta-btn { padding: .7rem 1.4rem; font-size: .75rem; }

.nav-toggle { display: none; background: none; border: none; color: var(--color-ink); font-size: 1.8rem; cursor: pointer; }

.dropdown-caret {
    font-size: .68rem;
    margin-left: .3rem;
    display: inline-block;
    transition: transform .25s ease, color .25s ease;
    vertical-align: middle;
}
.has-dropdown:hover .dropdown-caret { transform: rotate(180deg); color: var(--color-lime); }

/* Dropdown menus (Services / Products) */
.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 280px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
    border-radius: .75rem;
    border-top: 2px solid var(--color-lime);
    padding: .6rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 10;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: block;
    padding: .6rem 1.5rem;
    color: var(--color-ink);
    text-transform: none;
    letter-spacing: normal;
    font-size: .9rem;
    font-weight: 400;
}

.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--color-cream); color: var(--color-primary); padding-left: 1.8rem; }

/* ============ Hero ============ */
.section-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-color: var(--color-ink);
    overflow: hidden;
}

.section-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(2,20,8,.72) 0%, rgba(2,20,8,.4) 45%, rgba(2,20,8,.78) 100%);
    z-index: 0;
}

.section-hero .container { position: relative; z-index: 1; max-width: 760px; }

.section-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--color-lime);
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.section-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: #fff;
    font-weight: 600;
}

.section-hero p { font-size: 1.1rem; color: #e3ede4; max-width: 560px; font-weight: 300; }

.hero-scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 1; color: #fff; opacity: .7; font-size: 1.4rem;
    animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .95rem 2.1rem;
    border-radius: .5rem;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    transition: all .3s ease;
    border: 1px solid var(--color-lime);
    position: relative;
}

.btn::after {
    content: '\2192';
    font-size: 1rem;
    line-height: 1;
    transition: transform .25s ease;
}
.btn:hover::after { transform: translateX(4px); }

.btn-primary { background: var(--color-lime); color: var(--color-ink); border-color: var(--color-lime); box-shadow: 0 14px 30px -12px rgba(213,211,2,.5); }
.btn-primary:hover { background: transparent; color: var(--color-lime); box-shadow: none; }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: #fff; color: var(--color-ink); border-color: #fff; }

/* ============ Generic section ============ */
.section { padding: 64px 0; }
.section-alt { background: var(--color-cream); }

.section-heading { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.section-heading .eyebrow {
    text-transform: uppercase; letter-spacing: .25em; color: var(--color-teal); font-size: .78rem; font-weight: 600;
    display: inline-block; margin-bottom: .75rem;
}
.section-heading h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
.section-heading h2::after {
    content: '';
    display: block;
    width: 56px; height: 2px;
    background: var(--color-lime);
    margin: 1.1rem auto 0;
}
.section-heading p { color: var(--color-muted); font-size: 1.02rem; }

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

.split img { border-radius: 1.1rem; box-shadow: 0 30px 60px -20px rgba(8,124,137,.35); }

/* About section */
.about-section { padding: 56px 0; }
.about-split { gap: 5rem; }

.about-media { position: relative; padding: 14px 22px 22px 0; }
.about-media img { max-height: 420px; object-fit: cover; }

.about-media__frame {
    position: absolute;
    top: 0; left: 22px; right: 0; bottom: 0;
    border: 3px solid var(--color-lime);
    border-radius: 1.1rem;
    z-index: 0;
}

.image-badge-wrap { position: relative; z-index: 1; }
.image-badge-wrap img { width: 100%; }

.years-badge {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--color-primary);
    color: #fff;
    width: 118px; height: 118px;
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    box-shadow: 0 16px 34px -10px rgba(0,85,0,.55);
    border: 3px solid var(--color-lime);
    z-index: 2;
}
.years-badge strong { font-family: var(--font-heading); font-size: 1.5rem; line-height: 1.1; }
.years-badge span { font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }

.about-copy { position: relative; padding-left: 2rem; border-left: 3px solid var(--color-border); }
.about-copy .eyebrow {
    text-transform: uppercase; letter-spacing: .25em; color: var(--color-teal); font-size: .78rem; font-weight: 600;
    display: inline-block; margin-bottom: .5rem;
}
.about-copy h2 { font-size: clamp(1.8rem, 2.8vw, 2.5rem); }
.about-copy__body { color: var(--color-muted); font-size: 1.02rem; }
.about-copy__body strong { color: var(--color-primary); font-weight: 700; }

.founder-inline {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--color-cream);
    border-radius: 1rem;
    border-left: 3px solid var(--color-lime);
}
.founder-inline__avatar {
    flex-shrink: 0;
    width: 62px; height: 62px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-lime);
}
.founder-inline__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-inline .eyebrow { font-size: .68rem; letter-spacing: .15em; margin-bottom: .15rem; }
.founder-inline h4 { font-size: 1.05rem; margin-bottom: 0; }

@media (max-width: 860px) {
    .about-media { padding: 10px 16px 16px 0; }
    .years-badge { width: 92px; height: 92px; bottom: -16px; right: -16px; }
    .years-badge strong { font-size: 1.15rem; }
    .about-copy { padding-left: 1.25rem; }
}

.team-photo-row { margin-top: 3rem; display: flex; justify-content: center; }
.team-photo {
    max-width: 640px;
    width: 100%;
    border: 3px solid var(--color-lime);
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -24px rgba(0,85,0,.3);
}
.team-photo img { width: 100%; height: auto; display: block; }

.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    max-width: 260px;
}

.team-card__avatar {
    width: 160px; height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 4px solid #fff;
    box-shadow: 0 20px 40px -16px rgba(8,124,137,.4), 0 0 0 3px var(--color-lime);
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.team-card .eyebrow {
    text-transform: uppercase; letter-spacing: .2em; color: var(--color-teal); font-size: .75rem; font-weight: 600;
    display: block; margin-bottom: .4rem;
}
.team-card h4 { font-size: 1.25rem; margin-bottom: 0; }
.team-card p { color: var(--color-muted); font-size: .92rem; margin-top: .4rem; }

.generic-panel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: 1.75rem;
    padding: 2.75rem 2.5rem 2.25rem;
}

.generic-panel__icon {
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-lime);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 12px 28px -8px rgba(0,85,0,.5);
}

.generic-panel .section-heading { margin-bottom: 1.25rem; }

@media (max-width: 640px) {
    .generic-panel { padding: 3rem 1.5rem 2rem; }
}

/* ============ Service/Product detail hero ============ */
.detail-hero { padding-top: 56px; }

.detail-split { align-items: center; }

.detail-media {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -24px rgba(8,124,137,.35);
}
.detail-media img { width: 100%; height: 420px; object-fit: cover; display: block; }

.detail-copy .eyebrow {
    text-transform: uppercase; letter-spacing: .25em; color: var(--color-teal); font-size: .78rem; font-weight: 600;
    display: inline-block; margin-bottom: .5rem;
}
.detail-copy h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.detail-copy p { color: var(--color-muted); font-size: 1.02rem; margin-bottom: 1.75rem; }

@media (max-width: 640px) {
    .detail-media img { height: 260px; }
}

@media (max-width: 640px) {
    .detail-hero__media { height: 280px; }
    .detail-hero__overlay { padding: 1.5rem; }
}

.section-body { max-width: 760px; margin: 0 auto; color: var(--color-muted); font-size: 1.02rem; text-align: center; }
.section-body > p:first-child { margin-bottom: 1.25rem; }

.section-body ul {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
    gap: .9rem 2.5rem;
    text-align: left;
}
.section-body ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--color-ink);
    font-size: .95rem;
}
.section-body ul li::before {
    content: '\2713';
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: .68rem;
    display: flex; align-items: center; justify-content: center;
}

@media (max-width: 640px) {
    .section-body ul { grid-template-columns: 1fr; }
}

/* ============ Grid of cards (services / gallery) ============ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.25rem;
}

.card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 18px 40px -24px rgba(16,20,15,.18);
    transition: transform .35s ease, box-shadow .35s ease;
}

.card:hover { transform: translateY(-10px); box-shadow: 0 30px 55px -20px rgba(8,124,137,.4); }

.card .card-img-wrap { overflow: hidden; position: relative; }
.card img { height: 240px; width: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover img { transform: scale(1.1); }

.card .card-img-wrap::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0; height: 60%;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
    opacity: 0;
    transition: opacity .35s ease;
}
.card:hover .card-img-wrap::after { opacity: 1; }

.card .card-body { padding: 1.85rem 1.75rem 1.6rem; position: relative; }
.card .card-body h4 { font-size: 1.2rem; margin-bottom: .6rem; }
.card .card-body p {
    color: var(--color-muted); font-size: .95rem; margin-bottom: 1.25rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.card .card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1.1rem;
    border-top: 1px solid var(--color-border);
}
.card .card-link {
    color: var(--color-ink); font-weight: 700; font-size: .78rem;
    text-transform: uppercase; letter-spacing: .08em;
}
.card a.card-footer:hover .card-link { color: var(--color-primary); }
.card .card-arrow {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--color-lime);
    color: var(--color-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.card:hover .card-arrow { transform: rotate(45deg) scale(1.08); }

.card .icon { font-size: 2rem; color: var(--color-teal); margin-bottom: 1rem; }

/* ============ Gallery ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.gallery-item { overflow: hidden; border-radius: 1rem; }
.gallery-grid img { height: 280px; width: 100%; object-fit: cover; border-radius: 1rem; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* ============ CTA ============ */
.section-cta { padding: 56px 0; }

.cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: #fff;
    border-radius: 1.75rem;
    padding: 56px 60px;
    box-shadow: 0 40px 70px -30px rgba(0,40,0,.45);
}

.cta-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 30% 50%, rgba(0,0,0,.5), transparent 70%);
}

.cta-card::after {
    content: '';
    position: absolute;
    top: 50%; right: 6%;
    width: 260px; height: 260px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.cta-glow--teal { width: 320px; height: 320px; background: var(--color-teal); opacity: .35; top: -100px; left: -60px; }
.cta-glow--lime { width: 260px; height: 260px; background: var(--color-lime); opacity: .25; bottom: -110px; right: 8%; }

.cta-inner {
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cta-text { text-align: left; }
.cta-text::before {
    content: '';
    display: block;
    width: 44px; height: 3px;
    background: var(--color-lime);
    margin-bottom: 1.1rem;
    border-radius: 2px;
}
.cta-text .eyebrow { text-transform: uppercase; letter-spacing: .25em; color: var(--color-lime); font-size: .78rem; font-weight: 600; display: inline-block; margin-bottom: .5rem; }
.section-cta h2 { color: #fff; margin-bottom: 0; }
.section-cta h2::after { display: none; }
.section-cta p { color: #d9e8da; max-width: 480px; margin: .6rem 0 0; }
.section-cta .btn { flex-shrink: 0; }

@media (max-width: 720px) {
    .cta-card { padding: 44px 28px; text-align: center; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-text { text-align: center; }
    .cta-text::before { margin: 0 auto 1.1rem; }
}

/* ============ Testimonials ============ */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: box-shadow .3s ease, transform .3s ease;
}
.testimonial-card:hover { box-shadow: 0 24px 48px -18px rgba(8,124,137,.3); transform: translateY(-4px); }

.testimonial-card .stars { color: var(--color-lime); margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-card p { font-style: italic; color: var(--color-ink); }
.testimonial-card .client { font-weight: 600; margin-top: 1.25rem; font-family: var(--font-heading); }
.testimonial-card .role { color: var(--color-muted); font-size: .85rem; }

/* ============ Partners ============ */
.partner-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.partner-row img {
    max-height: 64px;
    width: auto;
    filter: grayscale(0);
    opacity: 1;
    transition: transform .3s ease;
}
.partner-row img:hover { transform: scale(1.08); }

/* ============ Contact ============ */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info-card {
    background: linear-gradient(150deg, var(--color-primary-dark), var(--color-primary));
    color: #fff;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
}
.contact-info-card h3 { color: #fff; font-size: 1.5rem; }
.contact-info-card > p { color: #d9e8da; margin-bottom: 2rem; }

.contact-info-list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1.5rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-list .icon-dot {
    flex-shrink: 0;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(213,211,2,.18);
    color: var(--color-lime);
    display: flex; align-items: center; justify-content: center;
}
.contact-info-list strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--color-lime); margin-bottom: .2rem; }
.contact-info-list a, .contact-info-list span { color: #eef3ec; }

.contact-form-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 30px 60px -30px rgba(16,20,15,.2);
}

.contact-success { color: var(--color-primary); font-weight: 600; margin-bottom: 1.25rem; }

.contact-form { display: grid; gap: 1.1rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid var(--color-border);
    border-radius: .6rem;
    font-family: inherit;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(8,124,137,.15);
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-row { grid-template-columns: 1fr; }
    .contact-info-card, .contact-form-card { padding: 2.25rem 1.75rem; }
}

/* ============ Footer ============ */
.site-footer {
    background:
        radial-gradient(circle at 15% 20%, rgba(8,124,137,.25), transparent 45%),
        radial-gradient(circle at 90% 90%, rgba(213,211,2,.12), transparent 40%),
        var(--color-primary-dark);
    color: #b9c9ba;
    padding: 90px 0 24px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-lime));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.site-footer h5 {
    position: relative;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    padding-bottom: .9rem;
}
.site-footer h5::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 34px; height: 2px;
    background: var(--color-lime);
}
.site-footer a { transition: color .2s, padding-left .2s; }
.site-footer a:hover { color: var(--color-lime); }
.site-footer p { font-size: .92rem; }

.footer-links a { display: flex; align-items: center; gap: .5rem; margin-bottom: .85rem; color: #b9c9ba; }
.footer-links a::before { content: '\2192'; color: var(--color-lime); font-size: .85rem; }
.footer-links a:hover { padding-left: .25rem; }

.footer-contact p { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.1rem; }
.footer-contact .icon-dot {
    flex-shrink: 0;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(213,211,2,.12);
    color: var(--color-lime);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.75rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    text-align: left;
    font-size: .82rem;
    color: #7c9a80;
    position: relative; z-index: 1;
}
.footer-bottom a { color: #a8c2aa; }
.footer-bottom a:hover { color: var(--color-lime); }
.footer-credit { color: #7c9a80; }

@media (max-width: 640px) {
    .footer-bottom { flex-direction: column; text-align: center; }
}

.social-links { display: flex; gap: .85rem; margin-top: 1.25rem; }
.social-links a, .top-bar-social a {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.top-bar-social a { width: 28px; height: 28px; font-size: .82rem; }

.social-links a:hover, .top-bar-social a:hover {
    transform: translateY(-3px) scale(1.06);
    filter: brightness(1.1);
}

/* Real brand colors */
.social-icon--facebook  { background: #1877f2; box-shadow: 0 8px 18px -6px rgba(24,119,242,.6); }
.social-icon--twitter   { background: #000; box-shadow: 0 8px 18px -6px rgba(0,0,0,.5); }
.social-icon--instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 8px 18px -6px rgba(214,36,159,.55);
}
.social-icon--pinterest { background: #e60023; box-shadow: 0 8px 18px -6px rgba(230,0,35,.55); }
.social-icon--youtube   { background: #ff0000; box-shadow: 0 8px 18px -6px rgba(255,0,0,.5); }
.social-icon--linkedin  { background: #0a66c2; box-shadow: 0 8px 18px -6px rgba(10,102,194,.55); }

/* ============ Floating action buttons ============ */
.fab-stack {
    position: fixed;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.fab {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px; height: 58px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.fab:hover { transform: scale(1.08); }

.fab--whatsapp { background: #25d366; box-shadow: 0 14px 30px -8px rgba(37,211,102,.65); }
.fab--call { background: var(--color-primary); box-shadow: 0 14px 30px -8px rgba(0,85,0,.6); }

.fab__label {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    white-space: nowrap;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--color-ink);
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 10px 24px -8px rgba(0,0,0,.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}
.fab:hover .fab__label { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 860px) {
    .top-bar { display: none; }
    .split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .site-header .container { height: 88px; }
    .site-header .logo img { max-height: 60px; }

    .site-nav {
        position: fixed; top: 88px; left: 0; right: 0; bottom: 0;
        transform: none;
        background: var(--color-primary-dark); flex-direction: column; align-items: stretch;
        padding: 1rem 28px; display: none; overflow-y: auto;
    }
    .site-nav.open { display: flex; }
    .nav-toggle { display: block; }

    .site-nav > .nav-item:not(.nav-cta-mobile) > a { color: #fff; background: none; }
    .site-nav .nav-item { flex-direction: column; align-items: stretch; }
    .site-nav .nav-item:not(.nav-cta-mobile) > a { padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }
    .site-nav > .nav-item:not(.nav-cta-mobile) > a::after { display: none; }
    .site-nav > .nav-item:not(.nav-cta-mobile) > a:hover { color: var(--color-lime); }
    .has-dropdown.open .dropdown-caret { transform: rotate(180deg); color: var(--color-lime); }

    .site-nav .nav-item.nav-cta-mobile { display: block; margin: 1.25rem 0 0; }
    .nav-cta-mobile .btn { display: flex; justify-content: center; width: 100%; }

    .header-actions .nav-cta-btn { display: none; }

    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; background: transparent; border-top: none;
        padding: 0 0 .5rem 1rem;
        display: none;
    }
    .has-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu a { color: #cfcac2; padding: .55rem 0; }
    .dropdown-menu a:hover { background: transparent; padding-left: .5rem; color: var(--color-lime); }
}
