/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1e293b;
    background: #f8fafc;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; font-weight: 700; }

/* ── Utility ────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: #0d9488; color: #fff; padding: 0.5rem 1rem; z-index: 100; font-weight: 600; }
.skip-link:focus { left: 0; }

/* ── Eyebrow ────────────────────────────────────── */
.eyebrow-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: #0d9488;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d9488;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #0f172a;
    margin-bottom: 1rem;
}
.section-header { margin-bottom: 3rem; }

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}
.btn-primary {
    background: #0d9488;
    color: #fff;
    border-color: #0d9488;
}
.btn-primary:hover { background: #0f766e; border-color: #0f766e; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,148,136,0.3); }
.btn-ghost {
    background: transparent;
    color: #0d9488;
    border-color: #0d9488;
}
.btn-ghost:hover { background: #0d9488; color: #fff; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; width: 100%; justify-content: center; }

/* ── Header ─────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(248,250,252,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,23,42,0.06);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(15,23,42,0.08); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
}
.logo-icon { color: #0d9488; }
.logo-text { letter-spacing: -0.02em; }
.primary-nav ul { display: flex; align-items: center; gap: 2rem; }
.primary-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #334155;
    transition: color 0.2s;
    position: relative;
}
.primary-nav a:not(.btn):hover { color: #0d9488; }
.primary-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: #0d9488;
    transition: width 0.2s;
}
.primary-nav a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; padding: 0.5rem; }
.hamburger {
    display: block;
    width: 22px; height: 2px;
    background: #0f172a;
    position: relative;
    transition: background 0.2s;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute; left: 0;
    width: 22px; height: 2px;
    background: #0f172a;
    transition: transform 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 50%, #f8fafc 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d9488;
    margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.hero-desc {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-meta { display: flex; flex-direction: column; gap: 0.5rem; }
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}
.meta-icon { color: #0d9488; flex-shrink: 0; }
.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15,23,42,0.15);
}
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-accent {
    position: absolute;
    top: -20px; right: -20px;
    width: 120px; height: 120px;
    background: #0d9488;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(15,23,42,0.08);
}
.stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d9488;
    line-height: 1;
}
.stat-label {
    font-size: 0.8125rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    display: block;
}
.stat-divider {
    width: 1px; height: 40px;
    background: rgba(15,23,42,0.1);
}

/* ── About ──────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 32px rgba(15,23,42,0.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content p {
    color: #475569;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    line-height: 1.75;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1e293b;
}
.value-icon { color: #0d9488; flex-shrink: 0; }

/* ── Menu ───────────────────────────────────────── */
.menu {
    padding: 6rem 0;
    background: #f8fafc;
}
.menu-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0;
}
.tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #64748b;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    border-radius: 6px 6px 0 0;
}
.tab-btn:hover { color: #0d9488; }
.tab-btn.active { color: #0d9488; border-bottom-color: #0d9488; background: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.menu-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.menu-card:hover {
    border-color: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,148,136,0.1);
}
.menu-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    opacity: 0;
    transition: opacity 0.25s;
}
.menu-card:hover .menu-card-accent { opacity: 1; }
.menu-card-title {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.menu-card-desc {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

/* ── Space ──────────────────────────────────────── */
.space {
    padding: 6rem 0;
    background: #0f172a;
    color: #f1f5f9;
}
.space .section-title { color: #f8fafc; }
.space .section-eyebrow { color: #14b8a6; }
.space-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.space-content p {
    color: #94a3b8;
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.space-features { display: flex; flex-direction: column; gap: 1.5rem; }
.space-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(13,148,136,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
}
.space-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.25rem;
}
.space-feature p {
    font-size: 0.9375rem;
    color: #94a3b8;
    margin-bottom: 0;
    line-height: 1.6;
}
.space-images { position: relative; }
.space-img-main { border-radius: 12px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.3); margin-bottom: 1rem; }
.space-img-main img { width: 100%; height: 100%; object-fit: cover; }
.space-img-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.space-img-stack img { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.2); width: 100%; height: 200px; object-fit: cover; }

/* ── Visit ──────────────────────────────────────── */
.visit {
    padding: 6rem 0;
    background: #fff;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.visit-icon { color: #0d9488; flex-shrink: 0; margin-top: 2px; }
.visit-detail strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.visit-detail p, .visit-detail a {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}
.visit-detail a:hover { color: #0d9488; }
.visit-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(15,23,42,0.1);
}
.map-placeholder {
    background: #e2e8f0;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 300px;
    justify-content: center;
}
.map-icon { color: #0d9488; opacity: 0.6; }
.map-placeholder p { color: #475569; font-size: 0.9375rem; }

/* ── CTA ────────────────────────────────────────── */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
}
.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 16px 48px rgba(15,23,42,0.08);
    border: 1px solid #e2e8f0;
}
.cta-content p { color: #475569; font-size: 1.0625rem; line-height: 1.7; }
.cta-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}
.form-group input, .form-group select, .form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
    background: #fff;
}
.form-note { font-size: 0.8125rem; color: #94a3b8; margin-top: 0.25rem; }
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2rem;
    color: #0d9488;
}
.form-success h3 {
    font-size: 1.5rem;
    color: #0f172a;
}
.form-success p { color: #64748b; }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(148,163,184,0.15);
}
.footer-brand .logo { color: #f8fafc; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.6; max-width: 280px; }
.footer-links h4, .footer-contact h4, .footer-hours h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f8fafc;
    margin-bottom: 1rem;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-contact a {
    font-size: 0.9375rem;
    color: #94a3b8;
    transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: #14b8a6; }
.footer-hours p { font-size: 0.9375rem; line-height: 1.75; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
    color: #64748b;
}
.footer-bottom a { color: #94a3b8; transition: color 0.2s; }
.footer-bottom a:hover { color: #14b8a6; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid, .about-grid, .space-grid, .visit-grid, .cta-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-image-wrapper { max-height: 500px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .space-img-main img { height: 400px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(248,250,252,0.98);
        backdrop-filter: blur(12px);
        padding: 1.5rem;
        border-bottom: 1px solid rgba(15,23,42,0.06);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 24px rgba(15,23,42,0.08);
    }
    .primary-nav.open { transform: translateY(0); }
    .primary-nav ul { flex-direction: column; gap: 0.5rem; }
    .primary-nav a { display: block; padding: 0.75rem 1rem; border-radius: 6px; }
    .primary-nav a:not(.btn)::after { display: none; }
    .primary-nav a:not(.btn):hover { background: rgba(13,148,136,0.06); }
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 2rem; }
    .hero-stats { flex-wrap: wrap; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-tabs { overflow-x: auto; flex-wrap: nowrap; }
    .about-values { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-card { padding: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .space-img-stack { grid-template-columns: 1fr; }
    .space-img-main img { height: 300px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 1.75rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
