:root {
  --choc:       #3A1A0E;
  --navy:       #2E4472;
  --navy-dark:  #1E2E50;
  --navy-light: #3D5A94;
  --pig-pink:   #FAD2DC;
  --pig-deep:   #F0A8BC;
  --pig-pale:   #FEF0F4;
  --cream:      #FDF8F2;
  --warm-white: #FFFCF8;
  --tan:        #E8D5C0;
  --amber:      #E8A020;
  --sage:       #6B9E68;
  --text:       #2A1208;
  --text-mid:   #5C3A28;
  --text-light: #9A6A50;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--warm-white); color: var(--text); overflow-x: hidden; }

/* LANG BAR */
#lang-bar { background: var(--navy-dark); padding: 7px 24px; display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
#lang-bar span { font-size: 12px; color: rgba(250,210,220,.7); font-weight: 700; }
.lang-btn { background: none; border: 1.5px solid rgba(250,210,220,.3); color: rgba(250,210,220,.7); font-family: 'Nunito', sans-serif; font-size: 12px; font-weight: 800; padding: 4px 14px; border-radius: 100px; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.lang-btn.active { background: var(--pig-pink); border-color: var(--pig-pink); color: var(--navy-dark); }
.lang-btn:hover:not(.active) { border-color: var(--pig-pink); color: var(--pig-pink); }

/* NAV */
nav { background: var(--navy); display: flex; align-items: center; padding: 0 40px; height: 66px; position: sticky; top: 0; z-index: 900; box-shadow: 0 2px 16px rgba(30,46,80,.35); }
.nav-logo { font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 900; color: white; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-links { margin-left: auto; display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--pig-pink); }
.nav-cta { background: var(--pig-pink) !important; color: var(--navy-dark) !important; padding: 9px 20px; border-radius: 8px; font-weight: 900 !important; }
.nav-cta:hover { background: var(--pig-deep) !important; color: var(--navy-dark) !important; }

/* HERO */
#hero { background: var(--navy); background-image: radial-gradient(ellipse 60% 80% at 100% 60%, rgba(46,68,114,0) 0%, rgba(30,46,80,.8) 100%), radial-gradient(ellipse 80% 60% at 30% 20%, rgba(250,210,220,.08) 0%, transparent 60%); min-height: 88vh; display: flex; align-items: center; padding: 80px 40px; position: relative; overflow: hidden; }
#hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(250,210,220,.07) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; width: 100%; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(250,210,220,.15); border: 1px solid rgba(250,210,220,.3); color: var(--pig-pink); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 22px; }
.hero-h1 { font-family: 'Lora', serif; font-size: clamp(38px, 5.5vw, 68px); font-weight: 700; line-height: 1.08; color: white; margin-bottom: 12px; }
.hero-h1 em { font-style: italic; color: var(--pig-pink); }
.hero-sub { font-family: 'Lora', serif; font-size: clamp(16px, 2vw, 22px); font-style: italic; color: rgba(250,210,220,.85); margin-bottom: 28px; line-height: 1.4; }
.hero-body { font-size: 16px; line-height: 1.78; color: rgba(255,255,255,.75); margin-bottom: 40px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-main { background: var(--pig-pink); color: var(--navy-dark); font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 900; padding: 14px 30px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: background .2s, transform .15s; display: inline-block; }
.btn-main:hover { background: var(--pig-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700; padding: 14px 30px; border-radius: 8px; border: 2px solid rgba(255,255,255,.35); text-decoration: none; transition: border-color .2s, color .2s; display: inline-block; }
.btn-outline:hover { border-color: var(--pig-pink); color: var(--pig-pink); }
.hero-logo-wrap { display: flex; align-items: center; justify-content: center; }
.hero-logo-wrap img { width: 100%; max-width: 360px; filter: drop-shadow(0 20px 60px rgba(0,0,0,.5)); }

/* STATS */
.stats-bar { background: var(--choc); display: flex; overflow-x: auto; }
.stat { flex: 1; min-width: 150px; padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.07); text-align: center; }
.stat:last-child { border-right: none; }
.stat-n { font-family: 'Lora', serif; font-size: 32px; font-weight: 700; color: var(--pig-pink); line-height: 1; margin-bottom: 5px; }
.stat-d { font-size: 11px; font-weight: 700; color: var(--tan); letter-spacing: .07em; text-transform: uppercase; line-height: 1.4; }

/* SECTIONS */
section { padding: 88px 40px; }
.wrap { max-width: 1100px; margin: 0 auto; }
.s-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.s-label::before { content: ''; display: inline-block; width: 22px; height: 2.5px; background: var(--navy); border-radius: 2px; }
.s-h2 { font-family: 'Lora', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.12; color: var(--choc); margin-bottom: 20px; }
.s-h2 em { font-style: italic; color: var(--navy); }
.s-lead { font-size: 17px; line-height: 1.78; color: var(--text-mid); max-width: 620px; }

/* MISSION */
#mission { background: var(--warm-white); }
.mission-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; margin-top: 56px; align-items: start; }
.m-body p { font-size: 17px; line-height: 1.82; color: var(--text-mid); margin-bottom: 18px; }
.m-body strong { color: var(--navy); font-weight: 800; }
.pillars { display: flex; flex-direction: column; gap: 14px; }
.pillar { background: var(--pig-pale); border-radius: 14px; padding: 20px 22px; border-left: 4px solid var(--navy); display: flex; gap: 14px; align-items: flex-start; transition: box-shadow .2s; }
.pillar:hover { box-shadow: 0 4px 20px rgba(46,68,114,.12); }
.p-icon { font-size: 26px; flex-shrink: 0; line-height: 1; }
.p-title { font-size: 14px; font-weight: 900; color: var(--choc); margin-bottom: 4px; }
.p-body { font-size: 13px; line-height: 1.6; color: var(--text-light); }

/* HOW */
#how { background: var(--pig-pale); }
.how-grid { display: grid; grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr; margin-top: 56px; align-items: start; }
.how-step { background: white; border-radius: 16px; padding: 28px 22px; text-align: center; border: 2px solid rgba(46,68,114,.1); transition: box-shadow .2s, transform .2s; }
.how-step:hover { box-shadow: 0 8px 32px rgba(46,68,114,.14); transform: translateY(-4px); }
.how-num { width: 30px; height: 30px; background: var(--navy); color: white; border-radius: 50%; font-size: 13px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.how-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.how-title { font-size: 14px; font-weight: 900; color: var(--choc); margin-bottom: 8px; }
.how-body { font-size: 13px; line-height: 1.6; color: var(--text-light); }
.how-arr { display: flex; align-items: center; justify-content: center; color: var(--navy-light); font-size: 20px; padding-top: 55px; }

/* PRODUCTS */
#products { background: var(--warm-white); }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.prod-card { background: white; border-radius: 16px; padding: 28px 24px; border: 2px solid rgba(46,68,114,.08); transition: box-shadow .2s, transform .15s; }
.prod-card:hover { box-shadow: 0 8px 28px rgba(46,68,114,.12); transform: translateY(-3px); }
.pc-icon { font-size: 40px; display: block; margin-bottom: 14px; }
.pc-title { font-family: 'Lora', serif; font-size: 19px; font-weight: 700; color: var(--choc); margin-bottom: 10px; }
.pc-body { font-size: 13px; line-height: 1.7; color: var(--text-light); margin-bottom: 14px; }
.pc-tag { display: inline-block; background: rgba(46,68,114,.08); color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }

/* FARM */
#farm { background: var(--pig-pale); }
.farm-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
.cascade { display: flex; flex-direction: column; }
.c-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(58,26,14,.08); }
.c-item:last-child { border-bottom: none; }
.c-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 44px; }
.c-dot { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.c-line { width: 2px; flex: 1; min-height: 16px; background: linear-gradient(to bottom, rgba(46,68,114,.35), transparent); margin-top: 6px; }
.c-title { font-size: 15px; font-weight: 800; color: var(--choc); margin-bottom: 4px; }
.c-body { font-size: 13px; line-height: 1.65; color: var(--text-light); }
.c-body strong { color: var(--navy); font-weight: 800; }
.inc-box { background: var(--navy); border-radius: 20px; padding: 40px; text-align: center; }
.inc-l { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,210,220,.6); margin-bottom: 6px; }
.inc-before { font-family: 'Lora', serif; font-size: 36px; font-weight: 700; color: rgba(250,210,220,.3); text-decoration: line-through; line-height: 1; margin-bottom: 8px; }
.inc-after { font-family: 'Lora', serif; font-size: 64px; font-weight: 700; color: var(--pig-pink); line-height: 1; margin-bottom: 6px; }
.inc-delta { font-size: 22px; font-weight: 900; color: var(--amber); margin-bottom: 24px; }
.inc-hr { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 20px 0; }
.inc-list { text-align: left; display: flex; flex-direction: column; gap: 10px; }
.inc-li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8); }
.inc-li::before { content: '✓'; color: var(--pig-pink); font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* ABOUT */
#about { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; margin-top: 56px; align-items: start; }
.about-photo { border-radius: 20px; border: 3px solid var(--navy); overflow: hidden; aspect-ratio: 3/4; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-name { font-family: 'Lora', serif; font-size: 30px; font-weight: 700; color: var(--choc); margin-bottom: 4px; }
.about-role { font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 22px; }
.about-bio p { font-size: 16px; line-height: 1.82; color: var(--text-mid); margin-bottom: 16px; }
.about-bio strong { color: var(--navy); font-weight: 800; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag { background: var(--pig-pale); color: #5C2A18; border: 1.5px solid rgba(58,26,14,.15); font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 100px; }

/* CONTACT */
#contact { background: var(--pig-pale); }
.contact-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; margin-top: 56px; }
.contact-body { font-size: 16px; line-height: 1.78; color: var(--text-mid); margin-bottom: 28px; }
.ci { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ci-text { font-size: 14px; font-weight: 600; color: var(--text-mid); line-height: 1.5; }
.ci-text a { color: var(--navy); text-decoration: none; font-weight: 800; }
.ci-text a:hover { text-decoration: underline; }
.aud-label { font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 12px; display: block; }
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
.aud-btn { background: white; border: 2px solid rgba(46,68,114,.12); border-radius: 10px; padding: 10px 14px; font-size: 13px; font-weight: 700; color: var(--text-mid); cursor: pointer; transition: all .15s; text-align: left; display: flex; align-items: center; gap: 8px; font-family: 'Nunito', sans-serif; }
.aud-btn:hover { border-color: var(--navy-light); color: var(--navy); }
.aud-btn.sel { border-color: var(--navy); background: rgba(46,68,114,.07); color: var(--navy); }
.f-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.f-label { font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mid); }
.f-input, .f-textarea { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); background: white; border: 2px solid rgba(46,68,114,.14); border-radius: 10px; padding: 12px 16px; outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.f-input:focus, .f-textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(46,68,114,.1); }
.f-textarea { resize: vertical; min-height: 110px; }
.f-submit { background: var(--navy); color: white; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 900; border: none; border-radius: 10px; padding: 15px 32px; cursor: pointer; transition: background .2s, transform .15s; display: block; width: 100%; }
.f-submit:hover { background: var(--navy-dark); transform: translateY(-1px); }
.f-success { display: none; background: rgba(107,158,104,.15); border: 2px solid #6B9E68; border-radius: 10px; padding: 18px 20px; font-size: 15px; font-weight: 700; color: #3A6E38; margin-top: 14px; text-align: center; }
.f-error { display: none; background: rgba(200,50,50,.1); border: 2px solid #c83232; border-radius: 10px; padding: 14px 18px; font-size: 13px; font-weight: 700; color: #8B0000; margin-top: 14px; }

/* FOOTER */
footer { background: var(--choc); padding: 48px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.foot-logo { display: flex; align-items: center; gap: 10px; }
.foot-logo img { width: 40px; height: 40px; object-fit: contain; }
.foot-logo span { font-family: 'Lora', serif; font-size: 22px; font-weight: 700; color: var(--pig-pink); }
.foot-links { display: flex; gap: 24px; list-style: none; }
.foot-links a { font-size: 13px; font-weight: 700; color: rgba(250,210,220,.5); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--pig-pink); }
.foot-copy { font-size: 12px; font-weight: 600; color: rgba(250,210,220,.3); width: 100%; }

/* REVEAL */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.rv.on { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media(max-width:960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-wrap { display: none; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .how-arr { display: none; }
  .mission-grid, .farm-cols, .about-grid, .contact-cols { grid-template-columns: 1fr; gap: 44px; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:560px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 64px 20px; }
  #hero { padding: 60px 20px; min-height: auto; }
  .prod-grid, .aud-grid { grid-template-columns: 1fr; }
  footer { padding: 36px 20px; flex-direction: column; align-items: flex-start; }
  .stats-bar { flex-wrap: wrap; }
}

/* INNER PAGE HERO */
.inner-hero { background: var(--navy); padding: 80px 40px 60px; position: relative; overflow: hidden; }
.inner-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(250,210,220,.07) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.inner-hero-wrap { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.inner-hero-tag { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--pig-pink); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.inner-hero-tag::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--pig-pink); border-radius: 2px; }
.inner-hero h1 { font-family: 'Lora', serif; font-size: clamp(32px, 5vw, 60px); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 16px; }
.inner-hero h1 em { font-style: italic; color: var(--pig-pink); }
.inner-hero-lead { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.75); max-width: 680px; }

/* ARTICLE CONTENT */
.article { max-width: 800px; margin: 0 auto; padding: 64px 40px; }
.article h2 { font-family: 'Lora', serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--choc); margin: 48px 0 16px; line-height: 1.2; }
.article h2 em { font-style: italic; color: var(--navy); }
.article h3 { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.article p { font-size: 17px; line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; }
.article p strong { color: var(--choc); font-weight: 800; }
.article p em { font-style: italic; color: var(--navy); }

/* TIMELINE */
.timeline { margin: 48px 0; border-left: 3px solid var(--pig-pink); padding-left: 32px; }
.tl-item { position: relative; margin-bottom: 40px; }
.tl-item::before { content: ''; position: absolute; left: -40px; top: 6px; width: 14px; height: 14px; background: var(--pig-pink); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 2px var(--pig-pink); }
.tl-year { font-family: 'Lora', serif; font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.tl-title { font-size: 17px; font-weight: 900; color: var(--choc); margin-bottom: 8px; }
.tl-body { font-size: 15px; line-height: 1.7; color: var(--text-mid); }

/* IMAGE GRID */
.img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.img-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.img-grid img { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 4/3; border: 2px solid rgba(46,68,114,.1); }
.img-caption { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 6px; font-style: italic; }
.img-full { margin: 40px 0; }
.img-full img { width: 100%; border-radius: 16px; border: 2px solid rgba(46,68,114,.1); }

/* WIN BADGES */
.awards { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0; }
.award { background: var(--navy); color: white; border-radius: 10px; padding: 14px 20px; }
.award-icon { font-size: 24px; margin-bottom: 6px; }
.award-title { font-size: 13px; font-weight: 900; color: var(--pig-pink); }
.award-desc { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 3px; }

/* VIDEO EMBED */
.video-section { background: var(--choc); border-radius: 20px; padding: 40px; margin: 40px 0; text-align: center; }
.video-section h3 { font-family: 'Lora', serif; font-size: 24px; color: var(--pig-pink); margin-bottom: 12px; }
.video-section p { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.fb-embed-wrap { display: flex; justify-content: center; }
.video-fallback { display: inline-flex; align-items: center; gap: 10px; background: var(--pig-pink); color: var(--navy-dark); font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 900; padding: 14px 28px; border-radius: 8px; text-decoration: none; margin-top: 20px; }
.video-fallback:hover { background: var(--pig-deep); }

/* GRUBHIVE STATS */
.gh-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.gh-stat { background: var(--navy); border-radius: 12px; padding: 24px; text-align: center; }
.gh-stat-n { font-family: 'Lora', serif; font-size: 32px; font-weight: 700; color: var(--pig-pink); }
.gh-stat-d { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

/* HOW IT WORKS STEPS (inner page) */
.steps { display: flex; flex-direction: column; gap: 0; margin: 40px 0; }
.step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(58,26,14,.08); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; background: var(--navy); color: white; border-radius: 50%; font-size: 16px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.step-title { font-size: 16px; font-weight: 900; color: var(--choc); margin-bottom: 6px; }
.step-body { font-size: 14px; line-height: 1.7; color: var(--text-mid); }

/* CALLOUT BOX */
.callout { background: var(--pig-pale); border-left: 4px solid var(--navy); border-radius: 0 12px 12px 0; padding: 24px 28px; margin: 32px 0; }
.callout p { font-size: 16px; line-height: 1.7; color: var(--text-mid); margin: 0; font-style: italic; }
.callout p strong { color: var(--navy); font-style: normal; }

@media(max-width:700px) {
  .article { padding: 48px 20px; }
  .inner-hero { padding: 60px 20px 40px; }
  .img-grid, .img-grid.three { grid-template-columns: 1fr; }
  .gh-stats { grid-template-columns: 1fr 1fr; }
  .awards { flex-direction: column; }
}

/* Founder Awards Badges */
.founder-awards {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.founder-awards img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  opacity: .75;
  transition: opacity .2s;
}
.founder-awards img:hover {
  opacity: 1;
}
@media(max-width:560px) {
  .founder-awards { justify-content: center; gap: 12px; }
  .founder-awards img { height: 64px; width: 64px; }
}

/* Awards / Social Proof Bar */
.awards-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 20px;
  background: #FFFCF8;
  border-top: 1px solid rgba(46,68,114,.08);
  border-bottom: 1px solid rgba(46,68,114,.08);
}
.awards-label {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #888780;
}
.awards-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}
.awards-logos img {
  height: 56px;
  width: auto;
  opacity: .7;
  transition: opacity .2s;
}
.awards-logos img:hover {
  opacity: 1;
}
@media(max-width:560px) {
  .awards-bar { flex-direction: column; gap: 12px; }
  .awards-logos img { height: 48px; }
}

/* NAV DROPDOWN v2 — bulletproof: .nav-links prefix for specificity, display:none toggle */
.nav-links .nav-dropdown { position: relative; list-style: none !important; }
.nav-links .nav-dropdown-trigger {
  background: none; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: 0;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.nav-links .nav-dropdown-trigger:hover { color: var(--pig-pink); }
.nav-links .nav-dropdown-arrow {
  font-size: 10px; display: inline-block;
  transition: transform .2s;
}
.nav-links .nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-links .nav-dropdown.active .nav-dropdown-trigger {
  background: var(--pig-pink); color: var(--navy-dark);
  padding: 9px 18px; border-radius: 8px; font-weight: 900;
}
.nav-links .nav-dropdown.active .nav-dropdown-trigger:hover { background: var(--pig-deep); }

.nav-links .nav-dropdown-panel {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: white !important;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(30,46,80,.18), 0 2px 6px rgba(30,46,80,.08);
  padding: 8px;
  list-style: none !important;
  margin: 0;
  z-index: 950;
  flex-direction: column;
}
.nav-links .nav-dropdown.open .nav-dropdown-panel { display: block !important; }

.nav-links .nav-dropdown-panel::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: white;
}
.nav-links .nav-dropdown-panel li {
  margin: 0 !important;
  list-style: none !important;
  display: block !important;
}
.nav-links .nav-dropdown-panel a {
  display: block !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--text-mid) !important;
  text-decoration: none !important;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-links .nav-dropdown-panel a:hover {
  background: var(--pig-pale) !important;
  color: var(--navy-dark) !important;
}
.nav-links .nav-dropdown-panel a.current {
  background: var(--navy) !important;
  color: white !important;
}

/* Mobile: dropdown renders inline inside hamburger panel */
@media(max-width:760px) {
  .nav-links .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0;
    color: rgba(255,255,255,.8);
    font-size: 14px;
  }
  .nav-links .nav-dropdown.active .nav-dropdown-trigger {
    background: var(--pig-pink);
    color: var(--navy-dark);
    padding: 9px 18px;
    border-radius: 8px;
  }
  .nav-links .nav-dropdown-panel {
    position: static !important;
    transform: none !important;
    min-width: auto;
    box-shadow: none;
    background: rgba(255,255,255,.05) !important;
    padding: 8px 0 8px 16px;
    margin-top: 10px;
    display: none !important;
  }
  .nav-links .nav-dropdown.open .nav-dropdown-panel { display: block !important; }
  .nav-links .nav-dropdown-panel::before { display: none; }
  .nav-links .nav-dropdown-panel a {
    color: rgba(255,255,255,.8) !important;
    padding: 10px 14px !important;
  }
  .nav-links .nav-dropdown-panel a:hover {
    background: rgba(250,210,220,.12) !important;
    color: var(--pig-pink) !important;
  }
  .nav-links .nav-dropdown-panel a.current {
    background: var(--pig-pink) !important;
    color: var(--navy-dark) !important;
  }
}
