@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --bg: #11100f;
    --bg-2: #181614;
    --paper: #f6f1e9;
    --paper-2: #eee7dc;
    --ink: #201d1a;
    --muted: #716a62;
    --accent: #d89a54;
    --accent-dark: #b97b3c;
    --line: rgba(32, 29, 26, .12);
    --white-line: rgba(255, 255, 255, .13);
    --radius: 24px;
    --header-height: 76px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    line-height: 1.65;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
    height: var(--header-height);
    background: rgba(17, 16, 15, .84);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 1000;
}

.navbar { height: 100%; }
.navbar-brand {
    color: #fff !important;
    font-weight: 800;
    letter-spacing: -.03em;
}
.navbar-brand span { color: var(--accent); }

.nav-link {
    color: rgba(255,255,255,.68) !important;
    font-size: .84rem;
    font-weight: 700;
    transition: .25s ease;
    position: relative;
}
.nav-link:hover,
.nav-link.active { color: #fff !important; }
.nav-link.active::after {
    content: "";
    position: absolute;
    left: .55rem;
    right: .55rem;
    bottom: .15rem;
    height: 2px;
    background: var(--accent);
    border-radius: 5px;
}

.navbar-toggler {
    border-color: rgba(255,255,255,.2);
}
.navbar-toggler-icon {
    filter: invert(1);
}

.btn {
    border-radius: 999px;
    padding: .8rem 1.35rem;
    font-weight: 800;
    border-width: 1px;
}
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #1c1712;
}
.btn-accent:hover {
    background: #e4aa68;
    border-color: #e4aa68;
    color: #1c1712;
    transform: translateY(-1px);
}
.btn-outline-light:hover { color: #15120f; }

.section-screen {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 80% 35%, rgba(216,154,84,.16), transparent 28%),
        radial-gradient(circle at 15% 85%, rgba(216,154,84,.08), transparent 28%),
        var(--bg);
    color: #fff;
    padding-top: calc(var(--header-height) + 70px);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}
.hero-glow-1 {
    width: 280px;
    height: 280px;
    background: rgba(216,154,84,.12);
    right: 2%;
    top: 10%;
}
.hero-glow-2 {
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,.04);
    left: 20%;
    bottom: 5%;
}

.eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    margin-bottom: 18px;
}
.hero h1,
.section-heading h2,
.method-badge + h2,
.contact-box h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -.035em;
    line-height: 1.05;
}
.hero h1 {
    font-size: clamp(3rem, 7vw, 6.4rem);
    margin-bottom: 25px;
}
.hero h1 span { color: var(--accent); }

.hero-lead {
    max-width: 680px;
    color: rgba(255,255,255,.72);
    font-size: 1.16rem;
    margin-bottom: 30px;
}

.hero-points {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.hero-points div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-points span {
    color: var(--accent);
    font-size: 1.55rem;
    font-weight: 800;
}
.hero-points p {
    max-width: 145px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: .82rem;
    line-height: 1.35;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.teacher-card {
    max-width: 440px;
    margin: auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #24201d;
    box-shadow: 0 35px 80px rgba(0,0,0,.32);
}
.teacher-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.teacher-card-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    border-radius: 17px;
    background: rgba(17,16,15,.78);
    backdrop-filter: blur(10px);
}
.teacher-card-caption strong,
.teacher-card-caption span { display: block; }
.teacher-card-caption strong { color: #fff; }
.teacher-card-caption span { color: rgba(255,255,255,.62); font-size: .8rem; }

.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.scroll-hint span {
    display: block;
    width: 1px;
    height: 30px;
    background: var(--accent);
    margin: 0 auto 8px;
}

.section-light { background: var(--paper); }
.section-soft { background: var(--paper-2); }
.section-dark { background: var(--bg); color: #fff; }

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}
.section-heading h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    margin-bottom: 20px;
}
.section-heading p {
    color: var(--muted);
    max-width: 650px;
    font-size: 1rem;
}
.section-heading-light p { color: rgba(255,255,255,.6); }
.section-heading-light .eyebrow { color: var(--accent); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.info-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.28);
}
.info-number {
    color: var(--accent-dark);
    font-weight: 800;
    margin-bottom: 28px;
}
.info-card h3 { font-size: 1.35rem; }
.info-card p { color: var(--muted); margin: 0; }

.direction-card {
    height: 100%;
    background: #1c1917;
    border: 1px solid var(--white-line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease;
}
.direction-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216,154,84,.5);
}
.direction-card > img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.direction-content { padding: 26px; }
.direction-index {
    color: var(--accent);
    font-size: .74rem;
    font-weight: 800;
}
.direction-content h3 {
    margin: 8px 0 18px;
    font-size: 1.35rem;
}
.direction-content ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,.62);
    font-size: .9rem;
}
.direction-content li { margin-bottom: 8px; }
.section-cta { margin-top: 45px; }

.method-badge,
.format-tag,
.price-label {
    color: var(--accent-dark);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .13em;
}
.method-badge { margin-bottom: 15px; }
.method-badge + h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    margin-bottom: 22px;
}
.lead-text {
    font-size: 1.1rem;
    font-weight: 600;
}
.method-list {
    border-top: 1px solid var(--line);
}
.method-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}
.method-item > span {
    color: var(--accent-dark);
    font-size: 1.25rem;
    font-weight: 800;
}
.method-item strong { display: block; font-size: 1.1rem; }
.method-item p { color: var(--muted); margin: 5px 0 0; }

.format-card {
    height: 100%;
    padding: 38px;
    border-radius: var(--radius);
    border: 1px solid var(--white-line);
    background: rgba(255,255,255,.035);
}
.format-card.featured {
    border-color: rgba(216,154,84,.45);
    background: linear-gradient(145deg, rgba(216,154,84,.12), rgba(255,255,255,.035));
}
.format-tag { margin-bottom: 20px; }
.format-card h3 { font-size: 2rem; }
.format-card p { color: rgba(255,255,255,.62); }
.check-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}
.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255,255,255,.75);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}
.format-price {
    font-size: 2rem;
    font-weight: 800;
}
.format-price small {
    color: rgba(255,255,255,.45);
    font-size: .82rem;
    font-weight: 500;
}
.text-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}
.text-link:hover { color: #e4aa68; }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}
.price-card {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.38);
}
.price-card-main {
    background: var(--bg);
    color: #fff;
    border-color: var(--bg);
}
.price-label { margin-bottom: 18px; }
.price-card-main .price-label { color: var(--accent); }
.price-card h3 { font-size: 1.5rem; }
.price {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin: 20px 0 8px;
}
.price span { font-size: 1.5rem; }
.price-card-main p { color: rgba(255,255,255,.55); }
.price-note { color: rgba(255,255,255,.58); margin-top: 28px; }
.mini-price {
    display: flex;
    flex-direction: column;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
}
.mini-price:last-child { border-bottom: 0; }
.mini-price strong { font-size: 1.65rem; }
.mini-price span { color: var(--muted); font-size: .85rem; }

.location-note {
    max-width: 980px;
    margin: 18px auto 0;
    padding: 22px 25px;
    display: flex;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
}
.location-icon {
    color: var(--accent-dark);
    font-size: 1.7rem;
}
.location-note strong { display: block; }
.location-note p { margin: 2px 0 0; color: var(--muted); }

.review-card {
    height: 100%;
    padding: 32px;
    margin: 0;
    background: rgba(255,255,255,.48);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.review-stars {
    color: var(--accent-dark);
    letter-spacing: .15em;
    margin-bottom: 18px;
}
.review-card p { color: #514b44; }
.review-card footer {
    margin-top: 24px;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 700;
}

.contact-section {
    background:
        radial-gradient(circle at 85% 20%, rgba(216,154,84,.18), transparent 25%),
        var(--bg);
    color: #fff;
}
.contact-box {
    padding: clamp(30px, 6vw, 70px);
    border: 1px solid var(--white-line);
    border-radius: 32px;
    background: rgba(255,255,255,.035);
}
.contact-box h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    margin-bottom: 20px;
}
.contact-box p { color: rgba(255,255,255,.62); max-width: 600px; }

.contact-details {
    border-left: 1px solid var(--white-line);
    padding-left: 30px;
}
.contact-row {
    padding: 20px 0;
    border-bottom: 1px solid var(--white-line);
}
.contact-row span,
.contact-row small { display: block; }
.contact-row span { color: rgba(255,255,255,.45); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-row a {
    display: inline-block;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    margin: 5px 0;
}
.contact-row a:hover { color: var(--accent); }
.contact-row small { color: rgba(255,255,255,.4); }

.contact-socials {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 20px;
}
.contact-socials span { width: 100%; color: rgba(255,255,255,.45); }

.site-footer {
    padding: 24px 0;
    background: #0c0b0a;
    color: rgba(255,255,255,.4);
    font-size: .78rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 8px;
        padding: 14px;
        background: rgba(17,16,15,.97);
        border-radius: 18px;
        border: 1px solid var(--white-line);
    }
    .nav-link.active::after { display: none; }
    .hero { min-height: auto; padding-bottom: 100px; }
    .teacher-card { max-width: 500px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-details {
        border-left: 0;
        border-top: 1px solid var(--white-line);
        padding: 15px 0 0;
    }
}

@media (max-width: 767.98px) {
    :root { --header-height: 68px; }
    .section-screen { padding: 80px 0; }
    .hero { padding-top: 120px; }
    .hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
    .hero-points { gap: 15px; }
    .hero-points div { width: 100%; }
    .hero-points p { max-width: none; }
    .hero-actions .btn { width: 100%; }
    .scroll-hint { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price { font-size: 3.3rem; }
    .format-card, .price-card, .review-card { padding: 28px; }
    .contact-box { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
