/* ============================================================
   모아시드 (MOA SEED) — 전역 스타일
   디자인 시스템: 밝은 그린 + 노란 액센트, 시스템 폰트, 50대+ 가독성 우선
   8px 라운드 · Soft Lift shadow · 시원시원 spacing
   ============================================================ */

:root {
  --green:   #087a3a;
  --green-2: #0ca15a;
  --green-3: #e8f4ec;
  --green-4: #cfe7d8;
  --ink:     #172018;
  --text:    #263126;
  --muted:   #617065;
  --line:    #d7e1d8;
  --paper:   #f6faf4;
  --white:   #ffffff;
  --red:     #df3f2f;
  --red-bg:  #fff0ec;
  --yellow:  #ffd44d;
  --blue:    #e7f4ff;
  --blue-2:  #b8d6ef;
  --peach:   #fff3f1;
  --peach-2: #f0b3a8;
  --shadow:     0 18px 45px rgba(18, 54, 29, 0.14);
  --shadow-md:  0 10px 28px rgba(18, 54, 29, 0.10);
  --shadow-sm:  0 4px 14px rgba(18, 54, 29, 0.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Malgun Gothic", sans-serif;
  color: var(--text);
  background: var(--paper);
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.page { overflow: hidden; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* =========== NAV =========== */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav__inner {
  min-height: 82px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 54px; height: 54px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.brand strong {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  font-weight: 900;
}
.brand span small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.nav__links {
  display: flex; align-items: center; gap: 4px;
  color: #344336;
  font-weight: 800;
  font-size: 16px;
}
.nav__links a { padding: 12px 14px; border-radius: 8px; }
.nav__links a:hover { background: #eef6ef; }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.1;
  white-space: nowrap;
  gap: 8px;
}
.btn--primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 26px rgba(8, 122, 58, 0.24);
}
.btn--primary:hover { background: #056530; }
.btn--outline {
  color: var(--green);
  background: var(--white);
  border-color: var(--green);
}
.btn--outline:hover { background: var(--green-3); }

/* =========== HERO =========== */
.hero {
  position: relative;
  background: var(--paper);
  min-height: 680px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 18%, rgba(12, 161, 90, 0.08), transparent 38%),
    radial-gradient(circle at 12% 88%, rgba(255, 212, 77, 0.10), transparent 35%);
  pointer-events: none;
}
.hero__inner > * { position: relative; z-index: 1; }
.hero__inner {
  padding: 86px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
}
.eyebrow::before {
  content: "";
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
}
h1 {
  margin: 22px 0 22px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.5px;
}
h1 em {
  font-style: normal;
  color: var(--green);
}
.hero__copy {
  max-width: 640px;
  margin: 0;
  color: #334036;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.55;
  font-weight: 700;
}
.hero__actions {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
  max-width: 660px;
}
.fact {
  min-height: 112px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.fact b {
  display: block;
  color: var(--green);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  font-weight: 950;
}
.fact b sup { font-size: 0.6em; vertical-align: super; }
.fact span {
  display: block;
  margin-top: 8px;
  color: #354139;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

/* Hero side panel — 대표 인사 */
.hero__panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel__head {
  padding: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  color: var(--white);
  background: var(--green);
  font-weight: 950;
  font-size: 20px;
}
.panel__head span {
  min-width: 84px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  font-size: 14px;
}
.panel__body { padding: 24px; }
.panel__lede {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 850;
  margin: 0 0 18px;
}
.panel__lede em { font-style: normal; color: var(--green); }
.check {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.check i {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  color: var(--white);
  background: var(--green-2);
  border-radius: 8px;
  font-style: normal;
  font-size: 18px;
  font-weight: 950;
}
.check strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}
.check span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

/* =========== SECTION =========== */
section { padding: 88px 0; }
.section-title {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.5px;
}
.section-title h2 em { font-style: normal; color: var(--green); }
.section-title p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
}
.section-eyebrow {
  display: inline-block;
  color: var(--green);
  background: var(--green-3);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* =========== 선택 기준 (Principles) =========== */
.principles {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ptile {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.ptile__num {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 20px;
}
.ptile h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 950;
}
.ptile p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}
.ptile__meta {
  margin-top: 16px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

/* =========== Category =========== */
.category-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.category {
  padding: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--green-3);
  border: 2px solid var(--green-4);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.category:nth-child(2) { border-color: var(--peach-2); background: var(--peach); }
.category:nth-child(3) { border-color: var(--blue-2);  background: var(--blue); }
.category strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 950;
}
.category span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}
.category b {
  color: var(--green);
  font-size: 52px;
  line-height: 1;
  font-weight: 950;
}
.category:nth-child(2) b { color: var(--red); }
.category:nth-child(3) b { color: #1766a2; }

/* =========== Products =========== */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #eff6ef;
  border-bottom: 1px solid var(--line);
}
.product__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.product__body { padding: 20px; }
.tag {
  display: inline-flex; align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--green);
  background: #eaf7ed;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}
.tag--pepper   { color: var(--red);  background: var(--red-bg); }
.tag--scallion { color: #1766a2;     background: var(--blue); }
.tag--featured {
  margin-left: 6px;
  color: var(--ink);
  background: var(--yellow);
}
.product h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 950;
}
.product p {
  min-height: 60px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}
.product__link {
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 17px;
  font-weight: 950;
}

/* =========== FAQ =========== */
.faq {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.faq__list {
  display: flex; flex-direction: column; gap: 12px;
}
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 28px;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  display: grid; place-items: center;
  width: 36px; height: 36px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
  transition: background .15s;
}
.faq__item[open] summary::after { content: "−"; background: var(--ink); }
.faq__answer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}
.faq__answer strong { color: var(--ink); font-weight: 900; }

/* =========== Callout =========== */
.callout {
  padding: 56px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.callout h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 950;
}
.callout p {
  margin: 14px 0 0;
  color: #d7eadc;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
.phone {
  display: block;
  padding: 22px 32px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 10px 24px rgba(255, 212, 77, 0.28);
}
.phone small {
  display: block;
  color: #6a5818;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
}

/* =========== Contact card =========== */
.contact {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ccard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.crow {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.crow:last-child { border-bottom: 0; }
.crow__lbl {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.crow__val {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  text-align: right;
}
.crow__val.small { font-size: 15px; line-height: 1.5; }

/* =========== Footer =========== */
.footer {
  padding: 36px 0 44px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.footer a:hover { color: var(--green); }
.footer__links { display: flex; gap: 18px; }

/* =========== Responsive =========== */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero {
    min-height: auto;
  }
  .hero__inner { grid-template-columns: 1fr; padding-top: 54px; gap: 36px; }
  .hero__panel { max-width: 620px; }
  .principles__grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .callout { grid-template-columns: 1fr; padding: 36px; }
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .nav__inner { min-height: 70px; gap: 12px; }
  .brand img { width: 44px; height: 44px; }
  .brand span small { display: none; }
  .btn { width: 100%; }
  .hero { background: var(--paper); }
  .hero__inner { padding: 32px 0 48px; }
  .hero__facts,
  .category-row,
  .products { grid-template-columns: 1fr; }
  .section-title { display: block; }
  .section-title p { margin-top: 12px; }
  section { padding: 56px 0; }
  .callout { padding: 28px 20px; }
  .phone { width: 100%; }
  .faq__item { padding: 18px 20px; }
  .faq__item summary { font-size: 17px; }
  .ccard { padding: 22px; }
}

/* =========== Specimen plate (auto-swipe) =========== */
.hero__panel {
  position: relative;
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  max-width: 540px;
  margin-left: auto;
}
.splate__top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  gap: 12px;
}
.splate__top span:first-child { color: var(--green); }
.splate__img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #eff6ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.splate__hint {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(23,32,24,0.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
  z-index: 3;
}
.splate__img:hover .splate__hint { opacity: 1; }
.splate__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .55s ease-in-out;
}
.splate__slide.is-active { opacity: 1; }
.splate__slide img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
}
.splate__caption {
  display: flex; justify-content: space-between; align-items: end;
  gap: 12px;
  padding-top: 4px;
  min-height: 60px;
}
.splate__name {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.5px;
}
.splate__sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}
.splate__no {
  color: var(--green);
  background: var(--green-3);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.splate__no.is-featured {
  color: var(--ink);
  background: var(--yellow);
}
.splate__dots {
  display: flex; justify-content: center; gap: 7px;
  padding-top: 4px;
}
.splate__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.splate__dot.is-active {
  background: var(--green);
  transform: scale(1.4);
}

/* Scroll-target highlight after click */
.product.is-flash { animation: cardFlash 1.2s ease; }
@keyframes cardFlash {
  0%, 100% { box-shadow: var(--shadow-md); }
  30%, 70% { box-shadow: 0 0 0 4px rgba(8,122,58,0.25), var(--shadow); }
}

/* =========== Mobile floating call CTA =========== */
.mobile-call-cta { display: none; }
@media (max-width: 640px) {
  .nav .btn--primary { display: none; }
  .mobile-call-cta {
    display: inline-flex;
    align-items: center; justify-content: center;
    position: fixed;
    left: 50%;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
    transform: translateX(-50%);
    z-index: 200;
    background: var(--green);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 9999px;
    box-shadow: 0 10px 28px rgba(8,122,58,0.35);
    font-size: 17px;
    font-weight: 950;
    gap: 10px;
    min-height: 54px;
    white-space: nowrap;
  }
  /* Push footer below floating button */
  body { padding-bottom: 96px; }
}

/* =========== Category card — interactive =========== */
.category {
  cursor: pointer;
  font-family: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.category:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(8, 122, 58, 0.14);
}
.category[data-cat="양파"] b { color: var(--green); }
.category[data-cat="고추"] b { color: var(--red); }
.category[data-cat="대파"] b { color: #1766a2; }
.category.is-active {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(8, 122, 58, 0.22);
}
.category[data-cat="양파"].is-active { border-color: var(--green); }
.category[data-cat="고추"].is-active { border-color: var(--red); }
.category[data-cat="대파"].is-active { border-color: #1766a2; }
.category.is-active::after {
  content: "✓ 먼저 보는 중";
  position: absolute;
  top: -10px; right: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
}
.category { position: relative; }

/* Reset row appears when a category is active */
.category-reset {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.category-reset[hidden] { display: none; }
.category-reset__btn {
  background: transparent;
  border: 2px dashed var(--line);
  color: var(--muted);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.category-reset__btn:hover { border-color: var(--green); color: var(--green); }

/* Product grid reshuffle animation */
.products { transition: opacity .25s; }
.products.is-shuffling { opacity: 0.25; }
.product { transition: transform .25s, box-shadow .25s, outline .25s; }
.product.is-priority {
  outline: 2px solid rgba(8, 122, 58, 0.25);
  outline-offset: -1px;
}

/* product__link as button */
.product__link {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.product__link:hover .product__link__arr { transform: translateX(4px); }
.product__link__arr { transition: transform .2s; display: inline-block; }
.product { cursor: pointer; }

/* Fact counter animation */
/* =========== Product detail dialog =========== */
.dialog {
  position: fixed;
  inset: 0;
  background: rgba(23, 32, 24, 0.72);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 250;
  padding: 24px;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}
.dialog.is-open { display: flex; }
.dialog__panel {
  background: var(--white);
  border-radius: 8px;
  max-width: 920px;
  width: 100%;
  margin: 32px auto;
  padding: 44px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.dialog__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  display: grid; place-items: center;
  cursor: pointer;
  border: 0;
  transition: background .15s;
}
.dialog__close:hover { background: #000; }
.dialog__cat {
  margin-bottom: 14px;
}
.dialog__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.5px;
}
.dialog__sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}
.dialog__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 32px;
  align-items: start;
}
.dialog__img {
  background: #eff6ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: grid; place-items: center;
}
.dialog__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
}
.dialog__body h4 {
  margin: 22px 0 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dialog__body h4:first-child { margin-top: 0; }
.dialog__body p, .dialog__body li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 600;
  margin: 0 0 8px;
}
.dialog__body ul { padding-left: 22px; margin-bottom: 10px; }
.dialog__meta {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
}
.dialog__meta dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.dialog__meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}
.dialog__cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .dialog__panel { padding: 28px 20px; margin: 8px auto; }
  .dialog__grid { grid-template-columns: 1fr; gap: 18px; }
  .dialog__img { max-width: 320px; margin: 0 auto; }
  .dialog__title { font-size: 26px; }
  .dialog__cta .btn { width: 100%; }
}

/* Scroll-reveal for product/principle tiles */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-up.is-shown {
  opacity: 1;
  transform: translateY(0);
}

/* =========== Image Lightbox =========== */
.dialog__img {
  position: relative;
  cursor: zoom-in;
  background: #eff6ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: grid; place-items: center;
  width: 100%;
  padding: 0;
  font-family: inherit;
}
.dialog__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .25s ease;
}
.dialog__img:hover img { transform: scale(1.03); }
.dialog__img__hint {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(23, 32, 24, 0.86);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 13px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0.65;
  transition: opacity .2s, transform .2s;
}
.dialog__img:hover .dialog__img__hint {
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .dialog__img__hint { opacity: 1; font-size: 11px; padding: 6px 11px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 350;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: lbFade .2s ease;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(100%, 1100px);
  max-height: calc(100vh - 120px);
  width: auto; height: auto;
  object-fit: contain;
  cursor: zoom-out;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: fixed;
  top: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: background .15s, transform .15s;
  z-index: 360;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: scale(1.05);
}
.lightbox__caption {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .lightbox { padding: 14px; }
  .lightbox__img { max-height: calc(100vh - 100px); }
  .lightbox__close {
    top: 14px; right: 14px;
    width: 48px; height: 48px;
    font-size: 28px;
  }
  .lightbox__caption { bottom: 14px; font-size: 12px; }
}

/* =========== Product card flex column (bottom-aligned link) =========== */
.product__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product p { flex-grow: 0; }
.product__link {
  margin-top: auto;
  padding-top: 18px;
}

/* =========== Hero arrow nav + leaf decorations =========== */
.specimen-wrap {
  position: relative;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
}
.hero__panel {
  max-width: none;
  margin-left: 0;
}
.splate__arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 12;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background .15s, color .15s, transform .15s, box-shadow .15s;
  font-family: inherit;
}
.splate__arr:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 12px 28px rgba(8, 122, 58, 0.32);
}
.splate__arr--prev { left: -28px; }
.splate__arr--next { right: -28px; }

/* Hero leaf decorations (subtle green silhouettes at edges) */
.hero { isolation: isolate; }
.hero-leaves {
  position: absolute;
  top: 0;
  height: 100%;
  width: 200px;
  max-width: 18vw;
  pointer-events: none;
  z-index: 0;
}
.hero-leaves--left  { left: -20px; }
.hero-leaves--right { right: -20px; }
.hero__inner { position: relative; z-index: 2; }

/* (b) Hidden product card tags — schema-only via data-cat on article */
.product .tag { display: none; }

/* Responsive */
@media (max-width: 980px) {
  .splate__arr { width: 46px; height: 46px; font-size: 26px; }
  .splate__arr--prev { left: -10px; }
  .splate__arr--next { right: -10px; }
  .hero-leaves { width: 130px; max-width: 22vw; }
  .hero-leaves--left  { left: -30px; opacity: 0.85; }
  .hero-leaves--right { right: -30px; opacity: 0.85; }
}
@media (max-width: 640px) {
  .splate__arr { display: none; }
  .hero-leaves { display: none; }
}

/* =========== Phase 4 — logo, card animations, phone pulse =========== */



/* (d) Enhanced product card hover */
.product {
  transition: transform .25s ease, box-shadow .25s ease;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(18, 54, 29, 0.16);
}
/* (poster hover-zoom removed — was clipping bottom of posters with overflow:hidden) */
.product h3 {
  transition: color .2s ease;
}
.product:hover h3 {
  color: var(--green);
}
.product__link__arr {
  display: inline-block;
  transition: transform .25s ease;
}
.product:hover .product__link__arr {
  transform: translateX(8px);
}

/* (f) Staggered reveal — children of .products fade in with cascading delay */
.products .product.reveal-up { transition-delay: 0ms; }
.products .product:nth-child(1).reveal-up  { transition-delay: 0ms; }
.products .product:nth-child(2).reveal-up  { transition-delay: 60ms; }
.products .product:nth-child(3).reveal-up  { transition-delay: 120ms; }
.products .product:nth-child(4).reveal-up  { transition-delay: 180ms; }
.products .product:nth-child(5).reveal-up  { transition-delay: 240ms; }
.products .product:nth-child(6).reveal-up  { transition-delay: 300ms; }
.products .product:nth-child(7).reveal-up  { transition-delay: 0ms; }
.products .product:nth-child(8).reveal-up  { transition-delay: 60ms; }
.products .product:nth-child(9).reveal-up  { transition-delay: 120ms; }
.products .product:nth-child(10).reveal-up { transition-delay: 180ms; }
.products .product:nth-child(11).reveal-up { transition-delay: 240ms; }
.products .product:nth-child(12).reveal-up { transition-delay: 300ms; }

/* (e) Phone widget pulse animation — yellow callout phone */
.phone {
  position: relative;
  animation: phoneBreath 5.5s ease-in-out infinite;
  will-change: transform, box-shadow;
}
.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255, 212, 77, 0.6);
  animation: phoneRing 5s ease-out infinite;
}
@keyframes phoneBreath {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(255, 212, 77, 0.28);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 16px 34px rgba(255, 212, 77, 0.42);
  }
}
@keyframes phoneRing {
  0%   { box-shadow: 0 0 0 0 rgba(255, 212, 77, 0.55); }
  80%  { box-shadow: 0 0 0 22px rgba(255, 212, 77, 0); }
  100% { box-shadow: 0 0 0 22px rgba(255, 212, 77, 0); }
}
/* Pause animation on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .phone, .phone::before { animation: none; }
}

/* Logo assets are transparent cutouts, so no box/background treatment is needed. */
.brand img,
.footer__brand img {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Mobile floating call CTA — hover/active micro-animations */
.mobile-call-cta {
  transition: transform .2s ease, box-shadow .25s ease, background .2s;
  will-change: transform;
}
.mobile-call-cta:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.03);
  box-shadow: 0 14px 32px rgba(8, 122, 58, 0.45);
  background: #056530;
}
.mobile-call-cta:active {
  transform: translateX(-50%) translateY(-1px) scale(1.00);
  box-shadow: 0 6px 18px rgba(8, 122, 58, 0.4);
}
.mobile-call-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  box-shadow: 0 0 0 0 rgba(8, 122, 58, 0.45);
  pointer-events: none;
}
.mobile-call-cta:hover::after {
  animation: mccPing 1.4s ease-out infinite;
}
@keyframes mccPing {
  0%   { box-shadow: 0 0 0 0 rgba(8, 122, 58, 0.45); }
  90%  { box-shadow: 0 0 0 14px rgba(8, 122, 58, 0); }
  100% { box-shadow: 0 0 0 14px rgba(8, 122, 58, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-call-cta:hover::after { animation: none; }
}

/* =========== HERO — Option 01: Immersive sprout photo =========== */
.hero.hero--photo {
  position: relative;
  min-height: calc(100svh - 82px);
  padding: 0;
  background: #101711;
  border-bottom: 0;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 18, 12, 0.88) 0%, rgba(10, 18, 12, 0.64) 44%, rgba(10, 18, 12, 0.25) 100%),
    linear-gradient(0deg, rgba(8, 10, 7, 0.82) 0%, rgba(8, 10, 7, 0.36) 38%, rgba(8, 10, 7, 0.08) 100%),
    radial-gradient(circle at 66% 16%, rgba(255, 218, 114, 0.28), transparent 30%);
  pointer-events: none;
}
.hero--photo .hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--photo .hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.04);
}
.hero--photo .hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding: 96px 0 84px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.74fr);
  gap: 52px;
  align-items: center;
}
.hero--photo .hero__content,
.hero--photo .hero__feature { min-width: 0; }

.hero--photo .eyebrow {
  color: #dfffe5;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}
.hero--photo .eyebrow::before { background: #ffd44d; }
.hero--photo h1 {
  max-width: 760px;
  color: #fff;
  font-size: 76px;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
}
.hero--photo h1 em { color: #a6f7a1; }
.hero--photo .hero__copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.58;
  overflow-wrap: break-word;
}
.hero--photo .btn--primary {
  background: #0a8c45;
  box-shadow: 0 16px 34px rgba(4, 92, 42, 0.36);
}
.hero--photo .btn--primary:hover { background: #087a3a; }
.hero--photo .btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.hero--photo .btn--outline:hover { background: rgba(255, 255, 255, 0.18); }

.hero--photo .hero__facts { max-width: 700px; }
.hero--photo .fact {
  min-height: 104px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}
.hero--photo .fact b {
  color: #92f997;
  font-size: 40px;
}
.hero--photo .fact span { color: rgba(255, 255, 255, 0.78); }

.hero--photo .hero__feature {
  max-width: 455px;
  margin-left: auto;
}
.hero--photo .hero__panel {
  max-width: none;
  margin-left: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}
.hero--photo .splate__top { color: #5a665c; }
.hero--photo .splate__img {
  aspect-ratio: 1 / 1.06;
  background: linear-gradient(180deg, #f8fbf5 0%, #e7f2e5 100%);
  border-color: rgba(8, 122, 58, 0.16);
}
.hero--photo .splate__slide img {
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
}
.hero--photo .splate__caption { min-height: 58px; }
.hero--photo .splate__name {
  font-size: 25px;
  letter-spacing: 0;
}

.hero--photo .splate__arr {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}
.hero--photo .splate__arr:hover {
  color: #102015;
  background: #fff;
  border-color: #fff;
}

/* Hero copy line: inline by default with trailing space, becomes block on small screens */
.hero--photo .hero__copy-line::after { content: " "; }

@media (max-width: 980px) {
  .hero.hero--photo { min-height: auto; }
  .hero--photo .hero__inner {
    grid-template-columns: 1fr;
    padding: 72px 0 64px;
  }
  .hero--photo h1 { font-size: 58px; }
  .hero--photo .hero__feature {
    max-width: 560px;
    margin: 0;
  }
}
@media (max-width: 640px) {
  .hero--photo .hero__inner {
    padding: 46px 0 52px;
    gap: 34px;
  }
  .hero--photo .hero__photo img { object-position: center top; }
  .hero--photo h1 {
    font-size: 35px;
    line-height: 1.13;
  }
  .hero--photo .hero__copy {
    font-size: 17px;
    line-height: 1.7;
    word-break: keep-all;
  }
  .hero--photo .hero__copy-line { display: block; }
  .hero--photo .hero__copy-line::after { content: ""; }
  .hero--photo .hero__facts { gap: 10px; }
  .hero--photo .fact { min-height: 88px; }
  .hero--photo .hero__panel { padding: 16px; }
  .hero--photo .splate__top {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .hero--photo .splate__top span:last-child { display: none; }
  .hero--photo .hero__content {
    width: 100%;
    max-width: 100%;
  }
  .hero--photo .hero__feature {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 400px) {
  .hero--photo .eyebrow {
    font-size: 14px;
    padding: 0 12px;
  }
  .hero--photo h1 { font-size: 33px; }
}
