:root {
    --black: #070604;
    --dark: #100e0b;
    --surface: #1a1710;
    --gold: #c8972f;
    --gold-light: #e8b84b;
    --gold-pale: rgba(200, 151, 47, 0.12);
    --green-deep: #0d2117;
    --cream: #f2ead8;
    --white: #ffffff;
    --muted: #8a857a;
    --border: rgba(255, 255, 255, 0.07);
    --ff-head: 'Playfair Display', Georgia, serif;
    --ff-body: 'DM Sans', system-ui, sans-serif;
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--ff-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; }
input, textarea, select { font-family: inherit; }

/* ── Cursor ─────────────────────────────── */
.cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform;
}
.cursor-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.cursor-ring {
    width: 34px; height: 34px; border: 1px solid rgba(200,151,47,.5); border-radius: 50%;
    transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s;
}
.cursor-ring.grow { width: 60px; height: 60px; background: rgba(200,151,47,.06); border-color: var(--gold); }

/* ── Utility ─────────────────────────────── */
.container { max-width: 1340px; margin: 0 auto; padding: 0 5%; }
.eyebrow {
    display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.eyebrow-light { color: rgba(200,151,47,.8); }
.section-title {
    font-family: var(--ff-head); font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.1; margin-bottom: 1.6rem;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--gold); }
.section-title-light { color: var(--cream); }

.btn-fill {
    display: inline-flex; align-items: center; gap: .6rem;
    background: var(--gold); color: var(--black);
    font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 1rem 2.2rem; border: none; transition: background .3s, transform .3s;
}
.btn-fill:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-fill-light { background: var(--cream); }
.btn-fill-light:hover { background: #fff; }
.btn-ghost {
    display: inline-flex; align-items: center;
    font-size: .85rem; font-weight: 600; letter-spacing: .05em;
    color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.25);
    padding-bottom: 2px; transition: color .3s, border-color .3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-full { width: 100%; justify-content: center; font-size: .9rem; padding: 1.1rem; }

/* ── Animate-in (hero) ─────────────────── */
.animate-in {
    opacity: 0; transform: translateY(30px);
    animation: fadeUp .9s var(--ease) both;
    animation-delay: var(--delay, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── Scroll Reveal ───────────────────────── */
.scroll-reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    transition-delay: var(--delay, 0s);
}
.scroll-reveal.in { opacity: 1; transform: translateY(0); }

/* ── Nav ─────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 2rem 0; z-index: 900;
    transition: background .4s, padding .4s, border-color .4s;
}
.nav.solid {
    padding: 1.2rem 0;
    background: rgba(7,6,4,.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-wrap {
    max-width: 1340px; margin: 0 auto; padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand-icon { font-size: 1.6rem; color: var(--gold); line-height: 1; }
.brand-name { display: block; font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; letter-spacing: .05em; }
.brand-sub { display: block; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 2.8rem; }
.nav-links a {
    font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.75); position: relative; padding-bottom: 3px;
    transition: color .3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    background: var(--gold); color: var(--black); padding: .7rem 1.6rem;
    transition: background .3s, transform .3s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: #fff; transition: .4s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Drawer */
.mob-menu {
    position: fixed; inset: 0; background: var(--dark); z-index: 850;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 2rem 10%; gap: 2.5rem;
    transform: translateX(100%); transition: transform .5s var(--ease);
}
.mob-menu.open { transform: translateX(0); }
.mob-close {
    position: absolute; top: 2rem; right: 5%;
    background: none; border: none; color: var(--muted); font-size: 1.4rem;
}
.mob-links { display: flex; flex-direction: column; gap: 1.8rem; }
.mob-link { font-family: var(--ff-head); font-size: 2.5rem; font-weight: 700; color: var(--cream); }
.mob-bottom { color: var(--muted); font-size: .9rem; line-height: 1.8; }

/* ── Hero ────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-parallax-bg { position: absolute; inset: -10%; z-index: 0; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; filter: brightness(.45) saturate(1.15); }
.hero-grad {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--black) 0%, rgba(7,6,4,.6) 50%, rgba(7,6,4,.2) 100%);
}
.hero-body { position: relative; z-index: 2; flex: 1; padding: 0 5% 8rem; max-width: 850px; }
.hero-pill {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(200,151,47,.1); border: 1px solid rgba(200,151,47,.3);
    color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .15em;
    text-transform: uppercase; padding: .45rem 1rem; margin-bottom: 2rem;
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.hero-heading {
    font-family: var(--ff-head); font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900; line-height: .95; margin-bottom: 1.6rem; letter-spacing: -.02em;
}
.hero-heading em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.7); max-width: 540px; line-height: 1.7; margin-bottom: 2.8rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-bottom: 4rem; }
.hero-badges {
    position: relative; z-index: 2;
    display: flex; align-items: stretch;
    background: rgba(255,255,255,.04); backdrop-filter: blur(20px);
    border: 1px solid var(--border); border-bottom: none;
    align-self: flex-end; margin-bottom: 0;
}
.badge-item { padding: 1.5rem 2.5rem; text-align: center; }
.badge-item strong { display: block; font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--gold); }
.badge-item span { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.badge-sep { width: 1px; background: var(--border); align-self: stretch; }

/* ── Ticker ──────────────────────────────── */
.ticker { background: var(--gold); overflow: hidden; padding: .9rem 0; }
.ticker-track { display: flex; }
.ticker-inner {
    display: flex; align-items: center; flex-shrink: 0;
    animation: ticker 30s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.ticker-inner span { font-size: .9rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--black); padding: 0 1.5rem; white-space: nowrap; }
.ticker-inner .sep { font-size: .5rem; color: rgba(0,0,0,.5); }

/* ── Story ───────────────────────────────── */
.story { padding: 10rem 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: center; max-width: 1340px; margin: 0 auto; padding: 0 5%; }
.story-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
.story-img-main { grid-column: 1 / -1; height: 420px; overflow: hidden; border-radius: 4px; }
.story-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.story-img-main:hover img { transform: scale(1.04); }
.story-img-small { position: relative; height: 250px; overflow: hidden; border-radius: 4px; }
.story-img-small img { width: 100%; height: 100%; object-fit: cover; }
.img-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(7,6,4,.9), transparent);
    color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; padding: 1.2rem 1rem .8rem;
}
.story-content { display: flex; flex-direction: column; }
.story-content p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.5rem; }
.story-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.s-stat { display: flex; flex-direction: column; }
.s-num { font-family: var(--ff-head); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.s-stat span:not(.s-num) { font-size: .85rem; color: var(--muted); }
.s-stat p { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: .3rem; }

/* ── Products ────────────────────────────── */
.products { padding: 10rem 0; background: var(--dark); }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header p { font-size: 1.1rem; color: var(--muted); max-width: 500px; margin: 0 auto; }

/* featured */
.product-hero {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 0;
    margin-bottom: 5rem; border: 1px solid var(--border); overflow: hidden;
}
.ph-image { position: relative; height: 580px; overflow: hidden; }
.ph-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-hero:hover .ph-image img { transform: scale(1.04); }
.ph-tag {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: var(--gold); color: var(--black);
    font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    padding: .4rem 1rem;
}
.ph-info { background: var(--surface); padding: 4rem; display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }
.ph-origin { font-size: .78rem; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; font-weight: 600; }
.ph-name { font-family: var(--ff-head); font-size: 2.6rem; font-weight: 700; line-height: 1.1; }
.ph-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; }
.ph-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.phb {
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    border: 1px solid rgba(200,151,47,.3); color: var(--gold); padding: .3rem .8rem;
}
.ph-order { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.ph-price { font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.ph-price small { font-size: 1rem; font-style: italic; font-family: var(--ff-head); }

/* grid */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.prod-card {
    background: var(--surface); border: 1px solid var(--border);
    display: flex; flex-direction: column; overflow: hidden;
    transition: transform .5s var(--ease), border-color .4s;
}
.prod-card:hover { transform: translateY(-8px); border-color: rgba(200,151,47,.35); }
.pc-img { position: relative; height: 320px; overflow: hidden; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.prod-card:hover .pc-img img { transform: scale(1.06); }
.pc-halal {
    position: absolute; top: 1rem; right: 1rem;
    width: 2.2rem; height: 2.2rem; border-radius: 50%;
    background: var(--gold); color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700;
}
.pc-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; gap: .7rem; }
.pc-origin { font-size: .72rem; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; font-weight: 600; }
.pc-body h3 { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; }
.pc-body p { font-size: .95rem; color: var(--muted); line-height: 1.6; flex: 1; }
.pc-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid var(--border); margin-top: auto; }
.pc-price { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.pc-price small { font-size: .85rem; font-style: italic; }
.pc-btn {
    font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold); border: 1px solid rgba(200,151,47,.4); background: transparent;
    padding: .55rem 1.1rem; transition: all .3s;
}
.pc-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ── Halal ───────────────────────────────── */
.halal { background: var(--green-deep); }
.halal-inner { padding: 10rem 0; }
.halal-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: center; max-width: 1340px; margin: 0 auto; padding: 0 5%; }
.halal-text p { font-size: 1.1rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2.5rem; }
.halal-cards { display: flex; flex-direction: column; gap: 0; }
.hc {
    padding: 2rem 2.5rem; border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex; flex-direction: column; gap: .6rem;
    transition: background .3s;
}
.hc:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.hc:hover { background: rgba(255,255,255,.03); }
.hc-num { font-family: var(--ff-head); font-size: 2.5rem; color: rgba(200,151,47,.25); font-weight: 700; line-height: 1; }
.hc h4 { font-family: var(--ff-head); font-size: 1.3rem; color: var(--cream); }
.hc p { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── Contact ─────────────────────────────── */
.contact { padding: 10rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; }
.contact-info p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem; }
.c-info-items { display: flex; flex-direction: column; gap: 2rem; }
.c-info-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.c-info-item strong { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.c-info-item p { font-size: .95rem; color: var(--muted); margin: 0; line-height: 1.6; }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); padding: 3rem; }
.contact-form-wrap h3 { font-family: var(--ff-head); font-size: 1.8rem; margin-bottom: 2.5rem; }
.c-form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form-field input,
.form-field select,
.form-field textarea {
    background: var(--dark); border: 1px solid var(--border); color: var(--white);
    padding: .9rem 1rem; font-size: .95rem;
    transition: border-color .3s;
    resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field select { appearance: none; }

/* ── Footer ──────────────────────────────── */
.footer { background: #000; border-top: 1px solid var(--border); padding: 7rem 0 3rem; }
.footer-top { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; margin-bottom: 5rem; }
.ft-brand .brand { margin-bottom: 1.5rem; }
.ft-brand p { font-size: .95rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.ft-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.ftl-group { display: flex; flex-direction: column; gap: .8rem; }
.ftl-group h5 { font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.ftl-group a { font-size: .9rem; color: var(--muted); transition: color .3s; }
.ftl-group a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .82rem; color: var(--muted); }
.ftb-halal { font-size: .82rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; }

/* ── Toast ───────────────────────────────── */
.toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--gold); color: var(--black); font-size: .9rem; font-weight: 700;
    padding: .9rem 2rem; z-index: 9999; opacity: 0; pointer-events: none;
    transition: all .4s var(--ease);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1100px) {
    .prod-grid { grid-template-columns: 1fr 1fr; }
    .product-hero { grid-template-columns: 1fr; }
    .ph-image { height: 400px; }
}

@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .story-grid { grid-template-columns: 1fr; }
    .story-images { grid-template-columns: 1fr; }
    .story-img-main { height: 360px; }
    .story-img-small { display: none; }
    .halal-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-badges { display: none; }
}

@media (max-width: 680px) {
    .prod-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-heading { font-size: 3rem; }
    .story-stats { gap: 2rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
}
