/* ===== Greengold Tea — Earthy Natural Theme (v2) ===== */
:root {
  --leaf:        #4a6a3f;
  --leaf-dark:   #2f4a26;
  --leaf-deeper: #1f3318;
  --leaf-light:  #7a9a6d;
  --moss:        #98a675;
  --sage:        #c5cca5;
  --beige:       #f5efe1;
  --beige-dark:  #e6dcc4;
  --sand:        #d4c9a8;
  --bark:        #5a4a35;
  --bark-light:  #8a7755;
  --charcoal:    #2d3a2d;
  --soft:        #fbf8f0;
  --white:       #ffffff;
  --gold:        #b8923f;
  --gold-light:  #e6d29a;
  --copper:      #b56f3a;
  --ruby:        #8a3a4a;
  --shadow:      0 6px 24px rgba(60, 80, 50, .12);
  --shadow-lg:   0 14px 40px rgba(60, 80, 50, .18);
  --shadow-xl:   0 24px 60px rgba(60, 80, 50, .22);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --serif:       'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --tx-ease:     cubic-bezier(.4,.0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: #ffffff;
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--leaf); text-decoration: none; transition: color .2s var(--tx-ease); }
a:hover { color: var(--leaf-dark); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--leaf-dark); font-weight: 600; line-height: 1.15; letter-spacing: -.015em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
.eyebrow {
  color: var(--leaf); font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  margin-bottom: 14px; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px; background: currentColor; display: inline-block;
}

/* Hand-drawn underline */
.handdrawn { position: relative; display: inline-block; }
.handdrawn::after {
  content: ''; display: block; width: 110px; height: 10px; margin-top: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 10'><path d='M2 6 Q 15 1, 35 5 T 70 5 Q 95 7, 108 4' fill='none' stroke='%234a6a3f' stroke-width='2.4' stroke-linecap='round'/></svg>") no-repeat;
}
.hero .handdrawn::after, .section-leaf .handdrawn::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 110 10'><path d='M2 6 Q 15 1, 35 5 T 70 5 Q 95 7, 108 4' fill='none' stroke='%23e6d29a' stroke-width='2.4' stroke-linecap='round'/></svg>"); }

/* ===== Decorative leaf pattern background ===== */
.bg-pattern {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74,106,63,.04) 0, transparent 200px),
    radial-gradient(circle at 80% 70%, rgba(184,146,63,.04) 0, transparent 200px);
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74,106,63,.08);
  transition: background .3s, box-shadow .3s;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 14px; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--leaf-dark); }
.logo-img { height: 56px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text small { display: block; font-family: var(--sans); font-size: .68rem; color: var(--bark); font-weight: 500; letter-spacing: .2em; text-transform: uppercase; margin-top: 4px; }
/* Legacy circular "G" mark — kept for admin pages */
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600;
  box-shadow: 0 4px 14px rgba(74,106,63,.3);
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid rgba(74,106,63,.25); pointer-events: none;
}
@media (max-width: 560px) {
  .logo-img { height: 40px; margin-left: 4px; }
  .logo-text { display: none; }
  .header-inner { padding: 10px 0; }
}

.nav-list { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-list a { color: var(--charcoal); font-weight: 500; font-size: .95rem; position: relative; padding: 6px 0; }
.nav-list a:hover, .nav-list a.active { color: var(--leaf-dark); }
.nav-list a.active::after, .nav-list a:hover::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--leaf); border-radius: 2px;
}

.lang-switch { display: flex; gap: 6px; margin-left: 14px; padding-left: 14px; border-left: 1px solid var(--beige-dark); align-items: center; }
.lang-switch a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; padding: 5px 10px 5px 6px; border-radius: 20px; color: var(--bark);
  border: 1px solid transparent; font-weight: 600; transition: all .2s var(--tx-ease);
}
.lang-switch a .flag {
  display: inline-flex; width: 22px; height: 14px; border-radius: 2px;
  overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  flex-shrink: 0;
}
.lang-switch a .flag svg { width: 100%; height: 100%; display: block; }
.lang-switch a.active, .lang-switch a:hover { background: var(--leaf); color: #fff; }
.lang-switch a.active .flag, .lang-switch a:hover .flag { box-shadow: 0 0 0 1px rgba(255,255,255,.4); }
.lang-switch a .lang-code { letter-spacing: .04em; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--leaf-dark); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 32px; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: all .25s var(--tx-ease);
  text-decoration: none; line-height: 1; font-family: var(--sans);
}
.btn-primary {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%); color: #fff;
  box-shadow: 0 6px 20px rgba(74,106,63,.35);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(74,106,63,.45); }
.btn-outline { background: transparent; color: var(--leaf-dark); border-color: var(--leaf); }
.btn-outline:hover { background: var(--leaf); color: #fff; }
.btn-light { background: #fff; color: var(--leaf-dark); box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.btn-light:hover { background: var(--gold-light); color: var(--leaf-dark); transform: translateY(-2px); }
.btn-beige { background: var(--beige); color: var(--leaf-dark); border-color: var(--beige); box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.btn-beige:hover { background: var(--beige-dark); color: var(--leaf-dark); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn .ic { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--leaf-deeper);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: brightness(.65);
}
.hero-bg::before {
  /* color wash for warmth */
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,51,24,.55) 0%, rgba(47,74,38,.35) 50%, rgba(184,146,63,.25) 100%);
}
.hero-bg::after {
  /* bottom fade into next section (white body) */
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 220px;
  background: linear-gradient(180deg, transparent 0%, #ffffff 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0; max-width: 760px; }
.hero h1 {
  color: #fff; margin-bottom: 24px; text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero p { font-size: clamp(1.1rem, 1.7vw, 1.32rem); max-width: 600px; margin-bottom: 36px; opacity: .96; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; right: 32px; bottom: 90px; z-index: 2;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
  font-size: .85rem; color: #fff; opacity: .8; text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero-meta-row { display: flex; align-items: center; gap: 8px; }
.hero-floaters {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-floaters svg {
  position: absolute; opacity: .14; animation: float 22s linear infinite;
}
.hero-floaters svg:nth-child(1) { top: 8%; left: 6%; width: 90px; animation-duration: 28s; }
.hero-floaters svg:nth-child(2) { top: 22%; right: 10%; width: 130px; animation-duration: 33s; animation-direction: reverse; }
.hero-floaters svg:nth-child(3) { bottom: 18%; left: 18%; width: 70px; animation-duration: 26s; }
.hero-floaters svg:nth-child(4) { top: 60%; right: 20%; width: 100px; animation-duration: 30s; animation-direction: reverse; }
@keyframes float {
  0% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(15px,-12px) rotate(8deg); }
  50% { transform: translate(0,-22px) rotate(-4deg); }
  75% { transform: translate(-12px,-10px) rotate(6deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

/* ===== Highlights / certifications strip ===== */
.highlights {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  background: var(--beige); padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-top: -84px; position: relative; z-index: 5;
  border: 1px solid rgba(74,106,63,.08);
}
.highlight { text-align: center; padding: 10px 8px; border-right: 1px solid rgba(74,106,63,.08); }
.highlight:last-child { border-right: 0; }
.highlight-icon {
  width: 56px; height: 56px; margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--leaf);
}
.highlight-icon svg { width: 44px; height: 44px; }
.highlight-icon svg { width: 100%; height: 100%; }
.highlight h4 {
  color: var(--leaf-dark); font-size: .8rem; font-weight: 600; font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .04em; line-height: 1.3;
}

/* ===== Sections ===== */
section { padding: 110px 0; position: relative; }
.section-soft { background: var(--soft); }
/* Body is now white — beige sections give visual rhythm */
.section-beige { background: var(--beige); }
/* Hero bottom fade now needs to land on white, not beige */
.section-leaf { background: var(--leaf-deeper); color: #fff; position: relative; overflow: hidden; }
.section-leaf::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M100 30 C140 50 165 90 165 125 C165 155 140 175 100 175 C60 175 35 155 35 125 C35 90 60 50 100 30 Z' fill='none' stroke='%23ffffff' stroke-opacity='.04' stroke-width='1.5'/></svg>");
  background-size: 280px;
  opacity: .8;
}
.section-leaf > * { position: relative; z-index: 1; }
.section-leaf h1, .section-leaf h2, .section-leaf h3 { color: #fff; }
.section-leaf .eyebrow { color: var(--gold-light); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.section-head p { color: var(--bark); margin-top: 18px; font-size: 1.1rem; }
.section-head.left { text-align: left; margin-left: 0; max-width: none; }
.section-leaf .section-head p { color: rgba(255,255,255,.88); }

/* ===== About / 2-col ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col .col-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  background: var(--beige-dark) center/cover;
  position: relative;
}
.two-col .col-image::after {
  /* decorative border */
  content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; pointer-events: none;
}
.two-col .col-image.placeholder {
  background: linear-gradient(135deg, var(--moss), var(--leaf-dark));
  display: flex; align-items: center; justify-content: center;
}
.two-col .col-image.placeholder .leaf-mark { width: 50%; height: 50%; opacity: .35; }

/* "Year established" badge */
.year-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: #fff; padding: 12px 22px; border-radius: 32px;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  box-shadow: 0 6px 18px rgba(184,146,63,.35);
  margin-bottom: 20px;
}
.year-badge svg { width: 18px; height: 18px; }

/* ===== Product grid ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.product-card {
  background: var(--beige); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all .35s var(--tx-ease);
  display: flex; flex-direction: column;
  border: 1px solid rgba(74,106,63,.06);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(74,106,63,.15); }
.product-card .pc-image {
  aspect-ratio: 1/1; background: #fff; position: relative;
  overflow: hidden; padding: 14px;
  display: flex; align-items: center; justify-content: center;
}
.product-card .pc-image img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform .6s var(--tx-ease); }
.product-card:hover .pc-image img { transform: scale(1.06); }
.product-card .pc-tag {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: rgba(255,255,255,.95); color: var(--leaf-dark); padding: 5px 14px;
  border-radius: 20px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  backdrop-filter: blur(8px);
}
.product-card .pc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; background: var(--beige); }
.product-card h3 { margin-bottom: 10px; font-size: 1.4rem; }
.product-card .pc-short { color: var(--bark); font-size: .94rem; margin-bottom: 18px; flex: 1; line-height: 1.65; }
.product-card .pc-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--leaf); font-weight: 600; font-size: .9rem; }
.product-card .pc-cta::after { content: '→'; transition: transform .25s; }
.product-card:hover .pc-cta::after { transform: translateX(6px); }

/* Per-tea-type gradient placeholders (when no image) */
.pc-image.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--moss) 0%, var(--leaf) 100%);
}
.pc-image.placeholder.tea-green   { background: linear-gradient(135deg, #98a675 0%, #4a6a3f 100%); }
.pc-image.placeholder.tea-black   { background: linear-gradient(135deg, #6b5340 0%, #2d2018 100%); }
.pc-image.placeholder.tea-oolong  { background: linear-gradient(135deg, #c4894a 0%, #7a4920 100%); }
.pc-image.placeholder.tea-white   { background: linear-gradient(135deg, #d4c9a8 0%, #9a8a65 100%); }
.pc-image.placeholder.tea-red     { background: linear-gradient(135deg, #b8584a 0%, #6a2820 100%); }
.pc-image.placeholder.tea-aged    { background: linear-gradient(135deg, #8a6a3a 0%, #4a3018 100%); }
.pc-image.placeholder.tea-sheng   { background: linear-gradient(135deg, #a8c478 0%, #4a6a3f 100%); }
.pc-image.placeholder.tea-pressed { background: linear-gradient(135deg, #6a8a4f 0%, #2f4a26 100%); }
.pc-image.placeholder.tea-smoked  { background: linear-gradient(135deg, #5a4530 0%, #2a1a10 100%); }
.pc-image.placeholder.tea-flavoured{background: linear-gradient(135deg, #d47a8a 0%, #8a3a4a 100%); }
.pc-image.placeholder.tea-gaba    { background: linear-gradient(135deg, #b8c89a 0%, #6a7a4a 100%); }
.pc-image.placeholder.tea-fermented{background: linear-gradient(135deg, #7a5535 0%, #3a2515 100%); }
.pc-image.placeholder.tea-handpicked{background: linear-gradient(135deg, #b89858 0%, #5a4525 100%); }
.pc-image.placeholder.tea-specialty {background: linear-gradient(135deg, #88a8b8 0%, #4a6a7a 100%); }
.pc-image.placeholder.tea-tippy   { background: linear-gradient(135deg, #d4b878 0%, #8a6a35 100%); }
.pc-image.placeholder.tea-roasted-green { background: linear-gradient(135deg, #c89e6e 0%, #6a4a25 100%); }
.pc-image.placeholder.tea-sun-dried { background: linear-gradient(135deg, #f0c860 0%, #b88840 100%); }
.pc-image.placeholder .leaf-mark { width: 56%; height: 56%; opacity: .28; }
.pc-image.placeholder .leaf-mark path { fill: #fff; }

/* ===== Process timeline — banner-scroll style ===== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process.process-5 { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process-step {
  background: linear-gradient(180deg, var(--beige) 0%, var(--beige-dark) 100%);
  color: var(--charcoal);
  padding: 36px 22px 28px; border-radius: 6px;
  position: relative; border: 1px solid rgba(74,106,63,.1);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
/* Hanging-scroll wooden bar + string */
.process-step::before {
  content: ''; position: absolute; top: -10px; left: -8px; right: -8px;
  height: 14px; border-radius: 7px;
  background: linear-gradient(180deg, #c8a36e 0%, #8a6938 100%);
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.process-step::after {
  content: ''; position: absolute; top: -36px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.5) 100%);
}
.process-step .step-num {
  position: absolute; top: 14px; right: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  box-shadow: 0 4px 10px rgba(74,106,63,.45);
}
.process-step .step-icon { width: 64px; height: 64px; color: var(--leaf-dark); margin: 4px 0 16px; }
.process-step h4 { color: var(--leaf-dark); margin-bottom: 12px; font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.process-step p { font-size: .9rem; color: var(--bark); line-height: 1.6; }
.section-leaf .process-step { /* keep dark bg behind scrolls */ }
@media (max-width: 1100px) {
  .process.process-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .process.process-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .process.process-5 { grid-template-columns: 1fr; }
  .process-step { padding: 30px 22px 24px; }
}

/* ===== Feature grid (plantation features) ===== */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; }
.feat-card {
  text-align: center; padding: 32px 22px; background: var(--beige);
  border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .3s;
}
.feat-card:hover { transform: translateY(-6px); }
.feat-card .feat-icon { width: 60px; height: 60px; margin: 0 auto 18px; color: var(--leaf); }
.feat-card h4 { color: var(--leaf-dark); font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.section-leaf .feat-card { background: rgba(255,255,255,.06); color: rgba(255,255,255,.92); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.1); }
.section-leaf .feat-card .feat-icon { color: var(--gold-light); }
.section-leaf .feat-card h4 { color: #fff; }

/* ===== Factory gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.gallery-item {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
  background: linear-gradient(135deg, var(--moss) 0%, var(--leaf-dark) 100%);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.placeholder { display: flex; align-items: center; justify-content: center; }
.gallery-item.placeholder svg { width: 38%; height: 38%; color: rgba(255,255,255,.4); }
.gallery-item .caption {
  position: absolute; left: 14px; bottom: 14px; color: #fff;
  font-size: .85rem; font-weight: 500; background: rgba(0,0,0,.4);
  padding: 5px 12px; border-radius: 14px; backdrop-filter: blur(8px);
}

/* ===== Story / two col with bg image overlay ===== */
.story-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 480px; padding: 50px; color: #fff; display: flex; align-items: flex-end;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.6) 100%), var(--leaf-dark) center/cover;
  box-shadow: var(--shadow-lg);
}
.story-card.has-image { background-blend-mode: normal; }
.story-card h3 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; }
.story-card p { opacity: .92; max-width: 500px; }

/* ===== Trust signals / numbers ===== */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.trust-card {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,.05); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
}
.trust-num {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 700;
  color: var(--gold-light); line-height: 1; margin-bottom: 10px; display: block;
}
.trust-label { font-size: .92rem; color: rgba(255,255,255,.85); }

/* ===== Catalogue banner ===== */
.catalogue-banner {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 70px; display: grid;
  grid-template-columns: 2fr 1fr; gap: 44px; align-items: center; box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.catalogue-banner::before {
  content: ''; position: absolute; right: -80px; bottom: -80px; width: 360px; height: 360px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50 10 Q 70 30 70 50 Q 70 70 50 90 Q 30 70 30 50 Q 30 30 50 10 Z' fill='%23ffffff' fill-opacity='.06'/></svg>") no-repeat center/contain;
}
.catalogue-banner::after {
  content: ''; position: absolute; left: -40px; top: -40px; width: 180px; height: 180px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-opacity='.1' stroke-width='2'/><circle cx='50' cy='50' r='25' fill='none' stroke='%23ffffff' stroke-opacity='.06' stroke-width='1'/></svg>") no-repeat center/contain;
}
.catalogue-banner h2 { color: #fff; margin-bottom: 18px; }
.catalogue-banner p { opacity: .92; margin-bottom: 26px; font-size: 1.08rem; max-width: 540px; }
.catalogue-cta { text-align: center; position: relative; z-index: 1; }

/* Packaging hero image — single lineup shot, replaces old PDF icon */
.packaging-hero {
  width: 100%; max-width: 360px; margin: 0 auto 22px;
  background: linear-gradient(180deg, #fff 0%, var(--beige) 100%);
  border-radius: 14px; padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.packaging-hero img { width: 100%; height: auto; display: block; }
@media (max-width: 980px) {
  .packaging-hero { max-width: 420px; }
}

/* Legacy PDF icon — kept for backwards compatibility but unused */
.pdf-icon-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 14px; }
.pdf-icon {
  width: 100px; height: 120px;
  background: linear-gradient(135deg, #fff 0%, var(--beige) 100%);
  border-radius: 8px; position: relative; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; color: var(--leaf-dark);
  font-size: 1.5rem;
}

/* ===== Contact form ===== */
.contact-form {
  background: var(--beige); padding: 52px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; gap: 20px; max-width: 760px; margin: 0 auto;
  position: relative;
}
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; font-size: .9rem; font-weight: 600; color: var(--bark); margin-bottom: 8px; }
.contact-form label .req { color: #c14a2f; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--beige-dark); border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: #ffffff; color: var(--charcoal);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 0; border-color: var(--leaf); background: #fff; box-shadow: 0 0 0 3px rgba(74,106,63,.12);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.product-checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-top: 6px; }
.product-checks label {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  background: #fff; border-radius: 10px; cursor: pointer; font-size: .92rem; font-weight: 500;
  border: 1.5px solid transparent; transition: all .2s;
  margin: 0;
}
.product-checks label:hover { background: var(--beige-dark); border-color: var(--moss); }
.product-checks input { width: 16px; height: 16px; margin: 0; accent-color: var(--leaf); }
.product-checks label.checked { background: var(--leaf); color: #fff; border-color: var(--leaf-dark); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.alert { padding: 16px 22px; border-radius: 10px; font-size: .96rem; }
.alert.success { background: #e8f5e8; color: #2d5a2d; border-left: 4px solid var(--leaf); }
.alert.error   { background: #fae6e2; color: #8a3a28; border-left: 4px solid #c14a2f; }
.alert.info    { background: #fff7e6; color: #7a5a14; border-left: 4px solid var(--gold); }

/* ===== Footer ===== */
.site-footer {
  background: var(--leaf-deeper); color: rgba(255,255,255,.78);
  padding: 90px 0 30px; position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M100 20 C140 40 165 80 165 120 C165 150 140 170 100 175 C60 170 35 150 35 120 C35 80 60 40 100 20 Z' fill='none' stroke='%23ffffff' stroke-opacity='.03' stroke-width='1.5'/></svg>");
  background-size: 320px;
}
.site-footer > * { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.site-footer h4 { color: #fff; margin-bottom: 22px; font-family: var(--sans); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; }
.site-footer a { color: rgba(255,255,255,.78); transition: color .2s; }
.site-footer a:hover { color: var(--gold-light); }
.footer-tagline { max-width: 380px; font-size: .95rem; line-height: 1.8; }
.footer-tagline-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer-tagline-header .logo-mark { width: 52px; height: 52px; font-size: 1.8rem; box-shadow: 0 4px 14px rgba(0,0,0,.3); background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%); }
.footer-tagline-header span { font-family: var(--serif); font-size: 1.65rem; color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: #fff; transition: all .25s;
}
.footer-social a:hover { background: var(--gold); transform: translateY(-2px); }
.footer-nav { display: grid; gap: 12px; font-size: .95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: .85rem;
}
.footer-cert-strip {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.footer-cert {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 14px; background: rgba(255,255,255,.06);
  font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

/* ===== Single product page ===== */
.product-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start;
  padding-top: 60px;
}
.product-hero .ph-image {
  aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); background: #fff;
  position: relative; padding: 22px;
  display: flex; align-items: center; justify-content: center;
}
.product-hero .ph-image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-hero .ph-image.placeholder { background: linear-gradient(135deg, var(--moss), var(--leaf-dark)); padding: 0; }
.product-hero .ph-image.placeholder svg { width: 50%; height: 50%; opacity: .35; color: #fff; }
.product-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.product-photos .ph-image { aspect-ratio: 1/1; padding: 18px; }
.product-photos .ph-image.cup { background: #1a1614; }
.product-photos .ph-image .label {
  position: absolute; bottom: 10px; left: 10px;
  font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 12px;
  background: rgba(255,255,255,.85); color: var(--leaf-dark);
}
.product-photos .ph-image.cup .label { background: rgba(0,0,0,.55); color: #fff; }
@media (max-width: 980px) {
  .product-photos { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 560px) {
  .product-photos { grid-template-columns: 1fr; }
}
.product-hero h1 { margin-bottom: 14px; }
.product-hero .ph-type {
  display: inline-block; background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: #fff; padding: 7px 18px; border-radius: 20px;
  font-size: .85rem; font-weight: 600; margin-bottom: 18px; letter-spacing: .05em;
}
.product-hero .ph-short { font-size: 1.2rem; color: var(--bark); margin-bottom: 26px; line-height: 1.7; font-family: var(--serif); font-style: italic; }
.product-hero .ph-desc { font-size: 1.02rem; color: var(--charcoal); line-height: 1.85; margin-bottom: 32px; }
.product-hero .ph-desc p { margin-bottom: 14px; }
.product-hero .ph-desc p:last-child { margin-bottom: 0; }
@media (max-width: 560px) {
  .brew-grid { grid-template-columns: 1fr 1fr !important; gap: 16px 12px !important; }
}

.breadcrumb { padding: 20px 0; font-size: .9rem; color: var(--bark); }
.breadcrumb a { color: var(--leaf); }

/* ===== Admin styling ===== */
.admin-body { background: #ffffff; min-height: 100vh; }
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--leaf-deeper); color: #fff; padding: 28px 18px; }
.admin-sidebar .logo { color: #fff; margin-bottom: 32px; }
.admin-sidebar .logo span { color: #fff; }
.admin-sidebar nav a {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 8px;
  color: rgba(255,255,255,.85); font-weight: 500; font-size: .95rem; margin-bottom: 4px;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-main { padding: 32px 40px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-topbar h1 { font-size: 1.8rem; }
.admin-card { background: var(--beige); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; margin-bottom: 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--beige-dark); font-size: .94rem; vertical-align: middle; }
.admin-table th { background: #fff; font-weight: 600; color: var(--leaf-dark); text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
.admin-table tr:hover td { background: #fff; }
.admin-table img.thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-bottom: 28px; }
.stat { background: var(--beige); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 4px solid var(--leaf); }
.stat .label { font-size: .8rem; color: var(--bark); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.stat .value { font-size: 2.4rem; font-weight: 700; color: var(--leaf-dark); font-family: var(--serif); margin-top: 6px; line-height: 1; }

.login-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--leaf-deeper); padding: 24px; position: relative; overflow: hidden; }
.login-page::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M100 20 C140 40 165 80 165 120 C165 150 140 170 100 175 C60 170 35 150 35 120 C35 80 60 40 100 20 Z' fill='none' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1.5'/></svg>");
  background-size: 280px;
}
.login-card { position: relative; background: var(--beige); padding: 48px; border-radius: var(--radius-lg); width: 100%; max-width: 420px; box-shadow: var(--shadow-xl); z-index: 1; }
.login-card h1 { font-size: 1.8rem; margin-bottom: 28px; text-align: center; }

.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--beige-dark); margin-bottom: 24px; flex-wrap: wrap; }
.tabs a, .tabs button {
  padding: 10px 18px; background: none; border: 0; cursor: pointer; font-weight: 600;
  color: var(--bark); font-size: .95rem; border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.tabs a.active, .tabs button.active { color: var(--leaf-dark); border-bottom-color: var(--leaf); }

.badge { display: inline-block; padding: 4px 12px; border-radius: 14px; font-size: .76rem; font-weight: 600; }
.badge-green { background: var(--leaf); color: #fff; }
.badge-gray { background: var(--beige-dark); color: var(--bark); }

/* Plantation video — direct YouTube embed */
.video-frame {
  position: relative; max-width: 960px; margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); background: #000;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0; display: block;
}

/* Exported countries grid */
.countries {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 28px 18px;
  max-width: 900px; margin: 0 auto;
}
.country {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .25s var(--tx-ease);
}
.country:hover { transform: translateY(-4px); }
.country img {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.country .name {
  font-size: .78rem; font-weight: 600; color: var(--leaf-dark);
  letter-spacing: .04em;
}
.section-leaf .country .name,
.countries-on-dark .country .name { color: #ffffff !important; }
.countries-on-dark .country img { box-shadow: 0 4px 14px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.15); }
@media (max-width: 980px) {
  .countries { grid-template-columns: repeat(5, 1fr); gap: 22px 14px; }
}
@media (max-width: 560px) {
  .countries { grid-template-columns: repeat(4, 1fr); gap: 20px 10px; }
  .country img { width: 56px; height: 56px; }
}
@media (max-width: 380px) {
  .countries { grid-template-columns: repeat(3, 1fr); }
}

/* Scroll reveals */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--tx-ease), transform .8s var(--tx-ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:nth-child(4) { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  section { padding: 80px 0; }
  .nav-toggle { display: block; }
  /* Hero — center text & buttons on tablet/mobile */
  .hero-inner { text-align: center; padding: 60px 0; max-width: 100%; }
  .hero-inner > * { margin-left: auto; margin-right: auto; }
  .hero-inner p { max-width: 580px; }
  .hero-buttons { justify-content: center; }
  .hero .handdrawn::after { margin-left: auto; margin-right: auto; }
  .hero h1 { display: inline-block; }
  /* Logo — give it a touch more breathing room from the edge */
  .header-inner { padding: 12px 0; }
  .container { padding: 0 20px; }
  /* Force two-col to collapse on mobile (beats inline grid-template-columns) */
  .two-col { grid-template-columns: 1fr !important; }
  .product-hero { grid-template-columns: 1fr !important; }
  .nav-list {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--beige); flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px; box-shadow: var(--shadow);
    transform: translateY(-200%); transition: transform .35s var(--tx-ease);
    border-top: 1px solid var(--beige-dark);
  }
  .nav-list.open { transform: translateY(0); }
  .nav-list a { padding: 14px 12px; border-bottom: 1px solid var(--beige-dark); }
  .nav-list a:last-of-type { border: 0; }
  .nav-list a.active::after, .nav-list a:hover::after { display: none; }
  .lang-switch { padding: 12px 0 0; margin: 0; border-left: 0; border-top: 1px solid var(--beige-dark); justify-content: center; }
  .highlights { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 22px; margin-top: -50px; }
  .highlight { border-right: 0; }
  .highlight:nth-child(-n+3) { border-bottom: 1px solid rgba(74,106,63,.08); padding-bottom: 16px; margin-bottom: 6px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .product-hero { grid-template-columns: 1fr; gap: 36px; }
  .catalogue-banner { grid-template-columns: 1fr; padding: 44px 32px; text-align: center; }
  .catalogue-banner p { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 32px 24px; }
  .contact-form .row-2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 80vh; }
  .hero-meta { position: static; padding: 0 0 30px 0; align-items: flex-start; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; padding: 18px; }
  .admin-sidebar nav { display: flex; gap: 4px; overflow-x: auto; padding-bottom: 4px; }
  .admin-sidebar nav a { white-space: nowrap; }
  .admin-main { padding: 20px; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .highlights { grid-template-columns: repeat(2, 1fr); padding: 18px; }
  .highlight { border-bottom: 1px solid rgba(74,106,63,.08); padding-bottom: 14px; margin-bottom: 4px; }
  .hero { min-height: 80vh; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .catalogue-banner { padding: 32px 22px; }
  .product-checks { grid-template-columns: 1fr 1fr; }
  .feat-grid, .process, .trust-grid { grid-template-columns: 1fr 1fr; }
  .login-card { padding: 30px 22px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.3rem; }
  .product-hero { padding-top: 30px; }
  .product-hero .ph-short { font-size: 1.08rem; }
  .product-hero .ph-desc { font-size: .98rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .product-checks { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .feat-grid, .process, .trust-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

/* Defensive: collapse inline-styled 2-column grids on small phones */
@media (max-width: 560px) {
  [style*="grid-template-columns:1fr 1fr"]:not(.row-2) {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1.3fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .lang-switch, .hero-floaters { display: none !important; }
}
