:root {
    --bg: #f4f6f5;
    --panel: #ffffff;
    --ink: #17202a;
    --muted: #667785;
    --line: #dce4e2;
    --primary: #0f766e;
    --primary-dark: #0a4b45;
    --accent: #c68a1e;
    --deep: #111c24;
    --soft: #e8f3ef;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav,
.section,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 20px;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

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

.menu-toggle {
    display: none;
}

.nav-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    color: #fff;
    background: var(--primary);
    border-radius: var(--radius);
    font-weight: 900;
    line-height: 1.2;
    max-width: 100%;
    text-align: center;
    white-space: normal;
}

.nav-button:hover,
.button:hover {
    color: #fff;
    background: var(--primary-dark);
}

.button.secondary {
    color: var(--primary-dark);
    background: #ffffff;
}

.button.compact {
    min-height: 38px;
    margin-top: 6px;
    padding: 8px 14px;
    font-size: 14px;
}

.hero {
    position: relative;
    display: grid;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
    background: var(--deep);
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 28, 36, .98) 0%, rgba(17, 28, 36, .92) 54%, rgba(15, 118, 110, .68) 100%),
        linear-gradient(135deg, #111c24 0%, #17343a 52%, #0f766e 100%);
}



.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    width: min(1180px, calc(100% - 32px));
    min-height: 620px;
    margin: 0 auto;
    padding: 42px 0;
}

.hero-logo {
    width: 104px;
    height: 104px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .32));
}

.eyebrow {
    margin: 0 0 12px;
    color: #f2be55;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
    overflow-wrap: anywhere;
}

h1 {
    max-width: 820px;
    margin-bottom: 16px;
    font-size: clamp(46px, 7vw, 88px);
    line-height: 1;
}

h2 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.12;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.18;
}

.lead {
    max-width: 690px;
    color: #dce7e8;
    font-size: 20px;
}

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

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: min(860px, 100%);
    margin-top: 44px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
}

.hero-facts span {
    display: grid;
    gap: 2px;
    min-height: 86px;
    padding: 18px;
    color: #d7e4e5;
    background: rgba(255, 255, 255, .07);
    font-size: 14px;
}

.hero-facts strong {
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.section {
    padding: 58px 0;
}

.intro {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 42px;
    align-items: end;
}

.intro p:last-child,
.section-heading > p {
    max-width: 740px;
    color: var(--muted);
    font-size: 18px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 26px;
}

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

.business-card,
.detail-panel,
.location-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.business-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 292px;
    padding: 22px;
    box-shadow: 0 16px 38px rgba(31, 47, 52, .06);
}

.business-card:nth-child(even) {
    background: #fbfcfa;
}

.business-card p,
.detail-panel p,
.location-card p {
    color: var(--muted);
}

.business-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.business-mark {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--primary-dark);
    border-radius: 50%;
    font-weight: 900;
}

.business-sector {
    padding: 6px 9px;
    color: var(--primary-dark);
    background: var(--soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.text-link {
    align-self: end;
    color: var(--primary);
    font-weight: 900;
}

.text-link:hover {
    color: var(--primary-dark);
}

.details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 26px;
}

.detail-panel {
    min-height: 245px;
    padding: 26px;
}

.detail-panel span {
    display: block;
    margin-bottom: 34px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.featured-detail {
    color: #fff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.featured-detail p {
    color: #d7eeee;
}

.locations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 0;
}

.location-card {
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(232, 243, 239, .85), rgba(255, 255, 255, 1));
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin-bottom: 0;
}

.site-footer a {
    color: var(--primary);
    font-weight: 900;
}

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

@media (max-width: 820px) {
    .nav {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 0;
    }

    .brand {
        flex: 1 1 auto;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 40px;
        padding: 8px 12px;
        color: #fff;
        background: var(--primary);
        border: 0;
        border-radius: var(--radius);
        font: inherit;
        font-size: 13px;
        font-weight: 900;
        line-height: 1;
        cursor: pointer;
    }

    .menu-icon {
        display: grid;
        gap: 4px;
    }

    .menu-icon span {
        display: block;
        width: 18px;
        height: 2px;
        background: #fff;
        border-radius: 999px;
    }

    .nav-links {
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex-wrap: wrap;
        gap: 10px;
        flex: 1 0 100%;
        width: 100%;
        font-size: 13px;
    }

    .nav-links.open {
        display: grid;
    }

    .nav-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 8px 10px;
        background: #eef5f3;
        border-radius: var(--radius);
        text-align: center;
    }

    .nav-links .nav-button {
        color: #fff;
        background: var(--primary);
    }

    .intro,
    .locations,
    .section-heading {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero,
    .hero-content {
        min-height: auto;
    }

    .hero-facts {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .hero-facts span {
        min-height: 70px;
    }
}

@media (max-width: 620px) {
    .nav,
    .section,
    .site-footer,
    .hero-content {
        width: min(100% - 24px, 1180px);
    }

    .brand {
        font-size: 18px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .nav-links {
        grid-template-columns: 1fr;
    }

    .nav-button {
        width: 100%;
    }

    .hero,
    .hero-content {
        min-height: auto;
    }

    .hero-content {
        padding: 50px 0 38px;
    }

    .hero-media::after {
        display: none;
    }

    .hero-logo {
        width: 86px;
        height: 86px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 28px;
    }

    .section {
        padding: 42px 0;
    }

    .lead {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-facts {
        gap: 0;
    }

    .business-grid,
    .details {
        grid-template-columns: 1fr;
    }

    .business-card,
    .detail-panel,
    .location-card {
        min-height: 0;
        padding: 20px;
    }

    .detail-panel,
    .location-card {
        padding: 20px;
    }

    .business-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }

    .eyebrow {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-logo {
        width: 76px;
        height: 76px;
    }
}
