* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --g: #3a6147;
    --gd: #243d2c;
    --gl: #c8dcd0;
    --blush: #ede0d7;
    --blushd: #c9a898;
    --blushl: #f7f0ec;
    --cream: #faf6f2;
    --white: #fff;
    --ink: #1c2b21;
    --mid: #5a7263;
    --hint: #9eb5a5;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 60px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(36, 61, 44, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 220, 208, 0.1);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blush);
    overflow: hidden;
    flex-shrink: 0;
}
.nav-b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
}
.nav-wa {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.2s;
}
.nav-wa:hover {
    color: var(--blush);
    border-color: var(--blushd);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border: 0.5px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 5px 12px;
    transition: all 0.25s ease;
    cursor: pointer;
}
.lang-toggle:hover {
    background: rgba(237,224,215,0.15);
    border-color: var(--blushd);
}
.lang-cn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--blush);
    transition: all 0.25s;
}
.lang-divider {
    font-size: 10px;
    color: rgba(255,255,255,0.2);
}
.lang-en {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    transition: all 0.25s;
}
.lang-toggle:hover .lang-cn {
    color: rgba(255,255,255,0.35);
}
.lang-toggle:hover .lang-en {
    color: var(--blush);
}
.lang-toggle.en-active .lang-cn {
    color: rgba(255,255,255,0.35);
}
.lang-toggle.en-active .lang-en {
    color: var(--blush);
}
body {
    animation: pageFadeIn 0.4s ease;
}
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* HERO */
.hero {
    background: var(--gd);
    padding: 80px 40px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("https://bambooflorist.com.my/cdn/shop/files/DSCF6132.jpg?v=1751686477&width=1400") center/cover
        no-repeat;
    opacity: 0.08;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.hero-from {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 20px;
    display: block;
}
.hero-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 65px;
    font-weight: 400;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 20px;
}
.hero-h1 em {
    font-style: italic;
    color: var(--blush);
}
.hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.hero-pill-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}
.pill-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blushd);
    flex-shrink: 0;
}
.hero-scroll-hint {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

/* INTRO BAND */
.intro-band {
    background: var(--blush);
    padding: 28px 40px;
    text-align: center;
    border-bottom: 0.5px solid var(--blushd);
}
.intro-band p {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: var(--gd);
    line-height: 1.5;
}
.intro-band p em {
    font-style: normal;
    font-weight: 500;
}

/* GUIDE SECTIONS */
.guide {
    padding: 0 40px 80px;
}
.guide-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.chapter {
    padding: 72px 0;
    border-bottom: 0.5px solid #e2d8d0;
}
.chapter:last-of-type {
    border-bottom: none;
}

.ch-header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 36px;
}

.ch-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 96px;
    font-weight: 400;
    line-height: 0.85;
    color: rgba(58, 97, 71, 0.5);
    flex-shrink: 0;
    margin-top: -8px;
    letter-spacing: -0.02em;
}
.ch-title-wrap {
    flex: 1;
    padding-top: 8px;
}
.ch-eyebrow {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hint);
    margin-bottom: 10px;
    display: block;
}
.ch-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0;
}
.ch-title em {
    font-style: italic;
    color: var(--g);
}

.ch-body {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.95;
    color: var(--mid);
    margin-bottom: 28px;
}
.ch-body strong {
    font-weight: 500;
    color: var(--ink);
}

.ch-insight {
    background: var(--blushl);
    border-left: 3px solid var(--blushd);
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 28px 0;
}
.ch-insight-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 8px;
}
.ch-insight-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--gd);
    line-height: 1.55;
}

.ch-tip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.tip-card {
    background: #fff;
    border: 0.5px solid #e2d8d0;
    border-radius: 10px;
    padding: 20px 18px;
}
.tip-icon {
    font-size: 30px;
    margin-bottom: 10px;
}
.tip-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}
.tip-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.7;
}

.ch-occasion-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
}
.occ-item {
    background: #fff;
    border: 0.5px solid #e2d8d0;
    border-radius: 8px;
    padding: 16px 14px;
    text-align: center;
}
.occ-item-flower {
    font-size: 30px;
}
.occ-item-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
}
.occ-item-flower-name {
    font-size: 16px;
    color: var(--g);
    margin-bottom: 4px;
}
.occ-item-meaning {
    font-size: 13px;
    color: var(--hint);
    line-height: 1.5;
}

.ch-do-dont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}
.dd-card {
    border-radius: 10px;
    padding: 22px 20px;
}
.dd-card.do {
    background: rgba(58, 97, 71, 0.06);
    border: 0.5px solid rgba(58, 97, 71, 0.18);
}
.dd-card.dont {
    background: rgba(201, 168, 152, 0.1);
    border: 0.5px solid rgba(201, 168, 152, 0.3);
}
.dd-label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.dd-label.do {
    color: var(--g);
}
.dd-label.dont {
    color: var(--blushd);
}
.dd-list {
    list-style: none;
}
.dd-list li {
    font-size: 14px;
    font-weight: 400;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}
.dd-list li::before {
    position: absolute;
    left: 0;
    font-size: 11px;
}
.dd-list.do-list li::before {
    content: "✓";
    color: var(--g);
}
.dd-list.dont-list li::before {
    content: "×";
    color: var(--blushd);
}

.ch-memory {
    background: var(--gd);
    border-radius: 16px;
    padding: 40px;
    margin-top: 28px;
    text-align: center;
}
.ch-memory-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}
.ch-memory-title em {
    font-style: italic;
    color: var(--blush);
}
.ch-memory-body {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    margin-bottom: 28px;
    max-width:580px;
    margin-left: auto;
    margin-right: auto;
}
.memory-feature-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.mem-feat {
    background: rgba(255, 255, 255, 0.07);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    min-width: 110px;
}
.mem-feat-icon {
    font-size: 30px;
    margin-bottom: 6px;
}
.mem-feat-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--blush);
    letter-spacing: 0.06em;
}
.mem-feat-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
}
.btn-mem {
    background: var(--blush);
    color: var(--gd);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}
.btn-mem:hover {
    background: #fff;
}

/* FINAL CTA */
.final-cta {
    background: var(--g);
    padding: 80px 40px;
    text-align: center;
}
.final-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}
.final-eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 20px;
    display: block;
}
.final-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.final-h2 em {
    font-style: italic;
    color: var(--blush);
}
.final-p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.85;
    margin-bottom: 40px;
}
.final-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.btn-wa {
    background: var(--blush);
    color: var(--gd);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 38px;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    width: 100%;
    max-width: 320px;
    text-align: center;
}
.btn-wa:hover {
    background: #fff;
}
.btn-back {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}
.btn-back:hover {
    color: var(--blush);
}

/* PROGRESS DOT NAV */
.progress-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 50;
}
.p-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(58, 97, 71, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    border: 0.5px solid rgba(58, 97, 71, 0.3);
}
.p-dot.active {
    background: var(--g);
    transform: scale(1.4);
}
.p-dot:hover {
    background: var(--g);
    opacity: 0.7;
}

/* FOOTER */
footer {
    background: #111d15;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.ft-b {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}
.ft-c {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.05em;
}

/* ================================================================
   MOBILE — 锁死不动，永远不要修改这个 block
   ================================================================ */
@media (max-width: 768px) {
 
    /* NAV */
    nav {
        padding: 0 20px;
    }
    .nav-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.65);
        letter-spacing: 0.05em;
    }
    .nav-wa {
        font-size: 11px;
        letter-spacing: 0.12em;
    }
 
    /* HERO */
    .hero-content {
        padding: 0 24px 52px;
    }
    .hero-tag {
        font-size: 10px;
        letter-spacing: 0.25em;
        margin-bottom: 24px;
    }
    .hero-h1 {
        font-size: clamp(56px, 8.5vw, 100px);
        margin-bottom: 28px;
    }
    .hero-sub {
        font-size: 20px;
        max-width: 480px;
        margin-bottom: 48px;
    }
    .btn-main {
        font-size: 15px;
        padding: 14px 28px;
    }
    .btn-ghost {
        font-size: 15px;
        padding: 14px 22px;
    }
    .hero-scroll {
        font-size: 12px;
        right: 24px;
    }
 
    /* TICKER */
    .t-item {
        font-size: 11px;
        letter-spacing: 0.18em;
    }
 
    /* STORY */
    .story {
        padding-left: 24px;
        padding-right: 24px;
    }
    .story-inner {
        grid-template-columns: 1fr;
    }
    .s-left h3,
    .s-right h3 {
        font-size: 10px;
        letter-spacing: 0.22em;
    }
    .s-left .big,
    .s-right .big {
        font-size: 28px;
    }
    .s-left li,
    .s-right li {
        font-size: 13px;
    }
 
    /* GUIDE TEASER */
    .guide-teaser {
        padding-left: 24px;
        padding-right: 24px;
    }
    .gt-tag {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    .gt-h2 {
        font-size: clamp(36px, 5vw, 68px);
    }
    .gt-p {
        font-size: 14px;
    }
    .gt-pill {
        font-size: 10px;
    }
    .btn-guide-main {
        font-size: 12px;
        padding: 16px 36px;
    }
    .gt-free {
        font-size: 11px;
    }
 
    /* WHO WE ARE */
    .who-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
    }
    .who-tag {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    .who-h2 {
        font-size: clamp(36px, 4.5vw, 64px);
    }
    .who-p {
        font-size: 14px;
    }
    .who-philosophy {
        font-size: 18px;
    }
    .wyb-num {
        font-size: 28px;
    }
    .wyb-label {
        font-size: 9px;
    }
 
    /* FOUNDER AMANDA */
    .founder-amanda {
        grid-template-columns: 1fr;
        padding: 80px 24px;
    }
    .fa-text {
        padding: 40px 0 0;
    }
    .fa-visual {
        min-height: 300px;
        width: 100%; /* ← 加这个，覆盖掉 desktop 的 650px */
        max-height: none; /* ← 加这个，取消 desktop 的 max-height */
        height: 400px;
    }
    .fa-gen {
        font-size: 10px;
        letter-spacing: 0.22em;
    }
    .fa-name {
        font-size: 48px;
    }
    .fa-title {
        font-size: 11px;
        letter-spacing: 0.14em;
    }
    .fa-body {
        font-size: 13px;
    }
    .fa-quote {
        font-size: 17px;
    }
    .fa-stat-n {
        font-size: 32px;
    }
    .fa-stat-l {
        font-size: 10px;
        letter-spacing: 0.12em;
    }
 
    /* GEN 2 */
    .gen2 {
        padding-left: 24px;
        padding-right: 24px;
    }
    .gen2-grid {
        grid-template-columns: 1fr;
    }
    .gen2-tag {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    .gen2-h2 {
        font-size: clamp(28px, 4vw, 52px);
    }
    .gen2-p {
        font-size: 13px;
    }
    .gen2-img {
        height: 320px;
    }
    .gi-gen {
        font-size: 10px;
        letter-spacing: 0.18em;
    }
    .gi-name {
        font-size: 32px;
    }
    .gi-title {
        font-size: 11px;
        letter-spacing: 0.12em;
    }
    .gi-body {
        font-size: 13px;
    }
    .gi-stat {
        font-size: 13px;
    }
 
    /* PHILOSOPHY */
    .philosophy {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }
    .phil-tag {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    .phil-h2 {
        font-size: clamp(32px, 4vw, 56px);
    }
    .phil-body {
        font-size: 13px;
    }
    .pp-text strong {
        font-size: 13px;
    }
    .pp-text span {
        font-size: 12px;
    }
    .video-caption {
        font-size: 13px;
    }
 
    /* NUMBERS */
    .numbers {
        padding: 0 24px 60px;
    }
    .numbers-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .num-n {
        font-size: 48px;
    }
    .num-label {
        font-size: 10px;
        letter-spacing: 0.12em;
    }
 
    /* OCCASIONS */
    .occasions {
        padding-left: 0;
        padding-right: 0;
    }
    .occ-head {
        padding: 0 24px 48px;
    }
    .occ-tag {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    .occ-h2 {
        font-size: clamp(28px, 4vw, 52px);
    }
    .occ-scroll {
        padding: 0 24px 4px;
    }
    .occ-card {
        width: 210px;
    }
    .occ-name {
        font-size: 18px;
    }
    .occ-sub {
        font-size: 11px;
    }
 
    /* MEMORY */
    .memory {
        padding-left: 24px;
        padding-right: 24px;
    }
    .memory-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mem-text h2 {
        font-size: clamp(30px, 4vw, 52px);
    }
    .mem-text p {
        font-size: 13px;
    }
    .mf-text {
        font-size: 13px;
    }
    .mem-caption {
        font-size: 14px;
    }
 
    /* TESTIMONIALS */
    .testimonials {
        padding-left: 24px;
        padding-right: 24px;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .testi-h2 {
        font-size: clamp(28px, 4vw, 48px);
    }
    .testi-text {
        font-size: 16px;
    }
    .testi-name {
        font-size: 11px;
        letter-spacing: 0.1em;
    }
 
    /* FINAL CTA */
    .final-cta {
        padding-left: 24px;
        padding-right: 24px;
    }
    .final-cta h2 {
        font-size: clamp(40px, 6vw, 80px);
    }
    .final-cta p {
        font-size: 14px;
    }
 
    /* FOOTER */
    footer {
        padding: 40px 24px;
    }
    .ft-links a {
        font-size: 11px;
        letter-spacing: 0.1em;
    }
    .ft-copy {
        font-size: 11px;
    }
 
}
/* ── MOBILE TYPOGRAPHY — max-width: 480px ── */
@media (max-width: 480px) {
 
    /* NAV */
    .nav-name {
        font-size: 13px;
    }
    .nav-wa {
        font-size: 10px;
        padding: 5px 12px;
        letter-spacing: 0.08em;
    }
    .nav-right {
        gap: 8px;
    }
    .lang-toggle {
        padding: 4px 9px;
    }
    .lang-cn, .lang-en {
        font-size: 10px;
    }
 
    /* HERO (Moment Guide) */
    .hero-h1 {
        font-size: 38px;
        line-height: 1.1;
    }
    .hero-from {
        font-size: 10px;
        letter-spacing: 0.18em;
    }
    .hero-sub {
        font-size: 13px;
        line-height: 1.75;
    }
    .pill {
        font-size: 10px;
        padding: 5px 11px;
        letter-spacing: 0.08em;
    }
    .hero-scroll-hint {
        font-size: 11px;
        letter-spacing: 0.12em;
    }
 
    /* INTRO BAND */
    .intro-band {
        padding: 20px 20px;
    }
    .intro-band p {
        font-size: 15px;
        line-height: 1.6;
    }
 
    /* GUIDE — chapter headers */
    .guide {
        padding: 0 20px 60px;
    }
    .chapter {
        padding: 48px 0;
    }
    .ch-num {
        font-size: 56px;
    }
    .ch-eyebrow {
        font-size: 10px;
        letter-spacing: 0.16em;
    }
    .ch-title {
        font-size: 28px;
        line-height: 1.2;
    }
    .ch-header {
        gap: 16px;
        margin-bottom: 24px;
    }
 
    /* GUIDE — body text */
    .ch-body {
        font-size: 14px;
        line-height: 1.85;
    }
 
    /* INSIGHT BOX */
    .ch-insight {
        padding: 16px 18px;
    }
    .ch-insight-label {
        font-size: 10px;
        letter-spacing: 0.14em;
    }
    .ch-insight-text {
        font-size: 15px;
        line-height: 1.55;
    }
 
    /* TIP CARDS */
    .ch-tip-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .tip-icon {
        font-size: 24px;
    }
    .tip-title {
        font-size: 14px;
    }
    .tip-body {
        font-size: 13px;
        line-height: 1.65;
    }
 
    /* FLOWER OCCASION LIST */
    .ch-occasion-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .occ-item-flower {
        font-size: 24px;
    }
    .occ-item-name {
        font-size: 13px;
    }
    .occ-item-flower-name {
        font-size: 12px;
    }
    .occ-item-meaning {
        font-size: 11px;
        line-height: 1.5;
    }
 
    /* DO / DON'T CARDS */
    .ch-do-dont {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .dd-label {
        font-size: 13px;
        letter-spacing: 0.14em;
    }
    .dd-list li {
        font-size: 13px;
        line-height: 1.65;
    }
 
    /* MEMORY CARD BLOCK */
    .ch-memory {
        padding: 28px 20px;
        border-radius: 10px;
    }
    .ch-memory-title {
        font-size: 28px;
    }
    .ch-memory-body {
        font-size: 13px;
        line-height: 1.8;
    }
    .memory-feature-row {
        gap: 8px;
    }
    .mem-feat {
        min-width: 88px;
        padding: 10px 12px;
    }
    .mem-feat-icon {
        font-size: 22px;
    }
    .mem-feat-title {
        font-size: 13px;
    }
    .mem-feat-sub {
        font-size: 11px;
    }
    .btn-mem {
        font-size: 13px;
        padding: 11px 18px;
        letter-spacing: 0.08em;
    }
 
    /* FINAL CTA (Moment Guide) */
    .final-cta {
        padding: 56px 20px;
    }
    .final-eyebrow {
        font-size: 10px;
        letter-spacing: 0.16em;
    }
    .final-h2 {
        font-size: 36px;
        line-height: 1.15;
    }
    .final-p {
        font-size: 14px;
        line-height: 1.8;
    }
    .btn-wa {
        font-size: 13px;
        padding: 14px 28px;
        letter-spacing: 0.08em;
    }
    .btn-back {
        font-size: 12px;
    }
 
    /* FOOTER */
    footer {
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .ft-b {
        font-size: 13px;
    }
    .ft-c {
        font-size: 10px;
    }
 
    /* PROGRESS DOT NAV — hide on very small screens */
    .progress-nav {
        right: 10px;
        gap: 8px;
    }
    .p-dot {
        width: 5px;
        height: 5px;
    }
}