/* ============================================================
   Roaste Coffee Roastery — Main Stylesheet v2
   Design: Black / White / Coffee Brown
   Font: Lexend (Google Fonts)
   Location: /var/www/rcr/public/assets/css/style.css
   ============================================================ */

/* ── Google Font loaded via index.php <head> ── */

:root {
    --black:       #0A0A0A;
    --white:       #FFFFFF;
    --off-white:   #F8F6F2;
    --brown:       #6B3A1F;
    --brown-light: #C07828;
    --brown-pale:  #F5EFE0;
    --gray:        #6B6B6B;
    --gray-light:  #E8E8E8;
    --border:      #E0E0E0;
    --font:        'Lexend', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--white); color: var(--black); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ── Doodle Pattern ── */
.doodle-pattern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%230A0A0A' stroke-width='1.3' opacity='0.07'%3E%3Crect x='10' y='16' width='24' height='18' rx='3'/%3E%3Cpath d='M34 22 Q42 22 42 30 Q42 36 34 36'/%3E%3Cellipse cx='22' cy='38' rx='14' ry='3'/%3E%3Cpath d='M12 34 Q22 42 32 34' stroke-width='1'/%3E%3Cellipse cx='95' cy='18' rx='9' ry='5' transform='rotate(-25 95 18)'/%3E%3Cpath d='M88 15 Q95 18 102 15' stroke-width='0.9'/%3E%3Cellipse cx='140' cy='55' rx='8' ry='4.5' transform='rotate(20 140 55)'/%3E%3Cpath d='M133 53 Q140 56 147 53' stroke-width='0.9'/%3E%3Cpath d='M62 10 L55 30 L69 30 Z'/%3E%3Cpath d='M55 30 Q62 40 69 30'/%3E%3Crect x='57' y='40' width='10' height='6' rx='1'/%3E%3Cpath d='M115 12 Q118 6 115 0' stroke-width='1.2'/%3E%3Cpath d='M121 12 Q124 6 121 0' stroke-width='1.2'/%3E%3Cpath d='M127 12 Q130 6 127 0' stroke-width='1.2'/%3E%3Cellipse cx='20' cy='98' rx='8' ry='4'/%3E%3Crect x='12' y='94' width='16' height='14' rx='2'/%3E%3Cellipse cx='20' cy='110' rx='11' ry='6'/%3E%3Ccircle cx='100' cy='88' r='11'/%3E%3Cline x1='100' y1='77' x2='100' y2='88'/%3E%3Cline x1='100' y1='88' x2='108' y2='88'/%3E%3Cpath d='M126 82 Q130 76 135 82 Q139 76 144 82 Q148 76 153 82'/%3E%3Cpath d='M126 82 L126 100 Q140 106 153 100 L153 82'/%3E%3Cellipse cx='58' cy='98' rx='5' ry='8'/%3E%3Cline x1='58' y1='106' x2='58' y2='130'/%3E%3Cpath d='M85 58 L78 80 L92 80 Z'/%3E%3Cpath d='M78 80 Q85 92 92 80'/%3E%3Cline x1='85' y1='92' x2='85' y2='105'/%3E%3Cellipse cx='85' cy='108' rx='10' ry='4'/%3E%3Crect x='112' y='112' width='26' height='32' rx='3'/%3E%3Cline x1='125' y1='104' x2='125' y2='120'/%3E%3Ccircle cx='125' cy='102' r='4'/%3E%3Cline x1='112' y1='126' x2='138' y2='126'/%3E%3Cellipse cx='38' cy='60' rx='5' ry='3' transform='rotate(40 38 60)'/%3E%3Cpath d='M34 59 Q38 61 42 59' stroke-width='0.8'/%3E%3Cellipse cx='72' cy='140' rx='6' ry='3.5' transform='rotate(-15 72 140)'/%3E%3Cpath d='M66 139 Q72 142 78 139' stroke-width='0.8'/%3E%3Cpath d='M30 118 L26 148 L46 148 L42 118 Z'/%3E%3Cline x1='46' y1='130' x2='52' y2='130'/%3E%3Cline x1='45' y1='138' x2='51' y2='138'/%3E%3Ccircle cx='78' cy='52' r='2.5'/%3E%3Ccircle cx='88' cy='46' r='1.8'/%3E%3Ccircle cx='70' cy='46' r='1.2'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 3px;
    font-family: var(--font); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; border: 2px solid transparent;
    transition: all 0.2s;
}
.btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: var(--brown); border-color: var(--brown); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-brown { background: var(--brown); color: var(--white); border-color: var(--brown); }
.btn-brown:hover { background: var(--brown-light); border-color: var(--brown-light); }

/* ── Ticker ── */
.ticker {
    background: var(--brown); color: var(--white);
    padding: 10px 0; overflow: hidden;
    border-bottom: 1.5px solid var(--black);
}
.ticker-inner {
    display: flex; gap: 80px;
    animation: ticker 20s linear infinite;
    white-space: nowrap; width: max-content;
}
.ticker-item { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.ticker-dot { opacity: 0.5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Navigation ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 70px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1.5px solid var(--black);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-logo-wrap { display: flex; align-items: center; gap: 14px; }
/* nav-logo-circle override */ .nav-logo-circle {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-circle img { width: 52px; height: 52px; object-fit: contain; }
.nav-logo-circle-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.02em; color: var(--black); line-height: 1; }
.nav-logo-sub { font-size: 0.58rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--black);
    transition: color 0.2s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--brown);
    transform: scaleX(0); transition: transform 0.2s; transform-origin: left;
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    background: var(--black) !important; color: var(--white) !important;
    padding: 9px 22px; border-radius: 3px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--brown) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); transition: all 0.2s; }

/* ── Hero ── */
.hero {
    min-height: 100vh; padding-top: 70px;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
}
.hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 64px 80px 48px;
    background: var(--white);
    border-right: 1.5px solid var(--black);
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--brown);
}
.hero-tag::before { content: ''; width: 36px; height: 1.5px; background: var(--brown); }
.hero-headline {
    font-size: clamp(3rem, 5.5vw, 6rem);
    font-weight: 900; letter-spacing: -0.05em; line-height: 0.95;
    color: var(--black); margin-bottom: 28px;
}
.hero-headline .h-line2 {
    display: block; color: var(--brown);
    font-weight: 300; font-size: 0.55em;
    letter-spacing: 0.22em; text-transform: uppercase; margin-top: 10px;
}
.hero-headline .h-line3 {
    display: block; font-size: 0.72em; font-weight: 900;
}
.hero-desc {
    font-size: 0.95rem; font-weight: 300; color: var(--gray);
    line-height: 1.9; max-width: 420px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
    display: flex; gap: 40px; margin-top: 52px;
    padding-top: 32px; border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.hero-meta-num { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.04em; color: var(--black); line-height: 1; }
.hero-meta-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }
.hero-right {
    position: relative; overflow: hidden;
    background: var(--off-white);
    display: flex; align-items: center; justify-content: center;
}
.hero-right.doodle-pattern { background-color: var(--off-white); }

/* ── Section Base ── */
.section { padding: 100px 0; }
.section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--brown); margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 28px; height: 1.5px; background: var(--brown); }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
    letter-spacing: -0.04em; line-height: 1.05;
    color: var(--black); margin-bottom: 16px;
}
.section-desc { font-size: 0.95rem; font-weight: 300; color: var(--gray); line-height: 1.9; max-width: 500px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-tag { display: flex; justify-content: center; }
.section-header .section-tag::before { display: none; }

/* ── About ── */
.about { background: var(--black); border-top: 1.5px solid var(--black); }
.about .section-title { color: var(--white); }
.about .section-tag { color: var(--brown-light); }
.about .section-tag::before { background: var(--brown-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-body { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 2; margin-top: 20px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(255,255,255,0.08); }
.stat-box { padding: 40px 28px; background: var(--black); border: 1px solid rgba(255,255,255,0.05); }
.stat-num { display: block; font-size: 3rem; font-weight: 900; letter-spacing: -0.05em; color: var(--brown-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* ── Products ── */
.products { background: var(--off-white); }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 20px; }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
    padding: 8px 18px; border-radius: 3px;
    font-family: var(--font); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border: 1.5px solid var(--border); background: var(--white);
    color: var(--gray); cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2px; }
.product-card {
    background: var(--white); overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.22s; cursor: pointer;
}
.product-card:hover { border-color: var(--black); box-shadow: 4px 4px 0 var(--black); transform: translate(-2px,-2px); }
.product-img-wrap { width: 100%; height: 220px; overflow: hidden; background: #F0EDE8; position: relative; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; background: linear-gradient(135deg, #F0EDE8, #E8E0D8);
}
.product-cat-tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--black); color: var(--white);
    font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.product-body { padding: 18px 20px; }
.product-name { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--black); margin-bottom: 4px; text-transform: lowercase; }
.product-origin { font-size: 0.72rem; font-weight: 400; color: var(--gray); margin-bottom: 10px; line-height: 1.4; }
.product-notes { font-size: 0.75rem; font-weight: 500; color: var(--brown); margin-bottom: 14px; line-height: 1.5; font-style: italic; }
.product-indicators { display: flex; gap: 14px; margin-bottom: 14px; }
.ind-group { }
.ind-label { font-size: 0.56rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.ind-dots { display: flex; gap: 3px; }
.d { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: 1px solid var(--gray-light); }
.d.on { background: var(--brown); border-color: var(--brown); }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.product-price { font-size: 0.85rem; font-weight: 700; color: var(--black); }
.price-from { font-size: 0.62rem; font-weight: 400; color: var(--gray); display: block; }
.out-of-stock-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #999; background: #F5F5F5; padding: 3px 8px; border-radius: 2px; }
.product-roast { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); }

/* ── Modal ── */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(10,10,10,0.7);
    z-index: 200; display: flex; align-items: center; justify-content: center;
    padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--white); border: 1.5px solid var(--black);
    width: 100%; max-width: 560px; max-height: 85vh; overflow-y: auto;
    transform: translateY(16px); transition: transform 0.2s;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; text-transform: lowercase; }
.modal-close { font-size: 1.4rem; color: var(--gray); line-height: 1; padding: 4px; cursor: pointer; transition: color 0.2s; background: none; border: none; }
.modal-close:hover { color: var(--black); }
.modal-body { padding: 24px; }
.modal-meta-row { display: flex; gap: 8px; font-size: 0.85rem; margin-bottom: 8px; }
.modal-meta-key { color: var(--gray); min-width: 80px; font-weight: 400; }
.modal-meta-val { color: var(--black); font-weight: 600; }
.modal-notes { font-size: 0.85rem; color: var(--brown); font-style: italic; margin: 16px 0; }
.modal-variants-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; margin-top: 20px; }
.variants-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-pill { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 3px; font-size: 0.82rem; }
.variant-pill .v-size { font-weight: 700; color: var(--black); }
.variant-pill .v-price { color: var(--brown); margin-left: 6px; font-weight: 600; }
.variant-pill.sold-out { opacity: 0.4; }

/* ── Price List ── */
.pricelist { background: var(--white); border-top: 1.5px solid var(--black); }
.pricelist-tabs { display: flex; gap: 0; margin-bottom: 36px; border: 1.5px solid var(--black); border-radius: 3px; overflow: hidden; width: fit-content; }
.tab-btn {
    padding: 10px 24px; font-family: var(--font); font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    border: none; background: var(--white); color: var(--gray); cursor: pointer;
    border-right: 1.5px solid var(--black); transition: all 0.2s;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active { background: var(--black); color: var(--white); }
.tab-btn:hover:not(.active) { background: var(--off-white); color: var(--black); }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.price-table th { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); padding: 10px 14px; border-bottom: 1.5px solid var(--black); text-align: left; }
.price-table td { padding: 13px 14px; border-bottom: 1px solid var(--border); color: var(--black); vertical-align: top; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--off-white); }
.price-table .col-name { font-weight: 700; }
.price-table .col-notes { color: var(--gray); font-style: italic; font-size: 0.78rem; }
.price-table .col-price { font-weight: 600; color: var(--brown); }
.price-table .col-oos { color: #BBB; font-size: 0.75rem; }
.price-disclaimer { text-align: center; font-size: 0.78rem; color: var(--gray); margin-top: 24px; font-style: italic; font-weight: 300; }

/* ── Taste Guide ── */
.taste-guide { background: var(--white); border-top: 1.5px solid var(--black); border-bottom: 1.5px solid var(--black); }
.taste-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.taste-steps { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.taste-step { display: flex; align-items: center; gap: 14px; }
.step-num { width: 32px; height: 32px; background: var(--black); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 0.8rem; flex-shrink: 0; }
.step-text { font-size: 0.88rem; font-weight: 400; color: var(--gray); }
.quiz-wrap { background: var(--off-white); border: 1.5px solid var(--black); padding: 36px; }
.quiz-progress { display: flex; gap: 4px; margin-bottom: 28px; }
.q-dot { height: 3px; flex: 1; background: var(--border); border-radius: 2px; }
.q-dot.active { background: var(--brown); }
.q-dot.done { background: var(--black); }
.quiz-question { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--black); margin-bottom: 8px; }
.quiz-hint { font-size: 0.78rem; font-weight: 300; color: var(--gray); margin-bottom: 22px; }
.quiz-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.quiz-opt {
    padding: 14px 12px; border: 1.5px solid var(--border);
    background: var(--white); cursor: pointer; transition: all 0.18s; text-align: center; border-radius: 3px;
}
.quiz-opt:hover, .quiz-opt.selected { border-color: var(--black); background: var(--black); }
.quiz-opt:hover .opt-label, .quiz-opt.selected .opt-label { color: var(--white); }
.quiz-opt:hover .opt-desc, .quiz-opt.selected .opt-desc { color: rgba(255,255,255,0.55); }
.opt-icon { font-size: 1.4rem; margin-bottom: 6px; }
.opt-label { font-size: 0.76rem; font-weight: 700; color: var(--black); }
.opt-desc { font-size: 0.64rem; font-weight: 300; color: var(--gray); margin-top: 2px; line-height: 1.4; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; gap: 12px; }
.quiz-result { animation: fadeUp 0.4s ease forwards; }
.result-title { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; text-align: center; margin-bottom: 6px; }
.result-sub { font-size: 0.82rem; font-weight: 300; color: var(--gray); text-align: center; margin-bottom: 28px; }
.result-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-bottom: 24px; }
.result-card { background: var(--white); border: 1.5px solid var(--border); padding: 16px; text-align: center; transition: border-color 0.2s; }
.result-card:hover { border-color: var(--black); }
.result-card-name { font-size: 0.88rem; font-weight: 800; letter-spacing: -0.01em; text-transform: lowercase; margin-bottom: 6px; }
.result-card-notes { font-size: 0.72rem; color: var(--brown); font-style: italic; }
.quiz-restart { display: block; text-align: center; font-size: 0.78rem; color: var(--gray); cursor: pointer; margin: 0 auto; padding: 8px 20px; border: 1px solid var(--border); width: fit-content; transition: all 0.2s; background: none; font-family: var(--font); }
.quiz-restart:hover { border-color: var(--black); color: var(--black); }

/* ── Brew Guide ── */
.brew-guide { background: var(--off-white); border-top: 1.5px solid var(--black); }
.brew-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 2px; }
.brew-card { background: var(--white); border: 1px solid var(--border); padding: 32px 24px; }
.brew-icon { font-size: 2.2rem; margin-bottom: 16px; }
.brew-card h3 { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; color: var(--black); margin-bottom: 16px; }
.brew-card ol { padding-left: 18px; }
.brew-card li { font-size: 0.85rem; font-weight: 300; color: var(--gray); margin-bottom: 8px; line-height: 1.6; }

/* ── Announcements ── */
.announcements { background: var(--white); border-top: 1.5px solid var(--black); }
.announcement-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; }
.announcement-card { background: var(--off-white); border: 1px solid var(--border); padding: 28px; transition: border-color 0.2s; }
.announcement-card:hover { border-color: var(--black); }
.ann-cat { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown); margin-bottom: 10px; }
.ann-title { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 12px; line-height: 1.4; }
.ann-date { font-size: 0.75rem; color: var(--gray); font-weight: 300; }
.no-announcements { text-align: center; padding: 48px; color: var(--gray); font-weight: 300; }

/* ── Contact ── */
.contact { background: var(--black); border-top: 1.5px solid var(--black); }
.contact .section-title { color: var(--white); }
.contact .section-tag { color: var(--brown-light); }
.contact .section-tag::before { background: var(--brown-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.contact-link { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.contact-link:hover { border-color: var(--brown-light); color: var(--white); background: rgba(192,120,40,0.08); }
.contact-link-icon { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.contact-address { margin-top: 28px; color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 300; line-height: 1.9; }
.contact-address strong { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 8px; }
.contact-map { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(1); }

/* ── Footer ── */
.footer { background: var(--black); border-top: 1.5px solid rgba(255,255,255,0.08); padding: 40px 0 24px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-name { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.04em; color: var(--white); }
.footer-name span { color: var(--brown-light); }
.footer-tagline { font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.3); margin-top: 4px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-nav a:hover { color: var(--brown-light); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-halal { display: flex; align-items: center; gap: 8px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.footer-halal-badge { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 900; color: rgba(255,255,255,0.3); }

/* ── Loading & States ── */
.loading-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 64px; gap: 16px; color: var(--gray); font-size: 0.85rem; }
.spinner { width: 32px; height: 32px; border: 2.5px solid var(--border); border-top-color: var(--brown); border-radius: 50%; animation: spin 0.8s linear infinite; }
.empty-state { text-align: center; padding: 48px; color: var(--gray); font-size: 0.9rem; font-weight: 300; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 360px; }
    .hero-left { border-right: none; border-bottom: 1.5px solid var(--black); }
    .about-grid, .taste-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .container { padding: 0 24px; }
    .nav { padding: 0 24px; }
    .hero-left { padding: 60px 24px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1.5px solid var(--black); padding: 16px 0; gap: 0; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 24px; width: 100%; }
    .nav-toggle { display: flex; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 64px 0; }
    .pricelist-tabs { flex-wrap: wrap; width: 100%; }
    .tab-btn { border-right: none; border-bottom: 1.5px solid var(--black); flex: 1; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .quiz-opts { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-meta { gap: 24px; }
}

/* Logo fix */
.nav-logo-circle {
    background: white !important;
    border-radius: 50%;
    border: 1.5px solid #E0E0E0;
    padding: 4px;
}

/* Logo navbar - white logo on black circle */
.nav-logo-circle {
    background: #0A0A0A !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    padding: 6px !important;
    border: none !important;
}
.nav-logo-circle img {
    width: 36px !important;
    height: 36px !important;
    filter: none !important;
}

/* Logo navbar final fix */
.nav-logo-circle {
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0 !important;
    width: 48px !important;
    height: 48px !important;
}
.nav-logo-circle img {
    width: 48px !important;
    height: 48px !important;
    filter: none !important;
    object-fit: contain !important;
}

/* ── Doodle Pattern dari Logo Proposal ── */
.doodle-pattern {
    background-color: var(--off-white);
    background-image: url('/assets/images/doodle-bg.jpg');
    background-repeat: repeat;
    background-size: 600px auto;
    background-blend-mode: multiply;
    opacity: 1;
}

/* Hero right doodle */
.hero-right.doodle-pattern {
    background-color: #F8F6F2;
    background-image: url('/assets/images/doodle-bg.jpg');
    background-repeat: repeat;
    background-size: 500px auto;
    background-blend-mode: multiply;
}

/* Product name - normal weight not bold */
.product-name { font-weight: 400 !important; }

/* Global - semua text pakai Lexend normal weight */
* { font-weight: 400 !important; }

/* Hero - white background with Roaste doodle PNG (transparent) */
.hero {
    background-color: #FFFFFF !important;
}
.hero-left {
    background-color: #FFFFFF !important;
}
.hero-right {
    background-color: #FFFFFF !important;
    background-image: url('/assets/images/Roaste-Doodle.png') !important;
    background-repeat: repeat !important;
    background-size: 1400px auto !important;
}










/* Modal gallery - doodle background */

.modal-gallery { background: url('/assets/images/Roaste-Doodle.png') repeat white; background-size: 1725px; background-blend-mode: multiply; }

#modalMainImg { height: auto !important; max-height: 300px !important; object-fit: contain !important; }


/* Modal gallery thumbs - opacity 80% */
.modal-gallery div img {
    opacity: 0.8 !important;
}

/* Modal gallery thumbs - opacity 100% */
.modal-gallery div img {
    opacity: 1 !important;
}

/* Modal gallery thumbs - opacity 100% */
.modal-gallery div img {
    opacity: 1 !important;
}

/* Modal nav buttons press effect */
#modalBtnPrev, #modalBtnNext {
    transition: transform 0.1s, opacity 0.2s !important;
}
#modalBtnPrev:active, #modalBtnNext:active {
    transform: translateY(-50%) scale(0.88) !important;
    background: #0A0A0A !important;
    color: white !important;
}

/* Hero product float animation */
@keyframes floatProduct {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}

/* Hero right - white background, no doodle */
.hero-right {
    background: #FFFFFF !important;
    background-image: none !important;
}
