
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --teal-deep: #1A6B6B;
      --teal-mid: #2A8A8A;
      --teal-light: #8BBCB5;
      --teal-pale: #D6EEEB;
      --amber: #E8914A;
      --amber-dark: #C97030;
      --off-white: #FAF8F5;
      --warm-white: #FFFFFF;
      --text-dark: #1C2B2B;
      --text-mid: #3D5454;
      --text-light: #6B8888;
      --border: #D4E8E6;
      --shadow: rgba(26, 107, 107, 0.12);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--off-white); color: var(--text-dark); line-height: 1.6; font-size: 16px; padding-bottom: 76px; }

    /* NAV */
    nav { position: sticky; top: 0; z-index: 100; background: rgba(250,248,245,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); padding: 14px 40px; display: flex; align-items: center; justify-content: space-between; }
    .nav-brand { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 600; color: var(--teal-deep); letter-spacing: -0.01em; }
    .nav-brand span { color: var(--amber); }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--teal-deep); }
    .nav-cta { background: var(--amber); color: white !important; padding: 8px 18px; border-radius: 50px; font-weight: 600 !important; transition: background 0.2s !important; }
    .nav-cta:hover { background: var(--amber-dark) !important; }

    /* HAMBURGER */
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.25s; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* MOBILE NAV DRAWER */
    .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(250,248,245,0.98); backdrop-filter: blur(16px); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 0; }
    .mobile-menu.open { display: flex; }
    .mobile-menu ul { list-style: none; text-align: center; padding: 0; }
    .mobile-menu ul li { border-bottom: 1px solid var(--border); }
    .mobile-menu ul li:last-child { border-bottom: none; }
    .mobile-menu ul a { display: block; padding: 20px 40px; font-size: 1.2rem; font-weight: 500; color: var(--text-dark); text-decoration: none; }
    .mobile-menu ul a:hover { color: var(--teal-deep); }
    .mobile-menu .mobile-cta { margin-top: 24px; background: var(--amber); color: white; font-weight: 700; font-size: 1.1rem; padding: 16px 40px; border-radius: 50px; text-decoration: none; }

    /* HERO */
    .hero { min-height: 92vh; background: linear-gradient(155deg, #0F4444 0%, #1A6B6B 45%, #2A8A8A 100%); display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding: 80px 24px; }
    .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(232,145,74,0.15) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(139,188,181,0.2) 0%, transparent 50%); }
    .hero-content { position: relative; z-index: 2; max-width: 780px; }
    .hero-eyebrow { display: inline-block; background: rgba(232,145,74,0.2); border: 1px solid rgba(232,145,74,0.5); color: #F5C490; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 28px; }
    .hero h1 { font-family: 'Lora', serif; font-size: clamp(2.4rem,6vw,4.2rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em; }
    .hero h1 em { font-style: italic; color: #F5C490; }
    .hero-sub { font-size: clamp(1rem,2.2vw,1.2rem); color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 44px; font-weight: 300; line-height: 1.7; }
    .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary { display: inline-block; background: var(--amber); color: white; font-weight: 700; font-size: 1rem; padding: 16px 36px; border-radius: 50px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(232,145,74,0.4); animation: pulse-cta 2.5s ease-in-out infinite; }
    .btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,145,74,0.5); animation: none; }
    @keyframes pulse-cta { 0%, 100% { box-shadow: 0 4px 20px rgba(232,145,74,0.4); } 50% { box-shadow: 0 4px 32px rgba(232,145,74,0.75), 0 0 0 6px rgba(232,145,74,0.15); } }
    .btn-secondary { display: inline-block; background: rgba(255,255,255,0.12); color: white; font-weight: 500; font-size: 1rem; padding: 16px 36px; border-radius: 50px; text-decoration: none; border: 1px solid rgba(255,255,255,0.3); transition: all 0.25s; }
    .btn-secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
    .hero-pulse { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; opacity: 0.25; }
    .pulse-path { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: drawPulse 3s ease forwards 0.5s; }
    @keyframes drawPulse { to { stroke-dashoffset: 0; } }
    .hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .hero-scroll .arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.4); border-bottom: 2px solid rgba(255,255,255,0.4); transform: rotate(45deg); animation: bounce 1.6s ease infinite; }
    @keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }

    /* URGENCY BAR */
    .urgency-bar { background: var(--teal-deep); color: white; text-align: center; padding: 14px 24px; font-size: 0.9rem; }
    .urgency-bar strong { color: #F5C490; }

    /* STATS BAR */
    .stats-bar { background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 28px 24px; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
    .stat-item { display: flex; flex-direction: column; align-items: center; padding: 8px 36px; text-align: center; }
    .stat-num { font-family: 'Lora', serif; font-size: 2rem; font-weight: 700; color: var(--teal-deep); line-height: 1; margin-bottom: 4px; }
    .stat-label { font-size: 0.78rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase; max-width: 130px; line-height: 1.4; }
    .stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

    /* SECTIONS */
    section { padding: 80px 24px; }
    .container { max-width: 900px; margin: 0 auto; }
    .section-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 12px; }
    .section-title { font-family: 'Lora', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--text-dark); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; }
    .section-title em { font-style: italic; color: var(--teal-deep); }

    /* STORY */
    .story-section { background: var(--warm-white); }
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .story-photo-wrap { position: relative; padding-bottom: 24px; }
    .story-photo { width: 100%; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px var(--shadow); }
    .story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; display: block; }
    .story-badge { position: absolute; bottom: 0; right: -8px; background: var(--amber); color: white; border-radius: 12px; padding: 14px 18px; font-size: 0.8rem; font-weight: 600; box-shadow: 0 8px 24px rgba(232,145,74,0.35); line-height: 1.4; text-align: center; }
    .story-badge .big { font-size: 1.5rem; font-weight: 700; display: block; }
    .story-text .lead { font-family: 'Lora', serif; font-size: 1.2rem; font-style: italic; color: var(--teal-deep); margin-bottom: 24px; line-height: 1.7; border-left: 3px solid var(--amber); padding-left: 20px; }
    .story-text p { font-size: 1rem; color: var(--text-mid); margin-bottom: 18px; line-height: 1.8; }
    .story-text p strong { color: var(--text-dark); }

    /* PHOTO STRIP */
    .photos-section { background: var(--off-white); }
    .photo-feature { width: 100%; aspect-ratio: 16/7; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px var(--shadow); margin-top: 48px; margin-bottom: 8px; }
    .photo-feature img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
    .photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
    .photo-card { display: flex; flex-direction: column; gap: 12px; }
    .photo-frame { width: 100%; aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px var(--shadow); }
    .photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
    .photo-caption { font-size: 0.85rem; color: var(--text-light); text-align: center; font-weight: 500; line-height: 1.4; }

    /* VIDEO SECTION */
    .video-section { background: var(--off-white); padding: 64px 24px; text-align: center; }
    .video-placeholder { max-width: 680px; margin: 32px auto 0; background: var(--warm-white); border: 2px dashed var(--border); border-radius: 20px; padding: 60px 40px; display: flex; flex-direction: column; align-items: center; gap: 16px; color: var(--text-light); }
    .video-placeholder .play-icon { width: 64px; height: 64px; background: var(--teal-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .video-placeholder .play-icon svg { margin-left: 4px; }
    .video-placeholder h3 { font-family: 'Lora', serif; font-size: 1.2rem; color: var(--text-mid); font-weight: 600; }
    .video-placeholder p { font-size: 0.9rem; max-width: 400px; line-height: 1.6; }
    .video-embed { max-width: 680px; margin: 32px auto 0; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px var(--shadow); aspect-ratio: 16/9; }
    .video-embed iframe { width: 100%; height: 100%; border: none; display: block; }

    /* PKD */
    .pkd-section { background: linear-gradient(135deg, #F0FAF9 0%, var(--off-white) 100%); }
    .pkd-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 48px; }
    .pkd-card { background: white; border-radius: 16px; padding: 28px 24px; border: 1px solid var(--border); box-shadow: 0 4px 16px var(--shadow); }
    .pkd-card .icon { width: 48px; height: 48px; background: var(--teal-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.4rem; }
    .pkd-card h3 { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
    .pkd-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

    /* HOW TO HELP */
    .help-section { background: var(--warm-white); }
    .steps-wrapper { margin-top: 48px; display: flex; flex-direction: column; gap: 0; position: relative; }
    .steps-wrapper::before { content: ''; position: absolute; left: 36px; top: 60px; bottom: 60px; width: 2px; background: linear-gradient(to bottom, var(--teal-light), var(--teal-pale)); }
    .step { display: flex; gap: 28px; align-items: flex-start; padding: 32px 0; }
    .step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--teal-deep); color: white; font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 20px var(--shadow); position: relative; z-index: 1; }
    .step-num.amber { background: var(--amber); }
    .step-body { padding-top: 12px; flex: 1; }
    .step-body h3 { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
    .step-body p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 12px; }
    .step-body .note { background: #FFF7EF; border: 1px solid #F5D5B5; border-radius: 10px; padding: 14px 18px; font-size: 0.88rem; color: #8B5A2B; line-height: 1.6; }
    .step-body .note strong { color: #6B3E1A; }
    .step-cta { display: inline-block; margin-top: 16px; background: var(--teal-deep); color: white; font-weight: 700; font-size: 1rem; padding: 14px 30px; border-radius: 50px; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 16px var(--shadow); }
    .step-cta:hover { background: #0F4444; transform: translateY(-2px); }
    .step-cta.amber-btn { background: var(--amber); box-shadow: 0 4px 16px rgba(232,145,74,0.3); }
    .step-cta.amber-btn:hover { background: var(--amber-dark); }
    .voucher-box { background: linear-gradient(135deg, var(--teal-deep) 0%, #0F5555 100%); border-radius: 20px; padding: 48px 40px; color: white; text-align: center; margin-top: 48px; box-shadow: 0 20px 60px var(--shadow); position: relative; overflow: hidden; }
    .voucher-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(139,188,181,0.15); }
    .voucher-box h2 { font-family: 'Lora', serif; font-size: 1.9rem; font-weight: 700; margin-bottom: 16px; }
    .voucher-box h2 em { font-style: italic; color: #F5C490; }
    .voucher-box p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }

    /* FAQ */
    .faq-section { background: linear-gradient(135deg, #F0FAF9 0%, var(--off-white) 100%); }
    .faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
    .faq-item { background: white; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px var(--shadow); }
    .faq-q { width: 100%; background: none; border: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; text-align: left; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text-dark); transition: color 0.2s; }
    .faq-q:hover { color: var(--teal-deep); }
    .faq-q .toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--teal-pale); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; transition: transform 0.25s, background 0.2s; line-height: 1; }
    .faq-item.open .faq-q .toggle { transform: rotate(45deg); background: var(--teal-deep); color: white; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
    .faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }
    .faq-a p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; }

    /* SHARE */
    .share-section { background: var(--teal-pale); text-align: center; }
    .share-section .sub { color: var(--text-mid); font-size: 1rem; margin-bottom: 36px; }
    .share-tip-only { background: white; border-radius: 12px; padding: 14px 20px; max-width: 540px; margin: 0 auto 32px; font-size: 0.9rem; color: var(--text-mid); text-align: left; border: 1px solid var(--border); }
    .share-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
    .share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
    .share-wa { background: #25D366; color: white; }
    .share-wa:hover { background: #1fba58; transform: translateY(-2px); }
    .share-sms { background: #34C759; color: white; }
    .share-sms:hover { background: #2DAF4D; transform: translateY(-2px); }
    .share-email { background: #F0F4FF; color: #4040C0; }
    .share-email:hover { background: #DDE4FF; transform: translateY(-2px); }
    .share-fb { background: #1877F2; color: white; }
    .share-fb:hover { background: #0D65D9; transform: translateY(-2px); }
    .share-ig { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); color: white; }
    .share-ig:hover { opacity: 0.88; transform: translateY(-2px); }
    .share-x { background: #000; color: white; }
    .share-x:hover { background: #222; transform: translateY(-2px); }
    .share-copy { background: var(--teal-pale); color: var(--teal-deep); border: 1px solid var(--teal-light) !important; }
    .share-copy:hover { background: #B8DFDA; transform: translateY(-2px); }

    /* QR section */
    .qr-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 16px; background: var(--off-white); border: 1px solid var(--border); border-radius: 20px; padding: 32px 40px; box-shadow: 0 8px 30px var(--shadow); }
    .qr-wrap img { width: 180px; height: 180px; border-radius: 8px; }
    .qr-label { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
    .qr-sub { font-size: 0.82rem; color: var(--text-light); }
    .qr-download { display: inline-block; margin-top: 4px; background: var(--teal-deep); color: white; font-weight: 600; font-size: 0.85rem; padding: 10px 22px; border-radius: 50px; text-decoration: none; transition: all 0.2s; }
    .qr-download:hover { background: #0F4444; transform: translateY(-1px); }

    .ig-tip { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 12px 20px; max-width: 500px; margin: 0 auto 20px; font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
    .ig-tip strong { color: var(--text-dark); }

    .copied-toast { display: none; margin-top: 16px; background: var(--teal-pale); color: var(--teal-deep); font-weight: 600; font-size: 0.9rem; padding: 10px 22px; border-radius: 50px; opacity: 0; transition: opacity 0.3s; }
    .copied-toast.show { opacity: 1; }

    /* STICKY CTA BAR */
    .sticky-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(15, 68, 68, 0.97); backdrop-filter: blur(12px); padding: 12px 24px 16px; z-index: 200; gap: 10px; border-top: 1px solid rgba(255,255,255,0.12); transform: translateY(100%); transition: transform 0.35s ease; justify-content: center; align-items: center; }
    .sticky-cta.visible { transform: translateY(0); }
    .sticky-screening { background: var(--amber); color: white; font-weight: 700; font-size: 0.95rem; padding: 13px 28px; border-radius: 50px; text-decoration: none; text-align: center; white-space: nowrap; }
    .sticky-share-btn { background: rgba(255,255,255,0.15); color: white; font-weight: 600; font-size: 0.95rem; padding: 13px 22px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; font-family: 'Inter', sans-serif; white-space: nowrap; }

    /* FOOTER */
    footer { background: var(--teal-deep); color: rgba(255,255,255,0.7); text-align: center; padding: 40px 24px; font-size: 0.85rem; }
    footer strong { color: white; }
    footer a { color: #8BBCB5; text-decoration: none; }
    footer a:hover { color: white; }
    .footer-heart { font-size: 1.2rem; margin-bottom: 12px; display: block; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav { padding: 12px 20px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .story-grid { grid-template-columns: 1fr; gap: 40px; }
      .pkd-grid { grid-template-columns: 1fr; }
      .steps-wrapper::before { left: 28px; }
      .step-num { width: 56px; height: 56px; font-size: 1.2rem; }
      .voucher-box { padding: 36px 24px; }
      section { padding: 60px 20px; }
      .photo-grid { grid-template-columns: 1fr; gap: 16px; }
      .stat-item { padding: 8px 16px; }
      .stat-num { font-size: 1.5rem; }
      .stat-divider { height: 28px; }
      body { padding-bottom: 76px; }
    }

    @media (max-width: 480px) {
      .stats-bar { gap: 4px; }
      .stat-divider { display: none; }
      .stat-item { width: 50%; border-bottom: 1px solid var(--border); }
      .share-buttons { gap: 8px; }
      .share-btn { padding: 10px 14px; font-size: 0.82rem; }
    }

    /* SCROLL ANIM */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
