:root {
    --ink: #17201f;
    --green: #123f36;
    --teal: #2c7a70;
    --gold: #b98a4a;
    --rose: #9b5a65;
    --blue: #3d6f9f;
    --ivory: #fbf7ef;
    --mist: #f4f7f6;
    --paper: #ffffff;
    --text: #35413f;
    --muted: #6f7b78;
    --line: rgba(23, 32, 31, .12);
    --shadow: 0 18px 48px rgba(23, 32, 31, .08);
    --heading: "Playfair Display", Georgia, serif;
    --body: "Inter", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: var(--text);
    font-family: var(--body);
    background: linear-gradient(180deg, var(--ivory) 0%, #fff 44%, var(--mist) 100%);
}

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

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

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 4vw;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.scrolled {
    padding-top: .65rem;
    padding-bottom: .65rem;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 40px rgba(23, 32, 31, .09);
    backdrop-filter: blur(16px);
}

.navbar,
.hero-shell,
.section-shell,
.footer-shell {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.navbar {
    min-height: 4.5rem;
    display: grid;
    grid-template-columns: 17rem 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: .55rem .7rem .55rem .8rem;
    border: 1px solid var(--line);
    border-radius: .75rem;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 14px 36px rgba(23, 32, 31, .07);
    backdrop-filter: blur(18px);
}

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

.brand-mark {
    width: 3.2rem;
    height: 3.2rem;
    overflow: hidden;
    border: 1px solid rgba(185, 138, 74, .34);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(23, 32, 31, .08);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    color: var(--ink);
    font-size: .94rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.brand-copy small {
    margin-top: .2rem;
    color: var(--gold);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2.6vw, 2.35rem);
    color: #40504c;
    font-size: .9rem;
    font-weight: 700;
}

.nav-menu a:hover {
    color: var(--teal);
}

.nav-cta,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.95rem;
    padding: 0 1.3rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease;
}

.nav-cta,
.primary-button {
    color: white;
    background: var(--green);
    box-shadow: 0 12px 28px rgba(18, 63, 54, .18);
}

.secondary-button {
    color: var(--green);
    border-color: rgba(18, 63, 54, .18);
    background: #fff;
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 2.8rem;
    height: 2.8rem;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
}

.nav-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: .23rem auto;
    background: var(--ink);
}

.hero {
    min-height: 94vh;
    display: grid;
    align-items: center;
    padding: 8rem 4vw 4.5rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(251, 247, 239, .9)),
        radial-gradient(circle at 88% 20%, rgba(185, 138, 74, .12), transparent 20rem);
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 27rem);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

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

.eyebrow {
    color: var(--gold);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-card h2,
.employee-access-card h2 {
    color: var(--ink);
    font-family: var(--heading);
    font-weight: 700;
    letter-spacing: 0;
}

.hero h1 {
    margin-top: .85rem;
    max-width: 820px;
    color: var(--ink);
    font-size: clamp(2.9rem, 5.6vw, 5.7rem);
    line-height: 1;
}

.hero-subtext {
    max-width: 620px;
    margin-top: 1.2rem;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.hero-showcase {
    position: relative;
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: .85rem;
    background: #fff;
    box-shadow: var(--shadow);
}

.showcase-logo {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 1rem;
    border-radius: .8rem;
    background:
        radial-gradient(circle at top, rgba(44, 122, 112, .08), transparent 14rem),
        #fff;
}

.showcase-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: .65rem;
}

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

.showcase-grid span {
    min-height: 3rem;
    display: grid;
    place-items: center;
    border-radius: .45rem;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.showcase-grid span:nth-child(1) { background: var(--gold); }
.showcase-grid span:nth-child(2) { background: var(--teal); }
.showcase-grid span:nth-child(3) { background: var(--rose); }
.showcase-grid span:nth-child(4) { background: var(--blue); }

.section {
    padding: clamp(4.5rem, 8vw, 7rem) 4vw;
}

.about-section,
.contact-section {
    background: #fff;
}

.about-grid,
.standards-grid,
.contact-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.section-heading h2 {
    margin-top: .5rem;
    font-size: clamp(2.2rem, 4.4vw, 4.35rem);
    line-height: 1.05;
}

.section-heading.centered {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.about-copy {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: .65rem;
    color: var(--muted);
    background: #fff;
    box-shadow: 0 18px 46px rgba(23, 32, 31, .06);
    font-size: 1.05rem;
    line-height: 1.85;
}

.employee-access-section {
    padding: 0 4vw clamp(4.5rem, 8vw, 7rem);
}

.employee-access-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: .7rem;
    color: white;
    background:
        linear-gradient(135deg, var(--green), #245f54);
    box-shadow: var(--shadow);
}

.employee-access-card .eyebrow {
    color: #f2d59c;
}

.employee-access-card h2 {
    margin-top: .45rem;
    color: white;
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    line-height: 1.08;
}

.employee-access-card p:not(.eyebrow) {
    max-width: 620px;
    margin-top: .7rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.employee-access-card .primary-button {
    border-color: rgba(255, 255, 255, .38);
    color: var(--green);
    background: white;
    box-shadow: none;
}

.businesses-section {
    background: var(--mist);
}

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

.business-card {
    --accent: var(--teal);
    min-height: 24rem;
    display: flex;
    flex-direction: column;
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: .65rem;
    background: #fff;
    box-shadow: 0 14px 36px rgba(23, 32, 31, .06);
    transition: transform .22s ease, box-shadow .22s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(23, 32, 31, .1);
}

.hospitality-card { --accent: var(--gold); }
.infotech-card { --accent: var(--teal); }
.events-card { --accent: var(--rose); }
.construction-card { --accent: var(--blue); }

.business-label {
    width: fit-content;
    margin-bottom: 1.1rem;
    padding: .42rem .72rem;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.business-card h3,
.standard-list h3 {
    color: var(--ink);
    font-size: clamp(1.22rem, 1.7vw, 1.45rem);
    line-height: 1.25;
}

.business-card p {
    margin-top: .8rem;
    color: var(--muted);
    line-height: 1.72;
}

.business-card ul {
    display: grid;
    gap: .55rem;
    margin-top: auto;
    padding-top: 1.3rem;
    list-style: none;
}

.business-card li {
    position: relative;
    padding-left: 1rem;
    color: #3f4e4a;
    font-size: .92rem;
    font-weight: 700;
}

.business-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58rem;
    width: .35rem;
    height: .35rem;
    border-radius: 50%;
    background: var(--accent);
}

.standards-section {
    background: #fff;
}

.standard-list {
    display: grid;
    gap: 1rem;
}

.standard-list article {
    padding: 1.2rem 0 1.2rem 1.2rem;
    border-left: 3px solid var(--gold);
    background: #fbfbfa;
}

.standard-list article:nth-child(2) {
    border-left-color: var(--teal);
}

.standard-list article:nth-child(3) {
    border-left-color: var(--rose);
}

.standard-list p {
    margin-top: .45rem;
    color: var(--muted);
    line-height: 1.75;
}

.contact-section {
    padding-top: 0;
}

.contact-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--line);
    border-radius: .7rem;
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    margin-top: .45rem;
    font-size: clamp(2rem, 3.8vw, 3.75rem);
    line-height: 1.05;
}

.contact-note {
    margin-top: .85rem;
    color: var(--muted);
    line-height: 1.75;
}

.contact-list {
    display: grid;
    gap: .85rem;
}

.contact-list p {
    display: grid;
    grid-template-columns: 5.2rem 1fr;
    gap: 1rem;
    color: var(--text);
    line-height: 1.65;
}

.contact-list span {
    color: var(--teal);
    font-weight: 900;
}

.site-footer {
    padding: 3.5rem 4vw 1.2rem;
    color: rgba(255, 255, 255, .72);
    background: var(--ink);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: .8rem;
    color: #fff;
}

.site-footer h3 {
    letter-spacing: .08em;
}

.site-footer h4 {
    color: #f0d49f;
}

.site-footer a {
    display: block;
    margin: .3rem 0;
}

.site-footer p,
.site-footer a {
    line-height: 1.7;
}

.copyright {
    width: min(1160px, 100%);
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .84rem;
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .navbar {
        grid-template-columns: 1fr 2.8rem;
        border-radius: 1rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 5.3rem;
        left: 4vw;
        right: 4vw;
        display: grid;
        overflow: hidden;
        max-height: 0;
        padding: 0 1rem;
        border: 1px solid var(--line);
        border-radius: 1rem;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 18px 48px rgba(23, 32, 31, .1);
        transition: max-height .25s ease, padding .25s ease;
    }

    .nav-menu.open {
        max-height: 18rem;
        padding: .65rem 1rem;
    }

    .nav-menu a {
        padding: .8rem 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-shell,
    .about-grid,
    .standards-grid,
    .contact-card,
    .employee-access-card {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        max-width: 28rem;
    }

    .employee-access-card .primary-button {
        width: fit-content;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: .75rem 1rem;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        padding: 6.6rem 1rem 3.5rem;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .hero-actions,
    .business-grid,
    .footer-shell {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section,
    .employee-access-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .business-card {
        min-height: auto;
    }

    .contact-list p {
        grid-template-columns: 1fr;
        gap: .2rem;
    }
}
