* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --g: #3a6147;
    --gd: #243d2c;
    --gl: #c8dcd0;
    --gx: #1a2d1f;
    --blush: #ede0d7;
    --blushd: #c9a898;
    --blushl: #f7f0ec;
    --cream: #faf6f2;
    --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-center-btn{
    position:flex;
    justify-content: center;
    font-size:11px;
    font-weight:500;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:rgba(255,255,255,.65);
    text-decoration:none;
    border:0.5px solid rgba(255,255,255,.18);
    padding:6px 16px;
    border-radius:20px;
    transition:all 0.2s;
    white-space:nowrap;
}
.nav-center-btn:hover{
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    font-size: 12px;
    border-color:rgba(255,255,255,.5);
    background-color: rgba(237, 224, 215);
    transform: scale(1.03);
}

.nav-name {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--blushd);
    letter-spacing: 0.05em;
}
.nav-wa {
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.2s;
    background-color: rgba(237, 224, 215);
}
.nav-wa:hover {
    background: rgba(237,224,215,0.15);
    border-color: var(--blushd);
    color: white;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--gd);
    overflow: hidden;
}
.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.22;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1a2d1f 0%, #1a2d1f 25%, rgba(26, 45, 31, 0.4) 65%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px 72px;
    max-width: 860px;
}
.hero-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 24px;
    display: block;
}
.hero-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(56px, 8.5vw, 100px);
    font-weight: 300;
    line-height: 1;
    color: #fff;
    margin-bottom: 28px;
}
.hero-h1 em {
    font-style: italic;
    color: var(--blush);
}
.hero-sub {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 480px;
    margin-bottom: 48px;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blushd);
    color: var(--gd);
    font-size: 15px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-main:hover {
    background: var(--blush);
    transform: translateY(-1px);
    border-radius: 15px;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0.5px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-ghost:hover {
    border-color: var(--blushd);
    color: var(--blush);
    border-radius: 15px;
}

/* ── TICKER ── */
.ticker {
    background: var(--blushd);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}
.ticker-inner {
    display: inline-flex;
    animation: ticker 32s linear infinite;
}
.t-item {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gd);
    padding: 0 28px;
}
.t-dot {
    color: var(--g);
    font-size: 8px;
}
@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── STORY ── */
.story {
    padding: 60px 48px;
    background: var(--cream);
}
.story-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.s-left {
    background: var(--gd);
    padding: 52px 44px;
}
.s-left h3 {
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hint);
    margin-bottom: 15px;
}
.s-left .big {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.s-left .big:hover {
    font-size: 34px;
}

.s-right .big:hover {
    font-size: 34px;
}
.s-left ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.s-left li {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.4);
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}
.s-left li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 0.5px;
    background: var(--blushd);
}
.s-right {
    background: var(--blush);
    padding: 52px 44px;
}
.s-right h3 {
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 15px;
}
.s-right .big {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.4;
    color: var(--gd);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.s-right ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.s-right li {
    font-size: 17px;
    color: var(--mid);
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}
.s-right li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 0.5px;
    background: var(--g);
}

/* ── GUIDE TEASER ── */
.guide-teaser {
    background: var(--gd);
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.gt-bg {
    position: absolute;
    inset: 0;
    background: url("https://bambooflorist.com.my/cdn/shop/files/DSCF6132.jpg?v=1751686477&width=1400") center 40% /
        cover;
    opacity: 0.07;
}
.gt-inner {
    position: relative;
    z-index: 2;
    max-width: 740px;
    margin: 0 auto;
}
.gt-tag {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 15px;
    display: block;
}
.gt-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 15px;
}
.gt-h2 em {
    font-style: italic;
    color: var(--blush);
}
.gt-p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.gt-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.gt-pill {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(237, 224, 215, 0.1);
    border: 0.5px solid rgba(237, 224, 215, 0.25);
    color: rgba(255, 255, 255, 0.45);
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
}
.gt-pill:hover {
    background-color: var(--blushl);
    transform: scale(1.02);
    color: rgba(0, 0, 0, 0.6);
}
.btn-guide-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blush);
    color: var(--gd);
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-guide-main:hover {
    background: #fff;
    transform: scale(1.10);
}
.gt-free {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 14px;
    display: block;
    letter-spacing: 0.08em;
}

/* ── WHO WE ARE ── */
.who {
    background: var(--cream);
    padding: 0;
}

.who-intro {
    padding: 96px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: center;
}
.who-tag {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 10px;
    display: block;
}
.who-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 400;
    color: var(--gd);
    line-height: 1.08;
    margin-bottom: 24px;
}
.who-h2 em {
    font-style: italic;
}
.who-p {
    font-size: 18px;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 20px;
}
.who-line {
    width: 50px;
    height: 1px;
    background: var(--blushd);
    margin: 28px 0;
}
.who-philosophy {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 20px;
    color: var(--g);
    line-height: 1.6;
}
.who-intro-visual {
    position: relative;
}
.who-year-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gd);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: all 0.3s ease;
}

.wyb-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}
.wyb-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blushd);
}
.who-team-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 30px;
    transition: all 0.3s ease;
    filter: saturate(1.1);
}

.who-intro-visual:hover .who-team-img {
    transform: scale(1.05);
}

.who-intro-visual:hover .who-year-badge {
    transform: scale(1.2);
}

/* ── HERITAGE TIMELINE ── */
.heritage {
    background: var(--cream);
    padding: 0 0 96px;
}
.heritage-head {
    text-align: center;
    padding: 0 48px 24px;
    max-width: 720px;
    margin: 0 auto;
}
.heritage-tag {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 14px;
    display: block;
}
.heritage-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 5.5vw, 60px);
    font-weight: 500;
    color: var(--gd);
    line-height: 1.08;
    margin-bottom: 14px;
}
.heritage-h2 em {
    font-style: italic;
}
.heritage-sub {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.8;
}

/* ── HERITAGE INTERACTIVE ── */
.heritage-interactive {
    padding: 0 48px 96px;
    max-width: 1780px;
    margin: 0 auto;
}
.hi-wrap {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    
}
.hi-right {
    padding-left: 56px;
    display: flex;
    align-items: center;
    min-height: 420px;
    max-width: 460px;
}
.hi-text-inner {
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}
.hi-text-inner.on {
    opacity: 1;
    transform: translateY(0);
}
.hi-tag {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blushd);
    display: block;
    margin-bottom: 8px;
}
.hi-year {
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 300;
    color: rgba(58, 97, 71, 0.2);
    line-height: 1;
    margin-bottom: -12px;
}
.hi-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--gd);
    line-height: 1.25;
    margin-bottom: 12px;
}
.hi-body {
    font-size: 18px;
    color: var(--mid);
    line-height: 1.85;
}


/* Part B — Amanda story */
.founder-amanda {
    background: var(--gd);
    padding: 50px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    text-align: right;
}
.fa-text {
    padding: 40px 48px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fa-gen {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 10px;
}
.fa-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}
.fa-name:hover {
    font-size: 75px;
}
.fa-title {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hint);
    margin-bottom: 20px;
}
.fa-body {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    margin-bottom: 20px;
}
.fa-quote {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 18px;
    color: var(--blushd);
    line-height: 1.65;
    border-right: 2px solid var(--blushd);
    padding-right: 20px;
}
.fa-visual {
    position: relative;
    background: var(--gx);
    max-height: 480px;
    overflow: hidden;
    width: 650px;
}
.fa-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 66%;
    opacity: 0.9;
}
.fa-stat {
    position: absolute;
    bottom: 28px;
    left: 42px;
    background: rgba(36, 61, 44, 0.88);
    backdrop-filter: blur(4px);
    border: 0.5px solid rgba(200, 220, 208, 0.2);
    padding: 14px 20px;
}
.fa-stat-n {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    text-align: left;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}
.fa-stat-l {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-top: 4px;
}

/* Part C — Generation 2 */
.gen2 {
    background: var(--blushl);
    padding: 50px 48px;
}
.gen2-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}
.gen2-tag {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 14px;
    display: block;
}
.gen2-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 500;
    color: var(--gd);
    line-height: 1.1;
    margin-bottom: 14px;
}
.gen2-h2 em {
    font-style: italic;
}
.gen2-p {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.8;
}
.gen2-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.gen2-card {
    background: #fff;
    border: 0.5px solid #efe8e2;
    overflow: hidden;
}
.gen2-img {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: var(--gl);
}
.gen2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 0.2s ease;
}

.gen2-info {
    padding: 18px 18px;
}
.gi-gen {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 8px;
}
.gi-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--gd);
    margin-bottom: 2px;
    transition: font-size 0.2s ease;
}

.gen2-card:hover .gi-name {
    font-size: 48px;
}

.gi-title {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 12px;
}
.gi-body {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 16px;
}
.gi-stat {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-style: italic;
    color: var(--blushd);
}

/* Part D — Philosophy */
.philosophy {
    background: var(--gd);
    padding: 96px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1380px;
    margin: 0 auto;
    align-items: center;
    text-align: right;
}
.phil-tag {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 10px;
    display: block;
}
.phil-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    transition: all 0.2s ease;
}
.phil-h2 em {
    font-style: italic;
    color: var(--blush);
}
.phil-h2:hover {
    font-size: 63px;
    font-weight: 500;
}
.phil-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    margin-bottom: 16px;
    text-align: right;
}
.phil-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
}
.pp {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: flex-end;
}

.pp-text strong {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 4px;
    text-align: right;
    transition: all 0.2s ease;
}

.pp-text strong:hover {
    font-size: 25px;
}
.pp-text span {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    text-align: right;
}
.video-wrap {
    position: relative;
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
    background: var(--gx);
    border: 0.5px solid rgba(200, 220, 208, 0.1);
}

.phil-video {
    width: 400px;
    height: 710px;
    object-fit: cover;
}

.video-caption {
    margin-top: 14px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    line-height: 1.6;
}

/* ── NUMBERS ── */
.numbers {
    background: var(--cream);
    padding: 20px 48px;
}
.numbers-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.num-box {
    padding: 24px 24px;
    text-align: center;
    background: #fff;
    border: 0.5px solid #efe8e2;
}
.num-n {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--gd);
    line-height: 1;
}
.num-label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 8px;
}

/* ── OCCASIONS ── */
.occasions {
    background: var(--blushl);
    padding: 80px 48px;
}
.occ-head {
    text-align: center;
    padding: 0 0 40px;
    max-width: 600px;
    margin: 0 auto;
}
.occ-tag {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 10px;
    display: block;
}
.occ-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 500;
    color: var(--gd);
    line-height: 1.1;
}
.occ-h2 em {
    font-style: italic;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px;
    gap: 8px;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}
.b-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px;
    background: var(--gd);
}
.b-card:hover .b-img {
    transform: scale(1.1);
}
.b-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}
.b-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,45,31,0.88) 0%, rgba(26,45,31,0.2) 55%, transparent 100%);
}
.b-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
}
.b-card:hover .b-name{
    font-size: 50px;
    font-weight: 600;
    color: #f2b43d;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.75);
}
.b-card:hover .b-sub{
    font-size: 20px;
}
.b-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    transition: all 0.2s ease;
}
.b-sub {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 5px;
    transition: all 0.2s ease;
}
.b-card--wide {
    grid-column: span 2;
}
.bento-more {
    max-width: 1260px;
    margin: 8px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    padding: 0 20px;
}
.bento-more .b-card {
    height: 300px;
}
.bento-more.open {
    max-height: 460px;
    opacity: 1;
}
.bento-expand {
    text-align: center;
    margin-top: 24px;
}
.bento-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    border: 0.5px solid var(--hint);
    background: transparent;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.bento-btn:hover {
    border-color: var(--g);
    color: var(--blushl);
    background-color: var(--mid);
    transform: scale(1.03);
}
.bento-btn-arrow {
    display: inline-block;
    transition: transform 0.35s ease;
    font-size: 14px;
}
.bento-btn.open .bento-btn-arrow {
    transform: rotate(180deg);
}

/* ── MEMORY ── */
.memory {
    background: var(--gd);
    padding: 88px 48px;
}
.memory-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.mem-text h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 4.75vw, 52px);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.mem-text h2 em {
    font-style: italic;
    color: var(--blush);
}
.mem-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.9;
    margin-bottom: 16px;
}
.mem-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mf {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.mf-icon {
    font-size: 19px;
    flex-shrink: 0;
}
.mf-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}
.mf-text strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}
.mem-visual {
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(200, 220, 208, 0.12);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    transition: all 0.2s ease;
}
.mem-visual:hover {
    transform: scale(1.1);
}
.mem-mock {
    width: 200px;
    height: 300px;
    background: var(--blush);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}
.mm-logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
}
.mm-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mm-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    color: var(--gd);
}
.mm-est {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
}
.mm-qr {
    width: 58px;
    height: 58px;
    background: var(--gd);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}
.imgimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.mm-scan {
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
}
.mem-caption {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    max-width: 220px;
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--cream);
    padding: 50px 48px;
}
.testi-head {
    text-align: center;
    margin-bottom: 48px;
}
.testi-tag {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blushd);
    margin-bottom: 10px;
    display: block;
}
.testi-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 500;
    color: var(--gd);
}
.testi-h2 em {
    font-style: italic;
}
.testi-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.testi {
    background: #fff;
    border: 0.5px solid #efe8e2;
    padding: 28px 24px;
    transition: all 0.3s ease;
}
.testi:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}
.testi-stars {
    color: var(--blushd);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.testi-text {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 18px;
    color: var(--gd);
    line-height: 1.65;
    margin-bottom: 15px;
    font-weight: 500;
}
.testi-name {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
}

/* ── FINAL CTA ── */
.final-cta {
    background: var(--gd);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-bg {
    position: absolute;
    inset: 0;
    background: url("https://bambooflorist.com.my/cdn/shop/files/DSCF6132.jpg?v=1751686477&width=1400") center/cover;
    opacity: 0.07;
}
.final-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.btn-ghost1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0.5px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-ghost1:hover {
    border-color: var(--blushd);
    color: var(--blush);
    border-radius: 15px;
    transform: scale(1.15);
}
.final-cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    color: #fff;
    line-height: 1.04;
    margin-bottom: 15px;
}
.final-cta h2 em {
    font-style: italic;
    color: var(--blush);
}
.final-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.8;
    margin-bottom: 26px;
}
.final-ctas {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-icon {
    width: 30px;
    height: auto;
}

/* ── FOOTER ── */
footer {
    background: var(--gx);
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 0.5px solid rgba(200, 220, 208, 0.08);
}
.ft-logo {
    border-radius: 6px;
    padding: 6px 14px;
}
.ft-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.ft-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
}

/* ── QUIZ MODAL ── */
.quiz-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.quiz-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.quiz-modal {
    width: 100%;
    max-width: 780px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.35s ease;
}
.quiz-overlay.show .quiz-modal {
    transform: translateY(0);
}
.quiz-left {
    position: relative;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.quiz-left-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.quiz-left-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 45, 31, 0.2) 0%, rgba(26, 45, 31, 0.92) 100%);
}
.quiz-left-content {
    position: relative;
    z-index: 2;
    padding: 24px 20px;
}
.quiz-left-tag {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a898;
    display: block;
    margin-bottom: 10px;
}
.quiz-left-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}
.quiz-left-title em {
    font-style: italic;
    color: #ede0d7;
}
.quiz-left-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}
.quiz-right {
    background: #faf6f2;
    padding: 14px 22px 24px;
    display: flex;
    flex-direction: column;
    max-height: 620px;
    overflow-y: auto;
}
.quiz-close {
    align-self: flex-end;
    font-size: 20px;
    color: #5a7263;
    cursor: pointer;
    background: none;
    border: 0.5px solid #c9a898;
    width: 28px;
    height: 28px;
    border-radius: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.2s;
    line-height: 1;
}
.quiz-close:hover {
    background: #c9a898;
    color: white;
}
.quiz-progress {
    height: 2px;
    background: #e2d8d0;
    border-radius: 1px;
    margin-bottom: 20px;
}
.quiz-progress-fill {
    height: 100%;
    background: #c9a898;
    border-radius: 1px;
    width: 0%;
    transition: width 0.4s ease;
}
.quiz-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.qz-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a898;
    margin-bottom: 8px;
    display: block;
}
.qz-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    color: #243d2c;
    line-height: 1.25;
    margin-bottom: 12px;
    font-weight: 450;
}
.qz-note {
    font-size: 14px;
    color: #9eb5a5;
    margin-bottom: 12px;
    font-style: italic;
}
.qz-opts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.qz-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 0.5px solid #e2d8d0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #5a7263;
    transition: all 0.2s;
    background: #fff;
}
.qz-opt:hover,
.qz-opt.on {
    border-color: #c9a898;
    background: #fdf7f4;
    color: #243d2c;
    transform: scale(1.05);
}
.qz-opt-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid #c9a898;
    flex-shrink: 0;
    transition: background 0.2s;
}
.qz-opt.on .qz-opt-dot {
    background: #c9a898;
}
.qz-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
}
.qz-back {
    background: none;
    border: 0.5px solid #e2d8d0;
    color: #9eb5a5;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s;
}
.qz-back:hover {
    border-color: #c9a898;
    color: #5a7263;
}
.qz-next {
    background: #243d2c;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.qz-next:hover {
    background: #3a6147;
}
.qz-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.qz-input {
    width: 100%;
    padding: 10px 12px;
    border: 0.5px solid #e2d8d0;
    border-radius: 4px;
    font-size: 13px;
    color: #243d2c;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.qz-input:focus {
    border-color: #c9a898;
}
.qz-input::placeholder {
    color: #c9a898;
}
.qz-submit {
    background: #243d2c;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    margin-bottom: 8px;
}
.qz-submit:hover {
    background: #3a6147;
}
.qz-privacy {
    font-size: 10px;
    color: #9eb5a5;
    text-align: center;
    letter-spacing: 0.05em;
}
.qz-error {
    font-size: 14px;
    color: red;
    font-weight: 450;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.qz-step-counter {
    font-size: 10px;
    color: #9eb5a5;
    text-align: right;
    margin-bottom: 4px;
    letter-spacing: 0.08em;
}


/* ── QUIZ SUMMARY ── */
.qz-summary-b {
    background: #fff;
    border: 0.5px solid #e2d8d0;
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
}
.qz-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.qz-acc-header:hover {
    background: #faf6f2;
}
.qz-acc-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a898;
}
.qz-acc-toggle {
    font-size: 14px;
    color: #c9a898;
    transition: transform 0.3s;
}
.qz-acc-toggle.open {
    transform: rotate(180deg);
}
.qz-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.qz-acc-body.open {
    max-height: 298px;
}
.qz-summary-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 14px;
    border-top: 0.5px solid #f0ebe6;
}
.qz-summary-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9eb5a5;
    flex-shrink: 0;
    width: 44px;
    padding-top: 2px;
}
.qz-summary-val {
    font-size: 12px;
    color: #243d2c;
    line-height: 1.5;
    flex: 1;
}
.qz-summary-edit {
    font-size: 12px;
    color: #c9a898;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: underline;
    padding-top: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.qz-summary-edit:hover {
    color: #3a6147;
}

/* ── QUIZ REOPEN ── */
.quiz-reopen {
    text-align: center;
    padding: 0 20px 20px 20px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.quiz-reopen-text {
    font-size: 18px;
    color: var(--mid);
    margin-bottom: 8px;
    line-height: 1.7;
}
.quiz-reopen-btn {
    background-color: rgba(90,114,99);
    color: white;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 12px 32px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}
.quiz-reopen-btn:hover {
    color: var(--mid);
    border: 0.5px solid var(--hint);
    background: transparent;
    font-size: 17px;
}
.rp-type-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    display: block;
    margin-bottom: 6px;
}
.rp-type-sub {
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    display: block;
    letter-spacing: 0.08em;
}
/* ── FLOWER REPORT ── */
.rp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.rp-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.rp-modal {
    background: #faf6f2;
    max-width: 680px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.35s ease;
}
.rp-overlay.show .rp-modal {
    transform: translateY(0);
}
.rp-head {
    background: #243d2c;
    padding: 28px 24px 22px;
}
.rp-head-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a898;
    display: block;
    margin-bottom: 10px;
}
.rp-type-en {
    font-family: "Cormorant Garamond", serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}
.rp-type-cn {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    display: block;
    margin-bottom: 6px;
}
.rp-head-div {
    width: 28px;
    height: 1px;
    background: #c9a898;
    margin-bottom: 8px;
}
.rp-tagline-cn {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    display: block;
    margin-bottom: 3px;
}
.rp-tagline-en {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
    display: block;
}
.rp-body {
    padding: 20px 22px;
}
.rp-section {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 0.5px solid #efe8e2;
}
.rp-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.rp-sec-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a898;
    display: block;
    margin-bottom: 10px;
}
.rp-desc-cn {
    font-size: 14px;
    color: #243d2c;
    line-height: 1.9;
    margin-bottom: 8px;
}
.rp-desc-en {
    font-size: 12px;
    color: #9eb5a5;
    line-height: 1.8;
    font-style: italic;
}
.rp-products {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rp-product {
    display: flex;
    gap: 0;
    border: 0.5px solid #e2d8d0;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s ease;
}
.rp-product:hover {
    border-color: #c9a898;
    transform: scale(1.03);
}
.rp-product-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e2d8d0;
}
.rp-product-info {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.rp-product-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    color: #243d2c;
    font-weight: 500;
}
.rp-product-price {
    font-size: 14px;
    font-weight: 400;
    color: #ff0000;
}
.rp-product-arrow {
    font-size: 10px;
    color: #c9a898;
    margin-top: 2px;
}
.rp-budget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7f0ec;
    padding: 11px 14px;
    border-radius: 4px;
}
.rp-budget-label {
    font-size: 14px;
    color: #41704f;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.rp-budget-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 550;
    color: #243d2c;
}
.rp-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rp-summary-row {
    display: flex;
    gap: 8px;
    font-size: 13px;
}
.rp-summary-key {
    color: #c9a898;
    flex-shrink: 0;
    width: 30px;
    font-weight: 500;
}
.rp-summary-val {
    color: #5a7263;
    line-height: 1.5;
}
.rp-cta-main {
    display: block;
    background: #243d2c;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 7px;
    transition: all 0.2s ease;
}
.rp-cta-main:hover {
    background: #5a8d6a;
    color: white;
    border-radius: 30px;
    transform: scale(1.02);
}
.rp-cta-sub {
    display: block;
    border: 0.5px solid #e2d8d0;
    color: #5b6f61;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
}
.rp-cta-sub:hover {
    background-color: #c9a898;
    color: #1c3423;
}
.rp-foot {
    background: #1a2d1f;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rp-foot-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}
.rp-foot-year {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.1em;
}

.qz-opt-wrap {
    display: flex;
    flex-direction: column;
}
.qz-sub-wrap {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
    opacity: 0;
    margin-left: 16px;
}
.qz-sub-wrap.open {
    max-height: 400px;
    opacity: 1;
}
.qz-sub-label {
    font-size: 12px;
    color: #93776a;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 8px 0 5px;
    display: block;
    border-top: 0.5px dashed #e2d8d0;
    margin-top: 4px;
}
.qz-sub-opts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 6px;
}
.qz-sub-opt {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 10px;
    border: 0.5px solid #ede8e2;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #5a7263;
    background: #fff;
    transition: all 0.2s;
    line-height: 1.5;
}
.qz-sub-opt:hover,
.qz-sub-opt.on {
    border-color: #c9a898;
    background: #fdf7f4;
    color: #243d2c;
}
.qz-sub-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid #c9a898;
    flex-shrink: 0;
    margin-top: 3px;
    transition: background 0.2s;
}
.qz-sub-opt.on .qz-sub-dot {
    background: #c9a898;
}

.qz-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.qz-field-label {
    font-size: 11px;
    color: #5a7263;
    letter-spacing: 0.05em;
}
.qz-required {
    color: #c9a898;
    font-weight: 700;
    margin-right: 2px;
}
.qz-contact-error {
    background: #fdf7f4;
    border: 0.5px solid #c9a898;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    color: #c9a898;
    margin-bottom: 8px;
    text-align: center;
}
.qz-cover{display:none;}

/* ================================================================
   MOBILE — 锁死不动，永远不要修改这个 block
   ================================================================ */
@media (max-width: 600px) {
    .quiz-modal {
        grid-template-columns: 1fr;
    }
    .quiz-left {
        display: none;
    }
    .quiz-overlay {
        padding: 16px;
    }
}
@media (max-width: 768px) {
    .heritage-interactive {
        display: none;
    }
    .heritage-mobile {
        display: block;
    }
}
@media (min-width: 769px) {
    .heritage-mobile {
        display: none;
    }
}

@media (max-width: 900px) {
    .timeline {
        padding: 0 24px;
    }
    .tl-era {
        margin-left: 0;
        border-left: none;
        border-bottom: 0.5px solid rgba(58, 97, 71, 0.15);
        padding-left: 0;
        padding-bottom: 40px;
    }
    .tl-era--reverse {
        margin-right: 0;
        border-right: none;
        padding-right: 0;
    }
    .tl-era-label {
        position: static;
        text-align: left;
        margin-bottom: 20px;
        width: auto;
    }
    .tl-era--reverse .tl-era-label {
        text-align: left;
    }
    .tl-era::before {
        display: none;
    }
    .tl-photos--3 {
        grid-template-columns: 1fr 1fr;
    }
    .tl-photos--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .occasions {
        padding: 60px 24px;
    }
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .b-card--wide {
        grid-column: span 2;
    }
    .bento-grid .b-card {
        height: 200px;
    }
    .bento-more {
        grid-template-columns: 1fr 1fr;
    }
    .bento-more .b-card {
        height: 200px;
    }
    .b-name {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .b-card--wide {
        grid-column: span 1;
    }
    .bento-grid .b-card {
        height: 180px;
    }
    .bento-more {
        grid-template-columns: 1fr;
    }
    .bento-more .b-card {
        height: 180px;
    }
    .b-name {
        font-size: 20px;
    }
}

@media (max-width: 560px) {
    .tl-photos--2,
    .tl-photos--3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* NAV */
    nav {
        padding: 0 20px;
    }
    .nav-name {
        display: none;
    }
    .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 {
        font-size: 10px;
        letter-spacing: 0.22em;
    }
    .s-left .big {
        font-size: 28px;
    }
    .s-left li {
        font-size: 13px;
    }
    .s-right h3 {
        font-size: 10px;
        letter-spacing: 0.22em;
        text-align: right;
    }
    .s-right .big {
        font-size: 28px;
        text-align: right;
    }
    .s-right li {
        font-size: 13px;
        text-align: right;
    }
    .s-right ul {
        align-items: flex-end;
    }

    /* 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: 40px 24px;
        text-align: center;
    }
    .who-tag {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    .who-h2 {
        font-size: clamp(36px, 4.5vw, 64px);
    }
    .who-p {
        font-size: 14px;
    }
    .who-line {
        width: 50px;
        height: 1px;
        background: var(--blushd);
        margin: 28px auto;
    }
    .who-philosophy {
        font-size: 18px;
    }
    .wyb-num {
        font-size: 28px;
    }
    .wyb-label {
        font-size: 9px;
    }

    /* FOUNDER AMANDA */
    .founder-amanda {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        text-align: center;
    }
    .fa-text {
        padding: 10px 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;
        border: none;
        margin-bottom: 20px;
    }
    .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;
        padding-top: 40px;
    }
    .gen2-grid {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }
    .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: 30px 24px;
        text-align: center;
    }
    .phil-tag {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
    .phil-h2 {
        font-size: clamp(32px, 4vw, 56px);
    }
    .phil-body {
        font-size: 13px;
        text-align: center;
    }
    .pp {
        justify-content: center; /* ← 加这个 */
    }
    .pp-text {
        width: 100%;
        text-align: center;
    }
    .pp-text strong {
        font-size: 13px;
        text-align: center;
    }
    .pp-text span {
        font-size: 12px;
        text-align: center;
    }
    .video-wrap {
        padding-bottom: 0;
        height: auto;
        background: transparent;
        margin-top: -60px;
    }
    .phil-video {
        width: 100%;
        height: 680px;
        position: static; /* 加这个 */
    }

    .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;
        justify-content: flex-start;
    }
    .occ-card {
        width: 160px;
    }
    .occ-img {
        height: 280px;
    }
    .occ-name {
        font-size: 18px;
    }
    .occ-sub {
        font-size: 11px;
    }

    /* MEMORY */
    .memory {
        padding: 30px 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;
    }
    .qz-cover{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:32px 20px;min-height:320px;gap:16px;}
    .qz-cover-tag{font-size:9px;font-weight:500;letter-spacing:.22em;text-transform:uppercase;color:#c9a898;}
    .qz-cover-title{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:300;color:#243d2c;line-height:1.2;}
    .qz-cover-desc{font-size:13px;color:#9eb5a5;line-height:1.8;}
    .qz-cover-btn{background:#243d2c;color:#fff;font-size:12px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;padding:12px 28px;border-radius:20px;border:none;cursor:pointer;margin-top:8px;}
}
/* ── LANGUAGE TOGGLE ── */
.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);
}

/* EN page — active state flipped */
.lang-toggle.en-active .lang-cn {
    color: rgba(255,255,255,0.35);
}
.lang-toggle.en-active .lang-en {
    color: var(--blush);
}

/* Page fade transition */
body {
    animation: pageFadeIn 0.4s ease;
}
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .nav-right {
        gap: 10px;
    }
    .lang-toggle {
        padding: 4px 9px;
    }
    .lang-cn, .lang-en {
        font-size: 10px;
    }
}

/*-- Heritage Mobile Timeline --*/
.hm-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 24px 60px;
}
.hm-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 0.5px solid rgba(58, 97, 71, 0.12);
}
.hm-item:last-child {
    border-bottom: none;
}
.hm-year {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--g);
    line-height: 1;
    padding-top: 4px;
}
.hm-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--gd);
    margin-bottom: 6px;
    line-height: 1.3;
}
.hm-body {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 12px;
}
.hm-photos {
    display: flex;
    gap: 8px;
}
.hm-photos img {
    width: calc(50% - 4px);
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
}

/* ── LIGHTBOX ── */
.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lb-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.lb-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 3px;
}
.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.lb-close:hover {
    color: #fff;
}
