:root, [data-theme="light"] {
    --bg: #F4ECD8;
    --bg2: #FBF6EA;
    --card: rgba(90, 42, 20, .05);
    --glass: rgba(255,255,255,.78);
    --text: #3A2216;
    --muted: #7A5A42;
    --primary: #8B5A24;
    --accent: #C9A227;
    --border: rgba(90, 42, 20, .12);
    --radius: 18px;
    --glow: 0 16px 40px rgba(139, 90, 36, .14);
    --hero-ov: linear-gradient(180deg, rgba(244,236,216,.2) 0%, rgba(244,236,216,.65) 100%);
    --hdr-scroll: rgba(251,246,234,.94);
    --grid-line: rgba(139, 90, 36, .05);
    --float-bg: rgba(251,246,234,.92);
    --input-bg: rgba(90, 42, 20, .04);
    --feat-bg: linear-gradient(145deg, #fffdf8, #f4ead8);
    --feat-shadow: 0 10px 36px rgba(90, 42, 20, .08), 0 1px 0 rgba(255,255,255,.8) inset;
    --feat-section: linear-gradient(160deg, #ead9b8 0%, #F4ECD8 42%, #FBF6EA 100%);
    --paper: #FFFBF3;
    --maroon: #8B5A24;
}

[data-theme="dark"] {
    --bg: #1A100C;
    --bg2: #261810;
    --card: rgba(255, 232, 200, .05);
    --glass: rgba(255,255,255,.06);
    --text: #F7EFE3;
    --muted: #C4A88A;
    --primary: #E8C47A;
    --accent: #C4A056;
    --border: rgba(232, 196, 122, .14);
    --glow: 0 12px 48px rgba(196, 160, 86, .18);
    --hero-ov: linear-gradient(105deg,rgba(26,16,12,.94) 42%,rgba(26,16,12,.55) 68%,rgba(26,16,12,.75) 100%);
    --hdr-scroll: rgba(26,16,12,.9);
    --grid-line: rgba(255,255,255,.03);
    --float-bg: rgba(26,16,12,.86);
    --input-bg: rgba(0,0,0,.3);
    --feat-bg: linear-gradient(145deg, rgba(48, 28, 18, .95), rgba(26, 16, 12, .88));
    --feat-shadow: 0 16px 48px rgba(0,0,0,.35);
    --feat-section: linear-gradient(180deg, #1A100C 0%, #2A1810 100%);
    --paper: #22150F;
    --maroon: #C4A056;
}

[data-theme="night"] {
    --bg: #0A0705;
    --bg2: #140E0A;
    --card: rgba(255,255,255,.03);
    --glass: rgba(255,255,255,.04);
    --text: #F3E6D0;
    --muted: #A89070;
    --primary: #E8C47A;
    --accent: #D4AF37;
    --border: rgba(255,255,255,.07);
    --glow: 0 12px 48px rgba(212, 175, 55, .12);
    --hero-ov: linear-gradient(105deg,rgba(10,7,5,.96) 42%,rgba(10,7,5,.7) 68%,rgba(10,7,5,.88) 100%);
    --hdr-scroll: rgba(10,7,5,.92);
    --grid-line: rgba(255,255,255,.02);
    --float-bg: rgba(10,7,5,.88);
    --input-bg: rgba(255,255,255,.04);
    --feat-bg: linear-gradient(145deg, rgba(20,14,10,.98), rgba(10,7,5,.95));
    --feat-shadow: 0 16px 48px rgba(0,0,0,.5);
    --feat-section: linear-gradient(180deg, #0A0705 0%, #140E0A 100%);
    --paper: #100B08;
    --maroon: #E8C47A;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, .section-title, .hero-love, .logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

body::before {
    content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cg fill='%23c9a227' fill-opacity='0.09'%3E%3Cellipse cx='22' cy='28' rx='11' ry='3.2' transform='rotate(-28 22 28)'/%3E%3Cellipse cx='78' cy='18' rx='9' ry='3.6' transform='rotate(18 78 18)'/%3E%3Cellipse cx='118' cy='62' rx='10' ry='3.2' transform='rotate(-12 118 62)'/%3E%3Cellipse cx='48' cy='86' rx='8' ry='4' transform='rotate(32 48 86)'/%3E%3Cellipse cx='96' cy='110' rx='11' ry='3.4' transform='rotate(-22 96 110)'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 140px 140px, 56px 56px, 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

a { color: var(--primary); text-decoration: none; }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* Cursor */
.cursor {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid rgba(196,160,86,.55); border-radius: 50%;
    pointer-events: none !important; z-index: 9999; transform: translate(-50%,-50%);
    transition: width .2s, height .2s; mix-blend-mode: difference;
}
.cursor-dot { position: absolute; inset: 0; margin: auto; width: 4px; height: 4px; background: var(--primary); border-radius: 50%; }
.cursor.active { width: 52px; height: 52px; border-color: var(--accent); }
@media (hover:none), (max-width:768px) { .cursor { display: none; } }

/* Header */
.header { position: fixed; inset: 0 0 auto; z-index: 200; transition: .35s; }
.header.scrolled {
    background: var(--hdr-scroll); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }
.logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1rem; color: var(--text); text-decoration: none;
}
.logo-mark {
    display: grid; place-items: center; width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--maroon), var(--accent));
    border-radius: 10px; font-size: .68rem; font-weight: 800; color: #fff;
}
.nav { display: flex; gap: 6px; align-items: center; }
.nav-item { position: relative; }
.nav-item > a {
    display: flex; align-items: center; gap: 4px;
    color: var(--muted); font-size: .86rem; font-weight: 600;
    text-decoration: none; padding: 8px 12px; border-radius: 8px;
    transition: color .2s, background .2s;
}
.nav-item > a:hover, .nav-item > a.on { color: var(--text); background: var(--card); }
.logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 10px; }
.caret { font-size: .65rem; opacity: .6; }
.drop {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
    background: var(--hdr-scroll); backdrop-filter: blur(16px);
    border: 1px solid var(--border); border-radius: 14px;
    padding: 8px; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: .25s; z-index: 300;
    box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.nav-item:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
    display: block; padding: 9px 12px; font-size: .82rem; font-weight: 600;
    color: var(--muted); text-decoration: none; border-radius: 8px;
    transition: .2s;
}
.drop a:hover { color: var(--text); background: var(--card); }
.menu-btn {
    display: none; width: 40px; height: 40px;
    border: 1px solid var(--border); border-radius: 10px;
    background: var(--card); color: var(--text); font-size: 1.1rem; cursor: pointer;
}

/* Theme toggle */
.theme-toggle {
    display: flex; gap: 2px; padding: 3px;
    background: var(--card); border: 1px solid var(--border); border-radius: 999px;
}
.theme-toggle button {
    width: 32px; height: 32px; border: none; border-radius: 50%;
    background: transparent; cursor: pointer; font-size: .85rem;
    opacity: .45; transition: .25s;
}
.theme-toggle button.on {
    opacity: 1; background: var(--glass);
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.theme-toggle button:hover { opacity: .8; }

/* Hero */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 110px 0 70px; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transform: scale(1.08); transition: transform .1s linear;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: var(--hero-ov), radial-gradient(circle at 80% 20%, rgba(196,160,86,.14), transparent 45%);
}
.hero-orbs span {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: .3;
    animation: float 9s ease-in-out infinite;
}
.hero-orbs span:nth-child(1) { width: 420px; height: 420px; background: #1d4ed8; top: -8%; right: -5%; }
.hero-orbs span:nth-child(2) { width: 280px; height: 280px; background: #ca8a04; bottom: 5%; left: 30%; animation-delay: -4s; }
@keyframes float { 50% { transform: translate(16px,-24px) scale(1.06); } }

.hero-grid {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px;
    align-items: center; position: relative; z-index: 2;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 18px;
}
.eyebrow.dark { color: var(--accent); }
.pulse { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .4; transform: scale(1.5); } }

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08;
    font-weight: 800; margin-bottom: 20px; letter-spacing: -.02em;
}
.grad {
    background: linear-gradient(135deg, #7c2d12, var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-lead { color: var(--muted); font-size: 1.08rem; max-width: 500px; margin-bottom: 22px; }
.hero-points { list-style: none; margin-bottom: 32px; }
.hero-points li {
    padding: 7px 0 7px 26px; position: relative; color: var(--muted); font-size: .93rem;
}
.hero-points li::before {
    content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero frame + float cards */
.hero-frame {
    position: relative; border-radius: 24px; overflow: visible;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 32px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
    animation: heroFloat 6s ease-in-out infinite;
}
.hero-img { display: block; width: 100%; height: 400px; object-fit: cover; border-radius: 24px; }
.float-card {
    position: absolute; background: var(--float-bg); backdrop-filter: blur(14px);
    border: 1px solid var(--border); border-radius: 14px; padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.35); animation: cardBob 4s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 1.2rem; color: var(--primary); line-height: 1.1; }
.float-card span { font-size: .72rem; color: var(--muted); font-weight: 600; }
.fc1 { top: -16px; right: -12px; animation-delay: 0s; }
.fc2 { bottom: 40px; left: -24px; animation-delay: -1.3s; }
.fc3 { bottom: -14px; right: 24px; animation-delay: -2.6s; }
@keyframes heroFloat { 50% { transform: translateY(-10px); } }
@keyframes cardBob { 50% { transform: translateY(-6px); } }

/* Trust bar */
.trust-bar {
    background: linear-gradient(90deg, var(--bg2), color-mix(in srgb, var(--accent) 18%, var(--bg2)), var(--bg2));
    border-block: 1px solid var(--border); padding: 16px 0;
}
.trust-inner { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-inner span { font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* Marquee */
.marquee { background: var(--bg2); padding: 16px 0; overflow: hidden; border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track span { white-space: nowrap; font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.marquee-track span::before { content: "◆ "; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: .88rem;
    border: 2px solid transparent; cursor: pointer; text-decoration: none;
    transition: transform .2s, box-shadow .25s;
}
.btn-sm { padding: 10px 20px; font-size: .82rem; background: var(--primary); color: #fff8e7; }
.btn-primary { background: linear-gradient(135deg, var(--maroon), #5c2418); color: #fff8e7; }
.btn-primary:hover { box-shadow: 0 10px 36px rgba(139,58,36,.35); }
.btn-glass { background: var(--glass); color: var(--text); border-color: var(--border); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.1); }

/* Sections */
.section { padding: 96px 0; position: relative; }
.section-dark { background: var(--bg2); }
.section-features {
    background: var(--feat-section); position: relative; overflow: hidden;
}
.section-features::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 15% 20%, rgba(196,160,86,.18), transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(139,58,36,.1), transparent 40%);
}
.section-features .wrap { position: relative; z-index: 1; }
.head-center { text-align: center; margin-bottom: 48px; }
.head-center .section-title { margin-bottom: 8px; }
.head-center .section-sub { margin-bottom: 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.section-title.light { color: var(--text); }
.section-sub { color: var(--muted); font-size: .95rem; margin-bottom: 36px; }
.section-text { color: var(--muted); max-width: 560px; margin-bottom: 28px; font-size: .96rem; }

/* About */
.section-about { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap {
    position: relative; opacity: 0; transform: translateX(-40px);
}
.about-grid.in-view .about-img-wrap { animation: aboutInL .7s cubic-bezier(.22,1,.36,1) forwards; }
.about-img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: var(--radius); border: 1px solid var(--border);
    box-shadow: var(--feat-shadow, 0 24px 60px rgba(0,0,0,.4));
}
.about-badge {
    position: absolute; bottom: -16px; right: 28px;
    background: var(--float-bg); backdrop-filter: blur(12px);
    border: 1px solid var(--border); border-radius: 14px; padding: 16px 22px;
    box-shadow: var(--glow);
}
.about-badge strong { display: block; font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.about-badge span { font-size: 1.1rem; font-weight: 800; color: var(--accent); }
.about-content { display: flex; flex-direction: column; justify-content: center; }
.about-el { opacity: 0; transform: translateX(30px); }
.about-grid.in-view .about-el { animation: aboutInR .6s cubic-bezier(.22,1,.36,1) forwards; }
.about-grid.in-view .about-el:nth-child(1) { animation-delay: .15s; }
.about-grid.in-view .about-el:nth-child(2) { animation-delay: .25s; }
.about-grid.in-view .about-el:nth-child(3) { animation-delay: .35s; }
.about-grid.in-view .about-el:nth-child(4) { animation-delay: .45s; }
.about-grid.in-view .about-stats .about-el:nth-child(1) { animation-delay: .55s; }
.about-grid.in-view .about-stats .about-el:nth-child(2) { animation-delay: .65s; }
.about-grid.in-view .about-stats .about-el:nth-child(3) { animation-delay: .75s; }
@keyframes aboutInL { to { opacity: 1; transform: translateX(0); } }
@keyframes aboutInR { to { opacity: 1; transform: translateX(0); } }
.about-content .section-text { margin-bottom: 20px; max-width: none; }
.about-points {
    list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px;
}
.about-points li {
    padding-left: 22px; position: relative; font-size: .9rem; color: var(--muted); font-weight: 600;
}
.about-points li::before {
    content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800;
}
.about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%;
}
.about-stats .stat {
    text-align: center; padding: 22px 14px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; min-height: 110px;
    background: var(--feat-bg, var(--card)); box-shadow: var(--feat-shadow, none);
    border: 1px solid var(--border); border-radius: var(--radius);
}
.about-stats .stat strong { font-size: 1.6rem; margin-bottom: 4px; }
.about-stats .stat span { font-size: .75rem; line-height: 1.3; }

/* Stats */
.stats { display: flex; gap: 16px; flex-wrap: wrap; }
.stat {
    flex: 1; min-width: 130px; background: var(--card);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px;
}
.stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.stat span { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* Features */
.feat-glow { display: none; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.feat {
    position: relative; background: var(--feat-bg); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 30px 24px 34px;
    box-shadow: var(--feat-shadow);
    opacity: 0; transform: translateY(32px) scale(.96);
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .4s;
}
.feat::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: .85;
}
.feat-grid.in-view .feat { animation: featIn .55s cubic-bezier(.22,1,.36,1) forwards; }
.feat-grid.in-view .feat:nth-child(1) { animation-delay: 0s; }
.feat-grid.in-view .feat:nth-child(2) { animation-delay: .1s; }
.feat-grid.in-view .feat:nth-child(3) { animation-delay: .2s; }
.feat-grid.in-view .feat:nth-child(4) { animation-delay: .3s; }
@keyframes featIn { to { opacity: 1; transform: translateY(0) scale(1); } }
.feat:hover {
    border-color: color-mix(in srgb, var(--primary) 45%, transparent); transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow);
}
.feat-num {
    position: absolute; top: 16px; right: 16px;
    font-size: .72rem; font-weight: 800; color: var(--primary);
    background: rgba(139,58,36,.1); padding: 4px 10px; border-radius: 8px;
}
[data-theme="light"] .feat-num { background: rgba(2,132,199,.1); color: var(--primary); }
.feat-icon-wrap {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(196,160,86,.28), rgba(139,58,36,.12));
    border: 1px solid rgba(196,160,86,.3);
    display: grid; place-items: center; margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(196,160,86,.16);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}
[data-theme="light"] .feat-icon-wrap {
    background: linear-gradient(135deg, #f4ead8, #efe0c4);
    border-color: rgba(139,58,36,.2);
    box-shadow: 0 6px 16px rgba(139,58,36,.1);
}
.feat:hover .feat-icon-wrap { transform: scale(1.1) rotate(-3deg); }
.feat-icon { font-size: 1.6rem; line-height: 1; }
.feat h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em; color: var(--text); }
.feat p { font-size: .86rem; color: var(--muted); line-height: 1.6; }
.feat-line {
    display: block; height: 4px; width: 0; margin-top: 20px; border-radius: 99px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width .5s cubic-bezier(.22,1,.36,1);
}
.feat-grid.in-view .feat-line { width: 56px; }
.feat:hover .feat-line { width: 100%; }

/* Animated boxes */
.anim-box { position: relative; transform-style: preserve-3d; }
.anim-box::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, transparent, var(--primary), var(--accent), transparent);
    background-size: 300% 300%; opacity: 0;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: borderShift 5s linear infinite; pointer-events: none;
}
.anim-box:hover::before { opacity: 1; }
@keyframes borderShift { 50% { background-position: 100% 50%; } }

/* Trading Services */
.section-services {
    background: var(--bg2); position: relative; overflow: hidden;
}
.section-services::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 10% 30%, rgba(196,160,86,.14), transparent 50%),
                radial-gradient(circle at 90% 70%, rgba(139,58,36,.1), transparent 45%);
}
.serv-wrap { position: relative; z-index: 1; }
.serv-el { opacity: 0; transform: translateY(24px); }
.serv-wrap.in-view .serv-el { animation: aboutInR .6s cubic-bezier(.22,1,.36,1) forwards; }
.serv-wrap.in-view .serv-el:nth-child(1) { animation-delay: 0s; }
.serv-wrap.in-view .serv-el:nth-child(2) { animation-delay: .1s; }
.serv-wrap.in-view .serv-el:nth-child(3) { animation-delay: .2s; }
.serv-wrap.in-view .serv-el:nth-child(4) { animation-delay: .3s; }
.serv-badge {
    display: inline-block; margin-top: 12px;
    padding: 8px 18px; border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 14%, transparent); border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
    font-size: .78rem; font-weight: 700; color: var(--primary);
}
.serv-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.serv-card {
    opacity: 0; transform: translateY(28px) scale(.97);
    background: var(--feat-bg, var(--card)); border: 1px solid var(--border);
    box-shadow: var(--feat-shadow, none);
}
.serv-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius) var(--radius) 0 0; z-index: 3;
}
.serv-wrap.in-view .serv-card {
    animation: servIn .55s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: calc(var(--i) * 0.07s + 0.35s);
}
@keyframes servIn { to { opacity: 1; transform: translateY(0) scale(1); } }
.serv-card:hover { box-shadow: var(--glow); transform: translateY(-8px); }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 24px; }
.card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    transform-style: preserve-3d; transition: box-shadow .35s, transform .35s;
}
.card-glow {
    position: absolute; inset: 0; opacity: 0; transition: opacity .4s; z-index: 2; pointer-events: none;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(196,160,86,.18), transparent 55%);
}
.card:hover .card-glow { opacity: 1; }
.card-img-wrap { height: 190px; overflow: hidden; position: relative; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.card:hover .card-img-wrap img { transform: scale(1.12); }
.card-img-wrap::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
}
.card-tag {
    position: absolute; top: 12px; right: 12px; z-index: 1;
    background: var(--float-bg); backdrop-filter: blur(8px);
    border: 1px solid var(--border); padding: 5px 10px;
    border-radius: 999px; font-size: .65rem; font-weight: 700;
    color: var(--accent); letter-spacing: .06em; text-transform: uppercase;
}
.card-num {
    position: absolute; bottom: 12px; left: 12px; z-index: 1;
    font-size: .72rem; font-weight: 800; color: #fff;
    background: rgba(0,0,0,.55); padding: 5px 10px; border-radius: 8px;
    letter-spacing: .1em;
}
.card-body {
    padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1;
}
.card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; line-height: 1.35; color: var(--text); }
.card p { font-size: .84rem; color: var(--muted); line-height: 1.55; margin-bottom: 0; flex: 1; }
.card-actions {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
}
.card-link {
    font-size: .8rem; font-weight: 700; color: var(--primary); text-decoration: none;
}
.card-link:hover { color: var(--accent); }
.card-inquire {
    font-size: .78rem; font-weight: 700; color: var(--accent); text-decoration: none;
    padding: 6px 14px; border-radius: 8px;
    background: rgba(245,197,66,.12); border: 1px solid rgba(245,197,66,.25);
    transition: .25s;
}
.card-inquire:hover { background: var(--accent); color: var(--bg); }

/* Products */
.prod-tabs {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 28px;
}
.prod-tabs button {
    padding: 9px 20px; border-radius: 999px; border: 1px solid var(--border);
    background: var(--card); color: var(--muted); font: inherit;
    font-size: .82rem; font-weight: 700; cursor: pointer; transition: .25s;
}
.prod-tabs button.on, .prod-tabs button:hover {
    background: var(--primary); color: var(--bg); border-color: var(--primary);
}
.prod-scroll {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 16px; -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: var(--primary) var(--card);
}
.prod-scroll::-webkit-scrollbar { height: 5px; }
.prod-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }
.prod {
    flex: 0 0 300px; scroll-snap-align: start;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .35s, box-shadow .35s, opacity .3s;
}
.prod.hide { display: none; }
.prod:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.prod-img { height: 160px; overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prod:hover .prod-img img { transform: scale(1.1); }
.prod-body { padding: 18px 20px 22px; }
.prod-cat {
    display: inline-block; font-size: .65rem; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase; color: var(--primary);
    background: color-mix(in srgb, var(--primary) 12%, transparent); padding: 4px 10px; border-radius: 999px; margin-bottom: 8px;
}
.prod h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.prod p { font-size: .82rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.prod-btn { font-size: .8rem; font-weight: 700; color: var(--accent); text-decoration: none; }
.prod-btn:hover { color: var(--primary); }

/* CTA */
.cta { padding: 0 0 96px; }
.cta-box {
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
    padding: 48px 52px; border-radius: 24px;
    background: linear-gradient(135deg, var(--maroon) 0%, #5c2418 55%, #3d1c12 100%);
    border: 1px solid rgba(196,160,86,.35);
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.cta-box h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; margin-bottom: 8px; color: #fff8e7; }
.cta-box p { color: #e8d5a8; font-size: .92rem; max-width: 480px; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.c-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; padding: 18px 20px;
}
.c-card strong { display: block; font-size: .78rem; color: var(--muted); margin-bottom: 4px; }
.c-card span, .c-card a { font-size: .92rem; font-weight: 600; color: var(--text); text-decoration: none; }
.contact-form {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px;
}
.contact-form h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 14px 16px; margin-bottom: 14px;
    border: 1px solid var(--border); border-radius: 12px;
    font: inherit; background: var(--input-bg); color: var(--text);
    transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(196,160,86,.18);
}
.contact-form .btn { width: 100%; justify-content: center; }

/* Footer */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px;
    padding-bottom: 36px; border-bottom: 1px solid var(--border);
}
.footer-grid p { color: var(--muted); font-size: .88rem; margin-top: 14px; max-width: 280px; }
.footer-grid strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.footer-grid a, .footer-grid span { display: block; color: #b0c0d0; font-size: .88rem; margin-bottom: 8px; text-decoration: none; }
.footer-grid a:hover { color: var(--primary); }
.footer-copy { padding-top: 24px; font-size: .82rem; color: #5a7088; text-align: center; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: .75s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"]{transition-delay:.1s}
.reveal[data-delay="2"]{transition-delay:.2s}
.reveal[data-delay="3"]{transition-delay:.3s}
.reveal[data-delay="4"]{transition-delay:.4s}

@media (max-width: 960px) {
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero-grid, .about-grid, .contact-wrap { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .about-img { height: 280px; }
    .hero-visual { order: -1; }
    .hero-img { height: 260px; }
    .float-card { display: none; }
    .menu-btn { display: block; }
    .nav {
        display: none; position: fixed; top: 76px; left: 16px; right: 16px;
        flex-direction: column; align-items: stretch; gap: 4px;
        background: var(--hdr-scroll); backdrop-filter: blur(18px);
        border: 1px solid var(--border); border-radius: 16px;
        padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.4); z-index: 250;
    }
    .nav.open { display: flex; }
    .nav-item > a { padding: 12px 14px; }
    .drop {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; padding: 0 0 4px 12px; background: transparent;
        display: none;
    }
    .nav-item.sub-open .drop { display: block; }
    .theme-toggle { order: 3; }
    .feat-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 32px 28px; }
    .section { padding: 64px 0; }
}
/* Inner pages */
.page-banner {
    padding: 140px 0 56px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 18%, var(--bg2)), var(--bg));
    border-bottom: 1px solid var(--border);
}
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 10px; }
.banner-crumb { color: var(--muted); font-size: .88rem; }
.banner-crumb a { color: var(--primary); }
.prod-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.prod-grid .prod { flex: none; }

.related-slider {
    position: relative;
    padding: 0 48px;
}
.related-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.related-slider-track::-webkit-scrollbar { display: none; }
.related-slider-track .prod {
    flex: 0 0 min(300px, 78vw);
    scroll-snap-align: start;
}
.related-slider-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--float-bg);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--glow);
    transition: .2s;
}
.related-slider-btn:hover {
    background: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
}
.related-slider-btn.prev { left: 0; }
.related-slider-btn.next { right: 0; }
@media (max-width: 640px) {
    .related-slider { padding: 0 36px; }
    .related-slider-btn { width: 34px; height: 34px; font-size: 1.2rem; }
}
.product-detail { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.product-detail-img img {
    width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius);
    border: 1px solid var(--border);
}
.product-detail-body h2 { font-size: 1.8rem; font-weight: 800; margin: 12px 0 16px; }
.cms-content { color: var(--muted); line-height: 1.7; }
.cms-content h2, .cms-content h3 { color: var(--text); margin: 18px 0 10px; }
.cms-content p { margin-bottom: 12px; }
.cms-content ul { margin: 0 0 16px 18px; }
.cms-page { max-width: 860px; }
.alert { padding: 12px 14px; border-radius: 10px; margin-bottom: 16px; font-size: .88rem; }
.alert-success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #86efac; }
.alert-danger { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
@media (max-width: 768px) {
    .product-detail { grid-template-columns: 1fr; }
    .product-detail-img img { height: 260px; }
}

/* Brand hero — rice ivory + wheat gold harvest */
.hero-brand {
    min-height: auto; padding: 0; display: block; background: var(--bg);
    overflow: hidden; isolation: isolate; position: relative; z-index: 0;
}
.hero-brand .hero-bg, .hero-brand .hero-overlay, .hero-brand .hero-orbs { display: none; }
.hero-color-frame { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-color-frame .blob {
    position: absolute; border-radius: 46% 54% 48% 52%;
    filter: blur(28px); opacity: .7;
    animation: blobFloat 14s ease-in-out infinite;
}
.blob.b-gold { animation-delay: -3s; }
.blob.b-straw { animation-delay: -6s; }
.blob.b-husk { animation-delay: -9s; }
@keyframes blobFloat { 50% { transform: translate(18px, 14px) scale(1.08); } }
.blob.b-cream { width: 38%; height: 48%; background: #F4C430; top: -12%; left: -8%; }
.blob.b-gold { width: 32%; height: 42%; background: #14B8A6; top: -8%; right: -6%; }
.blob.b-straw { width: 28%; height: 36%; background: #F97316; bottom: 8%; left: 18%; }
.blob.b-husk { width: 24%; height: 34%; background: #6366F1; bottom: -10%; right: -4%; opacity: .45; }
.blob.b-paddy { width: 22%; height: 30%; background: #22C55E; top: 28%; left: -10%; opacity: .35; }
.hero-paper {
    position: relative; z-index: 2;
    margin: 88px 28px 40px; min-height: auto;
    background: var(--paper);
    border-radius: 28px;
    display: flex; align-items: center;
    box-shadow: 0 24px 80px rgba(90,42,20,.12);
    border: 1px solid rgba(90,42,20,.06);
    overflow: hidden;
}
.hero-center { text-align: center; padding: 40px 16px 48px; width: 100%; }
.hero-love {
    display: flex; align-items: center; justify-content: center; flex-wrap: nowrap;
    gap: .28em; white-space: nowrap;
    font-size: clamp(1.9rem, 5.4vw, 3.6rem);
    font-weight: 700; line-height: 1; color: var(--maroon);
    letter-spacing: -.02em; margin: 0 0 22px;
    font-style: italic;
}
.hero-love small {
    font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 700;
    font-size: max(.62rem, .3em); letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted); margin-left: .35em; white-space: nowrap;
}
.hero-amp {
    display: grid; place-items: center; flex: 0 0 auto;
    width: .52em; height: .52em; border-radius: 50%;
    background: linear-gradient(145deg, #E8D5A3, #C9A227);
    color: #3A2216; font-style: italic; font-size: .42em; font-weight: 600;
    box-shadow: 0 8px 20px rgba(139,90,36,.18);
    animation: ampPulse 2.6s ease-in-out infinite;
}
@keyframes ampPulse { 50% { transform: scale(1.12); box-shadow: 0 10px 24px rgba(201,162,39,.45); } }
.hero-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    max-width: 980px; margin: 8px auto 28px;
}
.staple-pane {
    position: relative; margin: 0; border-radius: 22px; overflow: hidden;
    background: #3A2216; box-shadow: 0 18px 44px rgba(90,42,20,.2);
}
.staple-pane .hero-video {
    max-width: none; margin: 0; border-radius: 0; aspect-ratio: 4 / 3;
    box-shadow: none; z-index: 1;
}
.staple-pane img {
    display: block; width: 100%; height: 100%; object-fit: cover;
    aspect-ratio: 4 / 3;
}
.gif-pan { animation: ken 16s ease-in-out infinite alternate; will-change: transform; }
.gif-vid { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes ken {
    from { transform: scale(1.08) translate(-2%, 0); }
    to { transform: scale(1.22) translate(3%, 2%); }
}
.grain-fall { position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
.grain-fall i {
    position: absolute; top: -6%;
    width: 12px; height: 4px; border-radius: 50%;
    background: #E8D5A3; opacity: .75;
    animation: grainDrop 8s linear infinite;
}
.grain-fall i:nth-child(odd) { background: #C9A227; width: 10px; height: 5px; }
.grain-fall i:nth-child(1) { left: 6%; animation-delay: 0s; }
.grain-fall i:nth-child(2) { left: 16%; animation-delay: -1.2s; }
.grain-fall i:nth-child(3) { left: 28%; animation-delay: -2.4s; }
.grain-fall i:nth-child(4) { left: 40%; animation-delay: -0.6s; }
.grain-fall i:nth-child(5) { left: 52%; animation-delay: -3.1s; }
.grain-fall i:nth-child(6) { left: 64%; animation-delay: -1.8s; }
.grain-fall i:nth-child(7) { left: 74%; animation-delay: -4s; }
.grain-fall i:nth-child(8) { left: 84%; animation-delay: -2.7s; }
.grain-fall i:nth-child(9) { left: 92%; animation-delay: -5s; }
.grain-fall i:nth-child(10) { left: 48%; animation-delay: -6.2s; width: 14px; }
@keyframes grainDrop {
    to { transform: translateY(780px) rotate(240deg); opacity: 0; }
}
.staple-tag.live::after {
    content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 6px;
    border-radius: 50%; background: #22c55e; vertical-align: middle;
    animation: pulse 1.4s ease-in-out infinite;
}
.staple-pane figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 28px 20px 16px;
    background: linear-gradient(transparent, rgba(42,24,12,.78));
    color: #fff8e7; text-align: left;
    z-index: 5; pointer-events: none;
}
.staple-pane figcaption strong {
    display: block; font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem; font-weight: 600; line-height: 1.1;
}
.staple-pane figcaption span {
    font-size: .78rem; font-weight: 600; letter-spacing: .04em; opacity: .9;
}
.hero-bowl {
    display: inline-grid; place-items: center;
    width: 108px; height: 108px; border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #fff, #f3e6b8 55%, #c4a056);
    box-shadow: 0 12px 28px rgba(139,58,36,.18), inset 0 0 0 6px #fff8e7;
    flex: 0 0 auto;
}
.hero-video {
    position: relative;
    max-width: 980px;
    margin: 6px auto 28px;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #3A2216;
    box-shadow: 0 22px 50px rgba(90,42,20,.22);
    z-index: 3;
}
.hero-cap {
    position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
    padding: 28px 22px 16px;
    background: linear-gradient(transparent, rgba(42,24,12,.78));
    color: #fff8e7; text-align: left; z-index: 5; pointer-events: none;
    font-size: .82rem; font-weight: 600;
}
.hero-cap strong {
    display: block; font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem; font-weight: 600; line-height: 1.1;
}
.hero-video video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    animation: vidPulse 8s ease-in-out infinite;
}
@keyframes vidPulse { 50% { filter: saturate(1.12) contrast(1.04); } }
.hero-play {
    position: absolute; left: 50%; top: 50%;
    width: 64px; height: 64px; margin: 0;
    transform: translate(-50%, -50%);
    border: none; border-radius: 50%; cursor: pointer;
    background: rgba(255,248,231,.94);
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
    z-index: 4; pointer-events: auto;
    transition: opacity .25s, transform .25s;
}
.hero-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.hero-play-icon {
    display: block; width: 0; height: 0; margin: 0 auto;
    border-style: solid; border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--maroon);
}
.hero-play.is-playing { opacity: 0; }
.hero-video:hover .hero-play.is-playing { opacity: 1; }
.hero-play.is-playing .hero-play-icon {
    width: 18px; height: 18px; border: none;
    background: linear-gradient(90deg, var(--maroon) 0 6px, transparent 6px 12px, var(--maroon) 12px 18px);
}
.hero-brand .hero-lead {
    margin: 0 auto 22px; max-width: 580px; font-size: 1.08rem;
}
.hero-brand .hero-actions { justify-content: center; }

.section-staples {
    background: linear-gradient(180deg, #FBF6EA 0%, #F4ECD8 100%);
    position: relative;
}
.staple-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.staple-card {
    background: var(--paper); border: 1px solid var(--border);
    border-radius: 24px; overflow: hidden;
    box-shadow: var(--feat-shadow);
}
.staple-visual { position: relative; height: 180px; overflow: hidden; }
.staple-visual img, .staple-visual .gif-vid { width: 100%; height: 100%; object-fit: cover; display: block; }
.staple-tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(255,251,243,.92); color: var(--maroon);
    font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 999px;
}
.staple-copy { padding: 20px 24px 22px; }
.staple-copy h3 {
    font-size: 1.8rem; font-weight: 600; margin-bottom: 4px; color: var(--maroon);
}
.staple-copy p { color: var(--muted); margin: 0; }
.rice-card .staple-visual { background: #F7F1E1; }
.wheat-card .staple-visual { background: #C9A227; }

.section-license { background: var(--bg2); }
.lic-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.lic {
    display: flex; flex-direction: column;
    background: var(--paper); border: 1px solid var(--border);
    border-radius: 18px; overflow: hidden; text-decoration: none; color: var(--text);
    box-shadow: var(--feat-shadow); transition: transform .25s, box-shadow .25s;
}
.lic:hover { transform: translateY(-5px); color: var(--text); box-shadow: var(--glow); }
.lic img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform .4s; }
.lic:hover img { transform: scale(1.05); }
.lic div { padding: 14px 14px 16px; }
.lic .n {
    display: block; font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: var(--accent); margin-bottom: 4px;
}
.lic h3 { margin: 0; font-size: .88rem; line-height: 1.35; font-weight: 600; }
.lic .chips { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.lic .chips em {
    font-style: normal; font-size: .62rem; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; padding: 3px 8px; border-radius: 999px;
    background: rgba(201,162,39,.28); color: var(--maroon);
}
.lic:first-child { border-color: rgba(201,162,39,.4); }
@media (max-width: 1020px) { .lic-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .lic-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lic-grid { grid-template-columns: 1fr; } }

.section-journey { background: var(--bg2); position: relative; z-index: 5; }
.journey-tabs { position: relative; z-index: 6; }
.journey-tabs > input {
    position: absolute; opacity: 0; width: 1px; height: 1px;
    pointer-events: none;
}
.journey-nav {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    margin-bottom: 32px; position: relative; z-index: 7;
}
.journey-nav label {
    font: inherit; cursor: pointer; text-align: left;
    padding: 16px 18px; border-radius: 16px;
    border: 1px solid var(--border); background: var(--paper);
    color: var(--muted); font-weight: 700; transition: .25s;
    display: block; position: relative; z-index: 8; pointer-events: auto;
}
.journey-nav label em {
    display: block; font-style: normal; font-size: .68rem;
    letter-spacing: .14em; text-transform: uppercase; margin-bottom: 4px;
    color: var(--accent);
}
#j-source:checked ~ .journey-nav label[for="j-source"],
#j-move:checked ~ .journey-nav label[for="j-move"],
#j-hold:checked ~ .journey-nav label[for="j-hold"],
#j-supply:checked ~ .journey-nav label[for="j-supply"] {
    background: var(--maroon); color: #fff8e7; border-color: var(--maroon);
}
#j-source:checked ~ .journey-nav label[for="j-source"] em,
#j-move:checked ~ .journey-nav label[for="j-move"] em,
#j-hold:checked ~ .journey-nav label[for="j-hold"] em,
#j-supply:checked ~ .journey-nav label[for="j-supply"] em { color: var(--accent); }
.journey-panel { display: none; padding: 36px 40px; border-radius: 22px; background: var(--paper); border: 1px solid var(--border); }
#j-source:checked ~ .journey-panels .p-source,
#j-move:checked ~ .journey-panels .p-move,
#j-hold:checked ~ .journey-panels .p-hold,
#j-supply:checked ~ .journey-panels .p-supply {
    display: block; animation: aboutInR .4s ease;
}
.journey-kicker {
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.journey-panel h3 {
    font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; margin-bottom: 12px;
}
.journey-panel p { color: var(--muted); max-width: 720px; margin-bottom: 18px; }
.journey-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.journey-panel li { padding-left: 22px; position: relative; font-weight: 600; color: var(--text); }
.journey-panel li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); }

.section-mindsets { background: var(--bg); }
.mindset-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.mindset {
    padding: 28px 24px 32px; border-radius: 22px; min-height: 240px;
    color: #fff8e7; text-decoration: none; display: block;
    transition: transform .25s, box-shadow .25s;
}
a.mindset:hover { transform: translateY(-8px); color: #fff8e7; box-shadow: 0 16px 32px rgba(0,0,0,.2); }
.mindset h3 { font-size: 1.45rem; font-weight: 600; margin-bottom: 12px; }
.mindset p { font-size: .9rem; line-height: 1.55; opacity: .92; font-family: 'DM Sans', sans-serif; }
.mindset.m-gold { background: linear-gradient(160deg, #C9A227, #8B6B1F); }
.mindset.m-husk { background: linear-gradient(160deg, #8B6914, #5C3D12); }
.mindset.m-paddy { background: linear-gradient(160deg, #7A8448, #4A5328); }
.mindset.m-rice { background: linear-gradient(160deg, #F7F1E1, #E4D2A8); color: #3A2216; }
a.mindset.m-rice:hover { color: #3A2216; }

.section-faq { background: var(--bg2); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details {
    background: var(--paper); border: 1px solid var(--border); border-radius: 16px; padding: 4px 22px;
}
.faq-list summary {
    cursor: pointer; font-weight: 700; font-size: 1.05rem;
    padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; font-weight: 600; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--muted); padding: 0 0 18px; margin: 0; }

.footer-grid a, .footer-grid span { color: var(--muted); }
.footer-copy { color: var(--muted); }

@media (max-width: 960px) {
    .mindset-grid, .journey-nav, .staple-grid, .hero-split { grid-template-columns: 1fr 1fr; }
    .hero-bowl { width: 84px; height: 84px; }
    .hero-bowl svg { width: 84px; height: 62px; }
}
@media (max-width: 768px) {
    .hero-paper { margin: 80px 12px 24px; min-height: auto; border-radius: 20px; }
    .hero-center { padding: 48px 8px 56px; }
    .hero-love-mid { gap: 8px; }
    .mindset-grid, .journey-nav, .staple-grid, .hero-split { grid-template-columns: 1fr; }
    .journey-panel { padding: 24px; }
    .staple-visual { height: 200px; }
}

/* Home multi-color */
.is-home .trust-inner span:nth-child(5n+1) { color: #C2410C; }
.is-home .trust-inner span:nth-child(5n+2) { color: #0F766E; }
.is-home .trust-inner span:nth-child(5n+3) { color: #B45309; }
.is-home .trust-inner span:nth-child(5n+4) { color: #4F46E5; }
.is-home .trust-inner span:nth-child(5n+5) { color: #15803D; }
.is-home .marquee-track span:nth-child(6n+1)::before { color: #F59E0B; }
.is-home .marquee-track span:nth-child(6n+2)::before { color: #14B8A6; }
.is-home .marquee-track span:nth-child(6n+3)::before { color: #F97316; }
.is-home .marquee-track span:nth-child(6n+4)::before { color: #6366F1; }
.is-home .marquee-track span:nth-child(6n+5)::before { color: #22C55E; }
.is-home .marquee-track span:nth-child(6n+6)::before { color: #E11D48; }
.is-home .section-staples { background: linear-gradient(90deg, #FEF3C7 0%, #ECFDF5 50%, #FFEDD5 100%); }
.is-home .rice-card { border-color: #34D399; }
.is-home .rice-card h3 { color: #047857; }
.is-home .wheat-card { border-color: #FBBF24; }
.is-home .wheat-card h3 { color: #B45309; }
.is-home .section-license { background: linear-gradient(180deg, #EEF2FF, #FBF6EA); }
.is-home .lic { border-top: 4px solid #C9A227; }
.is-home .lic:nth-child(10n+1) { border-top-color: #F59E0B; }
.is-home .lic:nth-child(10n+2) { border-top-color: #14B8A6; }
.is-home .lic:nth-child(10n+3) { border-top-color: #F97316; }
.is-home .lic:nth-child(10n+4) { border-top-color: #6366F1; }
.is-home .lic:nth-child(10n+5) { border-top-color: #22C55E; }
.is-home .lic:nth-child(10n+6) { border-top-color: #E11D48; }
.is-home .lic:nth-child(10n+7) { border-top-color: #0EA5E9; }
.is-home .lic:nth-child(10n+8) { border-top-color: #A855F7; }
.is-home .lic:nth-child(10n+9) { border-top-color: #84CC16; }
.is-home .lic:nth-child(10n+10) { border-top-color: #FB7185; }
.is-home .feat:nth-child(4n+1)::before, .is-home .feat:nth-child(4n+1) .feat-line { background: linear-gradient(90deg, #F59E0B, #F97316); }
.is-home .feat:nth-child(4n+2)::before, .is-home .feat:nth-child(4n+2) .feat-line { background: linear-gradient(90deg, #14B8A6, #22C55E); }
.is-home .feat:nth-child(4n+3)::before, .is-home .feat:nth-child(4n+3) .feat-line { background: linear-gradient(90deg, #6366F1, #0EA5E9); }
.is-home .feat:nth-child(4n+4)::before, .is-home .feat:nth-child(4n+4) .feat-line { background: linear-gradient(90deg, #E11D48, #F97316); }
.is-home .about-stats .stat:nth-child(1) strong { color: #B45309; }
.is-home .about-stats .stat:nth-child(2) strong { color: #0F766E; }
.is-home .about-stats .stat:nth-child(3) strong { color: #4F46E5; }
.is-home .cta-box { background: linear-gradient(135deg, #7C2D12 0%, #0F766E 55%, #1E3A8A 100%); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    .gif-pan, .grain-fall, .blob, .hero-amp, .hero-video video, .gif-vid { animation: none !important; }
    .feat { opacity: 1; transform: none; }
    .about-img-wrap, .about-el { opacity: 1; transform: none; }
    .serv-el, .serv-card { opacity: 1; transform: none; }
}
