/* === 儿童家庭 · 小日子 ===
 * 暖米黄底 + 糖果点缀色,圆角友好,适合亲子摄影
 */

:root {
    --bg: #fff8ed;
    --bg-soft: #fef0d5;
    --pink: #ffb5a7;
    --blue: #b8e0e8;
    --yellow: #ffd97a;
    --green: #c5e1b3;
    --ink: #4a3c2e;
    --ink-soft: #8a7969;
    --line: #f0e3cf;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Quicksand', 'Noto Sans SC', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    font-weight: 400;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.cursive { font-family: 'Caveat', cursive; }
.kicker {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--ink-soft);
    text-transform: uppercase;
    font-weight: 600;
}
.hl {
    color: var(--pink);
    background: linear-gradient(180deg, transparent 70%, var(--yellow) 70%);
    padding: 0 4px;
}

h1, h2, h3, h4 { font-weight: 700; color: var(--ink); }

/* === 导航 === */
.nav {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 248, 237, 0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 8px; }
.brand-emoji { font-size: 24px; }
.brand-name {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 700;
    font-size: 20px;
}
.brand-en {
    font-family: 'Caveat', cursive;
    font-size: 18px;
    color: var(--ink-soft);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}
.nav-links a {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }

/* === Hero === */
.hero {
    padding: 60px 48px 100px;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-text h1 {
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.05;
    margin: 24px 0 12px;
}
.hero-text .lead {
    font-size: 24px;
    color: var(--pink);
    margin-bottom: 32px;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}
.hero-tags span {
    background: white;
    border: 2px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
}
.btn-pill {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--ink);
    color: white !important;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(74, 60, 46, 0.25);
}
.btn-pill.primary { background: var(--pink); }
.hero-img {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-soft);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.float-tag {
    position: absolute;
    background: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.float-tag.tag-1 { top: 24px; left: -16px; color: var(--pink); }
.float-tag.tag-2 { bottom: 32px; right: -16px; color: var(--ink); background: var(--yellow); }

/* === 时间线 === */
.timeline { padding: 100px 48px; max-width: 1300px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-top: 12px;
    line-height: 1.15;
}
.section-head .sub { color: var(--ink-soft); font-size: 15px; margin-top: 12px; }
.timeline-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.t-stop {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.t-stop:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(74, 60, 46, 0.12);
}
.t-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-soft);
}
.t-img img { width: 100%; height: 100%; object-fit: cover; }
.t-card { padding: 24px; }
.t-age {
    display: inline-block;
    background: var(--yellow);
    color: var(--ink);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.t-stop:nth-child(2n) .t-age { background: var(--pink); color: white; }
.t-stop:nth-child(3n) .t-age { background: var(--blue); }
.t-stop:nth-child(5n) .t-age { background: var(--green); }
.t-card h4 { font-size: 22px; margin-bottom: 6px; }
.t-card p { font-size: 14px; color: var(--ink-soft); }

/* === 套餐 === */
.packages {
    padding: 100px 48px;
    background: var(--bg-soft);
}
.pkg-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pkg {
    position: relative;
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}
.pkg:hover { transform: translateY(-4px); }
.pkg.featured {
    background: var(--ink);
    color: white;
    transform: scale(1.04);
}
.pkg.featured h3, .pkg.featured .pkg-list li { color: white; }
.pkg.featured .pkg-desc { color: rgba(255,255,255,0.7); }
.pkg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    letter-spacing: 0.05em;
}
.pkg-icon { font-size: 40px; margin-bottom: 16px; }
.pkg h3 { font-size: 22px; margin-bottom: 6px; }
.pkg-desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; }
.pkg-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1;
}
.pkg-price span { font-size: 24px; vertical-align: super; margin-right: 4px; }
.pkg-price small { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.pkg.featured .pkg-price small { color: rgba(255,255,255,0.6); }
.pkg-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.pkg.featured .pkg-list { border-color: rgba(255,255,255,0.15); }
.pkg-list li {
    font-size: 14px;
    color: var(--ink);
    padding: 6px 0 6px 24px;
    position: relative;
}
.pkg-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 700;
}
.pkg.featured .pkg-list li::before { color: var(--yellow); }
.pkg-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    background: white;
    border: 2px solid var(--ink);
    transition: all 0.2s;
}
.pkg-btn:hover { background: var(--ink); color: white; }
.pkg-btn.primary {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}
.pkg-btn.primary:hover { background: white; color: var(--pink); }

/* === 评价 === */
.reviews { padding: 100px 48px; max-width: 1300px; margin: 0 auto; }
.rv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rv {
    background: white;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--line);
    position: relative;
}
.rv::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 24px;
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--yellow);
    line-height: 1;
    opacity: 0.6;
}
.rv-quote {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.rv-meta strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.rv-meta span { font-size: 12px; color: var(--ink-soft); }

/* === 联系 === */
.contact {
    padding: 100px 48px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.contact-card {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 56px 48px;
    text-align: center;
    border: 2px solid var(--line);
    position: relative;
}
.contact-deco {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: -88px auto 16px;
    box-shadow: 0 12px 30px rgba(255, 217, 122, 0.4);
}
.contact h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 8px;
}
.contact-sub { color: var(--ink-soft); margin-bottom: 32px; }
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 24px;
}
.contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 2px solid var(--line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    background: var(--bg);
    color: var(--ink);
    transition: border-color 0.2s;
    width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pink);
}
.contact-form textarea { resize: vertical; }
.contact-form button {
    margin-top: 8px;
    cursor: pointer;
    border: none;
    width: fit-content;
    align-self: center;
}
.contact-other {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 2;
}
.contact-other strong { color: var(--ink); margin: 0 4px; }

/* === 页脚 === */
.footer {
    padding: 56px 32px;
    text-align: center;
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.footer .cursive {
    font-size: 28px;
    color: var(--pink);
    margin-bottom: 12px;
}
.footer-meta { font-size: 13px; color: var(--ink-soft); }

/* === 响应式 === */
@media (max-width: 900px) {
    .nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .hero {
        padding: 40px 20px 64px;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .float-tag.tag-1 { left: 16px; }
    .float-tag.tag-2 { right: 16px; }
    .timeline, .packages, .reviews, .contact { padding: 64px 20px; }
    .timeline-track, .pkg-grid, .rv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pkg.featured { transform: none; }
    .contact-form .row { grid-template-columns: 1fr; }
    .contact-card { padding: 40px 24px; }
}
