@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
    --ink: #302a38;
    --muted: #756e7e;
    --paper: #fffaf7;
    --rose: #e87287;
    --rose-dark: #c5536c;
    --peach: #fff0e8;
    --line: #eadfdc;
    --shadow: 0 16px 40px rgba(77, 45, 61, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Noto Sans SC", sans-serif;
    line-height: 1.75;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(234, 223, 220, 0.85);
    background: rgba(255, 250, 247, 0.94);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    font-family: "Playfair Display", "Noto Sans SC", serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.6px;
}

.brand span span {
    color: var(--rose);
}

.brand-mark {
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #f08b99, #d95f7a);
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: -4px;
    padding-right: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #5d5664;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--rose-dark);
    background: var(--peach);
}

.nav-icon {
    color: var(--rose);
    font-size: 16px;
}

.hero {
    position: relative;
    min-height: 476px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 28px;
    background: #5d4454;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    padding: clamp(36px, 7vw, 90px);
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(39, 25, 35, 0.80), rgba(39, 25, 35, 0.20));
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 620px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--rose-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hero .eyebrow {
    color: #ffd3dd;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: "Playfair Display", "Noto Sans SC", serif;
    line-height: 1.25;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(34px, 5vw, 58px);
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(25px, 3vw, 36px);
}

h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.45;
}

.hero p {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 17px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    color: #fff;
    background: var(--rose);
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(232, 114, 135, 0.30);
}

.button:hover {
    background: var(--rose-dark);
}

.hero-dots {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 26px;
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.hero-dots button.is-active {
    width: 25px;
    border-radius: 9px;
    background: #fff;
}

.section {
    margin-top: 82px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-heading h2,
.section-heading p {
    margin-bottom: 0;
}

.section-heading p {
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(88, 62, 72, 0.04);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #f3e8e6;
}

.card-body {
    display: flex;
    min-height: 178px;
    flex-direction: column;
    padding: 20px;
}

.card-body p {
    color: var(--muted);
    font-size: 14px;
}

.card-meta {
    margin-top: auto;
    color: var(--rose-dark);
    font-size: 13px;
    font-weight: 700;
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.category-link {
    display: grid;
    min-height: 126px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    text-align: center;
}

.category-link:hover {
    color: var(--rose-dark);
    background: var(--peach);
}

.category-link strong {
    font-size: 24px;
    color: var(--rose);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
}

.feature-card,
.text-panel {
    min-height: 320px;
    padding: 34px;
    border-radius: 22px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #775260;
}

.feature-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
}

.feature-card > div {
    position: relative;
    z-index: 1;
}

.feature-card .eyebrow {
    color: #ffe1e7;
}

.text-panel {
    border: 1px solid #f3d9d1;
    background: var(--peach);
}

.text-panel p {
    color: #665966;
}

.quote {
    padding: 35px;
    border-left: 4px solid var(--rose);
    border-radius: 0 18px 18px 0;
    background: #fff;
    font-family: "Playfair Display", "Noto Sans SC", serif;
    font-size: 23px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
    align-items: center;
}

.about-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    object-fit: cover;
}

.check-list {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.check-list li::before {
    margin-right: 9px;
    color: var(--rose);
    content: "✓";
}

.app-subscribe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 92px;
    padding: 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffe9e3, #fbd5dc);
}

.app-subscribe p:not(.eyebrow) {
    max-width: 690px;
    color: #705965;
}

.qr-card {
    display: grid;
    width: 126px;
    min-width: 126px;
    height: 126px;
    place-content: center;
    border: 7px solid #fff;
    border-radius: 19px;
    color: var(--rose-dark);
    background: repeating-linear-gradient(45deg, #fff 0 7px, #fde6ea 7px 12px);
    text-align: center;
    line-height: 1.25;
}

.qr-card span {
    font-size: 29px;
}

.site-footer {
    margin-top: 78px;
    padding: 42px 0;
    color: #e9dfe4;
    background: #332a36;
}

.site-footer p {
    margin: 10px 0 0;
    font-size: 14px;
}

.footer-brand {
    color: #fff;
}

.breadcrumb {
    margin: 30px auto 20px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--rose-dark);
}

.page-hero {
    margin-top: 30px;
    padding: clamp(35px, 7vw, 76px);
    border-radius: 24px;
    background: var(--peach);
}

.page-hero p {
    max-width: 760px;
    color: #665966;
}

.article {
    width: min(850px, calc(100% - 40px));
    margin: 34px auto 0;
}

.article-header {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.article-header h1 {
    font-size: clamp(30px, 5vw, 47px);
}

.article-info {
    color: var(--muted);
    font-size: 14px;
}

.reading-note {
    margin: 30px 0;
    padding: 18px 20px;
    border-radius: 12px;
    color: #695664;
    background: var(--peach);
}

.article-content {
    font-size: 17px;
}

.article-content h2 {
    margin-top: 45px;
    font-size: 27px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-figure {
    margin: 30px 0;
}

.article-figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    object-fit: cover;
    background: #f3e8e6;
}

.article-figure figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.end-note {
    margin: 42px 0;
    padding: 26px;
    border-radius: 18px;
    color: #6a5361;
    background: #fff;
    text-align: center;
}

@media (max-width: 900px) {
    .header-inner {
        padding: 13px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .main-nav a {
        padding: 4px 7px;
        font-size: 13px;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        min-height: 440px;
        margin-top: 18px;
        border-radius: 20px;
    }

    .section {
        margin-top: 58px;
    }

    .section-heading,
    .app-subscribe,
    .about-grid,
    .feature-grid {
        align-items: flex-start;
        flex-direction: column;
        display: flex;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .category-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card,
    .text-panel,
    .app-subscribe {
        min-height: 0;
        padding: 26px;
    }

    .app-subscribe {
        gap: 24px;
    }

    .article {
        width: min(100% - 28px, 850px);
    }
}
