/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0e1a;
    color: #e8e6e3;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Tokens ── */
:root {
    --navy-deep: #0a0e1a;
    --navy-mid: #111827;
    --navy-light: #1a2236;
    --navy-card: #141b2d;
    --gold: #c9a84c;
    --gold-light: #e2c572;
    --gold-dark: #a08030;
    --cream: #f5f0e8;
    --text-muted: #8a9ab5;
    --text-dim: #5a6a80;
    --border: rgba(201, 168, 76, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ── Gold Gradient Text ── */
.gold-gradient {
    background: linear-gradient(135deg, #c9a84c 0%, #f0d78c 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gold-text { color: #c9a84c; }

/* ── Section Tags ── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #c9a84c;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #f5f0e8;
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.1rem;
    color: #8a9ab5;
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, #c9a84c, #e2c572);
    color: #0a0e1a;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}
.btn-outline {
    background: transparent;
    color: #f5f0e8;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}
.btn-outline-light {
    background: transparent;
    color: #f5f0e8;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f5f0e8;
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.nav.scrolled {
    padding: 12px 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #f5f0e8;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8a9ab5;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a84c;
    transition: width 0.3s ease;
}
.nav-links a:hover { color: #c9a84c; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    padding: 10px 20px !important;
    border: 1px solid rgba(201, 168, 76, 0.4) !important;
    border-radius: 6px;
    color: #c9a84c !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: rgba(201, 168, 76, 0.1) !important;
    border-color: #c9a84c !important;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f5f0e8;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.92) 0%, rgba(10, 14, 26, 0.7) 50%, rgba(10, 14, 26, 0.85) 100%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #c9a84c;
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 8s infinite;
}
.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; }
.particle:nth-child(3) { left: 45%; top: 30%; animation-delay: 3s; }
.particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 0.8s; }
.particle:nth-child(5) { left: 80%; top: 40%; animation-delay: 2.2s; }
.particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 4s; }
.particle:nth-child(7) { left: 55%; top: 15%; animation-delay: 5s; }
.particle:nth-child(8) { left: 35%; top: 85%; animation-delay: 6s; }
@keyframes float-particle {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-200px) scale(0.5); }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}
.hero-headline {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    color: #f5f0e8;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 780px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #8a9ab5;
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Hero Stat Cards ── */
.hero-cards {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 27, 45, 0.9), rgba(10, 14, 26, 0.95));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
}
.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.stat-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(201, 168, 76, 0.08);
}
.stat-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    opacity: 0.6;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-label {
    font-size: 0.85rem;
    color: #8a9ab5;
    line-height: 1.5;
}
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #c9a84c;
    opacity: 0.5;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ── */
.section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc {
    margin: 0 auto;
}

/* ── Menu ── */
.menu { background: var(--navy-deep); }
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}
.cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8a9ab5;
    border: 1px solid var(--border-light);
    background: transparent;
    transition: all 0.3s ease;
}
.cat-btn:hover, .cat-btn.active {
    color: #0a0e1a;
    background: #c9a84c;
    border-color: #c9a84c;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.menu-card {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.menu-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 80px rgba(201, 168, 76, 0.06);
}
.menu-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(10, 14, 26, 0.85);
    color: #e8e6e3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}
.menu-card-badge.gold {
    background: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
    border-color: rgba(201, 168, 76, 0.4);
}
.menu-card-badge.special {
    background: rgba(180, 80, 50, 0.25);
    color: #e8a070;
    border-color: rgba(180, 80, 50, 0.4);
}
.menu-card-body {
    padding: 24px;
}
.menu-card-title {
    font-size: 1.25rem;
    color: #f5f0e8;
    margin-bottom: 8px;
}
.menu-card-desc {
    font-size: 0.9rem;
    color: #8a9ab5;
    line-height: 1.6;
}

/* ── About ── */
.about { background: var(--navy-mid); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--navy-mid);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.about-img-secondary img { width: 260px; height: 180px; object-fit: cover; }
.about-accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #c9a84c, #e2c572);
    border-radius: 12px;
    color: #0a0e1a;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.3);
}
.about-content { padding: 20px 0; }
.about-text {
    font-size: 1.05rem;
    color: #8a9ab5;
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
}
.about-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f5f0e8;
    margin-bottom: 4px;
}
.about-feature p {
    font-size: 0.9rem;
    color: #8a9ab5;
}

/* ── Specialties ── */
.specialties { background: var(--navy-deep); }
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.specialty-card {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.specialty-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}
.specialty-card-img {
    height: 240px;
    overflow: hidden;
}
.specialty-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.specialty-card:hover .specialty-card-img img { transform: scale(1.06); }
.specialty-card-content {
    padding: 32px;
}
.specialty-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}
.specialty-card-content h3 {
    font-size: 1.3rem;
    color: #f5f0e8;
    margin-bottom: 12px;
}
.specialty-card-content p {
    font-size: 0.95rem;
    color: #8a9ab5;
    line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials { background: var(--navy-mid); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(201, 168, 76, 0.08);
    line-height: 1;
}
.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1rem;
    color: #c8d0e0;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #a08030);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #0a0e1a;
}
.testimonial-name {
    display: block;
    font-weight: 600;
    color: #f5f0e8;
    font-size: 0.95rem;
}
.testimonial-location {
    font-size: 0.8rem;
    color: #5a6a80;
}

/* ── Visit ── */
.visit { background: var(--navy-deep); }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}
.visit-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
}
.visit-detail h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f5f0e8;
    margin-bottom: 6px;
}
.visit-detail p {
    font-size: 0.9rem;
    color: #8a9ab5;
    line-height: 1.7;
}
.visit-detail a { color: #c9a84c; transition: color 0.3s; }
.visit-detail a:hover { color: #e2c572; }

/* ── Contact Form ── */
.visit-form-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}
.visit-form-card h3 {
    font-size: 1.6rem;
    color: #f5f0e8;
    margin-bottom: 10px;
}
.visit-form-card > p {
    font-size: 0.95rem;
    color: #8a9ab5;
    margin-bottom: 32px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8a9ab5;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: #f5f0e8;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5a6a80;
}
.form-group textarea { resize: vertical; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success svg { margin: 0 auto 16px; }
.form-success h4 {
    font-size: 1.4rem;
    color: #c9a84c;
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.95rem;
    color: #8a9ab5;
}

/* ── CTA Banner ── */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.93), rgba(20, 27, 45, 0.88));
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #f5f0e8;
    margin-bottom: 16px;
}
.cta-desc {
    font-size: 1.1rem;
    color: #8a9ab5;
    margin-bottom: 36px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Footer ── */
.footer {
    background: #060912;
    border-top: 1px solid var(--border-light);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand p {
    font-size: 0.9rem;
    color: #5a6a80;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f5f0e8;
}
.footer-logo span { color: #c9a84c; }
.footer-links h4,
.footer-hours h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 20px;
}
.footer-links ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links li,
.footer-hours li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #8a9ab5;
}
.footer-links a {
    color: #8a9ab5;
    transition: color 0.3s;
}
.footer-links a:hover { color: #c9a84c; }
.footer-hours li {
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}
.footer-hours .closed { color: #6a4a4a; }
.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: #5a6a80;
}
.footer-bottom a { color: #5a6a80; transition: color 0.3s; }
.footer-bottom a:hover { color: #c9a84c; }

/* ── Animations ── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-cards { grid-template-columns: repeat(2, 1fr); }
    .specialties-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: flex; z-index: 1001; }
    .hero-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 24px 60px; }
    .stat-card { padding: 20px 16px; }
    .stat-number { font-size: 2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 80px; }
    .about-img-secondary { right: 0; }
    .visit-grid { grid-template-columns: 1fr; gap: 48px; }
    .specialties-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 72px 0; }
}
@media (max-width: 480px) {
    .hero-cards { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn-lg { width: 100%; justify-content: center; }
}
