/* Replica Gallery — Stylesheet */



/* ============================================================
   BRAND PALETTE
   ============================================================ */
:root {
  --red:    #B02521;
  --red-dk: #8A1A17;
  --red-lt: #C8291F;
  --lemon:  #F9F3CF;
  --lemon2: #EDE5A8;
  --yellow: #F7CA48;
  --black:  #050505;
  --black2: #0D0D0D;
  --black3: #141414;
  --black4: #1C1C1C;
}

/* ── PAGE SWITCHING ── */
.page { display: none; }
.page.active { display: block; animation: pageFadeIn .3s ease; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
.page.active { display: block; }

/* ── NAV ACTIVE STATE ── */
.nav-links a.active { color: var(--red) !important; }



/* ============================================================
   BRAND PALETTE
   Dark Red   #B02521
   Lemon      #F9F3CF
   Black      #050505
   Yellow     #F7CA48
   ============================================================ */

:root {
  --red:     #B02521;
  --red-dk:  #8A1A17;
  --red-lt:  #C8291F;
  --lemon:   #F9F3CF;
  --lemon2:  #EDE5A8;
  --yellow:  #F7CA48;
  --yellow2: #E5B830;
  --black:   #050505;
  --black2:  #0D0D0D;
  --black3:  #141414;
  --black4:  #1C1C1C;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--lemon);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ---- TYPOGRAPHY HELPERS ---- */
.bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; }
.playfair { font-family: 'Playfair Display', serif; }

.lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); display: inline-block;
}

/* ---- BUTTONS ---- */
.btn-red {
  display: inline-block;
  background: var(--red); color: var(--lemon);
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 36px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-red:hover { background: var(--red-lt); transform: translateY(-2px); }

.btn-lemon {
  display: inline-block;
  background: var(--lemon); color: var(--red-dk);
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 36px; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-lemon:hover { background: var(--lemon2); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--lemon);
  border: 2px solid rgba(249,243,207,0.3);
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 34px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--lemon); background: rgba(249,243,207,0.06); }

.btn-outline-dk {
  display: inline-block;
  background: transparent; color: var(--black);
  border: 2px solid rgba(5,5,5,0.25);
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 34px; cursor: pointer;
  transition: border-color .2s;
}
.btn-outline-dk:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 80px; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--lemon);
  border-bottom: 3px solid var(--red);
}
.nav-logo img { height: 52px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(5,5,5,0.55); transition: color .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red) !important; color: var(--lemon) !important;
  padding: 9px 22px; font-size: 11px !important; letter-spacing: 0.18em !important;
}
.nav-cta:hover { background: var(--red-lt) !important; color: var(--lemon) !important; transform: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--black); display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  margin-top: 80px;
  min-height: calc(100vh - 68px);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero.hero-fullbg { display: flex; flex-direction: column; }
.hero.hero-fullbg h1 { color: var(--lemon) !important; }
.hero.hero-fullbg .hero-fullbg-sub { color: rgba(249,243,207,0.78) !important; }

/* LEFT — LEMON PANEL */
.hero-left {
  background: var(--lemon);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: var(--yellow); border-radius: 50%; opacity: 0.3;
  pointer-events: none;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 3px; background: var(--red); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 108px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--black); margin-bottom: 24px;
}
.hero h1 .red { color: var(--red); }
.hero-sub {
  font-size: 15px; color: rgba(5,5,5,0.6);
  line-height: 1.75; max-width: 400px; margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 52px; padding-top: 32px;
  border-top: 2px solid rgba(5,5,5,0.12);
  display: flex; gap: 44px;
}
.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px; color: var(--red); line-height: 1;
}
.stat-l {
  font-size: 11px; color: rgba(5,5,5,0.48);
  letter-spacing: 0.05em; margin-top: 4px; font-weight: 500;
}

/* RIGHT — IMAGE PANEL */
.hero-right { position: relative; background: var(--black2); overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.72) saturate(1.1);
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }
.hero-ov1 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,0.15) 0%, transparent 60%);
}
.hero-ov2 {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}
.hero-badge {
  position: absolute; top: 32px; right: 32px;
  background: var(--red); color: var(--lemon); padding: 12px 18px; text-align: center;
}
.hero-badge-t { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.06em; line-height: 1.1; }
.hero-badge-s { font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(249,243,207,0.65); margin-top: 3px; }
.hero-card {
  position: absolute; bottom: 56px; left: 28px;
  background: var(--lemon); padding: 14px 18px; border-left: 4px solid var(--yellow);
  animation: floatup 5s ease-in-out infinite;
}
.hero-card-t { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: var(--black); }
.hero-card-s { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-top: 4px; }
@keyframes floatup { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap { background: var(--red); overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; animation: mrq 28s linear infinite; white-space: nowrap; }
.mitem {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  letter-spacing: 0.12em; color: var(--lemon);
  padding: 0 32px; display: flex; align-items: center; gap: 32px;
}
.mitem::after { content: '✦'; color: var(--yellow); font-size: 11px; }
@keyframes mrq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION BASE
   ============================================================ */
.sec { padding: 110px 80px; }
.sec-inner { max-width: 1280px; margin: 0 auto; }
.sec-head { margin-bottom: 60px; }
.sec-head .lbl { margin-bottom: 14px; }
.sec-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.93; color: var(--lemon);
}
.sec-head h2 .yel { color: var(--yellow); }
.sec-head h2 .red { color: var(--red); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-sec { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px); line-height: 0.93;
  color: var(--lemon); margin: 14px 0 24px;
}
.about-text h2 .yel { color: var(--yellow); }
.about-text p { font-size: 15px; color: rgba(249,243,207,0.55); line-height: 1.8; margin-bottom: 16px; }
.pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(249,243,207,0.07); margin-top: 36px;
}
.pillar {
  background: var(--black2); padding: 22px 20px;
  border-top: 3px solid transparent; transition: all .25s;
}
.pillar:hover { background: var(--black3); border-top-color: var(--red); }
.pillar-t {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lemon); margin-bottom: 6px;
}
.pillar-d { font-size: 13px; color: rgba(249,243,207,0.42); line-height: 1.6; }

.about-visual { position: relative; }
.about-img { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82); transition: transform .6s; }
.about-img:hover img { transform: scale(1.04); }
.about-acc { position: absolute; top: -16px; right: -16px; width: 70px; height: 70px; background: var(--yellow); z-index: -1; }
.about-tag { position: absolute; bottom: 24px; left: 24px; background: var(--red); color: var(--lemon); padding: 12px 16px; }
.about-tag p { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; }
.about-tag small { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(249,243,207,0.6); }

/* ============================================================
   HERITAGE (LEMON BG)
   ============================================================ */
.heritage-sec { background: var(--lemon); position: relative; overflow: hidden; }
.heritage-kanji {
  position: absolute; top: -30px; right: -20px;
  font-size: 260px; line-height: 1; color: rgba(5,5,5,0.06);
  pointer-events: none; user-select: none; font-family: 'DM Sans', sans-serif;
}
.heritage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.heritage-left .lbl { color: var(--red); margin-bottom: 14px; }
.heritage-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 5vw, 76px); line-height: 0.93;
  color: var(--black); margin-bottom: 24px;
}
.heritage-left h2 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--red); }
.heritage-left p { font-size: 15px; color: rgba(5,5,5,0.58); line-height: 1.8; margin-bottom: 16px; }
.timeline { margin-top: 44px; }
.t-item { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(5,5,5,0.1); }
.t-yr { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--red); line-height: 1; }
.t-ttl { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--black); margin-bottom: 4px; }
.t-txt { font-size: 13px; color: rgba(5,5,5,0.52); line-height: 1.65; }
.heritage-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 48px; }
.h-img { overflow: hidden; }
.h-img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.h-img:not(:first-child) { aspect-ratio: 1; }
.h-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: transform .5s; }
.h-img:hover img { transform: scale(1.05); }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions-sec { background: var(--black2); }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(249,243,207,0.07); }
.sol-card {
  background: var(--black2); padding: 40px 30px;
  position: relative; overflow: hidden; transition: background .25s;
  text-decoration: none; display: block;
}
.sol-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.sol-card:hover { background: var(--black3); }
.sol-card:hover::before { transform: scaleX(1); }
.sol-num { font-family: 'Bebas Neue', sans-serif; font-size: 60px; color: rgba(176,37,33,0.18); line-height: 1; margin-bottom: 18px; }
.sol-ttl { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--lemon); margin-bottom: 12px; line-height: 1.25; }
.sol-desc { font-size: 13px; color: rgba(249,243,207,0.45); line-height: 1.75; }
.sol-link { margin-top: 22px; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 8px; transition: gap .2s; }
.sol-card:hover .sol-link { gap: 14px; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-sec { background: var(--black); }
.ind-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.ind-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 4.5vw, 70px); color: var(--lemon); line-height: 0.93; margin-top: 12px; }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ind-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--black2); }
.ind-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.48) saturate(0.8); transition: transform .5s, filter .4s; }
.ind-card:hover img { transform: scale(1.07); filter: brightness(0.65) saturate(1); }
.ind-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 18px;
  background: linear-gradient(to top, rgba(5,5,5,0.92) 0%, transparent 100%);
}
.ind-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
.ind-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--lemon); letter-spacing: 0.05em; line-height: 1.1; }

/* ============================================================
   CUISINE
   ============================================================ */
.cuisine-sec { background: var(--black2); }
.ctabs { display: flex; gap: 2px; background: rgba(249,243,207,0.06); margin-bottom: 44px; overflow-x: auto; }
.ctab {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(249,243,207,0.35); padding: 13px 22px;
  cursor: pointer; transition: all .2s; background: var(--black2);
  border-bottom: 3px solid transparent; white-space: nowrap;
}
.ctab:hover { color: rgba(249,243,207,0.65); background: var(--black3); }
.ctab.active { color: var(--lemon); background: var(--black3); border-bottom-color: var(--red); }
.cpanel { display: none; }
.cpanel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ctab.active { color: var(--lemon); border-bottom-color: var(--red); background: var(--black3); }
.ctab:hover { color: var(--lemon); background: var(--black3); }
.cpanel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
/* .c-img replaced by .c-img-wrap */ .c-img canvas { width: 100%; height: 100%; display: block; object-fit: cover; }
.c-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88); }
.c-info .lbl { margin-bottom: 10px; }
.c-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 4vw, 62px); color: var(--lemon); line-height: 0.93; margin-bottom: 18px; }
.c-info p { font-size: 14px; color: rgba(249,243,207,0.52); line-height: 1.8; margin-bottom: 12px; }
.cfeats { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.cfeat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(249,243,207,0.52); }
.cfeat::before { content: ''; width: 18px; height: 2px; background: var(--yellow); flex-shrink: 0; }

/* ============================================================
   WHY (LEMON BG)
   ============================================================ */
.why-sec { background: var(--lemon); }
.why-sec .sec-head h2 { color: var(--black); }
.why-sec .sec-head h2 .red { color: var(--red); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(5,5,5,0.08); }
.why-card {
  background: var(--lemon); padding: 34px 26px;
  border-top: 3px solid transparent; transition: all .25s;
}
.why-card:hover { background: var(--lemon2); border-top-color: var(--red); }
.why-n { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: rgba(176,37,33,0.2); line-height: 1; margin-bottom: 12px; }
.why-t { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--black); margin-bottom: 10px; line-height: 1.25; }
.why-d { font-size: 13px; color: rgba(5,5,5,0.52); line-height: 1.75; }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.cmp-sec { background: var(--black); }
.ctable { width: 100%; border-collapse: collapse; margin-top: 44px; }
.ctable th {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 22px; text-align: left;
  border-bottom: 2px solid rgba(249,243,207,0.08);
}
.ctable th:nth-child(1) { color: rgba(249,243,207,0.38); }
.ctable th:nth-child(2) { color: rgba(249,243,207,0.38); }
.ctable th:nth-child(3) { color: var(--lemon); background: rgba(176,37,33,0.1); }
.ctable td {
  padding: 14px 22px; font-size: 13px;
  border-bottom: 1px solid rgba(249,243,207,0.06);
  color: rgba(249,243,207,0.5);
}
.ctable td:nth-child(3) { color: var(--lemon); background: rgba(176,37,33,0.05); font-weight: 500; }
.ctable tr:hover td { background: rgba(249,243,207,0.02); }
.ctable tr:hover td:nth-child(3) { background: rgba(176,37,33,0.1); }
.ck { color: var(--yellow); font-weight: 700; }
.cx { color: rgba(249,243,207,0.2); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-sec { background: var(--black2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(249,243,207,0.06); margin-top: 52px; }
.p-step {
  background: var(--black2); padding: 34px 26px;
  position: relative; overflow: hidden;
  border-top: 3px solid transparent; transition: border-color .25s;
}
.p-step:hover { border-top-color: var(--yellow); }
.p-ghost {
  position: absolute; top: 12px; right: 14px;
  font-family: 'Bebas Neue', sans-serif; font-size: 72px;
  color: rgba(249,243,207,0.04); line-height: 1; pointer-events: none;
}
.p-num { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--yellow); text-transform: uppercase; margin-bottom: 14px; }
.p-ttl { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--lemon); margin-bottom: 10px; }
.p-desc { font-size: 13px; color: rgba(249,243,207,0.44); line-height: 1.7; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-sec { background: var(--black); padding: 80px; }
.gallery-head { display: flex; justify-content: space-between; align-items: center; max-width: 1280px; margin: 0 auto 36px; }
.gallery-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 4vw, 62px); color: var(--lemon); line-height: 1; }
.gallery-head h2 .yel { color: var(--yellow); }
.gallery-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px;
}
.g-item { overflow: hidden; background: var(--black3); }
.g-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.78) saturate(0.9); transition: transform .5s, filter .4s; }
.g-item:hover img { transform: scale(1.06); filter: brightness(0.95) saturate(1.1); }
.g-item:nth-child(1) { grid-column: 1 / 6; height: 370px; }
.g-item:nth-child(2) { grid-column: 6 / 9; height: 181px; }
.g-item:nth-child(3) { grid-column: 9 / 13; height: 181px; }
.g-item:nth-child(4) { grid-column: 6 / 9; height: 181px; }
.g-item:nth-child(5) { grid-column: 9 / 13; height: 181px; }
.g-item:nth-child(6) { grid-column: 1 / 5; height: 240px; }
.g-item:nth-child(7) { grid-column: 5 / 9; height: 240px; }
.g-item:nth-child(8) { grid-column: 9 / 13; height: 240px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-sec { background: var(--black2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.faq-left .lbl { margin-bottom: 14px; }
.faq-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 4.5vw, 70px); line-height: 0.93; color: var(--lemon); margin-bottom: 20px; }
.faq-left p { font-size: 14px; color: rgba(249,243,207,0.5); line-height: 1.8; margin-bottom: 32px; }
.faq-item { border-top: 1px solid rgba(249,243,207,0.08); }
.faq-q {
  padding: 18px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Playfair Display', serif; font-size: 17px; color: var(--lemon); transition: color .2s;
}
.faq-q:hover { color: var(--lemon2); }
.faq-plus { font-size: 22px; color: var(--red); transition: transform .25s; flex-shrink: 0; margin-left: 14px; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a p { font-size: 13px; color: rgba(249,243,207,0.48); line-height: 1.8; padding-bottom: 16px; }
.faq-item.open .faq-a { max-height: 220px; }

/* ============================================================
   CTA BANNER (RED BG)
   ============================================================ */
.cta-sec { background: var(--red); padding: 96px 80px; position: relative; overflow: hidden; }
.cta-sec::before {
  content: 'GOOD FOOD NO WASTE';
  position: absolute; bottom: -30px; right: -10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 110px;
  color: rgba(249,243,207,0.06); white-space: nowrap; pointer-events: none;
}
.cta-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-text .lbl { color: var(--yellow); margin-bottom: 12px; }
.cta-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 5vw, 78px); line-height: 0.93; color: var(--lemon); margin-bottom: 14px; }
.cta-text p { font-size: 15px; color: rgba(249,243,207,0.65); max-width: 460px; line-height: 1.8; }
.cta-acts { display: flex; flex-direction: column; gap: 12px; min-width: 210px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-sec { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .lbl { margin-bottom: 12px; }
.contact-info h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 4.5vw, 68px); line-height: 0.93; color: var(--lemon); margin-bottom: 20px; }
.contact-info > p { font-size: 15px; color: rgba(249,243,207,0.52); line-height: 1.8; margin-bottom: 44px; }
.cdetails { display: flex; flex-direction: column; gap: 22px; }
.cdetail .lbl { display: block; margin-bottom: 4px; }
.cdetail a { font-size: 15px; color: var(--lemon); }
.cdetail a:hover { color: var(--yellow); }
.cdetail p { font-size: 15px; color: rgba(249,243,207,0.6); line-height: 1.5; }
.frow { margin-bottom: 16px; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.flbl {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(249,243,207,0.32); display: block; margin-bottom: 7px;
}
.finp, .ftxt, .fsel {
  width: 100%; background: var(--black3);
  border: 1px solid rgba(249,243,207,0.08);
  border-bottom: 2px solid rgba(249,243,207,0.14);
  color: var(--lemon); font-family: 'DM Sans', sans-serif;
  font-size: 14px; padding: 12px 15px; outline: none;
  transition: border-bottom-color .2s;
}
.finp:focus, .ftxt:focus, .fsel:focus { border-bottom-color: var(--red); }
.finp::placeholder, .ftxt::placeholder { color: rgba(249,243,207,0.2); }
.ftxt { resize: vertical; min-height: 108px; }
.fsel { appearance: none; cursor: pointer; }
option { background: var(--black3); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black2);
  border-top: 3px solid var(--red);
  padding: 76px 80px 36px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.fbrand img { height: 34px; object-fit: contain; margin-bottom: 18px; }
.fbrand p { font-size: 13px; color: rgba(249,243,207,0.32); line-height: 1.75; max-width: 280px; }
.fcol h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(249,243,207,0.26); margin-bottom: 16px; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fcol a { font-size: 13px; color: rgba(249,243,207,0.36); transition: color .2s; }
.fcol a:hover { color: var(--lemon); }
.footer-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid rgba(249,243,207,0.06); }
.footer-bot p { font-size: 11px; color: rgba(249,243,207,0.22); letter-spacing: 0.06em; }
.fbadge { background: var(--red); color: var(--lemon); font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 14px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .sec { padding: 80px 40px; }
  .gallery-sec { padding: 60px 40px; }
  .cta-sec { padding: 76px 40px; }
  footer { padding: 60px 40px 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 40px 56px; }
  .hero-right { height: 460px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .heritage-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 700px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sec { padding: 60px 24px; }
  .gallery-sec { padding: 48px 24px; }
  .cta-sec { padding: 60px 24px; }
  footer { padding: 48px 24px 28px; }
  .sol-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .cpanel.active { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .f2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item:nth-child(n) { grid-column: auto !important; height: 200px !important; }
}



/* ── ABOUT PAGE SPECIFIC STYLES ── */


:root {
  --red:    #B02521;
  --red-dk: #8A1A17;
  --red-lt: #C8291F;
  --lemon:  #F9F3CF;
  --lemon2: #EDE5A8;
  --yellow: #F7CA48;
  --black:  #050505;
  --black2: #0D0D0D;
  --black3: #141414;
  --black4: #1C1C1C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--lemon);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── LABEL ── */
.lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); display: inline-block;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-block;
  background: var(--red); color: var(--lemon);
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 36px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-red:hover { background: var(--red-lt); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; background: transparent; color: var(--lemon);
  border: 2px solid rgba(249,243,207,0.3);
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 34px; cursor: pointer; transition: border-color .2s;
}
.btn-outline:hover { border-color: var(--lemon); }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 80px; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--lemon);
  border-bottom: 3px solid var(--red);
  transition: background .3s;
}
.nav-logo img { height: 52px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(5,5,5,0.55); transition: color .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red) !important; color: var(--lemon) !important;
  padding: 9px 22px; border-radius: 0;
}
.nav-cta:hover { background: var(--red-lt) !important; color: var(--lemon) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--black); display: block; }

/* ══════════════════════════════════════════
   HERO / PAGE HEADER
══════════════════════════════════════════ */
.page-hero {
  margin-top: 80px;
  background: var(--lemon);
  padding: 90px 80px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: 'ABOUT';
  position: absolute; right: -20px; top: -20px;
  font-family: 'Bebas Neue', sans-serif; font-size: 220px;
  color: rgba(5,5,5,0.05); line-height: 1;
  pointer-events: none; user-select: none;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero .lbl { color: var(--red); margin-bottom: 18px; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 8vw, 130px);
  line-height: 0.9; color: var(--black);
  margin-bottom: 32px;
}
.page-hero h1 span { color: var(--red); }
.page-hero-sub {
  font-size: 18px; color: rgba(5,5,5,0.6);
  line-height: 1.75; max-width: 580px;
  font-family: 'Playfair Display', serif; font-style: italic;
}
.page-hero-line {
  margin-top: 48px; padding-top: 40px;
  border-top: 2px solid rgba(5,5,5,0.12);
  display: flex; align-items: center; gap: 32px;
}
.page-hero-line p {
  font-size: 13px; color: rgba(5,5,5,0.45);
  letter-spacing: 0.08em; font-weight: 500;
}
.page-hero-line::before { content: ''; width: 40px; height: 2px; background: var(--red); flex-shrink: 0; }

/* ══════════════════════════════════════════
   WHO WE ARE
══════════════════════════════════════════ */
.who-sec {
  background: var(--black);
  padding: 110px 80px;
}
.who-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who-text .lbl { margin-bottom: 16px; }
.who-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.92; color: var(--lemon); margin-bottom: 28px;
}
.who-text h2 span { color: var(--yellow); }
.who-text p { font-size: 15px; color: rgba(249,243,207,0.58); line-height: 1.85; margin-bottom: 18px; }
.who-text p strong { color: var(--lemon); font-weight: 600; }

.who-visual { position: relative; }
.who-img-stack { position: relative; }
.who-img-main {
  aspect-ratio: 4/5; overflow: hidden; position: relative;
}
.who-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(0.9); transition: transform .6s;
}
.who-img-main:hover img { transform: scale(1.04); }
.who-img-accent {
  position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px; background: var(--yellow); z-index: -1;
}
.who-tag {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--red); color: var(--lemon); padding: 14px 20px;
  border-left: 4px solid var(--yellow);
}
.who-tag p { font-family: 'Playfair Display', serif; font-size: 16px; font-style: italic; }
.who-tag small { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(249,243,207,0.6); }

.who-founded {
  margin-top: 36px; padding: 24px 28px;
  background: var(--black2); border-left: 3px solid var(--yellow);
  display: flex; align-items: flex-start; gap: 20px;
}
.who-founded-yr {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px;
  color: var(--yellow); line-height: 1; flex-shrink: 0;
}
.who-founded-txt p { font-size: 13px; color: rgba(249,243,207,0.52); line-height: 1.7; }
.who-founded-txt strong { display: block; color: var(--lemon); font-size: 14px; font-weight: 600; margin-bottom: 4px; }

/* ══════════════════════════════════════════
   ORIGIN SECTION (LEMON BG)
══════════════════════════════════════════ */
.origin-sec {
  background: var(--lemon);
  padding: 110px 80px;
  position: relative; overflow: hidden;
}
.origin-sec::after {
  content: '食品サンプル';
  position: absolute; bottom: -40px; right: -20px;
  font-size: 200px; line-height: 1;
  color: rgba(5,5,5,0.05); pointer-events: none;
}
.origin-inner { max-width: 1280px; margin: 0 auto; }
.origin-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.origin-left .lbl { color: var(--red); margin-bottom: 16px; }
.origin-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.92; color: var(--black); margin-bottom: 28px;
}
.origin-left h2 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--red); }
.origin-left p { font-size: 15px; color: rgba(5,5,5,0.6); line-height: 1.85; margin-bottom: 18px; }
.origin-right {
  padding-top: 60px; display: flex; flex-direction: column; gap: 0;
}
.origin-stat {
  padding: 28px 0; border-bottom: 1px solid rgba(5,5,5,0.1);
  display: flex; gap: 24px; align-items: flex-start;
}
.origin-stat:first-child { border-top: 1px solid rgba(5,5,5,0.1); }
.origin-stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  color: var(--red); line-height: 1; flex-shrink: 0; width: 90px;
}
.origin-stat-txt strong { display: block; font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.origin-stat-txt p { font-size: 13px; color: rgba(5,5,5,0.52); line-height: 1.65; }

/* quote strip */
.origin-quote {
  background: var(--red); padding: 48px 64px;
  position: relative; overflow: hidden; margin-top: 0;
}
.origin-quote::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 200px; color: rgba(249,243,207,0.08);
  position: absolute; top: -40px; left: 20px; line-height: 1;
}
.origin-quote blockquote {
  font-family: 'Playfair Display', serif; font-size: clamp(22px, 3vw, 36px);
  font-style: italic; color: var(--lemon); line-height: 1.4;
  max-width: 800px; position: relative; z-index: 1;
}
.origin-quote cite {
  display: block; margin-top: 20px; font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--yellow); font-style: normal;
}

/* ══════════════════════════════════════════
   MISSION + VISION
══════════════════════════════════════════ */
.mv-sec { background: var(--black2); padding: 110px 80px; }
.mv-inner { max-width: 1280px; margin: 0 auto; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(249,243,207,0.07); margin-top: 56px; }
.mv-card { background: var(--black2); padding: 48px 40px; position: relative; overflow: hidden; }
.mv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.mv-card-icon {
  width: 48px; height: 48px; background: rgba(176,37,33,0.15);
  border: 1px solid rgba(176,37,33,0.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.mv-card-icon svg { width: 22px; height: 22px; }
.mv-card .lbl { margin-bottom: 14px; }
.mv-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--lemon); line-height: 0.95; margin-bottom: 20px; }
.mv-card p { font-size: 15px; color: rgba(249,243,207,0.55); line-height: 1.8; }

/* ══════════════════════════════════════════
   WHAT MAKES US DIFFERENT
══════════════════════════════════════════ */
.diff-sec { background: var(--black); padding: 110px 80px; }
.diff-inner { max-width: 1280px; margin: 0 auto; }
.diff-head { margin-bottom: 64px; }
.diff-head .lbl { margin-bottom: 14px; }
.diff-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(46px, 5vw, 78px); line-height: 0.92; color: var(--lemon); }
.diff-head h2 span { color: var(--yellow); }

.diff-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.diff-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diff-pillar {
  background: transparent;
  padding: 24px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: opacity .2s;
  border-bottom: 1px solid rgba(249,243,207,0.08);
}
.diff-pillar:hover {
  opacity: 0.85;
}
.diff-pillar:hover { background: var(--black2); border-left-color: var(--red); }
.diff-pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  color: var(--yellow);
  margin-top: 0;
}
.diff-pillar-body {}
.diff-pillar-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lemon);
  margin-bottom: 6px;
  line-height: 1.3;
}
.diff-pillar-desc {
  font-size: 13px;
  color: rgba(249,243,207,0.5);
  line-height: 1.7;
}

.diff-intersect { padding-top: 10px; }
.diff-intersect h3 { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--lemon); line-height: 0.95; margin-bottom: 24px; }
.diff-intersect p { font-size: 15px; color: rgba(249,243,207,0.55); line-height: 1.85; margin-bottom: 20px; }
.diff-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.diff-tag {
  background: rgba(176,37,33,0.15); border: 1px solid rgba(176,37,33,0.3);
  color: var(--lemon); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 16px;
  transition: background .2s;
}
.diff-tag:hover { background: rgba(176,37,33,0.28); }

.diff-statement {
  margin-top: 48px; padding: 32px 36px;
  background: var(--yellow);
}
.diff-statement p {
  font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic;
  color: var(--black); line-height: 1.5;
}
.diff-statement span { display: block; margin-top: 12px; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); font-style: normal; }

/* ══════════════════════════════════════════
   OUR CRAFT
══════════════════════════════════════════ */
.craft-sec { background: var(--lemon); padding: 110px 80px; position: relative; overflow: hidden; }
.craft-inner { max-width: 1280px; margin: 0 auto; }
.craft-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.craft-left .lbl { color: var(--red); margin-bottom: 16px; }
.craft-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(46px, 5vw, 76px); line-height: 0.92; color: var(--black); margin-bottom: 28px; }
.craft-left h2 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--red); }
.craft-left p { font-size: 15px; color: rgba(5,5,5,0.6); line-height: 1.85; margin-bottom: 20px; }
.craft-attrs { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(5,5,5,0.08); }
.craft-attr {
  background: var(--lemon); padding: 22px 20px;
  border-top: 3px solid transparent; transition: all .25s;
}
.craft-attr:hover { background: var(--lemon2); border-top-color: var(--red); }
.craft-attr-t { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); margin-bottom: 4px; }
.craft-attr-d { font-size: 12px; color: rgba(5,5,5,0.5); line-height: 1.55; }

.craft-right { position: relative; }
.craft-img { aspect-ratio: 1; overflow: hidden; }
.craft-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(0.9); transition: transform .6s; }
.craft-img:hover img { transform: scale(1.04); }
.craft-img-label {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); color: var(--lemon);
  padding: 20px 24px; min-width: 180px;
}
.craft-img-label-n { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--yellow); line-height: 1; }
.craft-img-label-t { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(249,243,207,0.65); margin-top: 2px; }

/* ══════════════════════════════════════════
   WHO WE WORK WITH
══════════════════════════════════════════ */
.clients-sec { background: var(--black2); padding: 110px 80px; }
.clients-inner { max-width: 1280px; margin: 0 auto; }
.clients-head { margin-bottom: 64px; }
.clients-head .lbl { margin-bottom: 14px; }
.clients-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(46px, 5vw, 76px); line-height: 0.92; color: var(--lemon); }
.clients-head h2 span { color: var(--yellow); }
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(249,243,207,0.07); }
.client-card {
  background: var(--black2); padding: 36px 30px;
  border-top: 3px solid transparent; transition: all .25s; position: relative;
}
.client-card:hover { background: var(--black3); border-top-color: var(--red); }
.client-card-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: rgba(176,37,33,0.18); line-height: 1; margin-bottom: 16px; }
.client-card-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--lemon); margin-bottom: 10px; line-height: 1.25; }
.client-card-desc { font-size: 13px; color: rgba(249,243,207,0.46); line-height: 1.7; }

/* ══════════════════════════════════════════
   LOOKING AHEAD
══════════════════════════════════════════ */
.ahead-sec { background: var(--red); padding: 110px 80px; position: relative; overflow: hidden; }
.ahead-sec::before {
  content: 'FUTURE';
  position: absolute; right: -20px; bottom: -40px;
  font-family: 'Bebas Neue', sans-serif; font-size: 200px;
  color: rgba(249,243,207,0.06); pointer-events: none; line-height: 1;
}
.ahead-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ahead-left .lbl { color: var(--yellow); margin-bottom: 16px; }
.ahead-left h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(46px, 5vw, 78px); line-height: 0.92; color: var(--lemon); margin-bottom: 24px; }
.ahead-left p { font-size: 15px; color: rgba(249,243,207,0.68); line-height: 1.85; margin-bottom: 20px; }
.ahead-statement {
  margin-top: 36px; padding: 28px 32px;
  background: rgba(249,243,207,0.1); border-left: 4px solid var(--yellow);
}
.ahead-statement p { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--lemon); line-height: 1.5; }
.ahead-right { display: flex; flex-direction: column; gap: 2px; }
.ahead-point {
  background: rgba(249,243,207,0.08); padding: 24px 28px;
  display: flex; gap: 16px; align-items: flex-start; transition: background .2s;
}
.ahead-point:hover { background: rgba(249,243,207,0.14); }
.ahead-point-dot {
  width: 8px; height: 8px; background: var(--yellow);
  border-radius: 50%; flex-shrink: 0; margin-top: 7px;
}
.ahead-point-title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lemon); margin-bottom: 4px; }
.ahead-point-desc { font-size: 13px; color: rgba(249,243,207,0.6); line-height: 1.6; }

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.cta-sec { background: var(--black); padding: 100px 80px; }
.cta-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-text .lbl { margin-bottom: 14px; }
.cta-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5vw, 78px); line-height: 0.92; color: var(--lemon); margin-bottom: 16px; }
.cta-text h2 span { color: var(--yellow); }
.cta-text p { font-size: 15px; color: rgba(249,243,207,0.55); line-height: 1.8; max-width: 460px; }
.cta-acts { display: flex; flex-direction: column; gap: 14px; min-width: 210px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--black2);
  border-top: 3px solid var(--red);
  padding: 76px 80px 36px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.fbrand img { height: 40px; object-fit: contain; margin-bottom: 18px; }
.fbrand p { font-size: 13px; color: rgba(249,243,207,0.32); line-height: 1.75; max-width: 280px; }
.fcol h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(249,243,207,0.26); margin-bottom: 16px; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fcol a { font-size: 13px; color: rgba(249,243,207,0.36); transition: color .2s; }
.fcol a:hover { color: var(--lemon); }
.footer-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid rgba(249,243,207,0.06); }
.footer-bot p { font-size: 11px; color: rgba(249,243,207,0.22); letter-spacing: 0.06em; }
.fbadge { background: var(--red); color: var(--lemon); font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 14px; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  .page-hero { padding: 72px 40px 64px; }
  .who-sec, .origin-sec, .mv-sec, .diff-sec, .craft-sec, .clients-sec, .ahead-sec, .cta-sec { padding: 80px 40px; }
  footer { padding: 60px 40px 32px; }
  .who-inner { grid-template-columns: 1fr; }
  .who-visual { display: none; }
  .origin-top { grid-template-columns: 1fr; }
  .diff-layout { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-right { display: none; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .ahead-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 700px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 60px 24px 48px; }
  .who-sec, .origin-sec, .mv-sec, .diff-sec, .craft-sec, .clients-sec, .ahead-sec, .cta-sec { padding: 60px 24px; }
  footer { padding: 48px 24px 28px; }
  .mv-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .craft-attrs { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .origin-quote { padding: 36px 28px; }
}




/* ── IMAGE UPLOAD SYSTEM ── */
.c-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #141414;
  cursor: pointer;
}
.c-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .3s;
}
.c-img-wrap:hover img {
  filter: brightness(0.6);
}
.c-img-wrap:hover
.c-img-upload-btn span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F9F3CF;
  background: #B02521;
  padding: 10px 20px;
  cursor: pointer;
}
.c-img-upload-btn p {
  font-size: 11px;
  color: rgba(249,243,207,0.5);
  letter-spacing: 0.08em;
}


/* ══ INDUSTRIES PAGE STYLES ══ */

:root{--red:#B02521;--red-dk:#8A1A17;--red-lt:#C8291F;--lemon:#F9F3CF;--lemon2:#EDE5A8;--yellow:#F7CA48;--black:#050505;--black2:#0D0D0D;--black3:#141414;--black4:#1C1C1C}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--black);color:var(--lemon);font-family:'DM Sans',sans-serif;font-weight:400;line-height:1.65;overflow-x:hidden}
::-webkit-scrollbar{width:3px}::-webkit-scrollbar-track{background:var(--black)}::-webkit-scrollbar-thumb{background:var(--red)}
img{display:block;max-width:100%}a{text-decoration:none}
.lbl{font-family:'DM Sans',sans-serif;font-size:11px;font-weight:600;letter-spacing:0.22em;text-transform:uppercase;color:var(--red);display:inline-block}
.btn-red{display:inline-block;background:var(--red);color:var(--lemon);font-family:'DM Sans',sans-serif;font-size:12px;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;padding:14px 36px;border:none;cursor:pointer;transition:background .2s,transform .15s}
.btn-red:hover{background:var(--red-lt);transform:translateY(-2px)}
.btn-outline{display:inline-block;background:transparent;color:var(--lemon);border:2px solid rgba(249,243,207,0.3);font-family:'DM Sans',sans-serif;font-size:12px;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;padding:12px 34px;cursor:pointer;transition:border-color .2s}
.btn-outline:hover{border-color:var(--lemon)}
.btn-lemon{display:inline-block;background:var(--lemon);color:var(--red-dk);font-family:'DM Sans',sans-serif;font-size:12px;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;padding:14px 36px;border:none;cursor:pointer;transition:background .2s}
.btn-lemon:hover{background:var(--lemon2)}
nav{position:fixed;top:0;left:0;right:0;z-index:200;height:80px;padding:0 60px;display:flex;align-items:center;justify-content:space-between;background:var(--lemon);border-bottom:3px solid var(--red);transition:background .3s}
.nav-logo img{height:52px;object-fit:contain}
.nav-links{display:flex;align-items:center;gap:36px;list-style:none}
.nav-links a{font-family:'DM Sans',sans-serif;font-size:12px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:rgba(5,5,5,0.55);transition:color .2s}
.nav-links a:hover{color:var(--red)}.nav-links a.active{color:var(--red)}
.nav-cta{background:var(--red)!important;color:var(--lemon)!important;padding:9px 22px}
.nav-cta:hover{background:var(--red-lt)!important;color:var(--lemon)!important}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.hamburger span{width:22px;height:2px;background:var(--black);display:block}
.page-hero{margin-top:80px;background:var(--lemon);padding:90px 80px 80px;position:relative;overflow:hidden}
.page-hero::before{content:'INDUSTRIES';position:absolute;right:-20px;top:-20px;font-family:'Bebas Neue',sans-serif;font-size:200px;color:rgba(5,5,5,0.05);line-height:1;pointer-events:none;user-select:none}
.page-hero-inner{max-width:1280px;margin:0 auto}
.page-hero h1{font-family:'Bebas Neue',sans-serif;font-size:clamp(62px,7.5vw,125px);line-height:0.9;color:var(--black);margin:18px 0 28px}
.page-hero h1 span{color:var(--red)}
.page-hero-sub{font-family:'Playfair Display',serif;font-style:italic;font-size:18px;color:rgba(5,5,5,0.6);line-height:1.75;max-width:600px}
.page-hero-meta{margin-top:48px;padding-top:36px;border-top:2px solid rgba(5,5,5,0.12);display:flex;align-items:center;gap:32px}
.page-hero-meta::before{content:'';width:36px;height:2px;background:var(--red);flex-shrink:0}
.page-hero-meta p{font-size:12px;color:rgba(5,5,5,0.45);letter-spacing:0.1em;font-weight:600;text-transform:uppercase}
.intro-strip{background:var(--red);padding:56px 80px}
.intro-strip-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.intro-strip h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(36px,4vw,62px);color:var(--lemon);line-height:0.93}
.intro-strip p{font-size:15px;color:rgba(249,243,207,0.7);line-height:1.85}
.overview-sec{background:var(--black);padding:110px 80px}
.overview-inner{max-width:1280px;margin:0 auto}
.overview-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:rgba(249,243,207,0.07);margin-top:56px}
.ov-card{background:var(--black);padding:44px 36px;transition:all .25s;border-top:3px solid transparent}
.ov-card:hover{background:var(--black2);border-top-color:var(--red)}
.ov-card-num{font-family:'Bebas Neue',sans-serif;font-size:60px;color:rgba(176,37,33,0.18);line-height:1;margin-bottom:18px}
.ov-card-title{font-family:'Playfair Display',serif;font-size:22px;color:var(--lemon);margin-bottom:12px;line-height:1.25}
.ov-card-desc{font-size:13px;color:rgba(249,243,207,0.45);line-height:1.75;margin-bottom:18px}
.ov-card-link{font-size:11px;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:var(--red)}
.stats-strip{background:var(--yellow);padding:72px 80px}
.stats-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:rgba(5,5,5,0.1)}
.stat-block{background:var(--yellow);padding:40px 32px;text-align:center}
.stat-block-n{font-family:'Bebas Neue',sans-serif;font-size:72px;color:var(--red);line-height:1}
.stat-block-l{font-size:12px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:rgba(5,5,5,0.58);margin-top:8px}
.industry-sec{padding:110px 80px}
.industry-sec.dark{background:var(--black2)}
.industry-sec.darker{background:var(--black)}
.industry-sec.lemon{background:var(--lemon)}
.industry-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.industry-text .lbl{margin-bottom:16px}
.industry-text h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(42px,4.5vw,70px);line-height:0.93;color:var(--lemon);margin-bottom:24px}
.industry-text h2 span{color:var(--yellow)}
.industry-text.on-lemon h2{color:var(--black)}
.industry-text.on-lemon h2 span{color:var(--red)}
.industry-text p{font-size:15px;color:rgba(249,243,207,0.55);line-height:1.85;margin-bottom:18px}
.industry-text.on-lemon p{color:rgba(5,5,5,0.58)}
.uses{margin-top:28px;display:flex;flex-direction:column}
.use-item{display:flex;align-items:flex-start;gap:16px;padding:13px 0;border-bottom:1px solid rgba(249,243,207,0.08)}
.use-item:first-child{border-top:1px solid rgba(249,243,207,0.08)}
.industry-sec.lemon .use-item{border-color:rgba(5,5,5,0.1)}
.use-dot{width:6px;height:6px;background:var(--yellow);border-radius:50%;flex-shrink:0;margin-top:7px}
.industry-sec.lemon .use-dot{background:var(--red)}
.use-text{font-size:14px;color:rgba(249,243,207,0.55);line-height:1.6}
.industry-sec.lemon .use-text{color:rgba(5,5,5,0.58)}
.ind-visual{position:relative}
.ind-img{aspect-ratio:4/5;overflow:hidden;position:relative}
.ind-img img{width:100%;height:100%;object-fit:cover;filter:brightness(0.82);transition:transform .6s}
.ind-img:hover img{transform:scale(1.04)}
.ind-acc{position:absolute;top:-16px;right:-16px;width:72px;height:72px;background:var(--yellow);z-index:-1}
.ind-badge{position:absolute;bottom:28px;left:28px;background:var(--red);color:var(--lemon);padding:14px 20px;border-left:4px solid var(--yellow)}
.industry-sec.lemon .ind-badge{background:var(--black)}
.ind-badge p{font-family:'Playfair Display',serif;font-size:15px;font-style:italic}
.ind-badge small{font-size:10px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(249,243,207,0.6)}
.why-sec{background:var(--lemon);padding:110px 80px}
.why-inner{max-width:1280px;margin:0 auto}
.why-sec .lbl{color:var(--red);margin-bottom:14px}
.why-sec h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(44px,5vw,76px);line-height:0.93;color:var(--black);margin-bottom:56px}
.why-sec h2 span{color:var(--red)}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:rgba(5,5,5,0.08)}
.why-card{background:var(--lemon);padding:34px 28px;border-top:3px solid transparent;transition:all .25s}
.why-card:hover{background:var(--lemon2);border-top-color:var(--red)}
.why-n{font-family:'Bebas Neue',sans-serif;font-size:52px;color:rgba(176,37,33,0.2);line-height:1;margin-bottom:12px}
.why-t{font-family:'Playfair Display',serif;font-size:20px;color:var(--black);margin-bottom:10px}
.why-d{font-size:13px;color:rgba(5,5,5,0.52);line-height:1.75}
.faq-sec{background:var(--black2);padding:110px 80px}
.faq-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start}
.faq-left h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(40px,4.5vw,66px);line-height:0.93;color:var(--lemon);margin:14px 0 20px}
.faq-left p{font-size:14px;color:rgba(249,243,207,0.5);line-height:1.8;margin-bottom:32px}
.faq-item{border-top:1px solid rgba(249,243,207,0.08)}
.faq-q{padding:18px 0;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-family:'Playfair Display',serif;font-size:17px;color:var(--lemon);transition:color .2s}
.faq-q:hover{color:var(--lemon2)}
.faq-plus{font-size:22px;color:var(--red);transition:transform .25s;flex-shrink:0;margin-left:14px}
.faq-item.open .faq-plus{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .32s ease}
.faq-a p{font-size:13px;color:rgba(249,243,207,0.5);line-height:1.8;padding-bottom:16px}
.faq-item.open .faq-a{max-height:220px}
.cta-sec{background:var(--red);padding:96px 80px;position:relative;overflow:hidden}
.cta-sec::before{content:'FIND YOUR SOLUTION';position:absolute;bottom:-30px;right:-10px;font-family:'Bebas Neue',sans-serif;font-size:95px;color:rgba(249,243,207,0.05);white-space:nowrap;pointer-events:none}
.cta-inner{max-width:1280px;margin:0 auto;position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;gap:60px;align-items:center}
.cta-text .lbl{color:var(--yellow);margin-bottom:12px}
.cta-text h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(40px,5vw,74px);line-height:0.93;color:var(--lemon);margin-bottom:14px}
.cta-text p{font-size:15px;color:rgba(249,243,207,0.65);max-width:460px;line-height:1.8}
.cta-acts{display:flex;flex-direction:column;gap:12px;min-width:210px}
footer{background:var(--black2);border-top:3px solid var(--red);padding:76px 80px 36px}
.footer-inner{max-width:1280px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:56px;margin-bottom:56px}
.fbrand img{height:40px;object-fit:contain;margin-bottom:18px}
.fbrand p{font-size:13px;color:rgba(249,243,207,0.32);line-height:1.75;max-width:280px}
.fcol h4{font-size:10px;font-weight:700;letter-spacing:0.22em;text-transform:uppercase;color:rgba(249,243,207,0.26);margin-bottom:16px}
.fcol ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.fcol a{font-size:13px;color:rgba(249,243,207,0.36);transition:color .2s}
.fcol a:hover{color:var(--lemon)}
.footer-bot{display:flex;justify-content:space-between;align-items:center;padding-top:26px;border-top:1px solid rgba(249,243,207,0.06)}
.footer-bot p{font-size:11px;color:rgba(249,243,207,0.22);letter-spacing:0.06em}
.fbadge{background:var(--red);color:var(--lemon);font-size:9px;font-weight:700;letter-spacing:0.2em;text-transform:uppercase;padding:6px 14px}
.fade-up{opacity:0;transform:translateY(26px);transition:opacity .65s ease,transform .65s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}
@media(max-width:1100px){
  nav{padding:0 32px}
  .page-hero,.intro-strip,.overview-sec,.stats-strip,.industry-sec,.why-sec,.faq-sec,.cta-sec{padding:80px 40px}
  footer{padding:60px 40px 32px}
  .intro-strip-inner,.industry-inner,.faq-inner{grid-template-columns:1fr}
  .ind-visual{display:none}
  .overview-grid,.why-grid{grid-template-columns:1fr 1fr}
  .stats-inner{grid-template-columns:1fr 1fr}
  .cta-inner{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:36px}
}
@media(max-width:700px){
  nav{padding:0 20px}.nav-links{display:none}.hamburger{display:flex}
  .page-hero,.intro-strip,.overview-sec,.stats-strip,.industry-sec,.why-sec,.faq-sec,.cta-sec{padding:60px 24px}
  footer{padding:48px 24px 28px}
  .overview-grid,.why-grid{grid-template-columns:1fr}
  .stats-inner{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr}
}



/* ══ WHY PAGE v3 ══ */

/* ═══════════════════════════════════════════
   WHY REPLICA FOOD PAGE — IMPROVED STYLES
   ═══════════════════════════════════════════ */

/* HERO */
.wrf2-hero{margin-top:80px;background:var(--lemon);padding:0;overflow:hidden;min-height:calc(100vh - 80px);display:flex;align-items:center}
.wrf2-hero-inner{max-width:1280px;margin:0 auto;padding:80px;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;width:100%}
.wrf2-eyebrow{display:flex;align-items:center;gap:14px;margin-bottom:22px}
.wrf2-eyebrow::before{content:'';width:36px;height:3px;background:var(--red)}
.wrf2-h1{font-family:'Bebas Neue',sans-serif;font-size:clamp(64px,7.5vw,112px);line-height:0.88;color:var(--black);margin-bottom:24px}
.wrf2-h1 span{color:var(--red)}
.wrf2-h1 em{font-family:'Playfair Display',serif;font-style:italic;color:var(--red-dk)}
.wrf2-hero-p{font-size:16px;color:rgba(5,5,5,0.58);line-height:1.8;max-width:460px;margin-bottom:36px}
.wrf2-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:48px}
.btn-out-dk{display:inline-block;background:transparent;color:var(--black);border:2px solid rgba(5,5,5,0.25);font-family:'DM Sans',sans-serif;font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;padding:12px 30px;cursor:pointer;transition:all .2s}
.btn-out-dk:hover{border-color:var(--red);color:var(--red)}
.wrf2-hero-badges{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:rgba(5,5,5,0.08);padding-top:36px;border-top:2px solid rgba(5,5,5,0.12)}
.wrf2-badge{background:var(--lemon);padding:20px 16px;text-align:center;transition:background .2s}
.wrf2-badge:hover{background:var(--lemon2)}
.wrf2-badge-n{display:block;font-family:'Bebas Neue',sans-serif;font-size:42px;color:var(--red);line-height:1;margin-bottom:4px}
.wrf2-badge-l{display:block;font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:rgba(5,5,5,0.48)}

/* Hero image */
.wrf2-hero-right{position:relative}
.wrf2-hero-img-stack{position:relative}
.wrf2-img-main{border-radius:0;overflow:hidden;aspect-ratio:4/5;position:relative}
.wrf2-img-main img{width:100%;height:100%;object-fit:cover;filter:brightness(0.85) saturate(1.05)}
.wrf2-img-overlay{position:absolute;bottom:0;left:0;right:0;height:40%;background:linear-gradient(to top,rgba(5,5,5,0.6) 0%,transparent 100%)}
.wrf2-img-float{position:absolute;bottom:28px;left:28px;background:var(--red);color:var(--lemon);padding:14px 20px;border-left:4px solid var(--yellow)}
.wrf2-float-label{font-family:'Playfair Display',serif;font-size:16px;font-style:italic}
.wrf2-float-sub{font-size:10px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgba(249,243,207,.65);margin-top:3px}

/* MARQUEE */
.wrf2-marquee{background:var(--red);overflow:hidden;padding:14px 0}
.wrf2-marquee-track{display:flex;gap:0;white-space:nowrap;animation:wrf2mrq 30s linear infinite}
.wrf2-marquee-track span{font-family:'Bebas Neue',sans-serif;font-size:17px;letter-spacing:.12em;color:var(--lemon);padding:0 24px}
.wrf2-dot{color:var(--yellow)!important;font-size:12px!important}
@keyframes wrf2mrq{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* CONTAINER */
.wrf2-container{max-width:1280px;margin:0 auto}

/* PROBLEM */
.wrf2-problem{background:var(--black);padding:110px 80px}
.wrf2-problem-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start}
.wrf2-h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(40px,4.5vw,68px);line-height:.93;color:var(--lemon);margin:12px 0 20px}
.wrf2-red{color:var(--red)}
.wrf2-problem-left p{font-size:15px;color:rgba(249,243,207,.55);line-height:1.85;margin-bottom:16px}
.wrf2-prob-items{margin-top:28px;display:flex;flex-direction:column}
.wrf2-pi{display:flex;gap:14px;align-items:flex-start;padding:13px 0;border-bottom:1px solid rgba(249,243,207,.08)}
.wrf2-pi:first-child{border-top:1px solid rgba(249,243,207,.08)}
.wrf2-pi-icon{width:26px;height:26px;background:rgba(200,40,40,.2);border:1px solid rgba(200,40,40,.4);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px;font-size:12px;color:var(--red);font-weight:700}
.wrf2-pi strong{display:block;font-size:14px;color:var(--lemon);font-weight:600;margin-bottom:2px}
.wrf2-pi p{font-size:13px;color:rgba(249,243,207,.45);line-height:1.5;margin:0}
.wrf2-vs{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:rgba(249,243,207,.07)}
.wrf2-vs-col{padding:30px 24px}
.wrf2-vs-bad{background:var(--black2)}
.wrf2-vs-good{background:rgba(176,37,33,.12)}
.wrf2-vs-head{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;margin-bottom:18px;padding-bottom:10px;border-bottom:2px solid}
.wrf2-vs-bad .wrf2-vs-head{color:rgba(249,243,207,.35);border-color:rgba(249,243,207,.1)}
.wrf2-vs-good .wrf2-vs-head{color:var(--yellow);border-color:var(--red)}
.wrf2-vs-item{font-size:13px;margin-bottom:10px;display:flex;align-items:flex-start;gap:8px;line-height:1.4}
.wrf2-vs-item::before{font-size:11px;flex-shrink:0;margin-top:1px;font-weight:700}
.wrf2-no{color:rgba(249,243,207,.45)}.wrf2-no::before{content:"✗";color:rgba(200,40,40,.6)}
.wrf2-yes{color:rgba(249,243,207,.68)}.wrf2-yes::before{content:"✓";color:var(--yellow)}

/* REASONS */
.wrf2-reasons{background:var(--lemon);padding:110px 80px}
.wrf2-section-head{margin-bottom:60px}
.wrf2-section-head .wrf2-h2{color:var(--black)}
.wrf2-reasons-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:rgba(5,5,5,.08)}
.wrf2-reason-card{background:var(--lemon);padding:44px 34px;border-top:3px solid transparent;transition:all .25s;position:relative}
.wrf2-reason-card:hover{background:var(--lemon2);border-top-color:var(--red)}
.wrf2-rc-num{font-family:'Bebas Neue',sans-serif;font-size:58px;color:rgba(176,37,33,.18);line-height:1;margin-bottom:12px}
.wrf2-rc-icon{font-size:28px;margin-bottom:12px;display:block}
.wrf2-reason-card h3{font-family:'Playfair Display',serif;font-size:21px;color:var(--black);margin-bottom:12px;line-height:1.25}
.wrf2-reason-card p{font-size:14px;color:rgba(5,5,5,.52);line-height:1.75;margin-bottom:16px}
.wrf2-rc-list{list-style:none;display:flex;flex-direction:column;gap:7px;padding-top:16px;border-top:1px solid rgba(5,5,5,.1)}
.wrf2-rc-list li{font-size:13px;color:rgba(5,5,5,.5);display:flex;align-items:flex-start;gap:8px}
.wrf2-rc-list li::before{content:'';width:16px;height:2px;background:var(--red);flex-shrink:0;margin-top:8px}

/* DEEP DIVES */
.wrf2-dive{padding:110px 80px}
.wrf2-dive-lemon{background:var(--lemon)}
.wrf2-dive-dark{background:var(--black2)}
.wrf2-dive-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.wrf2-flip{direction:rtl}.wrf2-flip>*{direction:ltr}
.wrf2-dive-img{position:relative;aspect-ratio:4/5;overflow:hidden}
.wrf2-dive-img img{width:100%;height:100%;object-fit:cover;filter:brightness(0.88);transition:transform .6s}
.wrf2-dive-img:hover img{transform:scale(1.04)}
.wrf2-dive-metric{position:absolute;bottom:0;left:0;right:0;background:rgba(5,5,5,0.82);padding:18px 22px;display:flex;align-items:center;gap:16px;border-top:3px solid var(--red)}
.wrf2-metric-n{font-family:'Bebas Neue',sans-serif;font-size:42px;color:var(--yellow);line-height:1;flex-shrink:0}
.wrf2-metric-l{font-size:12px;color:rgba(249,243,207,.65);font-weight:500;letter-spacing:.05em}
.wrf2-dive-text p{font-size:15px;color:rgba(249,243,207,.55);line-height:1.85;margin-bottom:16px}
.wrf2-dive-lemon .wrf2-dive-text p{color:rgba(5,5,5,.6)}
.wrf2-dive-pts{margin-top:24px;display:flex;flex-direction:column}
.wrf2-pt{padding:11px 0;border-bottom:1px solid rgba(249,243,207,.08);display:flex;gap:12px;align-items:flex-start;font-size:14px;color:rgba(249,243,207,.55)}
.wrf2-pt:first-child{border-top:1px solid rgba(249,243,207,.08)}
.wrf2-pts-dark .wrf2-pt{border-color:rgba(5,5,5,.1);color:rgba(5,5,5,.58)}
.wrf2-pt-dot{width:6px;height:6px;background:var(--yellow);border-radius:50%;flex-shrink:0;margin-top:7px}
.wrf2-dot-red{background:var(--red)}
.wrf2-metric-box{margin-top:32px;padding:24px 28px;background:rgba(176,37,33,.12);border-left:4px solid var(--red)}
.wrf2-metric-box .wrf2-metric-n{font-size:48px;display:block;margin-bottom:6px}
.wrf2-metric-box .wrf2-metric-l{font-size:13px;color:rgba(249,243,207,.58);line-height:1.5;display:block}

/* VISUAL MARKETING */
.wrf2-vm{background:var(--red);padding:100px 80px;position:relative;overflow:hidden}
.wrf2-vm::before{content:"VISUAL MARKETING";position:absolute;bottom:-30px;right:-10px;font-family:'Bebas Neue',sans-serif;font-size:90px;color:rgba(249,243,207,.05);white-space:nowrap;pointer-events:none}
.wrf2-vm-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;position:relative;z-index:1}
.wrf2-vm-left p{font-size:15px;color:rgba(249,243,207,.7);line-height:1.85;margin-bottom:20px}
.wrf2-quote{padding:22px 26px;background:rgba(249,243,207,.1);border-left:4px solid var(--yellow);font-family:'Playfair Display',serif;font-style:italic;font-size:18px;color:var(--lemon);line-height:1.5;margin-top:28px}
.wrf2-vm-right{display:flex;flex-direction:column;gap:2px;background:rgba(249,243,207,.08)}
.wrf2-vm-point{background:rgba(5,5,5,.08);padding:22px 24px;display:flex;gap:14px;align-items:flex-start;transition:background .2s}
.wrf2-vm-point:hover{background:rgba(249,243,207,.1)}
.wrf2-vp-n{font-family:'Bebas Neue',sans-serif;font-size:30px;color:var(--yellow);line-height:1;flex-shrink:0;width:36px}
.wrf2-vm-point strong{display:block;font-size:13px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--lemon);margin-bottom:3px}
.wrf2-vm-point p{font-size:13px;color:rgba(249,243,207,.58);line-height:1.55;margin:0}

/* TABLE */
.wrf2-table-section{background:var(--black);padding:110px 80px}
.wrf2-table-section .wrf2-section-head .wrf2-h2{color:var(--lemon)}
.wrf2-ctable{width:100%;border-collapse:collapse;margin-top:44px}
.wrf2-ctable th{font-family:'DM Sans',sans-serif;font-size:11px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;padding:16px 20px;text-align:left;border-bottom:2px solid rgba(249,243,207,.08)}
.wrf2-ctable th:nth-child(1){color:rgba(249,243,207,.38)}
.wrf2-ctable th:nth-child(2){color:rgba(249,243,207,.38)}
.wrf2-ctable th:nth-child(3){color:var(--lemon);background:rgba(176,37,33,.1)}
.wrf2-ctable td{padding:13px 20px;font-size:13px;border-bottom:1px solid rgba(249,243,207,.06);color:rgba(249,243,207,.5)}
.wrf2-ctable td:nth-child(3){color:var(--lemon);background:rgba(176,37,33,.05);font-weight:500}
.wrf2-ctable tr:hover td{background:rgba(249,243,207,.02)}
.wrf2-ctable tr:hover td:nth-child(3){background:rgba(176,37,33,.1)}
.wrf2-ck{color:var(--yellow);font-weight:700}

/* FAQ */
.wrf2-faq{background:var(--lemon);padding:110px 80px}
.wrf2-faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start}
.wrf2-faq-item{border-top:1px solid rgba(5,5,5,.1)}
.wrf2-faq-q{padding:18px 0;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-family:'Playfair Display',serif;font-size:17px;color:var(--black);transition:color .2s}
.wrf2-faq-q:hover{color:var(--red)}
.wrf2-faq-plus{font-size:22px;color:var(--red);transition:transform .25s;flex-shrink:0;margin-left:14px}
.wrf2-faq-item.wrf2-open .wrf2-faq-plus{transform:rotate(45deg)}
.wrf2-faq-a{max-height:0;overflow:hidden;transition:max-height .32s ease}
.wrf2-faq-a p{font-size:13px;color:rgba(5,5,5,.55);line-height:1.8;padding-bottom:16px;margin:0}
.wrf2-faq-item.wrf2-open .wrf2-faq-a{max-height:200px}

/* CTA */
.wrf2-cta{background:var(--red);padding:96px 80px;position:relative;overflow:hidden}
.wrf2-cta::before{content:"GOOD FOOD NO WASTE";position:absolute;bottom:-25px;right:-10px;font-family:'Bebas Neue',sans-serif;font-size:85px;color:rgba(249,243,207,.05);white-space:nowrap;pointer-events:none}
.wrf2-cta-grid{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr auto;gap:60px;align-items:center;position:relative;z-index:1}
.wrf2-cta p{font-size:15px;color:rgba(249,243,207,.65);max-width:460px;line-height:1.8;margin-top:12px}
.wrf2-cta-acts{display:flex;flex-direction:column;gap:12px;min-width:210px}
.wrf2-btn-outline-white{display:inline-block;background:transparent;color:var(--lemon);border:2px solid rgba(249,243,207,.35);font-family:'DM Sans',sans-serif;font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;padding:12px 34px;cursor:pointer;transition:border-color .2s;text-align:center}
.wrf2-btn-outline-white:hover{border-color:var(--lemon)}

/* RESPONSIVE */
@media(max-width:1100px){
  .wrf2-hero-inner,.wrf2-problem-grid,.wrf2-dive-grid,.wrf2-vm-grid,.wrf2-faq-grid,.wrf2-cta-grid{grid-template-columns:1fr}
  .wrf2-hero-inner{padding:60px 40px}
  .wrf2-flip{direction:ltr}
  .wrf2-hero-right{display:none}
  .wrf2-problem,.wrf2-reasons,.wrf2-dive,.wrf2-vm,.wrf2-table-section,.wrf2-faq,.wrf2-cta{padding:80px 40px}
  .wrf2-reasons-grid{grid-template-columns:1fr 1fr}
  .wrf2-hero-badges{grid-template-columns:1fr 1fr}
  .wrf2-cta-grid{grid-template-columns:1fr}
}
@media(max-width:700px){
  .wrf2-hero-inner{padding:48px 24px}
  .wrf2-problem,.wrf2-reasons,.wrf2-dive,.wrf2-vm,.wrf2-table-section,.wrf2-faq,.wrf2-cta{padding:60px 24px}
  .wrf2-reasons-grid{grid-template-columns:1fr}
  .wrf2-vs{grid-template-columns:1fr}
  .wrf2-hero-badges{grid-template-columns:1fr 1fr}
}


/* ═══ BLOG PAGE ═══ */

/* === BLOG PAGE === */
.blog-hero{margin-top:80px;background:var(--black);padding:90px 80px 80px;position:relative;overflow:hidden}
.blog-hero::before{content:'BLOG';position:absolute;right:-10px;top:-20px;font-family:'Bebas Neue',sans-serif;font-size:260px;color:rgba(249,243,207,.04);line-height:1;pointer-events:none}
.blog-hero-inner{max-width:1280px;margin:0 auto}
.blog-h1{font-family:'Bebas Neue',sans-serif;font-size:clamp(60px,7vw,108px);line-height:.9;color:var(--lemon);margin:16px 0 22px}
.blog-h1 span{color:var(--yellow)}
.blog-hero-sub{font-family:'Playfair Display',serif;font-style:italic;font-size:18px;color:rgba(249,243,207,.55);max-width:560px;line-height:1.75;margin-bottom:40px}
.blog-hero-meta{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.blog-tag{background:rgba(249,243,207,.08);border:1px solid rgba(249,243,207,.12);color:rgba(249,243,207,.5);font-family:'DM Sans',sans-serif;font-size:11px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;padding:7px 16px;cursor:pointer;transition:all .2s}
.blog-tag:hover,.blog-tag.active{background:var(--red);border-color:var(--red);color:var(--lemon)}
.blog-main{background:var(--black);padding:80px}
.blog-main-inner{max-width:1280px;margin:0 auto}
.blog-featured{display:grid;grid-template-columns:1.4fr 1fr;gap:2px;background:rgba(249,243,207,.07);margin-bottom:2px}
.blog-feat-img{aspect-ratio:16/10;overflow:hidden;position:relative;background:var(--black2)}
.blog-feat-img img{width:100%;height:100%;object-fit:cover;filter:brightness(.8);transition:transform .6s}
.blog-featured:hover .blog-feat-img img{transform:scale(1.04)}
.blog-feat-content{background:var(--black2);padding:48px 44px;display:flex;flex-direction:column;justify-content:space-between}
.blog-feat-label{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--red);margin-bottom:14px}
.blog-feat-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(32px,3.5vw,52px);line-height:.95;color:var(--lemon);margin-bottom:18px}
.blog-feat-excerpt{font-size:14px;color:rgba(249,243,207,.48);line-height:1.75;margin-bottom:24px;flex:1}
.blog-feat-meta{display:flex;align-items:center;justify-content:space-between;padding-top:20px;border-top:1px solid rgba(249,243,207,.08)}
.blog-feat-date{font-size:12px;color:rgba(249,243,207,.35);letter-spacing:.08em}
.blog-feat-read{font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--yellow);display:flex;align-items:center;gap:8px;cursor:pointer;transition:gap .2s}
.blog-feat-read:hover{gap:14px}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:rgba(249,243,207,.07);margin-top:2px}
.blog-card{background:var(--black2);transition:background .2s;cursor:pointer}
.blog-card:hover{background:var(--black3)}
.blog-card-img{aspect-ratio:16/10;overflow:hidden;position:relative;background:var(--black3)}
.blog-card-img img{width:100%;height:100%;object-fit:cover;filter:brightness(.82);transition:transform .5s}
.blog-card:hover .blog-card-img img{transform:scale(1.04)}
.blog-card-body{padding:28px 26px}
.blog-card-cat{font-size:10px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--red);margin-bottom:10px}
.blog-card-title{font-family:'Playfair Display',serif;font-size:19px;color:var(--lemon);line-height:1.35;margin-bottom:12px}
.blog-card-excerpt{font-size:13px;color:rgba(249,243,207,.42);line-height:1.7;margin-bottom:18px}
.blog-card-foot{display:flex;align-items:center;justify-content:space-between;padding-top:16px;border-top:1px solid rgba(249,243,207,.07)}
.blog-card-date{font-size:11px;color:rgba(249,243,207,.3)}
.blog-card-arrow{font-size:14px;color:var(--yellow);transition:transform .2s}
.blog-card:hover .blog-card-arrow{transform:translateX(5px)}
.blog-strip{background:var(--red);padding:18px 80px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.blog-strip h3{font-family:'Bebas Neue',sans-serif;font-size:28px;color:var(--lemon)}
.blog-strip p{font-size:13px;color:rgba(249,243,207,.7);max-width:400px}
.blog-sidebar-grid{max-width:1280px;margin:48px auto 0;display:grid;grid-template-columns:1fr 1fr;gap:2px;background:rgba(249,243,207,.07)}
.blog-list-card{background:var(--black2);padding:32px 30px;display:flex;gap:22px;align-items:flex-start;transition:background .2s;cursor:pointer;border-left:3px solid transparent}
.blog-list-card:hover{background:var(--black3);border-left-color:var(--red)}
.blog-list-num{font-family:'Bebas Neue',sans-serif;font-size:48px;color:rgba(176,37,33,.22);line-height:1;flex-shrink:0;width:52px}
.blog-list-content{}
.blog-list-cat{font-size:10px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--red);margin-bottom:7px}
.blog-list-title{font-family:'Playfair Display',serif;font-size:18px;color:var(--lemon);line-height:1.3;margin-bottom:8px}
.blog-list-excerpt{font-size:13px;color:rgba(249,243,207,.42);line-height:1.65;margin-bottom:12px}
.blog-list-date{font-size:11px;color:rgba(249,243,207,.28)}
.blog-cta{background:var(--lemon);padding:90px 80px;position:relative;overflow:hidden}
.blog-cta::before{content:'INSIGHTS';position:absolute;right:-10px;bottom:-25px;font-family:'Bebas Neue',sans-serif;font-size:130px;color:rgba(5,5,5,.05);pointer-events:none}
.blog-cta-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr auto;gap:60px;align-items:center;position:relative;z-index:1}
.blog-cta h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(40px,5vw,70px);line-height:.93;color:var(--black);margin:10px 0 12px}
.blog-cta h2 span{color:var(--red)}
.blog-cta p{font-size:15px;color:rgba(5,5,5,.55);max-width:460px;line-height:1.8}
.blog-cta-acts{display:flex;flex-direction:column;gap:12px;min-width:210px}
@media(max-width:1100px){
  .blog-hero,.blog-main,.blog-strip,.blog-cta{padding:80px 40px}
  .blog-featured{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr 1fr}
  .blog-sidebar-grid{grid-template-columns:1fr}
  .blog-cta-inner{grid-template-columns:1fr}
}
@media(max-width:700px){
  .blog-hero,.blog-main,.blog-strip,.blog-cta{padding:60px 24px}
  .blog-grid{grid-template-columns:1fr}
  .blog-strip{flex-direction:column}
}


/* ═══ SINGLE BLOG POSTS ═══ */

/* === SINGLE BLOG POST === */
.post-hero{margin-top:80px;background:var(--lemon);padding:80px 80px 60px;position:relative;overflow:hidden}
.post-hero-inner{max-width:860px;margin:0 auto}
.post-breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:28px;font-size:12px;color:rgba(249,243,207,.35);letter-spacing:.08em}
.post-breadcrumb a{color:rgba(249,243,207,.4);cursor:pointer;transition:color .2s}
.post-breadcrumb a:hover{color:var(--lemon)}
.post-breadcrumb span{color:rgba(249,243,207,.2)}
.post-cat{display:inline-block;background:var(--red);color:var(--lemon);font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;padding:5px 14px;margin-bottom:20px}
.post-h1{font-family:'Bebas Neue',sans-serif;font-size:clamp(48px,6vw,86px);line-height:.92;color:var(--black);margin-bottom:24px}
.post-meta-row{display:flex;align-items:center;gap:24px;padding-bottom:28px;border-bottom:1px solid rgba(5,5,5,.1)}
.post-author{display:flex;align-items:center;gap:12px}
.post-author-av{width:38px;height:38px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Bebas Neue',sans-serif;font-size:18px;color:var(--lemon)}
.post-author-name{font-size:13px;color:rgba(5,5,5,.7);font-weight:600}
.post-author-role{font-size:11px;color:rgba(5,5,5,.38)}
.post-meta-sep{width:1px;height:28px;background:rgba(5,5,5,.12)}
.post-date-info{font-size:12px;color:rgba(5,5,5,.42)}
.post-cover{max-width:860px;margin:0 auto;aspect-ratio:16/9;overflow:hidden;position:relative}
.post-cover img{width:100%;height:100%;object-fit:cover;filter:brightness(.88)}
.post-body-wrap{background:#fff;padding:60px 80px 100px}
.post-body{max-width:860px;margin:0 auto}
.post-body h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(32px,3.5vw,52px);line-height:.93;color:var(--black);margin:52px 0 18px}
.post-body h3{font-family:'Playfair Display',serif;font-size:22px;color:var(--black);margin:36px 0 14px;line-height:1.3}
.post-body p{font-size:16px;color:rgba(5,5,5,.6);line-height:1.9;margin-bottom:20px}
.post-body ul,.post-body ol{margin:8px 0 22px 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:10px}
.post-body li{font-size:15px;color:rgba(5,5,5,.58);line-height:1.7;display:flex;align-items:flex-start;gap:10px}
.post-body li::before{content:'';width:18px;height:2px;background:var(--red);flex-shrink:0;margin-top:10px}
.post-body blockquote{margin:36px 0;padding:24px 32px;background:rgba(176,37,33,.07);border-left:4px solid var(--red)}
.post-body blockquote p{font-family:'Playfair Display',serif;font-style:italic;font-size:20px;color:var(--black);line-height:1.55;margin:0}
.post-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:48px;padding-top:32px;border-top:1px solid rgba(5,5,5,.08)}
.post-tag{background:rgba(5,5,5,.06);color:rgba(5,5,5,.5);font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;padding:6px 14px}
.post-nav{background:var(--lemon2);padding:60px 80px}
.post-nav-inner{max-width:860px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:2px;background:rgba(5,5,5,.08)}
.post-nav-card{background:var(--lemon2);padding:28px 26px;cursor:pointer;transition:background .2s;border-top:3px solid transparent}
.post-nav-card:hover{background:var(--lemon);border-top-color:var(--red)}
.post-nav-dir{font-size:10px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:rgba(5,5,5,.38);margin-bottom:8px}
.post-nav-title{font-family:'Playfair Display',serif;font-size:16px;color:var(--black);line-height:1.35}
.post-back-strip{background:var(--red);padding:28px 80px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.post-back-strip p{font-family:'Playfair Display',serif;font-style:italic;font-size:16px;color:rgba(249,243,207,.8)}
@media(max-width:1100px){
  .post-hero,.post-body-wrap,.post-nav,.post-back-strip{padding-left:40px;padding-right:40px}
}
@media(max-width:700px){
  .post-hero,.post-body-wrap,.post-nav,.post-back-strip{padding-left:24px;padding-right:24px}
  .post-nav-inner{grid-template-columns:1fr}
}



/* ═══ BLOG LISTING — LIGHT THEME ═══ */
.bl-hero{margin-top:80px;background:var(--lemon);padding:90px 80px 70px;position:relative;overflow:hidden}
.bl-hero::before{content:'BLOG';position:absolute;right:-10px;top:-20px;font-family:'Bebas Neue',sans-serif;font-size:240px;color:rgba(5,5,5,.05);line-height:1;pointer-events:none}
.bl-hero-inner{max-width:1280px;margin:0 auto}
.bl-h1{font-family:'Bebas Neue',sans-serif;font-size:clamp(62px,7vw,110px);line-height:.9;color:var(--black);margin:16px 0 22px}
.bl-h1 span{color:var(--red)}
.bl-hero-sub{font-family:'Playfair Display',serif;font-style:italic;font-size:18px;color:rgba(5,5,5,.58);max-width:580px;line-height:1.75;margin-bottom:40px}
.bl-hero-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.bl-meta-pill{background:rgba(5,5,5,.07);color:rgba(5,5,5,.5);font-family:'DM Sans',sans-serif;font-size:11px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;padding:7px 16px}
.bl-container{max-width:1280px;margin:0 auto}
.bl-featured-section{background:var(--lemon);padding:0 80px 80px}
.bl-featured{display:grid;grid-template-columns:1.35fr 1fr;background:var(--white);cursor:pointer;border:2px solid rgba(5,5,5,.08);transition:border-color .25s,box-shadow .25s}
.bl-featured:hover{border-color:var(--red);box-shadow:0 8px 40px rgba(176,37,33,.1)}
.bl-feat-img{position:relative;overflow:hidden;min-height:420px}
.bl-feat-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.bl-featured:hover .bl-feat-img img{transform:scale(1.04)}
.bl-feat-img-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(5,5,5,.3) 0%,transparent 60%)}
.bl-feat-img-label{position:absolute;top:20px;left:20px;background:var(--red);color:var(--lemon);font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;padding:5px 14px}
.bl-feat-body{background:#fff;padding:52px 48px;display:flex;flex-direction:column;justify-content:space-between}
.bl-feat-cat{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--red);margin-bottom:16px}
.bl-feat-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(30px,3vw,46px);line-height:.95;color:var(--black);margin-bottom:20px}
.bl-feat-excerpt{font-size:15px;color:rgba(5,5,5,.52);line-height:1.8;flex:1}
.bl-feat-footer{margin-top:32px;padding-top:22px;border-top:2px solid rgba(5,5,5,.08);display:flex;align-items:center;justify-content:space-between;gap:16px}
.bl-feat-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.bl-feat-author{font-size:12px;font-weight:600;color:rgba(5,5,5,.6)}
.bl-feat-sep{color:rgba(5,5,5,.25);font-size:11px}
.bl-feat-date,.bl-feat-read{font-size:12px;color:rgba(5,5,5,.38)}
.bl-read-btn{font-family:'DM Sans',sans-serif;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--red);white-space:nowrap;transition:letter-spacing .2s}
.bl-featured:hover .bl-read-btn{letter-spacing:.2em}
.bl-grid-section{background:var(--lemon2);padding:64px 80px 80px}
.bl-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.bl-card{background:#fff;cursor:pointer;border:2px solid transparent;transition:border-color .25s,transform .25s,box-shadow .25s;display:flex;flex-direction:column}
.bl-card:hover{border-color:var(--red);transform:translateY(-4px);box-shadow:0 12px 48px rgba(176,37,33,.12)}
.bl-card-img{position:relative;aspect-ratio:16/9;overflow:hidden}
.bl-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.bl-card:hover .bl-card-img img{transform:scale(1.05)}
.bl-card-cat-badge{position:absolute;bottom:14px;left:14px;background:var(--red);color:var(--lemon);font-family:'DM Sans',sans-serif;font-size:9px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;padding:4px 12px}
.bl-card-body{padding:32px 28px;flex:1;display:flex;flex-direction:column}
.bl-card-title{font-family:'Playfair Display',serif;font-size:21px;color:var(--black);line-height:1.35;margin-bottom:14px}
.bl-card-excerpt{font-size:14px;color:rgba(5,5,5,.5);line-height:1.75;flex:1;margin-bottom:20px}
.bl-card-footer{display:flex;align-items:center;justify-content:space-between;padding-top:16px;border-top:1px solid rgba(5,5,5,.08)}
.bl-card-meta{font-size:11px;color:rgba(5,5,5,.38);letter-spacing:.04em}
.bl-card-arrow{font-size:18px;color:var(--red);transition:transform .2s}
.bl-card:hover .bl-card-arrow{transform:translateX(5px)}
.bl-cta{background:var(--red);padding:90px 80px;position:relative;overflow:hidden}
.bl-cta::before{content:'INSIGHTS';position:absolute;right:-10px;bottom:-25px;font-family:'Bebas Neue',sans-serif;font-size:130px;color:rgba(249,243,207,.05);pointer-events:none}
.bl-cta-inner{position:relative;z-index:1;display:grid;grid-template-columns:1fr auto;gap:60px;align-items:center}
.bl-cta-text .bl-cta-h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(42px,5vw,72px);line-height:.93;color:var(--lemon);margin:12px 0 14px}
.bl-cta-text p{font-size:15px;color:rgba(249,243,207,.65);max-width:460px;line-height:1.8}
.bl-cta-acts{display:flex;flex-direction:column;gap:12px;min-width:210px}
.bl-btn-out{display:inline-block;background:transparent;color:var(--lemon);border:2px solid rgba(249,243,207,.35);font-family:'DM Sans',sans-serif;font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;padding:12px 34px;cursor:pointer;transition:border-color .2s;text-align:center}
.bl-btn-out:hover{border-color:var(--lemon)}
@media(max-width:1100px){
  .bl-hero,.bl-featured-section,.bl-grid-section,.bl-cta{padding-left:40px;padding-right:40px}
  .bl-featured{grid-template-columns:1fr}
  .bl-feat-img{min-height:280px}
  .bl-cta-inner{grid-template-columns:1fr}
}
@media(max-width:700px){
  .bl-hero,.bl-featured-section,.bl-grid-section,.bl-cta{padding-left:24px;padding-right:24px}
  .bl-grid{grid-template-columns:1fr}
  .bl-feat-body{padding:32px 28px}
}


/* ═══ HERO FULL BACKGROUND ═══ */
.hero-fullbg {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 80px;
  background: var(--black);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88) saturate(1.12);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(5,5,5,0.75) 0%,
    rgba(5,5,5,0.52) 45%,
    rgba(5,5,5,0.18) 75%,
    rgba(5,5,5,0.05) 100%
  );
}
.hero-fullbg-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 80px);
  min-height: 600px;
  padding: 0;
}
.hero-fullbg-content {
  padding: 90px 80px 60px;
  max-width: 720px;
}
.hero-fullbg .hero-fullbg-h1, .hero-fullbg-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 145px);
  line-height: 0.88;
  color: var(--lemon) !important;
  margin: 18px 0 28px;
  text-shadow: 0 2px 24px rgba(5,5,5,0.5);
}
.hero-fullbg-sub {
  font-size: 17px;
  color: rgba(249,243,207,0.78);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 400;
}
/* Stats bar pinned to bottom */
.hero-fullbg-stats {
  display: flex;
  align-items: stretch;
  background: rgba(5,5,5,0.72);
  backdrop-filter: blur(8px);
  border-top: 2px solid rgba(249,243,207,0.1);
}
.hero-fullbg-stat {
  flex: 1;
  padding: 28px 36px;
  text-align: left;
  transition: background .2s;
}
.hero-fullbg-stat:hover {
  background: rgba(176,37,33,0.25);
}
.hero-fullbg-stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-fullbg-stat-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249,243,207,0.5);
}
.hero-fullbg-divider {
  width: 1px;
  background: rgba(249,243,207,0.1);
  margin: 20px 0;
  flex-shrink: 0;
}
/* Update hero-badge position for fullbg */
.hero-fullbg .hero-badge {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 3;
}
/* Responsive */
@media(max-width:1100px) {
  .hero-fullbg-content { padding: 72px 40px 48px; }
}
@media(max-width:700px) {
  .hero-fullbg-content { padding: 56px 24px 40px; }
  .hero-fullbg-stats { flex-wrap: wrap; }
  .hero-fullbg-stat { flex: 1 1 50%; padding: 20px 24px; }
  .hero-fullbg-divider { display: none; }
}




/* ═══ MULTI-PAGE OVERRIDES ═══ */
/* Remove SPA-specific styles */
.page { display: block !important; }

/* Mobile nav */
.mobile-nav { display:none; position:fixed; top:80px; left:0; right:0; background:var(--lemon); border-bottom:3px solid var(--red); padding:16px 24px 24px; z-index:999; flex-direction:column; gap:0; box-shadow:0 8px 32px rgba(0,0,0,.12); }
.mobile-nav.open { display:flex; }
.mobile-nav a { font-family:'DM Sans',sans-serif; font-size:13px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:rgba(5,5,5,.6); padding:12px 0; border-bottom:1px solid rgba(5,5,5,.07); text-decoration:none; display:block; }
.mobile-nav a:hover { color:var(--red); }
.mobile-nav a:last-child { border-bottom:none; }

/* Ensure main has correct top padding */
main { display:block; }
main > * { margin-top: 0 !important; }

/* Fix hero margin-top since it's now inside <main> with padding-top:80px */
.hero, .hero-fullbg, .rg-page-hero, .page-hero, .bl-hero, .post-hero,
.cuis-hero, .wrf2-hero, [style*="margin-top: 80px"], [style*="margin-top:80px"] {
  margin-top: 0 !important;
}

/* ── SCROLL ANCHOR OFFSET ──────────────────────────────
   Prevents fixed navbar (80px) from hiding scroll targets
   Works for ALL anchor IDs across all pages             */
:target,
[id] {
  scroll-margin-top: 100px;
}

@media (max-width: 991px) { .diff-pillars { grid-template-columns: repeat(2, 1fr); } }