:root {
    --bg: #f7fafb;
    --surface: #ffffff;
    --text: #0f172a;
    /* slate-900 */
    --muted: #475569;
    /* slate-600 */
    --brand: #008090;
    /* teal-ish */
    --brand-2: #00a8b5;
    --accent: #10b981;
    /* emerald-500 */
    --ring: rgba(0, 128, 144, 0.35);
    --shadow: 0 10px 30px rgba(2, 8, 23, 0.08);
    --radius: 16px;
    --space: clamp(16px, 2vw, 28px);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    background: radial-gradient(1200px 800px at 80% -100px, #e6fbff 0%, transparent 60%), var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid #e2e8f0;
}

.nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px var(--space);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.brand-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 6px 18px rgba(0, 168, 181, 0.25);
    font-weight: 900;
}

.nav a.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    border: 0;
    box-shadow: 0 8px 20px rgba(0, 128, 144, 0.25);
}

.nav a.btn:hover {
    background: var(--brand-2);
    text-decoration: none;
}

/* Hero */
.hero {
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px var(--space) 28px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

.hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    margin: 0 0 12px;
}

.hero p.lead {
    color: var(--muted);
    font-size: clamp(16px, 2vw, 18px);
    margin: 0 0 24px;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.btn.primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
}

.btn.ghost {
    background: #fff;
    color: var(--brand);
    border: 1px solid #dbeafe;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfeff;
    color: var(--brand);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.hero-card {
    background: var(--surface);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 22px;
}

/* Sections */
section {
    padding: 32px var(--space);
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(22px, 3vw, 30px);
    margin: 0 0 8px;
}

.section-sub {
    color: var(--muted);
    margin: 0 0 24px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--surface);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

/* Hours + Contact */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 10px 8px;
    border-bottom: 1px dashed #e2e8f0;
    text-align: left;
}

.table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.contact-card form {
    display: grid;
    gap: 10px;
}

.field {
    display: grid;
    gap: 6px;
}

.field label {
    font-weight: 600;
    font-size: 14px;
}

.field input,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font: inherit;
    color: inherit;
    outline: none;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.field input:focus,
.field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--ring);
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}

/* Map */
.map-box {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

/* Footer */
footer {
    padding: 28px var(--space);
    background: #0b1b1e;
    color: #cbd5e1;
}

.foot {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
}

.foot small {
    color: #93adc0;
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #224b51;
    background: #0f2a2e;
    color: #b9e6ec;
    font-size: 12px;
}