/* Fonts: Marcellus (display), Inter (ui) */
:root {
  --bg: #f5efe6;
  --bg-alt: #f2eadf;
  --card: #ffffff;
  --ink: #1f1b16;
  --ink-soft: #534f49;
  --brand: #7b5e57; /* earthy brown */
  --accent: #6aa38f; /* sage green */
  --gold: #c3a166;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 800px at 80% -100px, #ece6dc 0%, var(--bg) 45%, var(--bg) 100%);
  line-height: 1.65;
}

/* Anchor offset for sticky header */
section { scroll-margin-top: 84px; }

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; padding: 8px 12px; background: #000; color: #fff; border-radius: 8px; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(245, 239, 230, .7);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.scrollbar { position: absolute; inset: 0 0 auto 0; height: 3px; background: rgba(0,0,0,.05); }
.scrollbar span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), #7ec4a9); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: Marcellus, serif; letter-spacing: .3px; }
.brand-logo { 
  display: flex; align-items: center; 
  transition: transform .2s ease;
}
.brand-logo:hover { 
  transform: scale(1.05); 
}
.brand-logo svg { 
  display: block; 
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.brand-text { font-size: 18px; }
.site-nav { display: flex; gap: 18px; }
.site-nav a { color: var(--ink); text-decoration: none; padding: 8px 10px; border-radius: 10px; }
.site-nav a:hover { background: rgba(0,0,0,.05); }

/* Hero */
.hero { position: relative; padding: 72px 0 40px; isolation: isolate; overflow: hidden; }
.motes { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(2px 2px at 20% 30%, rgba(106,163,143,.18), transparent), radial-gradient(2px 2px at 60% 20%, rgba(195,161,102,.16), transparent), radial-gradient(2px 2px at 80% 60%, rgba(123,94,87,.18), transparent); animation: drift 24s linear infinite; opacity: .6; }
@keyframes drift { 0% { transform: translateY(0); } 100% { transform: translateY(-60px); } }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; }
.hero-badge { 
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(106,163,143,.1); color: var(--accent);
  padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600;
  margin-bottom: 16px; border: 1px solid rgba(106,163,143,.2);
}
.hero-copy h1 { font-family: Marcellus, serif; font-size: clamp(28px, 4.5vw, 52px); line-height: 1.1; margin: 0 0 14px; }
.hero-copy p { font-size: clamp(15px, 2.2vw, 18px); color: var(--ink-soft); margin: 0 0 18px; }
.hero-ctas { display: flex; gap: 12px; margin: 14px 0 20px; }
.btn { 
  display: inline-flex; align-items: center; gap: 8px; 
  border-radius: 999px; padding: 12px 18px; text-decoration: none; 
  font-weight: 600; transition: all .2s ease;
  min-height: 44px; /* Better touch target */
}
.btn.primary { 
  background: linear-gradient(135deg, var(--accent), #7ec4a9); 
  color: #0e3026; box-shadow: var(--shadow);
}
.btn.ghost { 
  border: 1px solid rgba(0,0,0,.12); color: var(--ink);
}
.btn:hover { 
  transform: translateY(-1px); 
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
}
.btn:active { 
  transform: translateY(0); 
  transition: transform .1s ease;
}
.btn.primary:active { 
  background: linear-gradient(135deg, #5a8a7a, #6ba394);
}
.btn.ghost:active { 
  background: rgba(0,0,0,.05);
}

.hero-stats { 
  display: flex; gap: 24px; margin-top: 20px;
}
.hero-stats .stat { 
  text-align: center; 
}
.hero-stats .stat-number { 
  font-family: Marcellus, serif; font-size: 24px; font-weight: 700; 
  color: var(--accent); margin-bottom: 4px;
}
.hero-stats .stat-label { 
  color: var(--ink-soft); font-size: 12px; font-weight: 600;
}

.floating-elements { 
  position: absolute; inset: 0; pointer-events: none;
}
.floating-icon { 
  position: absolute; font-size: 24px; opacity: .6;
  animation: float 6s ease-in-out infinite;
}
.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }

/* Hero section decorative elements */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 15% 25%, rgba(255, 192, 203, .3), transparent),
    radial-gradient(2px 2px at 85% 35%, rgba(106, 163, 143, .2), transparent),
    radial-gradient(1px 1px at 45% 75%, rgba(255, 105, 180, .25), transparent),
    radial-gradient(2px 2px at 25% 85%, rgba(154, 194, 177, .15), transparent);
  animation: heroFloat 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes heroFloat {
  0% { transform: translateY(0) translateX(0); opacity: .6; }
  25% { transform: translateY(-8px) translateX(3px); opacity: .8; }
  50% { transform: translateY(-4px) translateX(-2px); opacity: .7; }
  75% { transform: translateY(-12px) translateX(1px); opacity: .9; }
  100% { transform: translateY(0) translateX(0); opacity: .6; }
}

.hero-visual { position: relative; min-height: 360px; display: grid; place-items: end center; }
.incense { position: relative; width: 220px; height: 320px; }
.holder {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 12px; background: linear-gradient(180deg, #b9987b, #9a7a5c);
  border-radius: 12px; box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
}
.stick {
  position: absolute; bottom: 28px; left: 50%; width: 4px; height: 220px; transform: translateX(-58px) rotate(10deg);
  transform-origin: bottom center;
  background: linear-gradient(180deg, #6a4b3a, #3d2a22);
  border-radius: 4px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.ember {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; background: radial-gradient(circle, #ff8b4a 0%, #f34717 50%, transparent 70%);
  border-radius: 50%; filter: blur(.4px) drop-shadow(0 0 6px rgba(243,71,23,.4));
  animation: emberPulse 2.2s ease-in-out infinite;
}
@keyframes emberPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .9; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}
.smoke { position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-10deg); filter: blur(1px); }
.smoke span {
  position: absolute; bottom: 0; left: 0; width: 2px; height: 60px; background: linear-gradient(180deg, rgba(180,180,180,.0) 0%, rgba(170,170,170,.45) 100%);
  border-radius: 50px; opacity: .9; transform-origin: bottom center;
  animation: rise 6.5s ease-in infinite;
}
.smoke span:nth-child(2) { left: 6px; height: 70px; animation-delay: 1.2s; opacity: .7; }
.smoke span:nth-child(3) { left: -8px; height: 90px; animation-delay: 2.4s; opacity: .65; }
.smoke span:nth-child(4) { left: 12px; height: 80px; animation-delay: 3.6s; opacity: .6; }
.smoke span:nth-child(5) { left: -14px; height: 100px; animation-delay: 4.8s; opacity: .55; }
@keyframes rise {
  0% { transform: translateY(0) scaleX(1) rotate(-6deg); opacity: .0; }
  10% { opacity: .7; }
  50% { transform: translateY(-120px) scaleX(1.4) rotate(8deg); opacity: .4; }
  100% { transform: translateY(-240px) scaleX(1.1) rotate(-4deg); opacity: 0; }
}

.hero-waves { position: absolute; inset: auto 0 0 0; height: 120px; background: radial-gradient(60% 120px at 50% 0, rgba(106,163,143,.14), transparent 65%); pointer-events: none; }

/* Enhanced Ambient Effects */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 40; }
.ambient .haze { 
  position: absolute; inset: 0; 
  background: 
    radial-gradient(120% 60% at 50% -10%, rgba(255,255,255,.35), rgba(255,255,255,0) 60%), 
    radial-gradient(80% 40% at 70% 10%, rgba(154, 194, 177, .10), transparent 60%),
    radial-gradient(60% 30% at 20% 80%, rgba(255, 192, 203, .08), transparent 50%);
  mix-blend-mode: soft-light; 
}

/* Floating Petals */
.ambient .petals { position: absolute; inset: 0; overflow: hidden; }
.petal { 
  position: absolute; 
  width: 12px; height: 10px; 
  background: radial-gradient(circle at 30% 30%, #ffc4d6, #ff8fb0 60%, #ff729a 100%); 
  border-radius: 70% 70% 60% 60%; 
  opacity: .75; 
  filter: blur(.2px); 
  transform-origin: center; 
  will-change: transform, opacity; 
}
.petal.rose { background: radial-gradient(circle at 30% 30%, #ffb3d1, #ff69b4 60%, #ff1493 100%); }
.petal.lavender { background: radial-gradient(circle at 30% 30%, #e6e6fa, #d8bfd8 60%, #dda0dd 100%); }
.petal.jasmine { background: radial-gradient(circle at 30% 30%, #fff8dc, #f0e68c 60%, #daa520 100%); }

@keyframes fallPetal {
  0% { transform: translate3d(var(--x,0), -10%, 0) rotate(0deg) scale(1); opacity: .9; }
  60% { opacity: .85; }
  100% { transform: translate3d(calc(var(--x,0) + var(--drift, 60px)), 110vh, 0) rotate(360deg) scale(1); opacity: 0; }
}

/* Floating Incense Sticks */
.ambient .incense-floating { position: absolute; inset: 0; overflow: hidden; }
.incense-float { 
  position: absolute; 
  width: 2px; height: 40px; 
  background: linear-gradient(180deg, #6a4b3a, #3d2a22); 
  border-radius: 1px; 
  opacity: .6; 
  will-change: transform, opacity;
}
.incense-float::before {
  content: ''; 
  position: absolute; 
  top: -4px; 
  left: 50%; 
  transform: translateX(-50%);
  width: 4px; 
  height: 4px; 
  background: radial-gradient(circle, #ff8b4a 0%, #f34717 50%, transparent 70%);
  border-radius: 50%; 
  animation: emberFloat 3s ease-in-out infinite;
}
.incense-float::after {
  content: ''; 
  position: absolute; 
  top: -8px; 
  left: 50%; 
  transform: translateX(-50%);
  width: 1px; 
  height: 20px; 
  background: linear-gradient(180deg, rgba(200,200,200,.6) 0%, transparent 100%);
  border-radius: 50px; 
  animation: smokeFloat 4s ease-in-out infinite;
}

@keyframes emberFloat {
  0%, 100% { opacity: .8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}
@keyframes smokeFloat {
  0% { transform: translateX(-50%) translateY(0) scaleY(1); opacity: .6; }
  50% { transform: translateX(-50%) translateY(-10px) scaleY(1.3); opacity: .3; }
  100% { transform: translateX(-50%) translateY(-20px) scaleY(1); opacity: 0; }
}

/* Floating Aromatics */
.ambient .aromatics { position: absolute; inset: 0; overflow: hidden; }
.aromatic-float { 
  position: absolute; 
  width: 8px; height: 8px; 
  border-radius: 50%; 
  opacity: .4; 
  will-change: transform, opacity;
}
.aromatic-float.vanilla { background: radial-gradient(circle, #f5deb3, #daa520); }
.aromatic-float.sandalwood { background: radial-gradient(circle, #deb887, #cd853f); }
.aromatic-float.rose { background: radial-gradient(circle, #ffb6c1, #ff69b4); }
.aromatic-float.jasmine { background: radial-gradient(circle, #fff8dc, #f0e68c); }

@keyframes floatAromatic {
  0% { transform: translateY(0) rotate(0deg); opacity: .4; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: .6; }
  100% { transform: translateY(-40px) rotate(360deg); opacity: 0; }
}

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: var(--bg-alt); }
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.section h2 { font-family: Marcellus, serif; font-size: clamp(22px, 3.2vw, 34px); margin: 0 0 12px; }
.section .lead { color: var(--ink-soft); margin-top: -6px; }

/* Section themed imagery with floating elements */
.bg-floral {
  background-image:
    radial-gradient(160px 80px at 90% 10%, rgba(255, 192, 203, .18), transparent 60%),
    radial-gradient(120px 60px at 10% 90%, rgba(255, 192, 203, .12), transparent 60%);
  background-blend-mode: screen;
  position: relative;
}
.bg-floral::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 192, 203, .3), transparent),
    radial-gradient(2px 2px at 80% 70%, rgba(255, 182, 193, .2), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255, 105, 180, .4), transparent);
  animation: floatParticles 20s linear infinite;
  pointer-events: none;
}

.bg-leafy {
  background-image:
    radial-gradient(200px 120px at 5% 20%, rgba(106, 163, 143, .16), transparent 60%),
    radial-gradient(140px 90px at 95% 80%, rgba(154, 194, 177, .12), transparent 60%);
  position: relative;
}
.bg-leafy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 15% 25%, rgba(106, 163, 143, .2), transparent),
    radial-gradient(1px 1px at 75% 60%, rgba(154, 194, 177, .3), transparent),
    radial-gradient(2px 2px at 60% 85%, rgba(124, 196, 169, .25), transparent);
  animation: floatParticles 25s linear infinite reverse;
  pointer-events: none;
}

.bg-mist {
  background-image:
    radial-gradient(80% 60% at 50% 0%, rgba(255,255,255,.35), rgba(255,255,255,0) 60%),
    radial-gradient(60% 40% at 70% 30%, rgba(106,163,143,.10), transparent 60%);
  position: relative;
}
.bg-mist::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 30% 20%, rgba(255,255,255,.4), transparent),
    radial-gradient(2px 2px at 70% 50%, rgba(106,163,143,.15), transparent),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,.3), transparent);
  animation: floatParticles 30s linear infinite;
  pointer-events: none;
}

@keyframes floatParticles {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-10px) translateX(5px); }
  50% { transform: translateY(-5px) translateX(-3px); }
  75% { transform: translateY(-15px) translateX(2px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Nature accents */
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(220px 120px at 10% 20%, rgba(106,163,143,.06), transparent 60%), radial-gradient(180px 100px at 90% 30%, rgba(195,161,102,.06), transparent 60%), radial-gradient(240px 140px at 30% 90%, rgba(123,94,87,.05), transparent 60%);
}

/* Values Section - Compact Grid Layout */
.values-header { text-align: center; margin-bottom: 40px; }
.values-subtitle { color: var(--ink-soft); font-size: 18px; margin-top: 8px; }

.values-grid { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px; margin-top: 20px;
}

.value-card { 
  background: var(--card); border-radius: 16px; 
  padding: 24px; box-shadow: var(--shadow);
  text-align: center; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  border-top: 3px solid var(--accent);
  cursor: pointer;
}
.value-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
}
.value-card:active { 
  transform: translateY(-2px); 
  transition: transform .1s ease;
}

.value-icon { 
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7ec4a9);
  display: grid; place-items: center; color: #0e3026; font-size: 28px;
  margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(106,163,143,.2);
  position: relative;
}
.value-icon::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(106,163,143,.15), rgba(124,196,169,.25));
  z-index: -1; animation: iconGlow 3s ease-in-out infinite;
}

.value-card h3 { 
  margin: 0 0 12px; font-family: Marcellus, serif; 
  font-size: 20px; color: var(--ink);
}
.value-card p { 
  margin: 0; color: var(--ink-soft); 
  line-height: 1.5; font-size: 14px;
}

/* Material Symbols icon font */
.material-symbol { font-family: 'Material Symbols Rounded'; font-weight: normal; font-style: normal; font-size: 1.15em; line-height: 1; letter-spacing: normal; text-transform: none; display: inline-block; white-space: nowrap; word-wrap: normal; direction: ltr; -webkit-font-feature-settings: 'liga'; font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased; vertical-align: -2px; }

/* Remove old pseudo-icon styles since we now have proper card icons */
.hero-highlights li { position: relative; padding-left: 22px; }
.hero-highlights li::before { content: "spa"; font-family: 'Material Symbols Rounded'; position: absolute; left: 0; top: 0; color: var(--accent); }

.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.media { min-height: 260px; }
.media-art { height: 220px; background: linear-gradient(135deg, #9fc7b7, #d4e3db); }
.media .caption { margin: 12px 16px 16px; color: var(--ink-soft); font-size: 14px; }
.nature { background: conic-gradient(from 180deg at 50% 50%, #d9ece4, #b9d7c9, #e9f3ef, #cde2d6); filter: contrast(.95) saturate(1.05); }
.contact-art { background: linear-gradient(135deg, #f1e6d9, #e5d5c1); overflow: hidden; }
.contact-art iframe { width: 100%; height: 200px; border: none; border-radius: 12px; }

/* About Section Redesign */
.story-header { text-align: center; margin-bottom: 40px; }
.story-subtitle { color: var(--ink-soft); font-size: 18px; margin-top: 8px; }

.about-showcase { 
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; 
  margin-bottom: 40px; align-items: start;
}

.founder-card { 
  background: var(--card); border-radius: var(--radius); 
  padding: 32px; box-shadow: var(--shadow);
  text-align: center; border-top: 4px solid var(--accent);
}
.founder-visual { 
  position: relative; margin-bottom: 20px;
}
.founder-icon { 
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7ec4a9);
  display: grid; place-items: center; color: #0e3026; font-size: 36px;
  margin: 0 auto 12px; box-shadow: 0 8px 24px rgba(106,163,143,.2);
}
.founder-badge { 
  position: absolute; top: -8px; right: 20px;
  background: var(--accent); color: #0e3026; font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 12px;
}
.founder-info h3 { 
  margin: 0 0 8px; font-family: Marcellus, serif; 
  font-size: 24px; color: var(--ink);
}
.founder-info p { 
  margin: 0 0 16px; color: var(--ink-soft); 
  line-height: 1.5;
}
.founder-achievement { 
  display: flex; align-items: center; gap: 8px;
  background: rgba(106,163,143,.1); padding: 8px 12px;
  border-radius: 20px; font-size: 14px; color: var(--accent);
  justify-content: center;
}

.journey-highlights { 
  display: grid; gap: 20px;
}
.highlight-item { 
  display: flex; align-items: center; gap: 16px;
  background: var(--card); border-radius: 16px; 
  padding: 20px; box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.highlight-icon { 
  width: 50px; height: 50px; border-radius: 50%; 
  background: linear-gradient(135deg, var(--accent), #7ec4a9); 
  display: grid; place-items: center; color: #0e3026; font-size: 24px;
  flex-shrink: 0; box-shadow: 0 6px 20px rgba(106,163,143,.2);
}
.highlight-content h4 { 
  margin: 0 0 6px; font-family: Marcellus, serif; 
  font-size: 18px; color: var(--ink);
}
.highlight-content p { 
  margin: 0; color: var(--ink-soft); 
  line-height: 1.4; font-size: 14px;
}

.story-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.stat-card { 
  background: var(--card); border-radius: var(--radius); padding: 20px; 
  text-align: center; box-shadow: var(--shadow); transition: transform .2s ease;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #7ec4a9);
}
.stat-card:hover { transform: translateY(-2px); }
.stat-icon { 
  font-size: 24px; margin-bottom: 8px; display: block;
}
.stat-number { font-family: Marcellus, serif; font-size: 28px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.stat-label { color: var(--ink-soft); font-size: 14px; font-weight: 600; }

.badge-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.badge { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 999px; padding: 8px 12px; text-align: center; font-weight: 600; color: var(--brand); }

/* Our Craft Process - Compact Grid Design */
.process-header { text-align: center; margin-bottom: 32px; }
.process-subtitle { color: var(--ink-soft); font-size: 16px; margin-top: 6px; }

.process-grid { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px; max-width: 1000px; margin: 0 auto;
}

.process-card { 
  background: var(--card); border-radius: 16px; 
  padding: 24px; box-shadow: var(--shadow);
  text-align: center; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
  border-top: 3px solid var(--accent);
  cursor: pointer;
}
.process-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
}
.process-card:active { 
  transform: translateY(-2px); 
  transition: transform .1s ease;
}

.card-icon { 
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7ec4a9);
  display: grid; place-items: center; color: #0e3026; font-size: 24px;
  margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(106,163,143,.2);
  position: relative;
}
.card-icon::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(106,163,143,.15), rgba(124,196,169,.25));
  z-index: -1; animation: iconGlow 3s ease-in-out infinite;
}

.card-number { 
  position: absolute; top: 12px; right: 12px;
  font-family: Marcellus, serif; font-size: 12px; 
  color: var(--accent); font-weight: 600;
  background: rgba(106,163,143,.1);
  padding: 4px 8px; border-radius: 12px;
  min-width: 24px; text-align: center;
}

.process-card h3 { 
  margin: 0 0 12px; font-family: Marcellus, serif; 
  font-size: 18px; color: var(--ink);
}
.process-card p { 
  margin: 0; color: var(--ink-soft); 
  line-height: 1.5; font-size: 14px;
}

@keyframes iconGlow {
  0%, 100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.05); opacity: .6; }
}

/* Tabbed Product Gallery */
.gallery-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; 
  margin: 24px 0; justify-content: center;
  border-bottom: 2px solid rgba(106,163,143,.1);
  padding-bottom: 16px;
}

.tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border: none; border-radius: 25px;
  background: transparent; color: var(--ink-soft);
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all .2s ease; min-height: 44px;
  white-space: nowrap;
}
.tab-btn:hover {
  background: rgba(106,163,143,.1);
  color: var(--ink);
  transform: translateY(-1px);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--accent), #7ec4a9);
  color: #0e3026; box-shadow: var(--shadow);
}
.tab-btn .material-symbol {
  font-size: 18px;
}

.gallery-content {
  position: relative; min-height: 400px;
}

.gallery-grid { 
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
  gap: 12px; margin-top: 20px; 
  opacity: 0; transform: translateY(20px);
  transition: all .3s ease; position: absolute; inset: 0;
}
.gallery-grid.active {
  opacity: 1; transform: translateY(0); position: relative;
}

.g-item, .product-thumb { 
  position: relative; border-radius: 16px; overflow: hidden; 
  box-shadow: var(--shadow); background: #eee;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-thumb { 
  display: block; cursor: pointer;
}
.product-thumb:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 35px rgba(0,0,0,.15);
}
.product-thumb:active {
  transform: translateY(-2px);
  transition: transform .1s ease;
}
.product-thumb img { 
  width: 100%; height: 100%; object-fit: cover; 
  display: block; aspect-ratio: 4 / 5;
  transition: transform .3s ease;
}
.product-thumb:hover img { 
  transform: scale(1.05); 
}

/* Lightbox for mobile */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.9); display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-content {
  position: relative; max-width: 90vw; max-height: 90vh;
}
.lightbox img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute; top: -40px; right: 0;
  background: rgba(255,255,255,.2); border: none;
  color: white; font-size: 24px; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.thumb-skeleton { display: none; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
#gallery-sentinel { display: none; }
.note { color: var(--ink-soft); font-size: 14px; margin-top: 16px; text-align: center; }

/* Collections */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.collection-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 14px; }
.collection-card { padding-bottom: 8px; }
.collection-art { height: 140px; background: #eee; }
.collection-art.floral { background: radial-gradient(120px 60px at 70% 30%, rgba(255,192,203,.25), transparent), linear-gradient(135deg, #ffeaf0, #fff5f8); }
.collection-art.woody { background: linear-gradient(135deg, #c7a48e, #e8d3c5); }
.collection-art.herbal { background: linear-gradient(135deg, #c7e6d6, #e6f4ee); }
.collection-art.oriental { background: linear-gradient(135deg, #d7c0a2, #f1e4d3); }
.collection-art.citrus { background: linear-gradient(135deg, #f7e3b5, #fff1d4); }
.collection-art.spiritual { background: linear-gradient(135deg, #d7d0f0, #eee9fb); }

/* Honors */
.honors .award-card { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; padding: 16px; }
.award-icon { font-size: 30px; }
.award-title { margin: 0; }
.award-meta { margin: 4px 0 0; color: var(--ink-soft); font-size: 14px; }
.country-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 14px; }
.chip { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 999px; padding: 8px 12px; font-weight: 600; color: var(--accent); }
.map-art { height: 180px; background: radial-gradient(180px 80px at 60% 40%, rgba(106,163,143,.3), transparent), radial-gradient(140px 60px at 30% 70%, rgba(123,94,87,.25), transparent), radial-gradient(200px 90px at 80% 80%, rgba(195,161,102,.22), transparent); border-radius: var(--radius); box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }
.award-photo { width: 100%; max-width: 520px; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 12px; display: block; }

/* Global Exports Section */
.exports-header { text-align: center; margin-bottom: 48px; }
.exports-subtitle { color: var(--ink-soft); font-size: 18px; margin-top: 8px; }

.exports-showcase { margin-top: 32px; }

.export-stats { 
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); 
  gap: 24px; margin-bottom: 48px; 
}
.stat-item { 
  background: var(--card); border-radius: var(--radius); 
  padding: 24px; text-align: center; box-shadow: var(--shadow);
  position: relative; overflow: hidden; transition: transform .2s ease;
}
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #7ec4a9);
}
.stat-item:hover { transform: translateY(-2px); }
.stat-item .stat-number { 
  font-family: Marcellus, serif; font-size: 36px; font-weight: 700; 
  color: var(--accent); margin-bottom: 8px; 
}
.stat-item .stat-label { 
  color: var(--ink-soft); font-size: 16px; font-weight: 600; 
}

.export-countries { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 20px; margin-bottom: 48px; 
}
.country-card { 
  background: var(--card); border-radius: var(--radius); 
  padding: 24px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
  border-left: 4px solid var(--accent);
}
.country-card:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 35px rgba(0,0,0,.1);
}
.country-flag { 
  font-size: 32px; width: 50px; height: 50px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(106,163,143,.1), rgba(124,196,169,.15));
  border-radius: 12px; flex-shrink: 0;
}
.country-info h3 { 
  margin: 0 0 8px; font-family: Marcellus, serif; 
  font-size: 20px; color: var(--ink);
}
.country-info p { 
  margin: 0; color: var(--ink-soft); 
  line-height: 1.5; font-size: 14px;
}

.export-features { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 24px; 
}
.feature-item { 
  background: var(--card); border-radius: var(--radius); 
  padding: 24px; text-align: center; box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.feature-item:hover { transform: translateY(-2px); }
.feature-item .feature-icon { 
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7ec4a9);
  display: grid; place-items: center; color: #0e3026; font-size: 28px;
  margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(106,163,143,.2);
}
.feature-item h3 { 
  margin: 0 0 12px; font-family: Marcellus, serif; 
  font-size: 18px; color: var(--ink);
}
.feature-item p { 
  margin: 0; color: var(--ink-soft); 
  line-height: 1.5; font-size: 14px;
}

/* Legacy exports styles (keeping for compatibility) */
.exports .media { min-height: auto; }
.export-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.export-card { display: flex; align-items: center; gap: 10px; background: var(--card); border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow); }
.export-card .flag { font-size: 22px; }

/* Testimonials */
.testimonials { position: relative; display: grid; grid-template-columns: 1fr; }
.testimonial-card { display: none; background: var(--card); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.testimonial-card.active { display: block; }
.t-meta { margin-top: 8px; color: var(--ink-soft); font-weight: 600; }

/* Lightbox removed for simple gallery */

/* FAQ */
.faq { display: grid; gap: 10px; margin-top: 12px; }
.faq-item { overflow: hidden; }
.faq-q { 
  width: 100%; text-align: left; padding: 16px; 
  background: transparent; border: none; font-weight: 700; 
  cursor: pointer; transition: all .2s ease;
  min-height: 48px; /* Better touch target */
  display: flex; align-items: center; justify-content: space-between;
}
.faq-q:hover { background: rgba(106,163,143,.05); }
.faq-q:active { background: rgba(106,163,143,.1); }
.faq-a { 
  padding: 0 16px 16px; color: var(--ink-soft); 
  display: none; line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, #e7efe9, #f7f3ed); text-align: center; }
.cta-card { max-width: 820px; margin: 0 auto; padding: 20px 20px 24px; }
.cta-card h2 { margin: 6px 0 8px; }
.cta-card .cta-points { list-style: none; padding: 0; margin: 8px 0 14px; display: grid; gap: 8px; color: var(--ink-soft); }
.cta-card .cta-points li { display: flex; align-items: center; gap: 8px; justify-content: center; }
.cta-card .mini-note { color: var(--ink-soft); font-size: 13px; margin-top: 10px; }

/* Contact */
.contact .content { align-self: start; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-list li { 
  background: var(--card); border: 1px solid rgba(0,0,0,.06); 
  border-radius: var(--radius); padding: 16px; 
  display: grid; grid-template-columns: 100px 1fr; 
  align-items: center; gap: 12px;
  transition: all .2s ease;
  min-height: 60px; /* Better touch target */
}
.contact-list li:hover { 
  transform: translateY(-1px); 
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
}
.contact-list li:active { 
  transform: translateY(0); 
  transition: transform .1s ease;
}
.contact-list span { color: var(--ink-soft); font-weight: 600; }
.contact-list a { 
  color: var(--ink); text-decoration: none; font-weight: 600;
  transition: color .2s ease;
}
.contact-list a:hover { color: var(--accent); }
.map-btn { 
  display: flex; align-items: center; justify-content: center; gap: 8px; 
  margin-top: 12px; padding: 14px 16px; background: var(--accent); 
  color: #0e3026; border-radius: 12px; font-size: 15px; font-weight: 600; 
  text-decoration: none; transition: all .2s ease; width: 100%;
  min-height: 48px; /* Better touch target */
}
.map-btn:hover { 
  transform: translateY(-1px); 
  box-shadow: 0 6px 20px rgba(106,163,143,.3);
}
.map-btn:active { 
  transform: translateY(0); 
  transition: transform .1s ease;
}
.map-btn .material-symbol { font-size: 20px; }

/* Footer */
.site-footer { padding: 32px 0 100px; color: var(--ink-soft); background: linear-gradient(180deg, transparent, rgba(0,0,0,.02)); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 20px; align-items: start; }
.footer-col h4 { margin: 0 0 10px; font-family: Marcellus, serif; color: var(--ink); }
.footer-brand { 
  display: flex; align-items: center; gap: 12px; 
  font-weight: 700; color: var(--ink); 
}
.footer-brand .brand-logo svg { 
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.1));
}
.footer-desc { margin: 10px 0 0; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-contact li { display: grid; grid-template-columns: 20px 1fr; align-items: center; gap: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.06); }
.footer-mini-links { display: flex; gap: 12px; }
.footer-mini-links a { color: var(--ink-soft); text-decoration: none; }
.footer-mini-links a:hover { color: var(--ink); }

/* Quick Actions */
.quick-actions {
  position: fixed; inset: auto 12px 12px 12px; z-index: 60;
  display: grid; grid-auto-flow: column; justify-content: center; gap: 10px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(15px);
  border: 1px solid rgba(0,0,0,.08); border-radius: 999px; padding: 8px; 
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transition: transform .3s ease, opacity .3s ease;
}
.quick-actions .qa { 
  display: inline-flex; align-items: center; gap: 8px; 
  padding: 8px 12px; color: var(--ink); text-decoration: none; 
  border-radius: 999px; transition: all .2s ease;
  min-height: 40px;
}
.quick-actions .qa:hover { 
  background: rgba(106,163,143,.1); 
  transform: translateY(-1px);
}
.quick-actions .qa:active { 
  transform: translateY(0); 
  background: rgba(106,163,143,.15);
}
.quick-actions svg { width: 20px; height: 20px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 40px; }
  .media { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 20px; }
  .cta-card .cta-points { grid-template-columns: 1fr; text-align: left; }
  .cta-card .cta-points li { justify-content: flex-start; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; padding: 14px 20px; font-size: 16px; }
  .hero-stats { flex-direction: row; gap: 20px; justify-content: center; flex-wrap: wrap; }
  .hero-stats .stat { min-width: 80px; }
  .story-stats { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
  .about-showcase { grid-template-columns: 1fr; gap: 32px; }
  .founder-card { padding: 28px; }
  .highlight-item { flex-direction: column; text-align: center; gap: 16px; padding: 24px; }
  .values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
  .value-card { padding: 24px; }
  .value-icon { width: 56px; height: 56px; font-size: 26px; margin-bottom: 16px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
  .process-card { padding: 24px; }
  .process-card h3 { font-size: 18px; }
  .process-card p { font-size: 14px; }
  .card-icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 16px; }
}
@media (max-width: 860px) {
  .badge-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .site-nav { display: none; }
  .export-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .export-countries { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .export-features { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
  .process-card { padding: 22px; }
  .values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
  .value-card { padding: 22px; }
}
@media (max-width: 520px) {
  /* Mobile-specific improvements */
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  
  /* Better mobile scrolling */
  html { scroll-behavior: smooth; }
  body { -webkit-overflow-scrolling: touch; }
  
  /* Touch-friendly interactions */
  * { -webkit-tap-highlight-color: rgba(106,163,143,.2); }
  
  /* Header improvements */
  .header-inner { height: 60px; padding: 0 16px; }
  .brand { gap: 8px; }
  .brand-logo svg { width: 80px; height: 24px; }
  .brand-text { font-size: 16px; }
  
  /* Hero section mobile optimization */
  .hero { padding: 50px 0 30px; }
  .hero-badge { padding: 10px 16px; font-size: 13px; margin-bottom: 20px; }
  .hero-copy h1 { font-size: clamp(24px, 8vw, 36px); margin-bottom: 16px; }
  .hero-copy p { font-size: 16px; margin-bottom: 24px; }
  .hero-ctas { gap: 16px; margin: 20px 0 24px; }
  .hero-ctas .btn { padding: 16px 24px; font-size: 16px; min-height: 52px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .hero-stats .stat { min-width: 100px; }
  .hero-stats .stat-number { font-size: 28px; }
  .hero-stats .stat-label { font-size: 14px; }
  
  /* Card improvements for mobile */
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .value-card { padding: 24px; border-radius: 20px; }
  .value-card h3 { font-size: 20px; margin-bottom: 12px; }
  .value-card p { font-size: 15px; line-height: 1.6; }
  .value-icon { width: 56px; height: 56px; font-size: 26px; margin-bottom: 16px; }
  
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-card { padding: 24px; border-radius: 20px; }
  .process-card h3 { font-size: 18px; margin-bottom: 12px; }
  .process-card p { font-size: 15px; line-height: 1.6; }
  .card-icon { width: 52px; height: 52px; font-size: 24px; margin-bottom: 16px; }
  .card-number { top: 16px; right: 16px; padding: 6px 10px; font-size: 13px; }
  
  /* About section mobile */
  .about-showcase { gap: 28px; }
  .founder-card { padding: 24px; border-radius: 20px; }
  .founder-icon { width: 72px; height: 72px; font-size: 32px; }
  .founder-info h3 { font-size: 22px; }
  .founder-info p { font-size: 15px; }
  .highlight-item { padding: 20px; border-radius: 16px; gap: 16px; }
  .highlight-icon { width: 48px; height: 48px; font-size: 22px; }
  .highlight-content h4 { font-size: 18px; }
  .highlight-content p { font-size: 14px; }
  
  /* Stats mobile */
  .story-stats { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
  .stat-card { padding: 20px; border-radius: 16px; }
  .stat-icon { font-size: 20px; margin-bottom: 8px; }
  .stat-number { font-size: 24px; }
  .stat-label { font-size: 13px; }
  
  /* Export section mobile */
  .export-stats { grid-template-columns: 1fr; gap: 16px; }
  .export-countries { grid-template-columns: 1fr; gap: 16px; }
  .export-features { grid-template-columns: 1fr; gap: 16px; }
  .country-card { flex-direction: column; text-align: center; gap: 16px; padding: 20px; }
  .country-flag { width: 48px; height: 48px; font-size: 28px; }
  .country-info h3 { font-size: 18px; }
  .country-info p { font-size: 14px; }
  
  /* Gallery mobile */
  .gallery-tabs { 
    flex-direction: column; gap: 8px; 
    margin: 20px 0; padding-bottom: 12px;
  }
  .tab-btn { 
    justify-content: center; padding: 14px 16px; 
    font-size: 15px; min-height: 48px;
  }
  .gallery-grid { 
    grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; 
    margin-top: 16px;
  }
  .gallery-content { min-height: 300px; }
  .lightbox { padding: 16px; }
  .lightbox-close { top: -50px; right: -10px; }
  
  /* CTA section mobile */
  .cta-card { padding: 24px; border-radius: 20px; }
  .cta-card h2 { font-size: clamp(22px, 6vw, 28px); }
  .cta-card .lead { font-size: 16px; }
  .cta-card .cta-points { gap: 12px; }
  .cta-card .cta-points li { font-size: 15px; }
  .hero-ctas .btn { min-height: 48px; }
  
  /* Footer mobile */
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-grid { gap: 24px; }
  .footer-brand .brand-logo svg { width: 70px; height: 21px; }
  
  /* Quick actions mobile */
  .quick-actions { 
    inset: auto 16px 16px 16px; 
    padding: 12px; 
    border-radius: 16px;
  }
  .quick-actions .qa { 
    padding: 12px 16px; 
    font-size: 14px;
    min-height: 44px;
  }
  .quick-actions svg { width: 22px; height: 22px; }
}


