/* ============================================================
   교훈마켓 · 공용 스타일
   원칙: 모서리 직각 / 라인 구분선 / 박스섀도우 최소 / 카드 대신 그리드 셀
   ============================================================ */

:root {
  --g-800: #2a5238;
  --g-700: #3d6e4a;
  --g-600: #4e8a5e;
  --g-200: #b4d4be;
  --g-100: #d8eade;
  --g-50:  #eef5f0;

  --o-700: #a85220;
  --o-600: #c8682a;
  --o-500: #d97a3c;
  --o-100: #f8e8d8;

  --cream:  #faf7f2;
  --cream2: #f4f0e8;
  --beige:  #ede7dc;
  --mid:    #ddd5c8;
  --stone:  #c8bfb0;

  --ink-900: #1e1a14;
  --ink-700: #3a3228;
  --ink-500: #7a6e60;
  --ink-300: #a89e90;
  --ink-100: #e4ddd4;

  --font: 'Noto Sans KR', sans-serif;
  --max: 1160px;
  --nav-h: 62px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink-700);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* 모서리 직각 강제 */
*, *::before, *::after { border-radius: 0 !important; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.sec { padding: 88px 0; }
.sec--sm { padding: 56px 0; }

/* ============================================================
   Kicker
   ============================================================ */
.kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--g-700);
  margin-bottom: 18px;
}
.kicker::before {
  content: ''; display: block;
  width: 28px; height: 2px;
  background: var(--g-700); flex-shrink: 0;
}
.kicker--light { color: rgba(255,255,255,.7); }
.kicker--light::before { background: rgba(255,255,255,.5); }
.kicker--orange { color: var(--o-600); }
.kicker--orange::before { background: var(--o-600); }

/* ============================================================
   Section heads
   ============================================================ */
.sec-head { margin-bottom: 56px; }
.sec-head--center { text-align: center; }
.sec-head--center .kicker { justify-content: center; }
.sec-head--center .kicker::before { display: none; }
.sec-head h2 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 900;
  color: var(--ink-900); line-height: 1.2; letter-spacing: -.04em;
}
.sec-head p {
  font-size: 16px; color: var(--ink-500);
  margin-top: 12px; line-height: 1.85; max-width: 560px;
}
.sec-head--center p { margin: 12px auto 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  font-family: var(--font);
  font-size: 14px; font-weight: 800;
  cursor: pointer; border: none;
  transition: all .18s; white-space: nowrap;
}
.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--green { background: var(--g-700); color: #fff; }
.btn--green:hover { background: var(--g-800); }
.btn--orange { background: var(--o-600); color: #fff; }
.btn--orange:hover { background: var(--o-700); }
.btn--outline { background: transparent; color: var(--ink-900); border: 1.5px solid var(--ink-700); }
.btn--outline:hover { background: var(--ink-900); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 12px; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   Placeholder (gradient + 텍스트)
   ============================================================ */
.ph {
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.35); line-height: 1.5;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); background: var(--cream);
  border-bottom: 1px solid var(--mid);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-icon {
  width: 30px; height: 30px; background: var(--g-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.brand-name { font-size: 18px; font-weight: 900; letter-spacing: -.03em; color: var(--ink-900); }
.brand-name em { font-style: normal; color: var(--g-700); }

.site-nav { display: flex; align-items: center; gap: 0; }
.site-nav a { font-size: 13px; font-weight: 700; color: var(--ink-500); padding: 8px 14px; transition: color .15s; }
.site-nav a:hover { color: var(--ink-900); }
.nav-cta {
  background: var(--o-600) !important; color: #fff !important;
  padding: 9px 18px !important; font-size: 13px !important; font-weight: 800 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--o-700) !important; }

.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink-700); }

/* 상품 페이지 백 링크 */
.back-link {
  font-size: 12px; font-weight: 800;
  color: var(--ink-500);
  padding: 6px 10px;
  border: 1px solid var(--mid);
  margin-right: 10px;
  transition: all .15s;
}
.back-link:hover { background: var(--cream2); color: var(--ink-900); border-color: var(--ink-700); }

/* ============================================================
   Hero (메인)
   ============================================================ */
.hero {
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  background: var(--cream);
}
.hero-left {
  padding: 72px 56px 72px 32px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--mid);
  max-width: 640px; margin-left: auto;
}
.hero-right {
  background: var(--cream2);
  display: flex; flex-direction: column;
}
.hero-img {
  flex: 1;
  background: linear-gradient(160deg, #3d6e4a, #5a9a6e);
  display: flex; align-items: center; justify-content: center;
  min-height: 340px;
}
.hero-trust { border-top: 1px solid var(--mid); background: var(--cream); }
.hero-trust-item {
  padding: 20px 32px;
  border-bottom: 1px solid var(--mid);
  display: flex; align-items: flex-start; gap: 14px;
}
.hero-trust-item:last-child { border-bottom: none; }
.trust-icon {
  width: 36px; height: 36px; background: var(--g-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 14px; font-weight: 800; color: var(--ink-900); margin-bottom: 2px; }
.trust-text span { font-size: 12px; color: var(--ink-500); line-height: 1.5; }

.hero h1 {
  font-size: clamp(40px, 4.5vw, 60px); font-weight: 900;
  line-height: 1.15; letter-spacing: -.05em;
  color: var(--ink-900); margin-bottom: 20px;
}
.hero h1 strong { color: var(--g-700); font-weight: 900; }
.hero-sub {
  font-size: 14px; font-weight: 800; color: var(--o-600);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-lead {
  font-size: 15px; color: var(--ink-500); line-height: 1.9;
  margin-bottom: 36px; max-width: 420px;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--mid);
  padding-top: 28px;
}
.h-stat { flex: 1; padding-right: 24px; }
.h-stat + .h-stat { padding-left: 24px; border-left: 1px solid var(--mid); }
.h-stat-val { font-size: 24px; font-weight: 900; color: var(--ink-900); line-height: 1; }
.h-stat-label { font-size: 11px; color: var(--ink-300); margin-top: 5px; letter-spacing: .04em; }

/* ============================================================
   Strip
   ============================================================ */
.strip { background: var(--ink-900); padding: 18px 0; overflow: hidden; }
.strip-inner {
  display: flex; gap: 0;
  border-left: 1px solid rgba(255,255,255,.08);
}
.strip-item {
  flex: 1; padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.strip-item em { font-style: normal; color: #fff; font-weight: 800; }

/* ============================================================
   How
   ============================================================ */
.how { background: var(--cream2); border-top: 1px solid var(--mid); border-bottom: 1px solid var(--mid); }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--mid);
}
.how-step {
  padding: 36px 28px;
  border-right: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
}
.step-num-box {
  width: 44px; height: 44px; background: var(--g-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 18px;
}
.how-step h3 { font-size: 15px; font-weight: 800; color: var(--ink-900); margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--ink-500); line-height: 1.7; }

/* ============================================================
   Categories
   ============================================================ */
.categories { background: var(--cream); }
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border: 1px solid var(--mid);
  border-bottom: none;
}
.cat-card {
  border-right: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  background: var(--cream);
  display: flex; flex-direction: column;
  transition: background .2s;
  color: inherit;
}
.cat-card:last-child { border-right: none; }
.cat-card:not(.cat-card--coming):hover { background: var(--cream2); }
.cat-card--coming { opacity: .6; }
.cat-card--active { background: var(--ink-900); color: #fff; }
.cat-card--active:hover { background: #111; }

.cat-img { height: 200px; position: relative; }
.cat-img .ph { width: 100%; height: 100%; background: linear-gradient(160deg, #3d6e4a, #6aaa7a); font-size: 12px; }
.cat-img--peach .ph { background: linear-gradient(160deg, #b85828, #e08850); }
.cat-img--perilla .ph { background: linear-gradient(160deg, #486838, #7aa860); }
.cat-img--pepper .ph { background: linear-gradient(160deg, #981818, #d84838); }

.cat-status {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 10px;
  background: var(--g-700); color: #fff;
}
.cat-status--soon { background: rgba(0,0,0,.5); backdrop-filter: blur(4px); }

.cat-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cat-season { font-size: 10px; font-weight: 800; color: var(--o-600); letter-spacing: .1em; }
.cat-card--active .cat-season { color: #e8a870; }
.cat-name { font-size: 20px; font-weight: 900; letter-spacing: -.02em; color: var(--ink-900); }
.cat-card--active .cat-name { color: #fff; }
.cat-region { font-size: 12px; color: var(--ink-500); }
.cat-card--active .cat-region { color: rgba(255,255,255,.5); }
.cat-desc { font-size: 13px; color: var(--ink-500); line-height: 1.65; flex: 1; margin-top: 4px; }
.cat-card--active .cat-desc { color: rgba(255,255,255,.55); }

.cat-footer {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--mid);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.cat-card--active .cat-footer { border-top-color: rgba(255,255,255,.12); }
.cat-price { font-size: 17px; font-weight: 900; color: var(--g-700); }
.cat-card--active .cat-price { color: #8acf9a; }
.cat-soon-label { font-size: 12px; color: var(--ink-300); }
.cat-card--active .cat-soon-label { color: rgba(255,255,255,.3); }

/* ============================================================
   Trust Band
   ============================================================ */
.trust-band { background: var(--g-700); padding: 0; border-top: 1px solid var(--beige); }
.trust-band-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,.1);
}
.trust-band-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.trust-band-item:last-child { border-right: none; }
.tb-val { font-size: 28px; font-weight: 900; line-height: 1; color: #fff; }
.tb-sub { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ============================================================
   Interview
   ============================================================ */
.interview { background: var(--cream2); border-top: 1px solid var(--mid); }
.interview-layout {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 0; border: 1px solid var(--mid);
}
.interview-img {
  border-right: 1px solid var(--mid);
  background: linear-gradient(160deg, #2a5238, #4e8a5e);
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.interview-copy {
  padding: 52px 48px;
  display: flex; flex-direction: column; gap: 20px;
}
.interview-copy h2 {
  font-size: clamp(26px, 2.8vw, 38px); font-weight: 900;
  color: var(--ink-900); line-height: 1.25; letter-spacing: -.04em;
}
.interview-copy > p { font-size: 15px; color: var(--ink-500); line-height: 1.85; }
.interview-quote {
  background: var(--ink-900); color: #fff;
  padding: 24px 28px; position: relative;
}
.interview-quote::before {
  content: '"';
  font-size: 56px; line-height: .8;
  color: rgba(255,255,255,.15);
  position: absolute; top: 10px; left: 18px;
  font-family: Georgia, serif;
}
.interview-quote p { font-size: 16px; font-weight: 600; line-height: 1.7; padding-left: 20px; }
.interview-quote .who { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 10px; padding-left: 20px; letter-spacing: .04em; }
.interview-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.itag {
  background: var(--cream); border: 1px solid var(--mid);
  font-size: 12px; font-weight: 700; color: var(--ink-700);
  padding: 6px 14px;
}

/* ============================================================
   CTA (다크)
   ============================================================ */
.cta-sec {
  background: var(--ink-900); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,.015) 80px, rgba(255,255,255,.015) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,.015) 80px, rgba(255,255,255,.015) 81px);
}
.cta-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
}
.cta-inner h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1.2; margin-bottom: 12px; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.8; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand-name { font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: -.02em; }
.footer-brand-name em { font-style: normal; color: var(--g-600); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links span { font-size: 14px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-links a:hover { color: #fff; cursor: pointer; }
.footer-links .is-soon { color: rgba(255,255,255,.25); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px; color: rgba(255,255,255,.2);
  text-align: center;
}

/* ============================================================
   Skip link
   ============================================================ */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--ink-900); color: #fff;
  padding: 10px 16px; font-size: 14px; font-weight: 700;
  z-index: 200;
}
.skip-link:focus { top: 0; }

/* ============================================================
   ====== 상품 페이지 (청도 미나리) ======
   ============================================================ */

/* Product Hero */
.product-hero {
  padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1.05fr 1fr;
  background: var(--cream);
  border-bottom: 1px solid var(--mid);
}
.product-hero-img {
  background: linear-gradient(160deg, #3d6e4a, #5a9a6e);
  min-height: 560px;
  display: flex; align-items: flex-end; padding: 28px;
  border-right: 1px solid var(--mid);
  position: relative;
}
.product-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.product-hero-tag {
  position: relative;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
}
.product-hero-info {
  padding: 72px 56px 72px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.product-hero-info h1 {
  font-size: clamp(34px, 4vw, 48px); font-weight: 900;
  color: var(--ink-900); line-height: 1.2; letter-spacing: -.04em;
  margin: 14px 0 16px;
}
.product-hero-lead { font-size: 15px; color: var(--ink-500); line-height: 1.9; margin-bottom: 28px; max-width: 480px; }

.product-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.product-badges li {
  font-size: 11px; font-weight: 700;
  padding: 6px 12px;
  background: var(--cream2);
  border: 1px solid var(--mid);
  color: var(--ink-700);
}

.product-price {
  display: flex; align-items: baseline; gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  margin-bottom: 24px;
}
.product-price-num { font-size: 34px; font-weight: 900; color: var(--ink-900); letter-spacing: -.03em; }
.product-price-num small { font-size: 14px; font-weight: 700; color: var(--ink-500); margin-left: 4px; }
.product-price-sub { font-size: 12px; color: var(--ink-500); font-weight: 700; }
.product-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Spec Table */
.spec-table { border: 1px solid var(--mid); background: var(--cream); }
.spec-table dl { display: grid; grid-template-columns: 180px 1fr; }
.spec-table dt, .spec-table dd {
  padding: 16px 20px;
  border-top: 1px solid var(--mid);
  font-size: 14px;
}
.spec-table dt:first-of-type, .spec-table dd:first-of-type { border-top: 0; }
.spec-table dt {
  background: var(--cream2);
  font-weight: 800; color: var(--ink-900);
  border-right: 1px solid var(--mid);
}
.spec-table dd { color: var(--ink-700); }

/* Features 4셀 */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--mid);
  background: var(--cream);
}
.feature-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--mid);
}
.feature-cell:last-child { border-right: none; }
.feature-cell .num {
  font-size: 11px; font-weight: 800; color: var(--o-600);
  letter-spacing: .12em; margin-bottom: 14px;
}
.feature-cell h3 { font-size: 16px; font-weight: 800; color: var(--ink-900); margin-bottom: 8px; }
.feature-cell p { font-size: 13px; color: var(--ink-500); line-height: 1.7; }

/* Farmer */
.farmer-layout {
  display: grid; grid-template-columns: 1fr 1.15fr;
  border: 1px solid var(--mid);
  background: var(--cream);
}
.farmer-img {
  background: linear-gradient(160deg, #8a6a4a, #5a3a20);
  min-height: 500px;
  border-right: 1px solid var(--mid);
  display: flex; align-items: center; justify-content: center;
}
.farmer-copy { padding: 52px 48px; display: flex; flex-direction: column; gap: 18px; }
.farmer-copy h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 900; color: var(--ink-900); line-height: 1.25; letter-spacing: -.03em; }
.farmer-role { font-size: 13px; font-weight: 700; color: var(--ink-500); letter-spacing: .02em; }
.farmer-copy p { font-size: 15px; color: var(--ink-500); line-height: 1.85; }
.farmer-points {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--mid);
  border-left: 1px solid var(--mid);
  margin-top: 8px;
}
.farmer-points > div {
  padding: 16px 18px;
  border-right: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
}
.farmer-points strong { display: block; font-size: 13px; font-weight: 800; color: var(--g-800); margin-bottom: 4px; }
.farmer-points span { font-size: 12px; color: var(--ink-500); line-height: 1.5; }

/* Schedule */
.schedule-wrap { border: 1px solid var(--mid); background: var(--cream); overflow-x: auto; }
.schedule-grid {
  display: grid;
  grid-template-columns: 160px repeat(12, 1fr);
  min-width: 820px;
}
.schedule-grid > div {
  padding: 14px 8px;
  border-right: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  font-size: 12px; text-align: center; font-weight: 700;
  color: var(--ink-700);
}
.schedule-grid > div:nth-child(13n) { border-right: none; }
.schedule-grid > div.row-label {
  text-align: left;
  background: var(--cream2);
  font-size: 13px;
  padding: 14px 16px;
}
.row-label strong { display: block; font-size: 14px; color: var(--ink-900); margin-bottom: 2px; }
.row-label span { font-weight: 500; color: var(--ink-500); font-size: 11px; }
.schedule-grid > div.sched-head { background: var(--ink-900); color: #fff; border-bottom-color: var(--ink-900); }
.schedule-grid > div.sched-active-m { background: var(--g-700); color: #fff; }
.schedule-grid > div.sched-active-c { background: var(--o-600); color: #fff; }
.schedule-grid > div.sched-prep { background: var(--g-50); color: var(--g-800); }
.schedule-grid > div.sched-rest { color: var(--ink-300); }

/* Process 6단계 */
.process-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-left: 1px solid rgba(255,255,255,.08);
}
.process-step {
  padding: 32px 22px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.process-num { display: block; font-size: 22px; font-weight: 900; color: var(--o-500); margin-bottom: 12px; }
.process-step h3 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.process-step p { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* Usage (레시피) */
.usage-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--mid);
  background: var(--cream);
}
.usage-cell {
  padding: 30px 24px;
  border-right: 1px solid var(--mid);
}
.usage-cell:last-child { border-right: none; }
.usage-cell .num {
  font-size: 11px; font-weight: 800; color: var(--o-600);
  letter-spacing: .12em; margin-bottom: 12px;
}
.usage-cell h3 { font-size: 16px; font-weight: 800; color: var(--ink-900); margin-bottom: 6px; }
.usage-cell p { font-size: 13px; color: var(--ink-500); line-height: 1.7; }

/* Reviews */
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--mid);
  background: var(--cream);
}
.review-cell {
  padding: 30px 28px;
  border-right: 1px solid var(--mid);
}
.review-cell:last-child { border-right: none; }
.review-stars { color: var(--o-500); font-size: 14px; letter-spacing: .15em; margin-bottom: 12px; font-weight: 700; }
.review-quote { font-size: 14px; color: var(--ink-900); margin-bottom: 16px; line-height: 1.7; font-weight: 500; }
.review-meta { font-size: 12px; color: var(--ink-500); font-weight: 700; padding-top: 14px; border-top: 1px solid var(--mid); }

/* FAQ Accordion */
.faq-list { border-top: 1px solid var(--mid); }
.faq-item {
  border-bottom: 1px solid var(--mid);
  background: var(--cream);
}
.faq-summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 700; color: var(--ink-900);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: "+"; font-size: 22px; font-weight: 400;
  color: var(--g-700); transition: transform .2s;
}
.faq-item[open] .faq-summary::after { content: "−"; }
.faq-body {
  padding: 0 24px 22px;
  color: var(--ink-500); font-size: 14px; line-height: 1.8;
}

/* Mobile buybar */
.mobile-buybar {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  border-top: 1px solid var(--mid);
  padding: 10px 16px;
  display: none;
  gap: 8px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.mobile-buybar.visible { transform: translateY(0); }
.mobile-buybar .btn { flex: 1; padding: 14px 12px; justify-content: center; }
.mobile-buybar .btn--ghost {
  flex: 0 0 auto;
  background: var(--cream);
  border: 1px solid var(--ink-700);
  color: var(--ink-900);
  font-weight: 800;
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { max-width: 100%; padding: 56px 24px; border-right: none; border-bottom: 1px solid var(--mid); margin-left: 0; }
  .hero-right { display: none; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .trust-band-grid { grid-template-columns: 1fr 1fr; }
  .interview-layout { grid-template-columns: 1fr; }
  .interview-img { min-height: 260px; border-right: none; border-bottom: 1px solid var(--mid); }
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .product-hero { grid-template-columns: 1fr; }
  .product-hero-img { min-height: 320px; border-right: none; border-bottom: 1px solid var(--mid); }
  .product-hero-info { padding: 48px 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-cell:nth-child(2n) { border-right: none; }
  .feature-cell:nth-child(1), .feature-cell:nth-child(2) { border-bottom: 1px solid var(--mid); }
  .farmer-layout { grid-template-columns: 1fr; }
  .farmer-img { min-height: 280px; border-right: none; border-bottom: 1px solid var(--mid); }
  .farmer-copy { padding: 40px 28px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3n) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2), .process-step:nth-child(3) {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .usage-grid { grid-template-columns: 1fr 1fr; }
  .usage-cell:nth-child(2n) { border-right: none; }
  .usage-cell:nth-child(1), .usage-cell:nth-child(2) { border-bottom: 1px solid var(--mid); }
  .review-grid { grid-template-columns: 1fr; }
  .review-cell { border-right: none; border-bottom: 1px solid var(--mid); }
  .review-cell:last-child { border-bottom: none; }

  .mobile-buybar { display: flex; }
  body.has-buybar { padding-bottom: 76px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .sec { padding: 60px 0; }
  .cat-grid { grid-template-columns: 1fr; border: none; }
  .cat-card { border: 1px solid var(--mid); border-bottom: none; }
  .cat-card:last-child { border-bottom: 1px solid var(--mid); }
  .how-steps { grid-template-columns: 1fr; }
  .trust-band-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .strip-inner { flex-wrap: wrap; }
  .strip-item { flex: 1 1 50%; }

  .menu-btn { display: flex; }
  .site-nav {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; padding: 12px 0;
    border-bottom: 1px solid var(--mid);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 24px; width: 100%; color: var(--ink-700); }
  .nav-cta { margin: 8px 24px 4px !important; }

  .spec-table dl { grid-template-columns: 110px 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-cell { border-right: none; border-bottom: 1px solid var(--mid); }
  .feature-cell:last-child { border-bottom: none; }
  .farmer-points { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
  .usage-grid { grid-template-columns: 1fr; }
  .usage-cell { border-right: none; border-bottom: 1px solid var(--mid); }
  .usage-cell:last-child { border-bottom: none; }
}

/* ============================================================
   Reveal animation
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
