@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500;600&display=swap');

:root {
  --green:      #1B4332;
  --green-mid:  #2D6A4F;
  --sage:       #52B788;
  --sage-light: #95D5B2;
  --gold:       #D4A574;
  --gold-dark:  #B8894F;
  --cream:      #F5F0E8;
  --cream-dark: #EDE8DC;
  --ink:        #1a1a1a;
  --mist:       #8aaa96;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  --max:   1160px;
  --pad:   clamp(24px, 5vw, 80px);
  --r:     3px;
}

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

/* ── Typography ── */
.label-tag { font-family: var(--sans); font-weight: 500; font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase; }

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(72px, 9vw, 128px) 0; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 var(--pad); height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,232,0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(27,67,50,0.08);
}
/* Enhanced shadow on scroll */
nav.scrolled {
  box-shadow: 0 2px 12px rgba(27,67,50,0.1);
}

/* Logo mark */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: border-color 0.2s;
}
.logo-mark-n {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 600;
  color: var(--green); line-height: 1; position: relative;
}
.logo-mark-n svg { position: absolute; top: -3px; right: -5px; width: 8px; height: 11px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--sans); font-weight: 400; font-size: 0.78rem; letter-spacing: 0.3em; color: var(--green); text-transform: uppercase; }
.logo-tag  { font-family: var(--serif); font-style: italic; font-size: 0.68rem; color: var(--gold); letter-spacing: 0.04em; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.73rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--green) !important; color: var(--cream) !important; padding: 9px 22px; border-radius: var(--r); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-mid) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--green); }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; border-radius: var(--r); transition: all 0.25s; border: 1px solid transparent; }
.btn-primary { background: var(--green); color: var(--cream); border-color: var(--green); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--green); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-cream { background: var(--cream); color: var(--green); border-color: var(--cream); }
.btn-cream:hover { background: var(--cream-dark); }

/* ══════════════════════════════
   HERO — HOME
══════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--green);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1600&q=60');
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.95) 0%, rgba(27,67,50,0.75) 100%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow span { font-size: 0.65rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sage); font-weight: 400; }
.hero-line { width: 32px; height: 1px; background: var(--sage); opacity: 0.6; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.8rem, 5.5vw, 5rem); color: var(--cream); line-height: 1.08; margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(245,240,232,0.72); max-width: 440px; line-height: 1.8; margin-bottom: 44px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-link { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--sage); border-bottom: 1px solid rgba(82,183,136,0.4); padding-bottom: 2px; transition: border-color 0.2s; }
.hero-link:hover { border-color: var(--sage); }

/* Hero visual — large N logo mark */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-logo-mark {
  width: min(380px, 44vw); aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(82,183,136,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-logo-mark::before {
  content: ''; position: absolute; inset: 20px;
  border-radius: 50%; border: 1px solid rgba(82,183,136,0.12);
}
.hero-n-large {
  font-family: var(--serif); font-size: clamp(8rem, 16vw, 14rem);
  font-weight: 500; color: rgba(245,240,232,0.15); line-height: 1;
  position: absolute;
}
.hero-n-display {
  font-family: var(--serif); font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 600; color: var(--cream); line-height: 1;
  position: relative; z-index: 1;
}
.hero-n-display svg { position: absolute; top: -8px; right: -14px; width: 22px; height: 30px; }
.hero-badges {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-badge-item {
  position: absolute;
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(82,183,136,0.2);
  backdrop-filter: blur(4px);
  padding: 10px 16px; border-radius: var(--r);
}
.hero-badge-item:nth-child(1) { top: 14%; left: -10%; }
.hero-badge-item:nth-child(2) { bottom: 20%; right: -10%; }
.hero-badge-item:nth-child(3) { top: 55%; left: -14%; }
.hbi-val { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); font-weight: 500; line-height: 1; }
.hbi-lbl { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-top: 3px; }

/* ══════════════════════════════
   SECTION LABELS & TITLES
══════════════════════════════ */
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-label span { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage); }
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); opacity: 0.7; }
.section-title { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 3.8vw, 3rem); color: var(--green); line-height: 1.2; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-body { font-size: 0.97rem; font-weight: 300; color: #4a5a50; max-width: 540px; line-height: 1.85; margin-top: 18px; }

/* ══════════════════════════════
   PILLARS
══════════════════════════════ */
.pillars { background: var(--cream-dark); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.pillar { background: var(--cream); padding: 44px 36px; position: relative; overflow: hidden; transition: background 0.3s; }
.pillar::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.pillar:hover { background: white; }
.pillar:hover::after { transform: scaleX(1); }
.pillar-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 300; color: rgba(27,67,50,0.07); line-height: 1; margin-bottom: 20px; }
.pillar-icon { width: 40px; height: 40px; margin-bottom: 20px; }
.pillar-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--green); margin-bottom: 12px; }
.pillar-body { font-size: 0.9rem; color: #5a6b60; line-height: 1.8; }

/* ══════════════════════════════
   COMMUNITY SECTION
══════════════════════════════ */
.community { background: var(--green); overflow: hidden; }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; min-height: 520px; }
.community-image {
  position: relative; overflow: hidden;
  background: var(--green-mid);
}
.community-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.community-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--green));
}
.community-content {
  padding: clamp(48px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.community .section-label span { color: var(--sage); }
.community .section-title { color: var(--cream); }
.community .section-body { color: rgba(245,240,232,0.68); max-width: 100%; }
.community-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.comm-stat { background: rgba(245,240,232,0.05); border: 1px solid rgba(82,183,136,0.15); padding: 20px 18px; }
.comm-val { font-family: var(--serif); font-size: 1.8rem; color: var(--cream); line-height: 1; }
.comm-lbl { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-top: 6px; }

/* ══════════════════════════════
   IMAGE + TEXT SPLIT
══════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.split-img { height: 500px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.split-img:hover img { transform: scale(1.03); }
.split-content { padding: clamp(48px, 6vw, 80px); }

/* ══════════════════════════════
   INGREDIENT CARDS
══════════════════════════════ */
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.ing-card { background: var(--cream); border: 1px solid rgba(27,67,50,0.07); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.ing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,67,50,0.1); }
.ing-card-img { height: 200px; overflow: hidden; background: var(--green-mid); position: relative; }
.ing-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ing-card:hover .ing-card-img img { transform: scale(1.06); }
.ing-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,67,50,0.4) 0%, transparent 60%); }
.ing-card-body { padding: 28px 28px 32px; }
.ing-category { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.ing-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--green); margin-bottom: 10px; line-height: 1.2; }
.ing-inci { font-size: 0.7rem; color: var(--mist); font-style: italic; margin-bottom: 12px; }
.ing-desc { font-size: 0.86rem; color: #5a6b60; line-height: 1.75; margin-bottom: 16px; }
.ing-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border: 1px solid rgba(27,67,50,0.15); color: var(--green); border-radius: 20px; }
.tag.gold { border-color: rgba(212,165,116,0.5); color: var(--gold-dark); }
.tag.sage { border-color: rgba(82,183,136,0.4); color: var(--sage); }

/* ══════════════════════════════
   INDUSTRIES
══════════════════════════════ */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.industry-card { position: relative; overflow: hidden; min-height: 280px; cursor: default; }
.industry-card-bg { position: absolute; inset: 0; }
.industry-card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.industry-card:hover .industry-card-bg img { transform: scale(1.06); }
.industry-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,67,50,0.92) 0%, rgba(27,67,50,0.55) 50%, rgba(27,67,50,0.3) 100%); transition: background 0.3s; }
.industry-card:hover .industry-card-overlay { background: linear-gradient(to top, rgba(27,67,50,0.95) 0%, rgba(27,67,50,0.6) 60%, rgba(27,67,50,0.35) 100%); }
.industry-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.industry-icon { font-size: 1.6rem; margin-bottom: 10px; }
.industry-name { font-family: var(--serif); font-size: 1.35rem; color: var(--cream); font-weight: 400; margin-bottom: 6px; }
.industry-desc { font-size: 0.8rem; color: rgba(245,240,232,0.65); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.4s, opacity 0.4s; opacity: 0; }
.industry-card:hover .industry-desc { max-height: 80px; opacity: 1; }

/* ══════════════════════════════
   CERTIFICATIONS
══════════════════════════════ */
.certs { background: var(--cream-dark); }
.certs-grid { display: flex; gap: 2px; margin-top: 48px; flex-wrap: wrap; }
.cert-item { flex: 1; min-width: 160px; background: var(--cream); padding: 36px 24px; text-align: center; transition: background 0.2s; }
.cert-item:hover { background: white; }
.cert-icon { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--green); }
.cert-name { font-family: var(--serif); font-size: 1.2rem; color: var(--green); font-weight: 500; margin-bottom: 8px; }
.cert-desc { font-size: 0.8rem; color: var(--mist); line-height: 1.65; }

/* ══════════════════════════════
   ABOUT STRIP
══════════════════════════════ */
.about-strip { background: var(--green); color: var(--cream); }
.about-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-strip .section-title { color: var(--cream); }
.about-strip .section-body { color: rgba(245,240,232,0.7); max-width: 100%; }
.about-strip .section-label span { color: var(--sage); }
.fact-card { background: rgba(245,240,232,0.05); border: 1px solid rgba(82,183,136,0.15); padding: 28px 24px; }
.fact-val { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; color: var(--cream); line-height: 1; }
.fact-lbl { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-top: 8px; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

/* ══════════════════════════════
   CONTACT FORM
══════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-top: 32px; }
.contact-detail-icon { width: 36px; height: 36px; background: rgba(27,67,50,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }
.contact-detail-icon svg { width: 16px; height: 16px; }
.contact-detail-label { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist); margin-bottom: 4px; }
.contact-detail-val { font-size: 0.95rem; color: var(--green); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { font-family: var(--sans); font-size: 0.9rem; font-weight: 300; color: var(--ink); background: var(--cream-dark); border: 1px solid rgba(27,67,50,0.15); border-radius: var(--r); padding: 12px 16px; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); background: var(--cream); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.73rem; color: var(--mist); line-height: 1.6; }

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */
.page-hero { background: var(--green); padding: 148px 0 84px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.1; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,67,50,0.97) 40%, rgba(27,67,50,0.8)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label span { color: var(--sage); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 400; color: var(--cream); line-height: 1.1; margin-top: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 1.02rem; font-weight: 300; color: rgba(245,240,232,0.68); max-width: 520px; line-height: 1.82; margin-top: 20px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer { background: var(--ink); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,240,232,0.07); }
.footer-n { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--cream); line-height: 1; position: relative; display: inline-block; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 0.78rem; color: var(--gold); letter-spacing: 0.06em; margin-top: 6px; margin-bottom: 16px; }
.footer-desc { font-size: 0.82rem; color: rgba(245,240,232,0.38); line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(245,240,232,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 0.7rem; color: rgba(245,240,232,0.25); letter-spacing: 0.04em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.7rem; color: rgba(245,240,232,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(245,240,232,0.55); }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .pillars-grid, .ing-grid, .industry-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-grid, .community-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .community-image { height: 300px; }
  .split-img { height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .pillars-grid, .ing-grid, .industry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════
   BOTANICAL CARD VISUALS
   (replaces random photos)
══════════════════════════════ */
.ing-card-botanical {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Each ingredient gets a distinct botanical gradient */
.bg-babassu-powder {
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #52B788 100%);
}
.bg-cupuacu {
  background: linear-gradient(135deg, #2D1B0E 0%, #6B3A2A 50%, #D4A574 100%);
}
.bg-babassu-oil {
  background: linear-gradient(135deg, #1B3A2A 0%, #2D5A3A 60%, #7BAE7A 100%);
}
.bg-scrub {
  background: linear-gradient(135deg, #3A2810 0%, #7A5030 60%, #C4956A 100%);
}
.bg-bisabolol {
  background: linear-gradient(135deg, #1A3028 0%, #2A5040 60%, #6B9E8A 100%);
}
.bg-jussara {
  background: linear-gradient(135deg, #1A0A28 0%, #4A1A6A 60%, #9A5AB8 100%);
}

/* Botanical SVG overlay on cards */
.ing-card-botanical svg {
  position: absolute;
  opacity: 0.12;
  width: 140px; height: 140px;
}
.ing-card-botanical-label {
  position: absolute;
  bottom: 16px; left: 20px;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1;
}
.ing-card-botanical-sub {
  position: absolute;
  bottom: 0px; left: 20px;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  z-index: 1;
  padding-bottom: 14px;
}
.ing-card-botanical-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(245,240,232,0.12);
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--cream);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* Industry card CSS gradients (verified, no random photos) */
.ind-bg-skincare    { background: linear-gradient(160deg, #1B4332 0%, #3D8B6E 100%); }
.ind-bg-haircare    { background: linear-gradient(160deg, #2D3A1B 0%, #6B8B3D 100%); }
.ind-bg-colour      { background: linear-gradient(160deg, #3A1B2D 0%, #8B3D6B 100%); }
.ind-bg-suncare     { background: linear-gradient(160deg, #3A2A1B 0%, #B88B4A 100%); }
.ind-bg-bodycare    { background: linear-gradient(160deg, #1B2D3A 0%, #3D6B8B 100%); }
.ind-bg-natural     { background: linear-gradient(160deg, #1B3A2D 0%, #4A8B6B 100%); }

.ind-card-css {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: transform 0.3s;
}
.ind-card-css:hover { transform: translateY(-4px); }
.ind-card-css::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s;
}
.ind-card-css:hover::before { background: rgba(0,0,0,0.05); }

/* Botanical circle decoration on industry cards */
.ind-card-css::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
.ind-card-content-css {
  position: relative;
  z-index: 1;
}
.ind-card-content-css .industry-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 8px;
}
.ind-card-content-css .industry-desc {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s, opacity 0.3s;
}
.ind-card-css:hover .industry-desc {
  max-height: 100px;
  opacity: 1;
}
.ind-ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.ind-ingredient-list span {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(245,240,232,0.7);
  border-radius: 2px;
}
