:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-900: #134e4a;
    --slate-50: #f8fafc;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --white: #ffffff;
    --shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
    --radius: 16px;
    --font-sans: "DM Sans", system-ui, sans-serif;
    --font-serif: "Instrument Serif", Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-700);
    background: var(--slate-50);
    -webkit-font-smoothing: antialiased;
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(145deg, var(--slate-50) 0%, var(--teal-50) 45%, #ecfdf5 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: float 18s ease-in-out infinite;
}

.orb-a {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: var(--teal-500);
}

.orb-b {
    width: 360px;
    height: 360px;
    bottom: -100px;
    left: -60px;
    background: #5eead4;
    animation-delay: -6s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 118, 110, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 118, 110, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-24px, 20px) scale(1.05); }
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    display: flex;
    color: var(--teal-600);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand-text strong {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--slate-900);
}

.brand-text small {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem 1.5rem 3rem;
}

@media (min-width: 960px) {
    .main {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
        padding-top: 2.5rem;
    }
}

.hero {
    animation: fadeUp 0.7s ease both;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem 0.375rem 0.625rem;
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--teal-700);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--teal-100);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-500);
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(20, 184, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--teal-700);
}

.lead {
    max-width: 34rem;
    font-size: 1.0625rem;
    color: var(--slate-500);
    margin-bottom: 2rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.375rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.34);
}

.btn-secondary {
    color: var(--slate-700);
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--slate-200);
}

.btn-secondary:hover {
    background: var(--white);
}

.btn-ghost {
    color: var(--teal-700);
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--teal-100);
}

.btn-sm {
    padding: 0.5625rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    margin-top: 0.875rem;
}

.info-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeUp 0.7s ease 0.12s both;
}

.panel-card {
    padding: 1.375rem 1.5rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.panel-card h2 {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 1rem;
}

.panel-muted {
    background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
    border-color: transparent;
    color: rgba(255, 255, 255, 0.88);
}

.panel-muted h2,
.panel-muted strong {
    color: var(--white);
}

.panel-muted p {
    font-size: 0.9375rem;
    line-height: 1.55;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--slate-200);
    font-size: 0.9375rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span:first-child {
    color: var(--slate-500);
}

.hours-list span:last-child {
    font-weight: 600;
    color: var(--slate-900);
}

.panel-note {
    margin-top: 0.875rem;
    font-size: 0.75rem;
    color: var(--slate-400);
}

.panel-note code {
    font-size: 0.6875rem;
    padding: 0.125rem 0.375rem;
    background: var(--slate-50);
    border-radius: 4px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--teal-700);
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: 8px;
}

.feature-list strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--slate-900);
    margin-bottom: 0.125rem;
}

.feature-list span {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.site-footer {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 2.5rem;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.footer-meta {
    margin-top: 0.25rem;
    font-size: 0.75rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 639px) {
    .site-header {
        flex-wrap: wrap;
    }

    .actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
