/*
Theme Name: Leesumi Farm Berry Premium
Theme URI: https://sumi.leesumi.com/
Author: Leesumi Farm Berry
Description: 경남 거창 이수미팜베리 — 유기농 베리 농장 · 가공상품 · 농가레스토랑 · 팜스테이 · 체험교육을 소개하는 프리미엄 6차산업 브랜드 랜딩 테마. 구매는 공식 쇼핑몰로 연결됩니다.
Version: 1.7.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leesumi-premium
*/

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */
:root {
  /* Palette */
  --c-white:       #ffffff;
  --c-cream:       #faf5ee;
  --c-cream-deep:  #f2e9dc;
  --c-ink:         #1c1518;
  --c-ink-soft:    #4a4045;
  --c-line:        #e7ddcf;

  --c-purple:      #3a1840;   /* deep purple */
  --c-purple-2:    #5a2466;
  --c-berry:       #9c1b3c;   /* berry red */
  --c-berry-2:     #c0224b;
  --c-green:       #3a5a40;   /* natural green */
  --c-green-2:     #557153;

  --c-gold:        #b9966b;

  /* Typography */
  --f-serif: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
  --f-sans:  "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
             "Segoe UI", Roboto, "Helvetica Neue", "Malgun Gothic", sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 18px rgba(28, 21, 24, .06);
  --shadow-md: 0 18px 50px rgba(28, 21, 24, .10);
  --shadow-lg: 0 30px 80px rgba(58, 24, 64, .18);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   2. RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* =========================================================
   3. TYPOGRAPHY HELPERS
   ========================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--c-berry);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.center::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.center { justify-content: center; }

.serif { font-family: var(--f-serif); }

.section-title {
  font-family: var(--f-serif);
  font-size: clamp(28px, 4.4vw, 50px);
  line-height: 1.18; letter-spacing: -.02em;
  margin-top: 18px;
}
.section-lead {
  margin-top: 18px; max-width: 620px;
  color: var(--c-ink-soft); font-size: clamp(15px, 1.6vw, 18px);
}
.center-head { text-align: center; }
.center-head .section-lead { margin-inline: auto; }

/* =========================================================
   4. BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  border: 1px solid transparent; transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--c-berry); color: #fff; box-shadow: 0 10px 30px rgba(156,27,60,.30); }
.btn-primary:hover { background: var(--c-berry-2); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(156,27,60,.40); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }

.btn-dark { background: var(--c-purple); color: #fff; }
.btn-dark:hover { background: var(--c-purple-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--c-purple); border-color: var(--c-line); }
.btn-outline:hover { border-color: var(--c-purple); transform: translateY(-2px); }

/* =========================================================
   5. HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(250,245,238,.82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--c-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--f-serif); font-size: 22px; font-weight: 700; color: #fff; transition: color .4s; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.92); padding: 3px; box-shadow: 0 4px 14px rgba(0,0,0,.18); flex: 0 0 auto; }
.brand-name { display: inline-flex; align-items: baseline; gap: 9px; }
.brand .dot { color: var(--c-berry-2); }
.brand small { font-family: var(--f-sans); font-size: 11px; letter-spacing: .18em; font-weight: 600; opacity: .8; }
.scrolled .brand { color: var(--c-purple); }
@media (max-width: 560px) { .brand small { display: none; } .brand { font-size: 19px; } }

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.9); transition: color .3s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--c-berry-2); transition: width .3s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.scrolled .nav-links a { color: var(--c-ink-soft); }
.scrolled .nav-links a:hover { color: var(--c-berry); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-shop {
  padding: 11px 22px; border-radius: 100px; font-size: 14px; font-weight: 600;
  background: #fff; color: var(--c-purple); transition: all .3s var(--ease);
}
.nav-shop:hover { background: var(--c-berry); color: #fff; transform: translateY(-2px); }

.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: #fff; transition: .3s; }
.scrolled .nav-toggle span { background: var(--c-purple); }

/* =========================================================
   6. HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  padding-bottom: clamp(56px, 9vh, 110px); padding-top: 120px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: #2a1030;
  background-size: cover; background-position: center 35%;
  will-change: transform;
}
/* YouTube background video — 16:9 scaled to cover the hero */
.hero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-video iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw;            /* 16:9 by width  */
  min-width: 177.78vh; min-height: 100%;    /* 16:9 by height */
  border: 0;
}
.hero-grad {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(0deg, rgba(16,6,20,.86) 0%, rgba(16,6,20,.28) 50%, rgba(16,6,20,.58) 100%),
    radial-gradient(120% 90% at 80% 0%, rgba(120,30,80,.35), transparent 55%);
}

.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.3); border-radius: 100px;
  font-size: 13px; letter-spacing: .14em; font-weight: 500; backdrop-filter: blur(4px);
  margin-bottom: 26px;
}
.hero-tag .pip { width: 7px; height: 7px; border-radius: 50%; background: var(--c-berry-2); box-shadow: 0 0 0 4px rgba(192,34,75,.3); }
.hero-kicker {
  font-family: var(--f-serif); font-weight: 500;
  font-size: clamp(16px, 2.1vw, 23px); letter-spacing: .03em;
  color: #ffd9b3; margin-bottom: 14px;
}
.hero-display {
  font-family: var(--f-serif); font-weight: 700;
  font-size: clamp(40px, 7.4vw, 92px); line-height: 1.05; letter-spacing: -.025em;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.hero-display .lead-line { display: block; font-size: clamp(18px, 2.6vw, 30px); font-weight: 500; font-family: var(--f-sans); letter-spacing: 0; margin-bottom: 14px; opacity: .92; }
.hero-display .accent { color: #ffd9b3; }
.hero-sub { margin-top: 26px; max-width: 580px; font-size: clamp(15px, 1.8vw, 19px); color: rgba(255,255,255,.88); }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 56px; display: flex; gap: clamp(22px, 5vw, 60px); flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.18); padding-top: 28px;
}
.hero-meta .num { font-family: var(--f-serif); font-size: clamp(24px, 3vw, 34px); }
.hero-meta .lab { font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .04em; }

.scroll-hint { position: absolute; left: 50%; bottom: 22px; z-index: 2; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.7); }
.scroll-hint .mouse { width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 12px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: #fff; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, -2px);} 30%{opacity:1;} 100%{opacity:0; transform: translate(-50%, 12px);} }

/* =========================================================
   7. MARQUEE STRIP
   ========================================================= */
.marquee { background: var(--c-purple); color: rgba(255,255,255,.92); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--f-serif); font-size: 17px; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after { content: "✦"; color: var(--c-berry-2); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   8. GENERIC SECTION
   ========================================================= */
.section { padding: clamp(72px, 11vh, 140px) 0; position: relative; }
.section.cream { background: var(--c-cream); }
.section.cream-deep { background: var(--c-cream-deep); }
.section.white { background: var(--c-white); }
.section.dark { background: linear-gradient(160deg, #2a1030, #45163f 70%); color: #fff; }
.section.dark .section-lead { color: rgba(255,255,255,.78); }

/* placeholder image box */
.ph {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--c-cream-deep), #e3d6c4);
  display: flex; align-items: center; justify-content: center; color: var(--c-ink-soft);
}
.ph::before {
  content: attr(data-label); position: absolute; z-index: 2;
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(28,21,24,.42); padding: 8px 14px; border: 1px dashed rgba(28,21,24,.25);
  border-radius: 100px; background: rgba(255,255,255,.4);
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph.berry  { background: linear-gradient(140deg, #5a2466, #9c1b3c); }
.ph.green  { background: linear-gradient(140deg, #3a5a40, #557153); }
.ph.purple { background: linear-gradient(140deg, #3a1840, #6a1c39); }
.ph.berry::before, .ph.green::before, .ph.purple::before { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); }

/* =========================================================
   8b. FOUNDER INTERVIEW
   ========================================================= */
.interview-stage {
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: clamp(22px, 3.5vw, 44px); margin-top: 52px; align-items: stretch;
}
.interview-video {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); background: #120815;
}
.interview-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.interview-meta {
  margin: 0; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(160deg, var(--c-purple), #5a2466);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 42px);
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.interview-meta::after {
  content: ""; position: absolute; right: -30px; bottom: -30px; width: 140px; height: 140px;
  border-radius: 50%; background: radial-gradient(circle, rgba(192,34,75,.5), transparent 70%); filter: blur(10px);
}
.iq-mark { font-family: var(--f-serif); font-size: 70px; line-height: .8; color: #ffd9b3; height: 40px; }
.interview-meta p { position: relative; z-index: 1; font-family: var(--f-serif); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.6; margin: 14px 0 24px; }
.iq-name { font-size: 14px; letter-spacing: .03em; color: rgba(255,255,255,.82); border-top: 1px solid rgba(255,255,255,.22); padding-top: 18px; }
@media (max-width: 880px) { .interview-stage { grid-template-columns: 1fr; } }

/* =========================================================
   8c. DOCUMENTARY
   ========================================================= */
.doc-video {
  position: relative; max-width: 980px; margin: 50px auto 0; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #120815;
  border: 1px solid rgba(255,255,255,.10);
}
.doc-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.doc-credit { text-align: center; margin-top: 18px; font-size: 13px; letter-spacing: .03em; color: rgba(255,255,255,.55); }

/* =========================================================
   9. YOUTUBE SHORTS
   ========================================================= */
.shorts { background: linear-gradient(160deg, #2a1030, #45163f 60%, #6a1c39); color: #fff; }
.shorts-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.short-card {
  position: relative; width: 100%; max-width: 340px; margin-inline: auto;
  aspect-ratio: 9 / 16; border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow-lg); background: #120815;
  border: 1px solid rgba(255,255,255,.12);
}
.short-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.short-card .glow { position: absolute; inset: -40% -20% auto; height: 60%; background: radial-gradient(circle, rgba(192,34,75,.5), transparent 70%); filter: blur(30px); z-index: -1; }
.shorts-copy .section-title { color: #fff; }
.shorts-copy ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.shorts-copy li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.85); font-size: 15px; }
.shorts-copy li .ic { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; color: #ffd9b3; font-size: 12px; margin-top: 2px; }

/* =========================================================
   10. BRAND / STORY SPLIT
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }

.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.media-frame.tall { aspect-ratio: 4/5; }
.media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.media-frame:hover img { transform: scale(1.04); }
.media-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 12px 18px; font-family: var(--f-serif);
  font-size: 15px; color: var(--c-purple); box-shadow: var(--shadow-sm); line-height: 1.3;
}
.media-badge span { display: block; font-family: var(--f-sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-berry); margin-bottom: 3px; }
.brand-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 34px; }
.brand-stat { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 22px 22px; }
.brand-stat .n { font-family: var(--f-serif); font-size: 30px; color: var(--c-berry); }
.brand-stat .t { font-size: 13.5px; color: var(--c-ink-soft); margin-top: 4px; }

/* crop list */
.crops { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.crop { padding: 9px 18px; border-radius: 100px; border: 1px solid var(--c-line); background: #fff; font-size: 14px; font-weight: 500; color: var(--c-purple); }

/* =========================================================
   11. VALUE CARDS
   ========================================================= */
/* photo-background values section */
.values-section {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.values-section .values-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(20,8,24,.82), rgba(36,14,42,.74) 50%, rgba(20,8,24,.86)),
    radial-gradient(120% 80% at 50% 0%, rgba(120,30,80,.30), transparent 60%);
}
.values-section .wrap { position: relative; z-index: 1; }
.center-head.light .section-title { color: #fff; }
.center-head.light .section-lead { color: rgba(255,255,255,.82); }
.center-head.light .eyebrow { color: #ffd9b3; }
@media (max-width: 880px) { .values-section { background-attachment: scroll; } }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.value-card {
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 34px 28px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card .vc-num { font-family: var(--f-serif); font-size: 14px; color: var(--c-gold); }
.value-card .vc-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin: 18px 0 22px; background: var(--c-cream); font-size: 26px; }
.value-card:nth-child(1) .vc-ic { background: #f3e7ef; }
.value-card:nth-child(2) .vc-ic { background: #eef3ea; }
.value-card:nth-child(3) .vc-ic { background: #faecef; }
.value-card:nth-child(4) .vc-ic { background: #f6edda; }
.value-card h3 { font-size: 19px; }
.value-card p { margin-top: 12px; font-size: 14.5px; color: var(--c-ink-soft); }

/* =========================================================
   12. PRODUCTS
   ========================================================= */
/* blueberry photo background, softly faded so cards stay readable */
.products-section {
  position: relative; overflow: hidden;
  background-color: var(--c-cream);
  background-size: cover; background-position: center; background-attachment: fixed;
}
.products-section::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    rgba(247,242,235,.78) 0%,
    rgba(248,243,236,.93) 38%,
    rgba(250,245,238,.97) 100%);
}
.products-section > .wrap { position: relative; z-index: 1; }
@media (max-width: 880px) { .products-section { background-attachment: scroll; } }

.prod-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.product { grid-column: span 1; }
.product.feature { grid-column: span 2; }

.product-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); overflow: hidden; color: inherit;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--c-cream-deep); }
.product.feature .product-thumb { aspect-ratio: 16/11; }
.product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-thumb .tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(255,255,255,.92); color: var(--c-purple);
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  padding: 6px 13px; border-radius: 100px;
}
.product-thumb .tag.best { background: var(--c-berry); color: #fff; }
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-body .cat { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-gold); }
.product-body h3 { font-size: 18.5px; margin-top: 8px; }
.product-body .desc { margin-top: 10px; font-size: 14px; color: var(--c-ink-soft); flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 20px; }
.price { font-family: var(--f-serif); font-size: 22px; color: var(--c-ink); }
.price small { font-size: 13px; color: var(--c-ink-soft); font-family: var(--f-sans); }
.buy {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 100px;
  background: var(--c-purple); color: #fff; font-size: 13.5px; font-weight: 600;
  transition: all .3s var(--ease);
}
.buy:hover { background: var(--c-berry); transform: translateX(2px); }
.buy .arr { transition: transform .3s var(--ease); }
.buy:hover .arr { transform: translateX(3px); }

.prod-note { margin-top: 34px; text-align: center; font-size: 13.5px; color: var(--c-ink-soft); }
.prod-note a { color: var(--c-berry); font-weight: 600; }

.product-card:hover .buy { background: var(--c-berry); }
.product-card:hover .buy .arr { transform: translateX(3px); }

/* =========================================================
   12b. CROP GALLERY  (What we grow)
   ========================================================= */
.crop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.crop-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: #000; }
.crop-img { aspect-ratio: 3/2; }
.crop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.crop-card:hover .crop-img img { transform: scale(1.07); }
.crop-card figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 26px 22px 20px; color: #fff;
  background: linear-gradient(0deg, rgba(10,4,12,.85), transparent);
}
.crop-card .crop-en { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: #ffd9b3; }
.crop-card figcaption h3 { font-family: var(--f-serif); font-size: 22px; margin-top: 4px; }
.crop-card figcaption p { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 6px; opacity: 0; max-height: 0; transition: .45s var(--ease); }
.crop-card:hover figcaption p { opacity: 1; max-height: 60px; }

/* =========================================================
   12c. GALLERY STRIP
   ========================================================= */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.gallery-strip figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-strip figure:hover img { transform: scale(1.06); }

/* =========================================================
   13. EXPERIENCE (Restaurant / Farmstay) BANNERS
   ========================================================= */
.feature-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff; min-height: 460px; display: flex; align-items: flex-end; box-shadow: var(--shadow-md); }
.feature-banner .fb-media { position: absolute; inset: 0; z-index: 0; }
.feature-banner .fb-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feature-banner:hover .fb-media img { transform: scale(1.05); }
.feature-banner .fb-grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(12,5,15,.88), rgba(12,5,15,.15) 65%, rgba(12,5,15,.35)); }
.feature-banner .fb-body { position: relative; z-index: 2; padding: clamp(30px,4vw,52px); max-width: 620px; }
.feature-banner .fb-body h3 { font-family: var(--f-serif); font-size: clamp(26px,3.2vw,38px); }
.feature-banner .fb-body p { margin-top: 14px; color: rgba(255,255,255,.85); }
.feature-banner .fb-body .btn { margin-top: 26px; }

.exp-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* =========================================================
   14. JOURNEY / STORYTELLING
   ========================================================= */
.journey-track { margin-top: 60px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.journey-step { position: relative; padding-top: 34px; }
.journey-step::before { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--c-berry), rgba(156,27,60,.15)); }
.journey-step .dot { position: absolute; top: 2px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--c-berry); box-shadow: 0 0 0 5px rgba(156,27,60,.15); }
.journey-step .js-n { font-family: var(--f-serif); font-size: 13px; color: var(--c-gold); }
.journey-step h4 { font-size: 18px; margin-top: 6px; }
.journey-step p { margin-top: 8px; font-size: 13.5px; color: var(--c-ink-soft); }
.section.dark .journey-step p { color: rgba(255,255,255,.7); }
.section.dark .journey-step h4 { color: #fff; }

/* =========================================================
   15. FAQ
   ========================================================= */
.faq-wrap { max-width: 860px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; padding: 26px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: clamp(16px,2vw,19px); font-weight: 600; color: var(--c-ink); }
.faq-q .pm { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--c-line); display: grid; place-items: center; transition: .35s var(--ease); position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--c-purple); transition: .35s var(--ease); }
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; }
.faq-item.open .pm { background: var(--c-purple); border-color: var(--c-purple); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: #fff; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--c-ink-soft); font-size: 15px; max-width: 720px; }
.faq-a a { color: var(--c-berry); font-weight: 600; }

/* =========================================================
   15b. LOCATION / DIRECTIONS
   ========================================================= */
.location-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 56px); margin-top: 54px; align-items: stretch; }
.location-info { display: flex; flex-direction: column; gap: 26px; }
.loc-row { display: flex; gap: 16px; align-items: flex-start; }
.loc-ic {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; font-size: 20px;
  background: var(--c-cream); border: 1px solid var(--c-line);
}
.loc-row h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 7px; }
.loc-row p { font-size: 15px; color: var(--c-ink-soft); }
.loc-row p + p { margin-top: 8px; }
.loc-row p b { color: var(--c-purple); font-weight: 600; }
.loc-row a { color: var(--c-berry); font-weight: 500; }
.map-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.map-links a {
  font-size: 13px; font-weight: 600; padding: 8px 15px; border-radius: 100px;
  border: 1px solid var(--c-line); background: #fff; color: var(--c-purple);
  transition: all .3s var(--ease);
}
.map-links a:hover { border-color: var(--c-berry); color: var(--c-berry); transform: translateY(-2px); }
.location-map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); min-height: 420px; background: var(--c-cream-deep);
}
.location-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(1.05); }
@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 320px; order: -1; }
}

/* =========================================================
   16. CTA BAND
   ========================================================= */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--c-purple), var(--c-berry)); color: #fff; text-align: center; padding: clamp(64px,9vw,110px) 0; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: .22; mix-blend-mode: luminosity; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--f-serif); font-size: clamp(28px,4.4vw,52px); }
.cta-band p { margin: 18px auto 0; max-width: 540px; color: rgba(255,255,255,.86); }
.cta-band .hero-actions { justify-content: center; margin-top: 36px; }

/* =========================================================
   17. FOOTER
   ========================================================= */
.site-footer { background: #1a0c1f; color: rgba(255,255,255,.72); padding: clamp(60px,8vw,90px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 18px; max-width: 360px; font-size: 14px; }
.footer-col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-col a, .footer-col li { display: block; font-size: 14.5px; color: rgba(255,255,255,.78); margin-bottom: 11px; list-style: none; }
.footer-col a:hover { color: #ffd9b3; }
.footer-col ul { padding: 0; margin: 0; }
.biz { margin-top: 34px; font-size: 13px; line-height: 2; color: rgba(255,255,255,.55); }
.biz b { color: rgba(255,255,255,.8); font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 28px; font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer-shop { display: inline-flex; gap: 8px; align-items: center; color: #ffd9b3; font-weight: 600; }

/* =========================================================
   18. SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   19. MOBILE NAV PANEL
   ========================================================= */
.mobile-panel {
  position: fixed; inset: 0; z-index: 99; background: var(--c-purple); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: var(--gut);
  transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden;
}
.mobile-panel.open { transform: none; visibility: visible; }
.mobile-panel a { font-family: var(--f-serif); font-size: 30px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-panel .mp-shop { margin-top: 24px; font-family: var(--f-sans); font-size: 16px; background: #fff; color: var(--c-purple); border: 0; border-radius: 100px; padding: 16px; text-align: center; font-weight: 600; }
.mp-close { position: absolute; top: 24px; right: var(--gut); background: none; border: 0; color: #fff; font-size: 30px; }

/* =========================================================
   20. RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product.feature { grid-column: span 2; }
  .crop-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-track { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .journey-step::before { display: none; }
  .crop-card figcaption p { opacity: 1; max-height: 60px; }
}
@media (max-width: 880px) {
  .nav-links, .nav-cta .nav-shop { display: none; }
  .nav-toggle { display: block; }
  .shorts-grid { grid-template-columns: 1fr; gap: 44px; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .media-frame.tall { aspect-ratio: 16/11; }
  .exp-2 { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip .hide-sm { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .product.feature { grid-column: span 1; }
  .crop-grid { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .brand-stats { grid-template-columns: 1fr 1fr; }
}
