*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #3d6b60;
    --primary-light: #4f8578;
    --primary-dark: #2d5249;
    --primary-rgb: 61, 107, 96;
    --primary-soft: rgba(61, 107, 96, 0.1);
    --primary-soft-2: rgba(61, 107, 96, 0.06);
    --bg: #f7faf9;
    --bg-soft: #eef4f2;
    --surface: #ffffff;
    --surface-light: #f0f5f3;
    --text: #1a2e2a;
    --text-muted: #5a736c;
    --border: rgba(61, 107, 96, 0.12);
    --border-strong: rgba(61, 107, 96, 0.22);
    --accent-warm: #c9a227;
    --gradient-primary: linear-gradient(135deg, #4f8578 0%, #3d6b60 50%, #2d5249 100%);
    --shadow: 0 20px 60px rgba(61, 107, 96, 0.12);
    --shadow-sm: 0 8px 24px rgba(61, 107, 96, 0.08);
    --header-bg: rgba(255, 255, 255, 0.92);
    --header-bg-scrolled: rgba(255, 255, 255, 0.98);
    --hero-glow: rgba(61, 107, 96, 0.12);
    --modal-backdrop: rgba(26, 46, 42, 0.5);
    --radius: 16px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --header-h: 72px;
    color-scheme: light;
}

[data-theme="dark"] {
    --primary: #5a9688;
    --primary-light: #6db09f;
    --primary-dark: #3d6b60;
    --primary-rgb: 90, 150, 136;
    --primary-soft: rgba(90, 150, 136, 0.15);
    --primary-soft-2: rgba(90, 150, 136, 0.08);
    --bg: #0f1419;
    --bg-soft: #161d28;
    --surface: #1a2332;
    --surface-light: #243044;
    --text: #eef4f2;
    --text-muted: #8fa3b8;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --accent-warm: #d4a853;
    --gradient-primary: linear-gradient(135deg, #6db09f 0%, #5a9688 50%, #3d6b60 100%);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.3);
    --header-bg: rgba(15, 20, 25, 0.88);
    --header-bg-scrolled: rgba(15, 20, 25, 0.96);
    --hero-glow: rgba(90, 150, 136, 0.15);
    --modal-backdrop: rgba(0, 0, 0, 0.75);
    --radius: 16px;
    color-scheme: dark;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
}

.header.scrolled { background: var(--header-bg-scrolled); }

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}

.logo-mark {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 1.75rem;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover { color: var(--primary); }

.theme-toggle {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.theme-toggle:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-soft);
}

.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 2rem) 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 50%, var(--hero-glow) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 85% 30%, rgba(var(--primary-rgb), 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233d6b60'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

[data-theme="dark"] .hero-pattern {
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-photo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-photo::before {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 20%;
    background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.hero-photo-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 20px 40px rgba(var(--primary-rgb), 0.15));
    animation: fadeUp 0.9s 0.2s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--primary-soft);
    border: 1px solid var(--border-strong);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
}

.hero-dot { opacity: 0.5; }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

[data-theme="dark"] .hero-title-main { color: var(--primary-light); }

.hero-title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.hero-author {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-author strong { color: var(--primary); }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s 0.4s ease both;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: fadeUp 0.8s 0.5s ease both, bounce 2s 1.5s ease infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: var(--text);
}

.section-title-light { color: var(--text); }

.section-for-whom { background: var(--bg-soft); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
}

.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

.card-highlight {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--surface) 100%);
    border-color: rgba(var(--primary-rgb), 0.25);
}

.section-beliefs {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.section-beliefs .section-title,
.section-beliefs .belief-item p { color: #fff; }

.section-beliefs::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.belief-item {
    text-align: center;
    padding: 1.5rem;
}

.belief-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    line-height: 1;
    margin-bottom: 1rem;
}

.belief-item p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.section-stages { background: var(--bg); }

.stages-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.stage-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.stage-card-accent {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--surface) 100%);
    border-color: rgba(var(--primary-rgb), 0.25);
}

.stage-card-accent::before { opacity: 1; }

.stage-num {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stage-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.stage-card p { color: var(--text-muted); font-size: 0.95rem; }

.section-transform { background: var(--bg-soft); }

.transform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.transform-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.transform-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.transform-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.transform-card p { color: var(--text-muted); font-size: 0.9rem; }

.transform-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border-strong);
}

.transform-cta-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.transform-cta-text strong { color: var(--primary); }

.transform-cta-sub {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.section-author { background: var(--bg); }

.author-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.author-photo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.author-photo::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 15%;
    background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    filter: blur(16px);
}

.author-photo-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 16px 32px rgba(var(--primary-rgb), 0.12));
}

.author-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.author-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

[data-theme="dark"] .author-name { color: var(--primary-light); }

.author-credentials {
    list-style: none;
    margin-bottom: 1.5rem;
}

.author-credentials li {
    color: var(--text-muted);
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.author-credentials li::before {
    content: '— ';
    color: var(--primary);
}

.author-books {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-achievements {
    list-style: none;
}

.author-achievements li {
    padding: 0.65rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.author-achievements strong { color: var(--text); }

.section-schedule { background: var(--bg-soft); }

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.schedule-day {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.schedule-day-main {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--surface) 100%);
}

.schedule-date { margin-bottom: 1.5rem; }

.schedule-day-num {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}

.schedule-month {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

.schedule-times {
    list-style: none;
    text-align: left;
}

.schedule-times li {
    padding: 0.6rem 0;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.schedule-times strong { color: var(--text); }

.section-price { background: var(--bg); }

.price-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--surface);
    border: 2px solid rgba(var(--primary-rgb), 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.price-card-header { margin-bottom: 2rem; }

.price-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-amount small {
    font-size: 1.5rem;
    font-weight: 400;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-features li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

.section-location { background: var(--bg-soft); }

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.location-block { margin-bottom: 1.75rem; }

.location-block h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.location-block p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.25rem; }

.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.wa-link::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12c0 2.625.846 5.059 2.284 7.034L.789 23.492a.75.75 0 0 0 .917.917l4.458-1.495A11.953 11.953 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 21.75a9.714 9.714 0 0 1-4.978-1.368l-.357-.212-3.064 1.027 1.027-3.063-.233-.366A9.716 9.716 0 0 1 2.25 12C2.25 6.615 6.615 2.25 12 2.25S21.75 6.615 21.75 12 17.385 21.75 12 21.75z'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12c0 2.625.846 5.059 2.284 7.034L.789 23.492a.75.75 0 0 0 .917.917l4.458-1.495A11.953 11.953 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 21.75a9.714 9.714 0 0 1-4.978-1.368l-.357-.212-3.064 1.027 1.027-3.063-.233-.366A9.716 9.716 0 0 1 2.25 12C2.25 6.615 6.615 2.25 12 2.25S21.75 6.615 21.75 12 17.385 21.75 12 21.75z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.location-phone {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.location-phone:hover { color: var(--primary); }

.map-placeholder {
    aspect-ratio: 4/3;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.map-placeholder span { font-size: 3rem; margin-bottom: 0.5rem; }
.map-placeholder p { font-size: 1.25rem; font-weight: 600; }
.map-venue { color: var(--text-muted) !important; font-size: 0.95rem !important; font-weight: 400 !important; }

.section-questions {
    background: var(--gradient-primary);
    text-align: center;
    padding: 4rem 0;
}

.section-questions .section-title,
.questions-text { color: rgba(255,255,255,0.85); }

.questions-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.questions-phone {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.questions-phone:hover { opacity: 0.85; }

.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    background: var(--surface);
}

.footer-inner p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-city { margin-top: 0.25rem; opacity: 0.7; }

/* Modal */
.modal[hidden] { display: none !important; }

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: var(--modal-backdrop);
    backdrop-filter: blur(8px);
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    z-index: 1;
}
.modal-close:hover { color: var(--text); }

.modal-header { margin-bottom: 1.5rem; padding-right: 2rem; }
.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}
.modal-header p { color: var(--text-muted); font-size: 0.85rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.tickets-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tickets-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}
.tickets-btn:hover { border-color: var(--primary); color: var(--primary); }

.tickets-control input {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
}

.booking-total strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
}

.booking-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.booking-success { text-align: center; padding: 2rem 0; }

.success-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.booking-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.booking-success p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-error {
    color: #e05252;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content { text-align: center; }

    .hero-subtitle { margin-left: auto; margin-right: auto; }

    .hero-actions { justify-content: center; }

    .hero-scroll { justify-content: center; }

    .hero-photo { order: -1; }

    .hero-photo-img { max-width: 320px; }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s;
        pointer-events: none;
        box-shadow: var(--shadow-sm);
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header-actions {
        display: flex;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .header-actions .btn { display: none; }

    .burger { display: flex; }

    .author-grid { grid-template-columns: 1fr; }
    .author-photo { max-width: 320px; margin: 0 auto; }

    .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
    .section { padding: 3.5rem 0; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
