/* ============================================================
   PT. Hadi Mulya Utama — Design System (redesign 2026)
   Presentasi saja. Backend/rute/i18n tidak berubah.
   ============================================================ */

:root {
    /* Latar */
    --bg: #fbf9f4;              /* warm white */
    --bg-2: #f0ebe0;           /* separasi halus */
    --bg-3: #f6f2ea;
    /* Teks */
    --ink: #1a1712;            /* judul/teks utama */
    --ink-light: #faf6ee;      /* teks di atas hero gelap */
    --body: #5a5449;
    --muted: #726b5e;
    --faint: #8a8478;
    /* Aksen */
    --terra: #c25834;          /* terracotta */
    --terra-dark: #a8492b;
    --amber: #e9a63c;
    --amber-bright: #f7b62c;
    --amber-soft: #ffcf6a;
    --ocean: #2f6e7a;
    --ocean-bright: #3bb4c9;
    --brand: #636964;          /* warna logo (dasar hero) */
    --line: rgba(26, 23, 18, 0.10);
    --line-soft: rgba(26, 23, 18, 0.06);
    /* Bentuk */
    --r-pill: 100px;
    --r-card: 22px;
    --r-input: 11px;
    --shadow: 0 30px 60px -40px rgba(26, 23, 18, 0.30);
    --shadow-sm: 0 14px 30px -22px rgba(26, 23, 18, 0.35);
    --head: 'Space Grotesk', sans-serif;
    --sans: 'Manrope', sans-serif;
}

/* ---- Reset & base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--body);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 {
    font-family: var(--head);
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0 0 .5em;
    font-weight: 600;
}
p { margin: 0 0 1rem; }
a { color: var(--ink); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--terra); }
strong { color: var(--ink); font-weight: 700; }
ul { margin: 0; padding: 0; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.eyebrow {
    font-family: var(--sans); font-weight: 700; font-size: 12.5px;
    letter-spacing: .14em; text-transform: uppercase; color: var(--terra);
    margin-bottom: 14px; display: inline-block;
}
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 56px); }
.section-head p { font-size: 18px; color: var(--muted); margin-top: 10px; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--sans); font-weight: 600; font-size: 15px;
    padding: 14px 26px; border-radius: var(--r-pill);
    border: 1.5px solid transparent; cursor: pointer;
    transition: all .25s ease; white-space: nowrap;
}
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--terra); color: #fff; }
.btn-amber { background: var(--amber); color: #3a2405; }
.btn-amber:hover { background: var(--amber-bright); color: #3a2405; transform: translateY(-2px); }
.btn-terra { background: var(--terra); color: #fff; }
.btn-terra:hover { background: var(--terra-dark); color: #fff; }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-light-outline { border-color: rgba(255,255,255,.5); color: var(--ink-light); background: transparent; }
.btn-light-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
}
.utility-bar {
    border-bottom: 1px solid var(--line-soft);
    font-size: 12.5px; color: var(--muted);
}
.utility-bar .wrap { display: flex; justify-content: space-between; align-items: center; height: 38px; gap: 18px; }
.utility-bar a { color: var(--muted); }
.utility-bar a:hover { color: var(--terra); }
.utility-left { display: flex; gap: 18px; align-items: center; }
.utility-right { display: flex; gap: 16px; align-items: center; }
.utility-right .lang-active { color: var(--terra); font-weight: 700; }
.utility-sep { opacity: .5; }

.nav-main .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.nav-links a {
    font-size: 14.5px; font-weight: 600; color: #3a352c; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
    display: none; background: none; border: 0; cursor: pointer; padding: 8px;
    color: var(--ink);
}
.nav-toggle svg { width: 26px; height: 26px; }
.lang-switch { font-size: 13px; font-weight: 600; color: var(--muted); display: inline-flex; gap: 6px; align-items: center; }
.lang-switch a.on { color: var(--terra); }

/* mobile menu */
.mobile-menu { display: none; }
@media (max-width: 1023px) {
    .nav-links, .nav-cta .btn { display: none; }
    .nav-toggle { display: inline-flex; }
    .mobile-menu {
        display: block; background: #fff; border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden; transition: max-height .35s ease;
    }
    .mobile-menu.open { max-height: 520px; }
    .mobile-menu ul { list-style: none; padding: 14px 0; }
    .mobile-menu a { display: block; padding: 12px 40px; font-weight: 600; color: #3a352c; }
    .mobile-menu a:hover, .mobile-menu a.active { color: var(--terra); background: var(--bg-3); }
    .mobile-menu .m-cta { padding: 14px 40px; }
}

/* ============================================================
   HERO (dipakai semua halaman)
   ============================================================ */
.hero {
    position: relative; color: var(--ink-light); overflow: hidden;
    background:
      radial-gradient(640px 460px at 12% 0%,   rgba(247,182,44,.5),  transparent 60%),
      radial-gradient(620px 500px at 90% 14%,  rgba(59,180,201,.5),  transparent 60%),
      radial-gradient(740px 560px at 55% 124%, rgba(242,134,90,.48), transparent 58%),
      var(--brand);
}
.hero-home { padding: 88px 0 0; }
.hero-page { padding: 74px 0 82px; }
.hero .eyebrow { color: var(--amber-soft); }
.hero h1 {
    color: var(--ink-light);
    font-size: clamp(44px, 7vw, 88px); font-weight: 700; line-height: 1.02;
    max-width: 15ch;
}
.hero h1 .accent { color: var(--amber-soft); }
.hero-lead { color: #ece7db; font-size: clamp(17px, 1.5vw, 21px); max-width: 44ch; margin: 22px 0 30px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600;
    color: var(--ink-light); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    padding: 7px 15px; border-radius: var(--r-pill); margin-bottom: 22px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-soft); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.breadcrumb2 { display: flex; gap: 10px; font-size: 14px; color: #dcd6c9; margin-top: 8px; }
.breadcrumb2 a { color: #dcd6c9; }
.breadcrumb2 a:hover { color: #fff; }
.breadcrumb2 .cur { color: var(--amber-soft); }

/* strip statistik */
.hero-stats { border-top: 1px solid rgba(255,255,255,.16); margin-top: 64px; }
.hero-stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stats .stat { padding: 30px 26px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-stats .stat:first-child { border-left: 0; padding-left: 0; }
.hero-stats .num { font-family: var(--head); font-size: 30px; font-weight: 700; color: var(--ink-light); letter-spacing: -.03em; }
.hero-stats .lbl { font-size: 13.5px; color: #cfc9bc; margin-top: 4px; }

/* ============================================================
   BERANDA — komponen
   ============================================================ */
/* Tentang split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split img { border-radius: var(--r-card); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split h2 { font-size: clamp(30px, 3.6vw, 46px); }
.split p { font-size: 17px; }

/* checklist */
.checklist { list-style: none; margin: 18px 0 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--body); }
.checklist li::before {
    content: ''; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
    background: var(--terra); margin-top: 2px;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* blok merek penuh */
.brand-block { color: #fff; }
.brand-block .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; padding-top: 90px; padding-bottom: 90px; }
.brand-block.rev .wrap > .brand-media { order: 2; }
.brand-media { display: flex; justify-content: center; }
.brand-media .circle {
    width: min(360px, 80%); aspect-ratio: 1; border-radius: 50%;
    background: rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center;
    padding: 8%;
}
.brand-media .circle img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,.25)); }
.brand-cat { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.brand-block h2 { color: #fff; font-size: clamp(40px, 5vw, 64px); margin: 8px 0 4px; }
.brand-ety { font-style: italic; opacity: .9; margin-bottom: 14px; }
.brand-desc { font-size: 17px; margin-bottom: 22px; }
.brand-spec { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; }
.brand-spec .s .v { font-family: var(--head); font-size: 22px; font-weight: 700; }
.brand-spec .s .k { font-size: 12.5px; opacity: .82; }
.brand-sizes { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.brand-sizes .pill { border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--r-pill); padding: 6px 16px; font-size: 13px; font-weight: 600; }
.brand-badge-prem { display: inline-block; background: #fff; color: var(--terra); font-weight: 700; font-size: 11px; letter-spacing: .1em; padding: 4px 11px; border-radius: var(--r-pill); vertical-align: middle; margin-left: 10px; }
/* warna per merek */
.brand-lospulen { background: var(--amber); color: #3a2405; }
.brand-lospulen h2, .brand-lospulen strong { color: #3a2405; }
.brand-lospulen .brand-cat { color: #7a4d0e; }
.brand-lospulen .brand-desc, .brand-lospulen .brand-ety { color: #5c3d0c; }
.brand-lospulen .btn { background: #3a2405; color: var(--amber); }
.brand-lospulen .btn:hover { background: #1a1712; }
.brand-penyunesia { background: var(--ocean); }
.brand-penyunesia .brand-cat { color: #a8d4dc; }
.brand-penyunesia .brand-desc, .brand-penyunesia .brand-ety { color: #cfeaf0; }
.brand-penyunesia .btn { background: #eafcff; color: var(--ocean); }
.brand-penyunesia .btn:hover { background: #fff; }
.brand-pulenesia { background: var(--terra); }
.brand-pulenesia .brand-desc, .brand-pulenesia .brand-ety { color: #f6d9cf; }
.brand-pulenesia .btn { background: #fff2ec; color: var(--terra); }
.brand-pulenesia .btn:hover { background: #fff; }

/* ==== Halaman Produk: penjelasan spesifikasi, positioning, extra, banding, pesan ==== */
.spec-explain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.spec-explain .sx { background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 24px 26px; box-shadow: var(--shadow-sm); }
.spec-explain .sx h4 { font-family: var(--head); font-size: 16px; margin: 0 0 8px; color: var(--ink); }
.spec-explain .sx p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.55; }

.brand-tag { font-size: clamp(18px, 2vw, 21px); font-weight: 700; margin: 4px 0 14px; }
.brand-extra { margin: 0 0 15px; font-size: 15px; line-height: 1.55; }
.brand-extra b { display: block; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .82; margin-bottom: 3px; }
.brand-lospulen .brand-tag { color: #3a2405; }
.brand-penyunesia .brand-tag, .brand-pulenesia .brand-tag { color: #fff; }

.compare-wrap { overflow-x: auto; margin-top: 8px; border: 1px solid var(--line-soft); border-radius: var(--r-card); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; background: #fff; }
.compare-table th, .compare-table td { text-align: left; padding: 16px 22px; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table th { font-family: var(--head); font-size: 12.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); background: var(--bg-3); }
.compare-table td:first-child { font-weight: 700; color: var(--ink); }

.order-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }

/* Embed formulir eksternal (mis. Google Form CSR) */
.form-embed { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-card); box-shadow: var(--shadow-sm); padding: 10px; overflow: hidden; }
.form-embed iframe { display: block; width: 100%; border: 0; border-radius: 14px; min-height: 1200px; }

/* Halal (tanpa box) */
.halal-plain { text-align: center; }
.halal-plain img { height: 88px; width: auto; margin: 0 auto 18px; }
.halal-plain h2 { font-size: clamp(28px, 3.2vw, 40px); }
.halal-plain p { max-width: 640px; margin: 10px auto 0; color: var(--muted); font-size: 17px; }

/* Kartu generik */
.cards { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card2 {
    background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-card);
    padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s ease;
}
.card2:hover { transform: translateY(-6px); }
.card2 h3 { font-size: 21px; }
.card2 p { color: var(--muted); font-size: 15.5px; margin: 0; }
.card2 .logo-row { height: 46px; margin-bottom: 16px; display: flex; align-items: center; }
.card2 .logo-row img { height: 100%; width: auto; object-fit: contain; }

/* Kontak */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-info .row-i { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info .ico { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-2); display: flex; align-items: center; justify-content: center; color: var(--terra); }
.contact-info h5 { font-size: 14px; margin-bottom: 2px; }
.contact-info p { margin: 0; color: var(--muted); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea {
    width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-input);
    font-family: var(--sans); font-size: 15px; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--terra); }
.map-embed iframe { width: 100%; height: 360px; border: 0; border-radius: var(--r-card); }

/* Timeline (about) */
.tl { position: relative; padding-left: 30px; }
.tl::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item::before { content: ''; position: absolute; left: -30px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--terra); border: 3px solid var(--bg); }
.tl-date { font-family: var(--head); font-weight: 600; color: var(--terra); font-size: 14px; }
.tl-item h4 { font-size: 20px; margin: 4px 0 6px; }
.tl-item p { color: var(--muted); margin: 0; }

/* Proses bernomor */
.numbered { counter-reset: n; display: grid; gap: 18px; }
.numbered .step { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; padding: 22px 24px; }
.numbered .step .no { counter-increment: n; font-family: var(--head); font-weight: 700; font-size: 22px; color: var(--terra); min-width: 40px; }
.numbered .step .no::before { content: counter(n, decimal-leading-zero); }

/* Galeri */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.gallery-item, .album-card { position: relative; border-radius: var(--r-card); overflow: hidden; display: block; height: 280px; box-shadow: var(--shadow-sm); }
.gallery-image, .album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover .gallery-image, .album-card:hover img { transform: scale(1.06); }
.album-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: #fff; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.05) 55%, transparent 100%); }
.album-overlay .name { font-family: var(--head); font-weight: 600; font-size: 20px; }
.album-overlay .count { font-size: 13.5px; opacity: .9; }
.album-badge { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,.5); color: #fff; border-radius: var(--r-pill); padding: 4px 12px; font-size: 12.5px; }
.gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px; color: #fff; background: linear-gradient(to top, rgba(0,0,0,.72), transparent); font-size: 14px; transform: translateY(100%); transition: transform .3s ease; }
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); }
.blog-card .cover { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.blog-card .cover-fallback { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--brand), var(--ocean)); display: flex; align-items: center; justify-content: center; }
.blog-card .cover-fallback img { height: 64px; width: auto; }
.blog-card .body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { font-size: 13px; color: var(--faint); margin-bottom: 8px; }
.blog-card h3 { font-size: 20px; margin-bottom: 8px; }
.blog-card p { color: var(--muted); font-size: 15px; flex: 1; }
.blog-more { color: var(--terra); font-weight: 600; font-size: 14.5px; margin-top: 8px; }

/* artikel (blog detail) */
.article-body { font-size: 18px; line-height: 1.8; color: var(--body); max-width: 720px; margin: 0 auto; }
.article-body h3, .article-body h4 { color: var(--ink); margin-top: 1.8em; }
.article-body img { border-radius: 12px; margin: 1.6em auto; }
.article-body blockquote { border-left: 4px solid var(--terra); padding-left: 20px; font-style: italic; color: var(--muted); }
.article-body a { color: var(--terra); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.footer-logo { height: 46px; margin-bottom: 18px; }
.site-footer p { color: var(--muted); font-size: 15px; max-width: 34ch; }
.footer-col h5 { font-family: var(--sans); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--body); font-size: 15px; font-weight: 500; }
.footer-col a:hover { color: var(--terra); }
.footer-halal { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.footer-halal img { height: 44px; }
.footer-halal small { color: var(--faint); font-size: 12.5px; line-height: 1.4; }
.footer-halal strong { display: block; font-size: 13.5px; color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 54px; padding: 22px 0; text-align: center; color: var(--faint); font-size: 13.5px; }

/* WhatsApp float */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
    background: #25d366; color: #fff; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 30px; text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.22); z-index: 1050; transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ---- Animasi ---- */
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.rise { animation: rise .8s ease both; }
.rise-1 { animation-delay: .08s; }
.rise-2 { animation-delay: .16s; }
.rise-3 { animation-delay: .24s; }

[id] { scroll-margin-top: 130px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .wrap { padding: 0 28px; }
    .section { padding: 72px 0; }
}
@media (max-width: 900px) {
    .split, .brand-block .wrap, .contact-grid, .cards-3, .cards-2, .blog-grid, .footer-grid, .hero-stats .grid, .spec-explain {
        grid-template-columns: 1fr;
    }
    .split { gap: 34px; }
    .brand-block .wrap { gap: 34px; text-align: center; }
    .brand-block.rev .wrap > .brand-media { order: 0; }
    .brand-media { order: -1; }
    .brand-spec, .brand-sizes, .hero-buttons { justify-content: center; }
    .hero-stats .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding-left: 0; }
    .hero-stats .grid { grid-template-columns: 1fr 1fr; }
    .footer-halal { justify-content: flex-start; }
}
@media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    .hero-stats .grid { grid-template-columns: 1fr; }
    .utility-left .u-addr { display: none; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 26px; bottom: 18px; right: 18px; }
}

/* ---- Admin (dipertahankan, memakai Bootstrap) ---- */
.admin-thumb { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; }
.member-thumb { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; }
