stest/* =============================================
   KOPI SEDULUR — style.css
   Aesthetic: Warm Premium × Rustic Editorial
============================================= */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream:       #f5ede0;
    --cream-dark:  #ecdcca;
    --brown-light: #c68b59;
    --brown:       #a0612f;
    --brown-dark:  #7a4420;
    --espresso:    #2a1508;
    --dark:        #1a0e06;
    --white:       #fff;
    --grey:        #888;
    --text:        #2a1508;
    --radius:      24px;
    --shadow:      0 20px 60px rgba(42,21,8,0.10);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { width: 100%; display: block; }

.container {
    width: 90%;
    max-width: 1240px;
    margin: auto;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 14, 6, 0.95);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 52px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--brown-light);
    transition: width 0.3s;
}

.nav-link:hover { color: var(--brown-light); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--brown-light);
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--brown);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--espresso);
    z-index: 998;
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 18px;
    transition: color 0.3s;
}

.mobile-menu a:last-child {
    color: white;
    background: var(--brown-light);
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
}

.mobile-menu a:hover { color: var(--brown-light); }

/* === HERO === */
.hero {
    min-height: 100vh;
    position: relative;
    background: url('assets/background.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(18,8,2,0.82) 0%, rgba(42,21,8,0.55) 60%, rgba(0,0,0,0.25) 100%);
}

.hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--brown-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 86px;
    line-height: 1.0;
    color: white;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-title em {
    font-style: italic;
    color: var(--brown-light);
}

.hero-sub {
    color: rgba(255,255,255,0.9);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    max-width: 560px;
    margin-bottom: 44px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 50px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 100%;
    max-width: 320px;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.4));
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.hero-scroll-hint span {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brown-light), var(--brown));
    color: white;
    box-shadow: 0 8px 24px rgba(198,139,89,0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(198,139,89,0.45);
}

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn-ghost {
    color: var(--brown);
    background: transparent;
    border: 1.5px solid var(--brown-light);
}

.btn-ghost:hover {
    background: var(--brown-light);
    color: white;
}

/* === STATS BAR === */
.stats-bar {
    background: var(--espresso);
    padding: 28px 0;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 48px;
}

.stat-item strong {
    color: var(--brown-light);
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-item span {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* === SECTIONS === */
.section { padding: 120px 0; }

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    color: var(--brown);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.light-label { color: var(--brown-light); }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.15;
    color: var(--espresso);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--brown);
}

.section-desc {
    color: var(--grey);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === FEATURES === */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(42,21,8,0.14);
}

/* Area foto keunggulan */
.feature-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.feature-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-photo img {
    transform: scale(1.06);
}

/* Teks di bawah foto */
.feature-body {
    padding: 28px 24px 32px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--espresso);
    line-height: 1.3;
}

.feature-card p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.7;
}

.feature-line {
    width: 36px; height: 3px;
    background: var(--brown-light);
    border-radius: 2px;
    margin: 20px auto 0;
}

/* === STORY === */
.story-section {
    background: var(--espresso);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.story-bg-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(198,139,89,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.story-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 900px;
    margin: auto;
}

.story-label-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 6px;
    flex-shrink: 0;
}

.story-vertical-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--brown-light), transparent);
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
}

.story-title em {
    font-style: italic;
    color: var(--brown-light);
}

.story-text {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 2;
    margin-bottom: 28px;
}

.story-quote {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    line-height: 1.9;
    font-style: italic;
    padding-left: 24px;
    border-left: 3px solid var(--brown-light);
}

/* === PRODUK === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(42,21,8,0.16);
}

.product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #f6ede0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 16px;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img { transform: scale(1.08); }

.product-overlay {
    position: absolute; inset: 0;
    background: rgba(26,14,6,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-overlay { opacity: 1; }

.overlay-btn {
    background: var(--brown-light);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(12px);
    transition: transform 0.3s;
}

.product-card:hover .overlay-btn { transform: translateY(0); }

.product-body { padding: 30px; }

.product-tag {
    display: inline-block;
    background: #fdf0e4;
    color: var(--brown);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--espresso);
}

.product-body p {
    color: var(--grey);
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.7;
}

.product-kemasan { margin-bottom: 24px; }

.kemasan-label {
    font-size: 13px;
    color: var(--grey);
    display: block;
    margin-bottom: 8px;
}

.kemasan-options { display: flex; gap: 8px; }

.kemasan-chip {
    background: #f6f1eb;
    color: var(--brown);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid #e8d8c8;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0e8de;
}

.price {
    color: var(--brown);
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.mini-btn {
    background: var(--espresso);
    color: white;
    padding: 12px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.mini-btn:hover { background: var(--brown); }

/* === EDUKASI === */
.edukasi-section {
    background: var(--espresso);
    padding: 120px 0;
}

.edukasi-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.edukasi-title {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    color: white;
    line-height: 1.15;
    margin: 16px 0 24px;
}

.edukasi-title em {
    color: var(--brown-light);
    font-style: italic;
}

.edukasi-desc {
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    line-height: 2;
    margin-bottom: 24px;
}

.edukasi-closing {
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    font-style: italic;
}

.edukasi-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edukasi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 26px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(30px);
}

.edukasi-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.edukasi-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(198,139,89,0.3);
    transform: translateX(-6px);
}

.check-icon {
    color: var(--brown-light);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(198,139,89,0.12);
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edukasi-card h4 {
    color: white;
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 600;
}

.edukasi-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
}

/* === TESTIMONI === */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    background: white;
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.testi-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testi-card:hover { transform: translateY(-8px); }

.featured-testi {
    background: linear-gradient(135deg, var(--espresso), #4a2f24);
    transform: scale(1.04);
}

.featured-testi:hover { transform: scale(1.04) translateY(-8px); }

.featured-testi .testi-text { color: rgba(255,255,255,0.85); }

.featured-testi .testi-author strong { color: white; }

.featured-testi .testi-author span { color: rgba(255,255,255,0.5); }

.testi-stars {
    font-size: 18px;
    margin-bottom: 18px;
}

.testi-text {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--brown-light), var(--brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    color: var(--espresso);
    font-size: 15px;
}

.testi-author span {
    font-size: 13px;
    color: var(--grey);
}

/* === CTA === */
.cta-section { padding: 0 0 120px; }

.cta-box {
    background: linear-gradient(135deg, var(--espresso) 0%, #4a2c1a 100%);
    border-radius: 40px;
    padding: 90px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-circle {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(198,139,89,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 2; }

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 56px;
    line-height: 1.2;
    margin: 16px 0 24px;
}

.cta-box p {
    color: rgba(255,255,255,0.65);
    font-size: 18px;
    line-height: 1.9;
    max-width: 560px;
    margin: 0 auto 44px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--brown-light);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 15px;
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--brown-light); }

.footer-contact p {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    margin-bottom: 10px;
}

.wa-btn {
    display: inline-block;
    margin-top: 16px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.wa-btn:hover {
    background: #1fba58;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}

/* === SELECTOR VARIAN & GRAMASI === */
.selector-group {
    margin-bottom: 18px;
}

.selector-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.selector-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.selector-chip {
    background: #f6f1eb;
    color: var(--brown-dark);
    border: 1.5px solid #e8d8c8;
    padding: 7px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.22s ease;
    line-height: 1;
}

.selector-chip:hover {
    background: #f0e0cc;
    border-color: var(--brown-light);
    color: var(--brown);
}

.selector-chip.active {
    background: var(--brown-light);
    border-color: var(--brown-light);
    color: white;
    box-shadow: 0 4px 14px rgba(198,139,89,0.35);
}

/* Animasi harga berubah */
.price {
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.price.price-updating {
    opacity: 0;
    transform: translateY(-4px);
}

/* === SCROLL REVEAL DELAYS === */
.feature-card[data-delay="0"]   { transition-delay: 0ms; }
.feature-card[data-delay="100"] { transition-delay: 100ms; }
.feature-card[data-delay="200"] { transition-delay: 200ms; }
.feature-card[data-delay="300"] { transition-delay: 300ms; }

/* === PARTNERSHIP PAGE === */

/* Keunggulan mitra */
.mitra-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.mitra-benefit-card {
    background: white;
    border-radius: 24px;
    padding: 38px 32px;
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(28px);
}

.mitra-benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.mitra-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(42,21,8,0.13);
}

.mitra-benefit-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.mitra-benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: 12px;
    line-height: 1.3;
}

.mitra-benefit-card p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.75;
}

/* Cocok untuk siapa */
.cocok-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.cocok-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.cocok-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cocok-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(198,139,89,0.3);
    transform: translateY(-6px);
}

.cocok-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.cocok-card h4 {
    color: #b0b0b0;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cocok-card p {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.6;
}

/* Filter bar */
.partner-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-chip {
    background: white;
    border: 1.5px solid #e8d8c8;
    color: var(--brown-dark);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
}

.filter-chip:hover {
    border-color: var(--brown-light);
    color: var(--brown);
}

.filter-chip.active {
    background: var(--brown-light);
    border-color: var(--brown-light);
    color: white;
    box-shadow: 0 4px 14px rgba(198,139,89,0.3);
}

/* Search */
.partner-search-wrap {
    position: relative;
    margin-bottom: 40px;
}

.partner-search-wrap svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey);
}

.partner-search-wrap input {
    width: 100%;
    max-width: 420px;
    padding: 14px 18px 14px 46px;
    border: 1.5px solid #e8d8c8;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    background: white;
    color: var(--espresso);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.partner-search-wrap input:focus {
    border-color: var(--brown-light);
    box-shadow: 0 0 0 3px rgba(198,139,89,0.12);
}

/* Grid partner */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(42,21,8,0.07);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
}

.partner-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.partner-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(42,21,8,0.12);
}

.partner-card-header {
    background: linear-gradient(135deg, #fdf0e4, #f5e0c8);
    padding: 22px 24px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.partner-icon { font-size: 36px; }

.partner-jenis-badge {
    background: white;
    color: var(--brown);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 1px solid #e8d8c8;
}

.partner-card-body {
    padding: 22px 24px;
    flex: 1;
}

.partner-nama {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--espresso);
    margin-bottom: 14px;
    line-height: 1.3;
}

.partner-info-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.partner-info-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.5;
}

.partner-info-item svg {
    color: var(--brown-light);
    flex-shrink: 0;
    margin-top: 1px;
}

.partner-card-footer {
    padding: 0 24px 22px;
}

.partner-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f9ef;
    color: #1a7a40;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
}

.partner-wa-btn:hover {
    background: #25d366;
    color: white;
}

/* No result */
.partner-no-result {
    text-align: center;
    padding: 50px 20px;
    color: var(--grey);
    font-size: 16px;
}

.partner-no-result a {
    color: var(--brown);
    font-weight: 600;
    text-decoration: underline;
}

/* Form pendaftaran */
.daftar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}

.daftar-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: white;
    margin-bottom: 36px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.step-number {
    width: 40px; height: 40px;
    background: var(--brown-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-item h4 {
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-item p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.65;
}

.daftar-info-cta p {
    color: #b0b0b0;
    font-size: 14px;
}

/* Form box */
.daftar-form-wrap {
    background: white;
    border-radius: 28px;
    padding: 44px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.daftar-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--espresso);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required { color: var(--brown-light); }

.form-optional {
    color: var(--grey);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid #e8d8c8;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--espresso);
    background: #fdf8f4;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brown-light);
    box-shadow: 0 0 0 3px rgba(198,139,89,0.12);
    background: white;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    margin-top: 4px;
}

.form-note {
    color: var(--grey);
    font-size: 12px;
    text-align: center;
    margin-top: 14px;
}

.form-error-box {
    background: #fff3f3;
    border: 1px solid #ffb3b3;
    color: #c0392b;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Form sukses */
.form-success-box {
    text-align: center;
    padding: 20px 10px;
}

.form-success-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.form-success-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--espresso);
    margin-bottom: 12px;
}

.form-success-box p {
    color: var(--grey);
    font-size: 16px;
    line-height: 1.7;
}

/* === RESPONSIVE PARTNERSHIP === */
@media (max-width: 1100px) {
    .mitra-benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .cocok-grid { grid-template-columns: repeat(4, 1fr); }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .daftar-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .cocok-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mitra-benefit-grid { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: 1fr; }
    .cocok-grid { grid-template-columns: repeat(2, 1fr); }
    .daftar-form-wrap { padding: 28px 22px; }
    .daftar-form .form-row { grid-template-columns: 1fr; }
}

/* === DETAIL ARTIKEL === */

/* Reading progress bar */
#reading-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--brown-light), var(--brown));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Hero artikel — gambar sebagai background */
/* =========================================
   HERO DETAIL ARTIKEL PREMIUM
========================================= */

.artikel-hero{
    position:relative;

    min-height:750px;

    display:flex;
    align-items:flex-end;

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.artikel-hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.65) 45%,
        rgba(0,0,0,.35) 75%,
        rgba(0,0,0,.15) 100%
    );

    z-index:1;
}

.artikel-hero .container{
    position:relative;
    z-index:2;
}

.artikel-hero-content{
    max-width:950px;

    padding-top:180px;
    padding-bottom:80px;
}

/* breadcrumb */

.artikel-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;

    margin-bottom:24px;

    font-size:14px;
}

.artikel-breadcrumb a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
}

.artikel-breadcrumb a:hover{
    color:var(--brown-light);
}

.artikel-breadcrumb span{
    color:rgba(255,255,255,.5);
}

/* title */

.artikel-hero-title{
    font-family:'Playfair Display', serif;

    color:#fff;

    font-size:clamp(2.5rem,5vw,5rem);

    line-height:1.1;

    font-weight:900;

    margin:24px 0 30px;

    max-width:900px;

    text-shadow:
        0 4px 15px rgba(0,0,0,.4),
        0 10px 40px rgba(0,0,0,.4);
}

/* meta */

.artikel-meta{
    display:flex;
    flex-wrap:wrap;
    gap:24px;
}

.artikel-meta-item{
    display:flex;
    align-items:center;
    gap:8px;

    color:rgba(255,255,255,.85);

    font-size:14px;
}

.artikel-meta-item svg{
    color:var(--brown-light);
}

/* badge */

.artikel-hero .blog-tag{
    background:rgba(255,255,255,.15);

    color:#fff;

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);
}

/* === KONTEN UTAMA === */
.artikel-main {
    min-width: 0;
}

/* Share bar */
.artikel-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 18px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(42,21,8,0.07);
}

.artikel-share > span {
    color: var(--grey);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s;
}

.share-wa  { background: #e8f9ef; color: #1a7a40; }
.share-wa:hover  { background: #25d366; color: white; }

.share-fb  { background: #e8eef9; color: #1a3a7a; }
.share-fb:hover  { background: #1877f2; color: white; }

.share-copy { background: #f6f1eb; color: var(--brown); }
.share-copy:hover { background: var(--brown-light); color: white; }

/* Isi artikel — typography yang enak dibaca */
.artikel-isi {
    background: white;
    border-radius: 24px;
    padding: 50px 52px;
    box-shadow: 0 4px 30px rgba(42,21,8,0.07);
    font-size: 17px;
    line-height: 1.95;
    color: #3a2010;
}

.artikel-isi h1,
.artikel-isi h2,
.artikel-isi h3,
.artikel-isi h4 {
    font-family: 'Playfair Display', serif;
    color: var(--espresso);
    margin: 36px 0 16px;
    line-height: 1.3;
}

.artikel-isi h2 { font-size: 28px; }
.artikel-isi h3 { font-size: 22px; }
.artikel-isi h4 { font-size: 18px; }

.artikel-isi p {
    margin-bottom: 20px;
    color: #4a2e18;
}

.artikel-isi img {
    width: 100%;
    border-radius: 16px;
    margin: 28px 0;
    box-shadow: 0 8px 30px rgba(42,21,8,0.12);
}

.artikel-isi a {
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.artikel-isi a:hover { color: var(--brown-dark); }

.artikel-isi ul,
.artikel-isi ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.artikel-isi li {
    margin-bottom: 8px;
    color: #4a2e18;
}

.artikel-isi blockquote {
    border-left: 4px solid var(--brown-light);
    padding: 16px 24px;
    margin: 28px 0;
    background: #fdf6ee;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--brown-dark);
    font-size: 18px;
}

.artikel-isi strong { color: var(--espresso); }

.artikel-isi hr {
    border: none;
    border-top: 1px solid #ecdcca;
    margin: 36px 0;
}

/* Tags bawah artikel */
.artikel-footer-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e8d8c8;
}

/* Navigasi kembali */
.artikel-nav {
    margin-top: 32px;
}

.artikel-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brown);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.25s, color 0.25s;
}

.artikel-back-btn:hover {
    color: var(--brown-dark);
    gap: 16px;
}

/* === SIDEBAR === */
.artikel-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 100px;
}

/* CTA sidebar */
.sidebar-cta {
    background: linear-gradient(135deg, var(--espresso), #4a2c1a);
    border-radius: 24px;
    padding: 36px 30px;
    text-align: center;
    color: white;
}

.sidebar-cta-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.sidebar-cta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: white;
}

.sidebar-cta p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.75;
}

/* Artikel terkait sidebar */
.sidebar-related {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(42,21,8,0.07);
}

.sidebar-related-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--espresso);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ecdcca;
}

.related-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid #f5ede0;
    transition: all 0.3s;
}

.related-item:last-child { border-bottom: none; padding-bottom: 0; }
.related-item:first-child { padding-top: 0; }

.related-item:hover { transform: translateX(4px); }

.related-img {
    width: 72px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.related-item:hover .related-img img { transform: scale(1.08); }

.related-title {
    color: var(--espresso);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 5px;
}

.related-date {
    color: var(--grey);
    font-size: 12px;
}

/* === RESPONSIVE DETAIL ARTIKEL === */
@media (max-width: 1024px) {
    .artikel-layout {
        grid-template-columns: 1fr;
    }

    .artikel-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .artikel-hero-title { font-size: 38px; }
}

@media (max-width: 768px) {@media (max-width:768px){

    .artikel-hero{
        min-height:520px;
    }

    .artikel-hero-content{
        padding-top:120px;
        padding-bottom:40px;
    }

    .artikel-hero-title{
        font-size:2rem;
        line-height:1.2;
    }

    .artikel-meta{
        gap:12px;
    }

    .artikel-meta-item{
        font-size:13px;
    }

    .artikel-isi{
        padding:30px 24px;
        font-size:16px;
    }

    .artikel-sidebar{
        grid-template-columns:1fr;
    }
}

/* === BLOG PAGE === */

/* Hero blog lebih pendek dari hero utama */
.blog-hero {
    min-height: 65vh !important;
}

.blog-hero-container {
    grid-template-columns: 1fr !important;
    max-width: 780px;
    padding: 140px 0 80px !important;
}

/* Nav link active */
.nav-link.active {
    color: var(--brown-light) !important;
}
.nav-link.active::after {
    width: 100% !important;
}

/* Grid blog — artikel pertama featured (full width), sisanya 3 kolom */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

/* Featured card: full width */
.blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.blog-card-featured.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 80px rgba(42,21,8,0.14);
}

/* Kartu biasa */
.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(42,21,8,0.13);
}

/* Gambar */
.blog-card-img-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    flex-shrink: 0;
}

/* Featured: gambar tinggi penuh */
.blog-card-featured .blog-card-img-wrap {
    height: 100%;
    min-height: 380px;
}

/* Biasa: rasio 16/10 */
.blog-card:not(.blog-card-featured) .blog-card-img-wrap {
    aspect-ratio: 16 / 10;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img-wrap img,
.blog-card-featured:hover .blog-card-img-wrap img {
    transform: scale(1.06);
}

.blog-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,14,6,0.35), transparent 60%);
}

/* Badge "Artikel Terbaru" di atas gambar featured */
.blog-tag-featured {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--brown-light);
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 50px;
    z-index: 2;
}

/* Body kartu */
.blog-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.blog-card-featured .blog-card-body {
    padding: 44px 40px;
    justify-content: center;
}

/* Meta: tag + tanggal */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.blog-tag {
    background: #fdf0e4;
    color: var(--brown);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--grey);
    font-size: 13px;
}

/* Judul featured */
.blog-title-featured {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 1.25;
    color: var(--espresso);
}

.blog-title-featured a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title-featured a:hover { color: var(--brown); }

/* Judul biasa */
.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.35;
    color: var(--espresso);
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover { color: var(--brown); }

/* Excerpt */
.blog-excerpt {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.75;
    flex: 1;
}

/* Tombol baca */
.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brown);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 6px;
    transition: gap 0.25s ease, color 0.25s;
    width: fit-content;
}

.blog-read-btn:hover {
    color: var(--brown-dark);
    gap: 14px;
}

/* Empty state */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
}

.blog-empty-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.blog-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--espresso);
    margin-bottom: 12px;
}

.blog-empty p {
    color: var(--grey);
    font-size: 16px;
}

/* === RESPONSIVE BLOG === */
@media (max-width: 992px) {
    .blog-card-featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .blog-card-featured .blog-card-img-wrap {
        min-height: 280px;
        height: 280px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-title-featured { font-size: 26px; }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-featured .blog-card-body { padding: 28px 24px; }
    .blog-title-featured { font-size: 22px; }
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .hero-title { font-size: 68px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-container { grid-template-columns: 1fr; }
    .hero-image-wrap { display: none; }
}

@media (max-width: 992px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }

    .hero-title { font-size: 58px; }
    .section-title { font-size: 44px; }
    .story-title { font-size: 46px; }
    .edukasi-title { font-size: 42px; }
    .cta-box h2 { font-size: 44px; }

    .edukasi-inner { grid-template-columns: 1fr; gap: 50px; }
    .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: auto; }
    .featured-testi { transform: none; }
    .featured-testi:hover { transform: translateY(-8px); }

    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .stat-item { padding: 0 28px; }

    .story-inner { flex-direction: column; gap: 30px; }
    .story-label-col { flex-direction: row; align-items: center; }
    .story-vertical-line { width: 60px; height: 1px; }
}

@media (max-width: 768px) {
    .hero { min-height: 100svh; }
    .hero-title { font-size: 46px; }
    .hero-sub { font-size: 18px; }
    .hero-desc { font-size: 15px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .hero-container { padding: 100px 0 60px; }

    .section { padding: 80px 0; }
    .section-title { font-size: 38px; }
    .feature-grid { grid-template-columns: 1fr; }

    .cta-box { padding: 60px 30px; border-radius: 28px; }
    .cta-box h2 { font-size: 36px; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .stats-container { gap: 20px 0; flex-wrap: wrap; }
    .stat-item { padding: 10px 28px; }
    .stat-divider { display: none; }

    .footer-container { grid-template-columns: 1fr; }
    .story-title { font-size: 40px; }
    .edukasi-title { font-size: 38px; }
    .edukasi-section { padding: 80px 0; }
    .story-section { padding: 80px 0; }
}