/* ============================================================
   Public landing page. --brand comes from Settings → Brand colour.
   ============================================================ */
:root {
    --brand: #0F766E;
    --brand-dark: color-mix(in srgb, var(--brand) 80%, #000);
    --brand-soft: color-mix(in srgb, var(--brand) 10%, #fff);
    --ink: #0f172a;
    --muted: #64748b;
    --radius: 18px;
    --shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.35);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: #fff;
}

/* Buttons */
.btn-brand { background: var(--brand); border-color: var(--brand); color: #fff; font-weight: 500; border-radius: 12px; }
.btn-brand:hover, .btn-brand:focus { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn-outline-brand { border: 1.5px solid var(--brand); color: var(--brand); font-weight: 500; border-radius: 12px; background: #fff; }
.btn-outline-brand:hover, .btn-outline-brand:focus { background: var(--brand); color: #fff; }
.link-brand { color: var(--brand); font-weight: 500; text-decoration: none; }
.link-brand:hover { text-decoration: underline; }

/* Navbar */
.site-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
    padding: 0.6rem 0;
}
.site-nav__logo { height: 44px; width: auto; }
.site-nav .nav-link { color: var(--ink); font-weight: 500; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--brand); }
.site-nav .navbar-toggler { color: var(--ink); }
.site-nav .navbar-toggler:focus { box-shadow: none; }
@media (max-width: 991.98px) {
    .site-nav .navbar-collapse { padding: 0.5rem 0 0.75rem; }
    .site-nav .nav-link { padding: 0.6rem 0; border-bottom: 1px solid #f1f5f9; }
}

/* Hero */
.hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    background:
        radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--brand) 18%, transparent) 0, transparent 45%),
        radial-gradient(circle at 10% 90%, color-mix(in srgb, var(--brand) 10%, transparent) 0, transparent 40%),
        linear-gradient(180deg, var(--brand-soft), #fff);
    overflow: hidden;
}
.hero__eyebrow {
    display: inline-block;
    background: #fff; color: var(--brand);
    font-size: 0.82rem; font-weight: 600;
    padding: 0.35rem 0.8rem; border-radius: 999px;
    box-shadow: var(--shadow);
    margin-bottom: 1.1rem;
}
.hero__title { font-weight: 700; font-size: clamp(2rem, 5.5vw, 3.4rem); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1rem; }
.hero__lead { color: var(--muted); font-size: 1.05rem; max-width: 36rem; margin-bottom: 1.75rem; }

.hero-card {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 1.5rem; border: 1px solid #eef2f7;
}
.hero-card__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem; }
.hero-card__head > i {
    width: 46px; height: 46px; border-radius: 12px; flex: none;
    display: grid; place-items: center; font-size: 1.3rem;
    background: var(--brand-soft); color: var(--brand);
}
.hero-card__hours { list-style: none; padding: 0; margin: 0 0 1rem; }
.hero-card__hours li { padding: 0.55rem 0; border-bottom: 1px dashed #e2e8f0; font-size: 0.93rem; }
.hero-card__hours li:last-child { border-bottom: 0; }
.hero-card__addr { display: flex; gap: 0.6rem; color: var(--muted); font-size: 0.9rem; background: #f8fafc; border-radius: 12px; padding: 0.75rem; }
.hero-card__addr i { color: var(--brand); }

/* Sections */
.section { padding: 4.5rem 0; }
.section--tint { background: #f8fafc; }
.section__head { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; }
.section__eyebrow { color: var(--brand); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.section__title { font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0.35rem 0 0.5rem; }
.section__lead { color: var(--muted); margin: 0; }

.service-card {
    background: #fff; border: 1px solid #eef2f7; border-radius: var(--radius);
    padding: 1.5rem; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card__icon {
    width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1rem;
    display: grid; place-items: center; font-size: 1.45rem;
    background: var(--brand-soft); color: var(--brand);
}
.service-card__title { font-size: 1.08rem; font-weight: 600; margin-bottom: 0.4rem; }
.service-card__text { color: var(--muted); font-size: 0.93rem; margin: 0; }

.why-item { text-align: center; padding: 1rem 0.5rem; }
.why-item i {
    display: inline-grid; place-items: center;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--brand); color: #fff; font-size: 1.5rem; margin-bottom: 0.9rem;
    box-shadow: 0 12px 24px -12px var(--brand);
}
.why-item h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.35rem; }
.why-item p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.info-block { background: #f8fafc; border-radius: 14px; padding: 1.1rem 1.25rem; margin-bottom: 0.85rem; }
.info-block h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.6rem; }
.info-block h3 i { color: var(--brand); margin-right: 0.35rem; }
.info-block li { padding: 0.2rem 0; font-size: 0.93rem; }
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--brand); }
.contact-list i { color: var(--brand); margin-right: 0.3rem; }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 100%; min-height: 320px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; padding: 3.5rem 0; }
.cta h2 { font-weight: 700; font-size: clamp(1.5rem, 3.5vw, 2rem); }
.cta p { opacity: 0.85; margin-bottom: 1.5rem; }
.cta .btn { border-radius: 12px; font-weight: 500; }
.cta .btn-light { color: var(--brand); }

/* Footer */
.site-footer { background: #0b1f1e; color: #b6c8c6; padding: 3.5rem 0 1.5rem; font-size: 0.93rem; }
.site-footer__logo { height: 48px; width: auto; }
.site-footer h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.9rem; }
.site-footer a { color: #b6c8c6; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer li { padding: 0.2rem 0; }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.site-footer__social a {
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center; font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.08);
}
.site-footer__social a:hover { background: var(--brand); color: #fff; }
.site-footer__bottom {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem; padding-top: 1.25rem; font-size: 0.83rem;
}

/* Mobile quick-action bar */
.mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1030;
    display: flex; background: #fff;
    box-shadow: 0 -8px 24px -12px rgba(15, 23, 42, 0.35);
    padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.1rem;
    padding: 0.6rem 0.25rem; color: var(--ink); text-decoration: none; font-size: 0.75rem; font-weight: 500;
}
.mobile-bar a i { font-size: 1.25rem; color: var(--brand); }
.mobile-bar a.is-primary { background: var(--brand); color: #fff; }
.mobile-bar a.is-primary i { color: #fff; }

@media (max-width: 991.98px) {
    body { padding-bottom: 64px; } /* room for the mobile bar */
    .hero { padding: 2.5rem 0 3rem; }
    .section { padding: 3.25rem 0; }
    .hero .btn-lg { font-size: 1rem; }
}
@media (max-width: 575.98px) {
    .hero .d-flex > .btn { flex: 1 1 100%; }
    .site-nav__logo { height: 38px; }
}
