/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0f1419;
    --color-surface: #1a2028;
    --color-brand: #d4922a;
    --color-brand-light: #e8a840;
    --color-brand-dim: rgba(212, 146, 42, 0.15);
    --color-teal: #5a7f8a;
    --color-teal-light: #7ba3b0;
    --color-text: #e8e4df;
    --color-text-muted: #9a9590;
    --color-text-dim: #6b6560;
    --color-border: rgba(212, 146, 42, 0.12);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* ===== ANIMATED BG ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 146, 42, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(90, 127, 138, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 146, 42, 0.04) 0%, transparent 40%);
}

/* ===== CONTAINER ===== */
.container {
    position: relative;
    z-index: 2;
    max-width: 680px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LOGO ===== */
.logo-wrapper {
    margin-bottom: 36px;
    animation: fadeInUp 1s ease-out 0.15s both;
}

.logo {
    width: 200px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 8px 32px rgba(212, 146, 42, 0.2));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 12px 40px rgba(212, 146, 42, 0.3));
}

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.divider-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-brand), transparent);
}

.divider-icon {
    color: var(--color-brand);
    display: flex;
    align-items: center;
    opacity: 0.7;
}

/* ===== TYPOGRAPHY ===== */
.title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-text);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* ===== SPECIALTY TAGS ===== */
.specialty-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--color-brand-dim);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-brand-light);
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(212, 146, 42, 0.22);
    border-color: rgba(212, 146, 42, 0.3);
    transform: translateY(-2px);
}

.tag-icon {
    opacity: 0.8;
}

.tag-separator {
    color: var(--color-text-dim);
    font-size: 0.6rem;
}

/* ===== DESCRIPTION ===== */
.description {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.description strong {
    color: var(--color-brand-light);
    font-weight: 500;
}

.description em {
    color: var(--color-teal-light);
    font-style: normal;
    font-weight: 400;
}

/* ===== COMING SOON BOX ===== */
.coming-soon-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 60px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.coming-soon-box span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-brand-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--color-brand);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 146, 42, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 146, 42, 0);
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.contact-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
    min-width: 240px;
}

.contact-card:hover {
    border-color: rgba(212, 146, 42, 0.3);
    background: rgba(26, 32, 40, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 146, 42, 0.1);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand-dim);
    border-radius: 12px;
    color: var(--color-brand-light);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-dim);
}

.contact-value {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

/* ===== SCHEDULE CARD ===== */
.contact-card--schedule {
    flex-basis: 100%;
    max-width: 520px;
    align-items: flex-start;
}

.contact-card--schedule .contact-icon {
    margin-top: 2px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.85rem;
}

.schedule-day {
    color: var(--color-text);
    font-weight: 400;
    white-space: nowrap;
}

.schedule-time {
    color: var(--color-text-muted);
    font-weight: 300;
    white-space: nowrap;
}

/* ===== MAP SECTION ===== */
.map-section {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 1s both;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 300px;
}

/* ===== FOOTER ===== */
.footer {
    animation: fadeInUp 1s ease-out 1s both;
}

.footer p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-text-dim);
    letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .container {
        padding: 40px 24px;
    }

    .title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .specialty-tags {
        flex-direction: column;
        gap: 10px;
    }

    .tag-separator {
        display: none;
    }

    .contact-cards {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-card {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .contact-card--schedule {
        max-width: none;
    }

    .schedule-row {
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
    }

    .schedule-row+.schedule-row {
        margin-top: 6px;
        padding-top: 6px;
        border-top: 1px solid var(--color-border);
    }

    .schedule-time {
        font-size: 0.8rem;
    }

    .logo {
        width: 160px;
    }

    .divider-line {
        width: 50px;
    }
}