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

:root {
    --red: #C0392B;
    --red-dark: #962D22;
    --red-light: #E74C3C;
    --orange: #E67E22;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --brown: #3E2723;
    --brown-light: #5D4037;
    --text: #2C2C2C;
    --text-light: #666;
    --white: #FFFFFF;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-secondary {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn-secondary:hover { background: var(--red); color: var(--white); }

.btn-full { width: 100%; }

.btn-success {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,248,240,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--red); }

.btn-nav {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}
.btn-nav:hover { background: var(--red-dark); color: var(--white) !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--brown);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, #FFF0E0 50%, var(--cream-dark) 100%);
    text-align: center;
}
.hero-content { max-width: 720px; margin: 0 auto; }

.hero-tag {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(192,57,43,0.2);
}

.hero h1 { margin-bottom: 20px; color: var(--brown); }

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}
.trust-icon { font-size: 1.2rem; }

/* ===== PARTIES ===== */
.parties {
    padding: 80px 0;
    text-align: center;
}
.section-sub {
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

.party-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.party-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: left;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.party-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.party-card-primary {
    border: 2px solid var(--red);
    transform: scale(1.03);
}
.party-card-primary:hover { transform: scale(1.03) translateY(-4px); }

.party-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--red);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.party-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.party-age { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }

.party-card p { font-size: 0.95rem; margin-bottom: 16px; }

.party-features {
    list-style: none;
    margin-bottom: 24px;
}
.party-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.party-features li::before {
    content: "✓ ";
    color: var(--red);
    font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.step { text-align: center; }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-light); }

/* ===== ABOUT ===== */
.about {
    padding: 80px 0;
    text-align: center;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}
.about-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    text-align: center;
}
.about-avatar {
    font-size: 3rem;
    margin-bottom: 16px;
}
.about-card h3 { margin-bottom: 12px; color: var(--brown); }
.about-card p { font-size: 0.95rem; color: var(--text-light); }

.about-story, .about-different {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}
.about-different h3 { margin-bottom: 12px; color: var(--brown); }

/* ===== GALLERY ===== */
.gallery {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.gallery-placeholder {
    grid-column: 1 / -1;
    padding: 80px 20px;
    background: var(--cream-dark);
    border-radius: var(--radius);
    color: var(--text-light);
}
.gallery-placeholder span { font-size: 3rem; display: block; margin-bottom: 16px; }
.gallery-placeholder .small { font-size: 0.85rem; }

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--red); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--brown);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--cream);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 8px; }

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
    font-style: italic;
}

.form-hint.unavailable {
    color: var(--red);
    font-style: normal;
    font-weight: 500;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px;
}
.contact-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--brown);
}
.contact-card p { margin-bottom: 6px; font-size: 0.9rem; }

.social-links { display: flex; gap: 16px; }
.social-links a {
    color: var(--red);
    font-weight: 500;
}

.response-time {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
}
.response-time h3 { color: var(--white); }
.response-time p { color: rgba(255,255,255,0.9); }

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0 24px;
    background: var(--brown);
    color: rgba(255,255,255,0.8);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); font-size: 1.2rem; }
.footer-brand p { font-size: 0.85rem; margin-top: 8px; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-social a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.footer-links a:hover, .footer-social a:hover { color: var(--white); }
.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 24px;
    color: rgba(255,255,255,0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .party-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .party-card-primary { transform: none; }
    .party-card-primary:hover { transform: translateY(-4px); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero { padding: 120px 0 60px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .trust-items { gap: 20px; }
    .steps { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}
