:root {
    --cream: #edeae4;
    --cream2: #e5e2db;
    --forest: #0f2318;
    --pine: #19352a;
    --green: #1b4332;
    --sage: #2d6a4f;
    --amber: #c98d0c;
    --amber2: #f5a623;
    --white: #ffffff;
    --ink: #0f1f14;
    --slate: #526058;
    --border: #d4cfc7;
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --r: 10px;
    --ease: 200ms ease;
    --max: 1200px;
    --gut: clamp(1.25rem, 5vw, 2.5rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}
img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}
svg {
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
button,
input,
textarea,
select {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}
:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}

.wrap {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--gut);
}

/* ── NAV ──────────────────────────────────────────────────────── */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: linear-gradient(
        to bottom,
        rgba(4, 10, 6, 0.88) 0%,
        rgba(4, 10, 6, 0.4) 70%,
        transparent 100%
    );
    transition:
        background 320ms ease,
        backdrop-filter 320ms ease,
        box-shadow 320ms ease;
}
.nav-wrap.scrolled {
    background: rgba(27, 67, 50, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
    padding-inline: clamp(0.5rem, 3vw, 1.5rem);
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: -0.2px;
    flex-shrink: 0;
}
.nav__logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}
.nav__logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: var(--amber);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__logo-mark svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}
.nav__links a {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0.875rem;
    border-radius: 5px;
    transition:
        color var(--ease),
        background var(--ease);
}
.nav__links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}
.nav__links a.active {
    color: var(--amber);
}
.nav__mobile a.active {
    color: var(--amber);
}
.nav__socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.nav__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transition: background var(--ease);
}
.nav__social-link:hover {
    background: rgba(255, 255, 255, 0.25);
}
.nav__social-link svg {
    width: 18px;
    height: 18px;
}
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 5px;
    flex-shrink: 0;
    transition: background var(--ease);
}
.nav__hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}
.nav__hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transform-origin: center;
    transition:
        transform 220ms ease,
        opacity 180ms ease;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.nav__mobile {
    display: none;
    flex-direction: column;
    background: var(--forest);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.5rem var(--gut) 1.5rem;
}
.nav__mobile.open {
    display: flex;
}
.nav__mobile a {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.875rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        color var(--ease),
        padding-left var(--ease);
}
.nav__mobile a:last-of-type {
    border-bottom: none;
}
.nav__mobile a:hover {
    color: var(--white);
    padding-left: 0.625rem;
}
.nav__mobile-cta {
    margin-top: 0.875rem;
}
.nav__mobile-cta .nav__cta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0.875rem;
    font-size: 0.9375rem;
}
@media (max-width: 860px) {
    .nav__links,
    .nav__cta {
        display: none;
    }
    .nav__hamburger {
        display: flex;
    }
    .nav__socials {
        display: none;
    }
    /* Remove inner nav padding — .wrap already handles the gutter,
           so nav logo aligns with section content */
    .nav {
        padding-inline: 0;
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── HERO SLIDER ─────────────────────────────────────────────── */
.hero {
    min-height: 70svh;
    position: relative;
    overflow: hidden;
}
.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 800ms ease;
}
.hero__slide.active {
    opacity: 1;
}
.hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 72px;
    padding-bottom: 4rem;
    pointer-events: none;
}
.hero__controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    z-index: 10;
}
.hero__dots {
    display: flex;
    gap: 0.5rem;
}
.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition:
        background 300ms ease,
        transform 300ms ease;
}
.hero__dot.active {
    background: var(--amber);
    transform: scale(1.35);
}
.hero__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--ease);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    flex-shrink: 0;
}
.hero__arrow:hover {
    background: rgba(255, 255, 255, 0.22);
}
.hero__arrow svg {
    width: 18px;
    height: 18px;
}
.hero__inner {
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}
.hero__arc {
    width: 380px;
    max-width: 92%;
    display: block;
    overflow: visible;
    animation: heroFadeUp 560ms ease both;
    animation-delay: 100ms;
}
.hero__arc text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    fill: #fff;
    font-family: inherit;
    text-transform: uppercase;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.8));
}
.hero__eyebrow {
    display: none;
}
.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    animation: heroFadeUp 560ms ease both;
    animation-delay: 220ms;
}
.hero__title em {
    font-style: normal;
    color: inherit;
    font-weight: 400;
    letter-spacing: -1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
    padding: 0.9375rem 2rem;
    transition:
        background var(--ease),
        color var(--ease),
        box-shadow var(--ease),
        transform var(--ease),
        border-color var(--ease);
}
.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.btn--amber {
    background: var(--amber);
    color: var(--white);
}
.btn--amber:hover {
    background: #b07d0b;
    box-shadow: 0 6px 24px rgba(201, 141, 12, 0.4);
    transform: translateY(-2px);
}
.btn--green {
    background: var(--green);
    color: var(--white);
}
.btn--green:hover {
    background: var(--pine);
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
    transform: translateY(-2px);
}
.btn--glass {
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.88);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
}
.btn--glass:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* ── ABOUT ────────────────────────────────────────────────────── */
.about {
    background: var(--cream);
    padding-block: clamp(2.5rem, 5vw, 4rem);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
    }
}
.about__tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.about__tag::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}
.about__headline {
    font-size: clamp(2.25rem, 5vw, 3.875rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.06;
    color: var(--green);
    margin-bottom: 1.5rem;
}
.about__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate);
    max-width: 560px;
    margin-bottom: 2rem;
}
.about__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--green);
    border-bottom: 2px solid var(--amber);
    padding-bottom: 0.125rem;
    transition:
        color var(--ease),
        gap var(--ease);
}
.about__link svg {
    width: 15px;
    height: 15px;
    transition: transform var(--ease);
}
.about__link:hover {
    color: var(--amber);
    gap: 0.75rem;
}
.about__link:hover svg {
    transform: translateX(3px);
}
.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}
.astat {
    background: var(--green);
    border-radius: var(--r);
    padding: clamp(1.25rem, 3vw, 1.875rem) 1.25rem;
    text-align: center;
}
.astat__num {
    display: block;
    font-size: clamp(2rem, 3.5vw, 2.875rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--amber2);
    margin-bottom: 0.35rem;
}
.astat__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

/* ── SERVICES ─────────────────────────────────────────────────── */
.services {
    background:
        linear-gradient(rgba(27, 67, 50, 0.9), rgba(27, 67, 50, 0.9)),
        url("./images/paper2.jpg") center / auto;
    padding-block: clamp(4.5rem, 10vw, 7.5rem);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' x='0' y='0' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E");
}
.services__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
    position: relative;
    z-index: 1;
}
.services__lbl {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.625rem;
    display: block;
}
.services__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    text-transform: none;
}
.services__cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}
@media (max-width: 960px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 580px) {
    /* Keep 2 columns — 4 full-width stacked cards is too much scroll */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-card__title {
        font-size: 1.1rem;
        max-width: 100%;
    }
    .svc-card__badge {
        width: 38px;
        height: 38px;
        font-size: 0.5rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}
.svc-card {
    background: #edeae2;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 1.625rem 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition:
        transform var(--ease),
        box-shadow var(--ease);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}
.svc-card__num {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.35rem;
}
.svc-card__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px dashed rgba(27, 67, 50, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--forest);
    line-height: 1.3;
}
.svc-card__icon {
    display: none;
}
.svc-card__title {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--forest);
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 75%;
}
.svc-card__sub {
    font-size: 0.8rem;
    color: rgba(27, 67, 50, 0.5);
    margin-bottom: 1rem;
}
.svc-card__divider {
    border: none;
    border-top: 1.5px dashed rgba(27, 67, 50, 0.2);
    margin: 0 0 1rem;
}
.svc-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    margin-bottom: 1.25rem;
}
.svc-card__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: rgba(27, 67, 50, 0.85);
    font-weight: 500;
}
.svc-card__item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: var(--forest);
    color: #fff;
    border-radius: 50%;
    padding: 3px;
}
.svc-card__item--faint {
    opacity: 0.35;
}
.svc-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 100px;
    background: var(--forest);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background var(--ease);
    margin-bottom: 0.625rem;
}
.svc-card__btn:hover {
    background: var(--pine);
}
.svc-card__note {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(27, 67, 50, 0.45);
}
.svc-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background: var(--amber);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition:
        background var(--ease),
        box-shadow var(--ease);
}
.svc-card__btn:hover {
    background: #b07d0b;
    box-shadow: 0 4px 16px rgba(201, 141, 12, 0.4);
}
.svc-card__note {
    text-align: center;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.625rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── REVIEWS ──────────────────────────────────────────────────── */
.reviews {
    background: var(--cream);
    padding-block: clamp(4.5rem, 10vw, 7.5rem);
}
.reviews__head {
    margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.reviews__title {
    font-size: clamp(1.75rem, 3.5vw, 2.625rem);
    font-weight: 800;
    letter-spacing: -0.75px;
    color: var(--green);
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 860px) {
    .reviews__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
}
.rev {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--border);
    padding: 1.875rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    transition:
        box-shadow var(--ease),
        transform var(--ease);
}
.rev:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.rev__stars {
    display: flex;
    gap: 0.2rem;
}
.rev__stars svg {
    width: 14px;
    height: 14px;
    color: var(--amber);
}
.rev__text {
    font-size: 0.9375rem;
    line-height: 1.75;
    font-style: italic;
    color: #2a3a2f;
    flex: 1;
}
.rev__text::before {
    content: "\201C";
    color: var(--amber);
    font-size: 1.25rem;
    line-height: 0;
    vertical-align: -0.28em;
    margin-right: 0.1em;
    font-style: normal;
}
.rev__text::after {
    content: "\201D";
    color: var(--amber);
    font-size: 1.25rem;
    line-height: 0;
    vertical-align: -0.28em;
    margin-left: 0.1em;
    font-style: normal;
}
.rev__foot {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border);
}
.rev__av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(27, 67, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--green);
    flex-shrink: 0;
}
.rev__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
}
.rev__loc {
    font-size: 0.75rem;
    color: var(--slate);
}
.reviews__more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--green);
    border-bottom: 2px solid var(--amber);
    padding-bottom: 0.125rem;
    transition:
        color var(--ease),
        gap var(--ease);
}
.reviews__more svg {
    width: 15px;
    height: 15px;
    transition: transform var(--ease);
}
.reviews__more:hover {
    color: var(--amber);
    gap: 0.75rem;
}
.reviews__more:hover svg {
    transform: translateX(3px);
}

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact {
    background: var(--cream);
    padding-block: clamp(4.5rem, 10vw, 7.5rem);
    border-top: 1px solid var(--border);
}
.contact__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.contact__tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.contact__tag::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}
.contact__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.06;
    color: var(--ink);
}
.contact__title span {
    color: var(--green);
}
.contact__phone-big {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--green);
    transition: color var(--ease);
}
.contact__phone-big:hover {
    color: var(--amber);
}
.contact__phone-note {
    font-size: 0.75rem;
    color: var(--slate);
    text-align: right;
    margin-top: 0.25rem;
}
.contact__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
@media (max-width: 820px) {
    .contact__body {
        grid-template-columns: 1fr;
    }
}
.contact__left {
    display: flex;
    flex-direction: column;
    gap: 1.375rem;
}
.contact__map {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 280px;
    background: #ccd4cd;
}
.contact__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.contact__meta {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.contact__row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.contact__row-ico {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    background: rgba(27, 67, 50, 0.08);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact__row-ico svg {
    width: 16px;
    height: 16px;
    color: var(--green);
}
.contact__row-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.125rem;
}
.contact__row-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
}
.contact__row-value a {
    color: var(--green);
    transition: color var(--ease);
}
.contact__row-value a:hover {
    color: var(--amber);
}
.contact__socials {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}
.csoc {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    transition:
        border-color var(--ease),
        background var(--ease),
        color var(--ease);
}
.csoc svg {
    width: 14px;
    height: 14px;
}
.csoc:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}
.fcard {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--border);
    padding: clamp(1.75rem, 4vw, 2.5rem);
}
.fcard__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 0.25rem;
}
.fcard__sub {
    font-size: 0.875rem;
    color: var(--slate);
    margin-bottom: 1.75rem;
}
.fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 480px) {
    .fgrid {
        grid-template-columns: 1fr;
    }
}
.ff {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.ff--full {
    grid-column: 1 / -1;
}
.ff__lbl {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--slate);
}
.ff__in,
.ff__sel,
.ff__ta {
    width: 100%;
    padding: 0.8125rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    background: var(--cream);
    font-family: var(--font);
    font-size: 0.9375rem;
    color: var(--ink);
    transition:
        border-color var(--ease),
        box-shadow var(--ease),
        background var(--ease);
    appearance: none;
    -webkit-appearance: none;
}
.ff__in::placeholder,
.ff__ta::placeholder {
    color: #b0b8b0;
}
.ff__in:focus,
.ff__sel:focus,
.ff__ta:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
    background: var(--white);
}
.ff__sel {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23526058' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.ff__ta {
    resize: vertical;
    min-height: 110px;
}
.ff__btn {
    width: 100%;
    margin-top: 0.375rem;
    padding: 1rem 1.5rem;
    background: var(--green);
    color: var(--white);
    border-radius: 7px;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition:
        background var(--ease),
        box-shadow var(--ease),
        transform var(--ease);
}
.ff__btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--ease);
}
.ff__btn:hover {
    background: var(--pine);
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.3);
    transform: translateY(-1px);
}
.ff__btn:hover svg {
    transform: translateX(3px);
}
.ff__btn:active {
    transform: translateY(0);
}
.ff__err {
    font-size: 0.78rem;
    color: #b0281a;
    margin-top: 0.2rem;
    display: none;
}
.ff.has-error .ff__in,
.ff.has-error .ff__sel,
.ff.has-error .ff__ta {
    border-color: #b0281a;
    box-shadow: 0 0 0 3px rgba(176, 40, 26, 0.1);
}
.ff.has-error .ff__err {
    display: block;
}
.ff__ok {
    display: none;
    background: #eaf5ec;
    border: 1px solid #c3e6cb;
    color: #1a5c28;
    border-radius: 7px;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
}
.ff__ok.show {
    display: block;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
    background: var(--forest);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__body {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-block: clamp(2.5rem, 6vw, 4rem);
}
@media (max-width: 800px) {
    .footer__body {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .footer__body {
        grid-template-columns: 1fr;
    }
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}
.footer__bmark {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--amber);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__bmark svg {
    width: 17px;
    height: 17px;
    color: var(--white);
}
.footer__bname {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--white);
}
.footer__tag {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.6;
}
.footer__ch {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.875rem;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.48);
    transition: color var(--ease);
}
.footer__links a:hover {
    color: var(--white);
}
.footer__phone {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.25px;
    margin-bottom: 0.5rem;
    transition: color var(--ease);
}
.footer__phone:hover {
    color: var(--amber);
}
.footer__emerg {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 0.5rem;
}
.footer__emerg svg {
    width: 13px;
    height: 13px;
}
.footer__hours {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}
.footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-block: 1.125rem;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.26);
}

/* ── Reveal ───────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 560ms ease,
        transform 560ms ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal-group > * {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 500ms ease,
        transform 500ms ease;
}
.reveal-group.in > *:nth-child(1) {
    transition-delay: 0ms;
    opacity: 1;
    transform: translateY(0);
}
.reveal-group.in > *:nth-child(2) {
    transition-delay: 80ms;
    opacity: 1;
    transform: translateY(0);
}
.reveal-group.in > *:nth-child(3) {
    transition-delay: 160ms;
    opacity: 1;
    transform: translateY(0);
}
.reveal-group.in > *:nth-child(4) {
    transition-delay: 240ms;
    opacity: 1;
    transform: translateY(0);
}

/* ── Back to top ──────────────────────────────────────────────── */
.btt {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 400;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity 250ms ease,
        transform 250ms ease,
        background var(--ease);
}
.btt svg {
    width: 18px;
    height: 18px;
}
.btt.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.btt:hover {
    background: var(--pine);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── TEAM ────────────────────────────────────────────────────── */
.team {
    background: var(--cream2);
    padding-block: clamp(4.5rem, 10vw, 7.5rem);
}
.team__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.team__tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}
.team__tag::before,
.team__tag::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}
.team__title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--green);
    margin-bottom: 0.875rem;
}
.team__sub {
    font-size: 1rem;
    color: var(--slate);
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.75;
}
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .team__grid {
        grid-template-columns: 1fr 1fr;
    }
}
.tcard {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
    transition:
        box-shadow var(--ease),
        transform var(--ease);
}
.tcard:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
.tcard__photo {
    aspect-ratio: 3/4;
    background: linear-gradient(
        160deg,
        rgba(27, 67, 50, 0.1) 0%,
        rgba(27, 67, 50, 0.05) 100%
    );
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tcard__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.tcard__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}
.tcard__placeholder-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(27, 67, 50, 0.08);
    border: 2.5px dashed rgba(27, 67, 50, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tcard__placeholder-circle svg {
    width: 40px;
    height: 40px;
    color: rgba(27, 67, 50, 0.25);
}
.tcard__placeholder-hint {
    font-size: 0.6875rem;
    color: rgba(27, 67, 50, 0.35);
    font-style: italic;
    letter-spacing: 0.3px;
}
.tcard__info {
    padding: 1.125rem 1.25rem 1.375rem;
}
.tcard__name {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 0.25rem;
    letter-spacing: -0.2px;
}
.tcard__role {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--amber);
}

/* ── PROJECTS ────────────────────────────────────────────────── */
.projects {
    background: var(--cream);
    padding-block: clamp(4.5rem, 10vw, 7.5rem);
    border-top: 1px solid var(--border);
}
.projects__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.projects__tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}
.projects__tag::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}
.projects__title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--green);
}
/* asymmetric bento grid */
.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 340px 340px;
    gap: 0.875rem;
}
.pcard:nth-child(1) {
    grid-column: span 2;
}
.pcard:nth-child(4) {
    grid-column: span 2;
}
@media (max-width: 900px) {
    .projects__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 280px 280px 280px;
    }
    .pcard:nth-child(1) {
        grid-column: span 2;
    }
    .pcard:nth-child(4) {
        grid-column: span 1;
    }
}
@media (max-width: 580px) {
    .projects__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 260px);
    }
    .pcard:nth-child(1),
    .pcard:nth-child(4) {
        grid-column: span 1;
    }
}
.pcard {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--pine);
}
.pcard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}
.pcard:hover .pcard__img {
    transform: scale(1.06);
}
.pcard__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pcard__placeholder svg {
    width: 52px;
    height: 52px;
    color: rgba(255, 255, 255, 0.12);
}
.pcard__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 15%,
        rgba(4, 10, 6, 0.45) 55%,
        rgba(4, 10, 6, 0.93) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    transition: background 400ms ease;
}
.pcard:hover .pcard__overlay {
    background: linear-gradient(
        to bottom,
        rgba(4, 10, 6, 0.1) 0%,
        rgba(4, 10, 6, 0.55) 50%,
        rgba(4, 10, 6, 0.97) 100%
    );
}
.pcard__badge {
    align-self: flex-start;
    background: var(--amber);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    line-height: 1.4;
}
.pcard__bottom {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.pcard__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.375rem;
}
.pcard__chip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.25rem 0.55rem;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.pcard__location {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amber);
}
.pcard__title {
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.pcard__desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease;
}
.pcard:hover .pcard__desc {
    max-height: 5rem;
}

/* ── FACEBOOK MEDIA ──────────────────────────────────────────── */
.media {
    background:
        linear-gradient(rgba(27, 67, 50, 0.88), rgba(27, 67, 50, 0.88)),
        url("./images/weathered-wooden-surface.jpg") center / cover;
    padding-block: clamp(3rem, 7vw, 5rem);
    border-top: none;
}
.media__head {
    text-align: center;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.media__tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}
.media__tag::before,
.media__tag::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--amber);
    flex-shrink: 0;
}
.media__title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 0.875rem;
}
.media__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.75;
}
.media__reels-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.media__reels-label svg {
    width: 16px;
    height: 16px;
    color: #1877f2;
}
.media__reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0;
}
@media (max-width: 820px) {
    .media__reels {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .media__reels {
        grid-template-columns: 1fr;
    }
}
.reel-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--r);
    background: #000;
    overflow: hidden;
}
.reel-card__embed {
    position: absolute;
    inset: 0;
}
.reel-card__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* ── PHONE ≤ 640px: Reel cards switch to landscape ─────────────── */
/* At 9/16 portrait, each card is ~600px tall on a phone = 1800px for 3 */
@media (max-width: 640px) {
    .reel-card {
        aspect-ratio: 16/9;
    }
}

/* ── PHONE ≤ 600px: Reduce padding + align section heads ────────── */
@media (max-width: 600px) {
    /* Hero fills viewport better */
    .hero {
        min-height: 88svh;
    }

    /* Shrink section padding — 4.5rem × 2 × 7 sections was ~1100px of whitespace */
    .services,
    .team,
    .projects,
    .reviews,
    .media,
    .contact {
        padding-block: 2.5rem;
    }

    /* Tighten section head bottom margin */
    .services__head,
    .team__head,
    .media__head,
    .projects__head,
    .reviews__head {
        margin-bottom: 1.5rem;
    }

    /* Reviews: center head on mobile */
    .reviews__head {
        text-align: center;
    }

    /* Service cards: compact on phones */
    .svc-card {
        padding: 1.125rem 1rem 1rem;
    }

    /* Contact phone number: left-align when it wraps below the title */
    .contact__top > div:last-child {
        text-align: left !important;
    }
    .contact__phone-note {
        text-align: left;
    }
    .contact__top {
        gap: 0.75rem;
    }

    /* Reduce about section grid gap when stacked */
    .about__grid {
        gap: 1.75rem;
    }
}

/* ── SMALL PHONE ≤ 400px: Hero controls ─────────────────────────── */
@media (max-width: 400px) {
    .hero__arrow {
        width: 34px;
        height: 34px;
    }
    .hero__arrow svg {
        width: 15px;
        height: 15px;
    }
    .hero__dots {
        gap: 0.3rem;
    }
    .hero__dot {
        width: 7px;
        height: 7px;
    }
}
