@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Merriweather:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
    --bg: #ffffff;
    --text: #000000;
    --text-light: #555555;
    --accent: #f8ff7f;
    --border: #e0e0e0;
    --border-dashed: #cccccc;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.wordmark {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.nav-links a:hover { opacity: 0.6; }

.btn-begin {
    background: var(--accent);
    color: var(--text);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
}

.btn-begin:hover { opacity: 0.8; }

/* Typography */
h1 {
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-transform: uppercase;
}

h2 {
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

h3 {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-label {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.serif {
    font-family: 'Merriweather', Georgia, serif;
}

.serif-italic {
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    font-weight: 300;
}

.body-large {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
}

.body-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
}

.body-muted {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Hero */
.hero {
    padding: 120px 0 80px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    color: var(--text-light);
}

/* Sections */
section {
    padding: 80px 0;
}

.divider {
    border: none;
    border-top: 1px dashed var(--border-dashed);
    margin: 0;
}

.divider-solid {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.card {
    padding: 32px 0;
}

.card-number {
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Service rows */
.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dashed var(--border-dashed);
}

.service-name {
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.125rem;
}

.service-price {
    font-size: 0.9375rem;
    font-weight: 400;
}

.service-note {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 16px 0;
    font-style: italic;
}

/* Testimonials */
.testimonial {
    padding: 48px 0;
    border-bottom: 1px dashed var(--border-dashed);
}

.testimonial:last-child { border-bottom: none; }

.testimonial-text {
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-attr {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* FAQ-style blocks */
.faq-item {
    padding: 32px 0;
    border-bottom: 1px dashed var(--border-dashed);
}

.faq-question {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.faq-answer {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
}

/* Numbered list */
.step-list {
    list-style: none;
    counter-reset: step;
}

.step-list li {
    counter-increment: step;
    padding: 24px 0;
    border-bottom: 1px dashed var(--border-dashed);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-list li::before {
    content: "0" counter(step);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    min-width: 32px;
    padding-top: 2px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-monogram {
    font-weight: 900;
    font-size: 6rem;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-label {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

footer a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 8px;
}

footer a:hover { opacity: 0.6; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* Crisis bar */
.crisis-bar {
    background: #f5f5f5;
    padding: 12px 32px;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.crisis-bar a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}

/* Mockup badge */
.mockup-banner {
    background: var(--accent);
    padding: 10px 32px;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.mockup-banner a {
    color: var(--text);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.5rem; }
    .hero { padding: 80px 0 60px; }
    .card-grid { grid-template-columns: 1fr; }
    .card-grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    section { padding: 60px 0; }
}
