@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

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

:root {
    --bg: #111111;
    --surface: #1e1e1e;
    --surface-2: #2a2a2a;
    --gold: #c9a035;
    --gold-light: #e0b84a;
    --text: #f0ead8;
    --text-muted: #9a9080;
    --max-w: 1100px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
}

/* Nav */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #2a2a2a;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

/* Hero */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 65%, #1e1208 0%, #111111 65%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 80%, rgba(201, 160, 53, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 82% 20%, rgba(201, 160, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.75rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--text);
    margin-bottom: 1.5rem;
}

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

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-phone {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
}

.hero-phone a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.hero-phone a:hover { color: var(--gold); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    font-family: 'Lato', sans-serif;
}
.btn:hover {
    background: var(--gold);
    color: var(--bg);
}
.btn-filled {
    background: var(--gold);
    color: var(--bg);
    font-weight: 700;
}
.btn-filled:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--bg);
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 1.25rem 0 2rem;
}

/* Feature cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid #2a2a2a;
    border-top: 3px solid var(--gold);
    padding: 2rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Dance styles grid */
.dance-types {
    background: var(--surface);
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.dance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.dance-item {
    text-align: center;
    padding: 1.75rem 1rem;
    border: 1px solid #2a2a2a;
    background: var(--surface-2);
    transition: border-color 0.2s, background 0.2s;
}
.dance-item:hover {
    border-color: var(--gold);
    background: #1a1610;
}

.dance-item .icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    display: block;
}

.dance-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.dance-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Register callout */
.register-callout {
    background: var(--surface);
    border: 1px solid var(--gold);
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0 0;
}

.register-callout .notice {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.register-callout p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-row {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-row a {
    color: var(--text);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.contact-row a:hover { color: var(--gold); }

/* Schedule */
.schedule-month { margin-bottom: 3.5rem; }

.location-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.month-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.schedule-table th {
    text-align: left;
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid #2a2a2a;
    font-weight: 400;
}

.schedule-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #1e1e1e;
    color: var(--text-muted);
    vertical-align: middle;
}

.schedule-table tr:hover td {
    background: var(--surface);
    color: var(--text);
}

.class-name {
    color: var(--text);
}

.level-badge {
    display: inline-block;
    padding: 0.1rem 0.45rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid;
    margin-left: 0.5rem;
    vertical-align: middle;
    font-family: 'Lato', sans-serif;
}

.level-beginner    { color: #4caf87; border-color: #4caf87; }
.level-intermediate { color: var(--gold); border-color: var(--gold); }
.level-advanced    { color: #c05050; border-color: #c05050; }

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.contact-block .big {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.contact-block .big:hover { color: var(--gold); }

.contact-block p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--surface);
    border-top: 1px solid #2a2a2a;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

/* Responsive */
@media (max-width: 640px) {
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { gap: 1.25rem; }
    .register-callout { padding: 1.75rem 1.25rem; }
    .schedule-table th:last-child,
    .schedule-table td:last-child { display: none; }
}
