/* ==========================================================================
   Nature Grow — Design tokens
   Palette grounded in the actual product photography: candy-shop plum base,
   hot-pink / citrus-yellow / mint accents pulled from the Bawla, BonBon and
   Kandi Jelly packaging rather than a generic default.
   ========================================================================== */

:root {
  --ng-plum: #241046;
  --ng-plum-deep: #170a30;
  --ng-plum-soft: #35195f;
  --ng-pink: #ff3e7f;
  --ng-pink-deep: #d81f5f;
  --ng-yellow: #ffc53d;
  --ng-mint: #2fe0a8;
  --ng-cream: #fff9f0;
  --ng-cream-dim: #fdefda;
  --ng-ink: #1a0e30;
  --ng-ink-soft: #4a3f66;
  --ng-white: #ffffff;

  --font-display: "Baloo 2", "Segoe UI Rounded", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-script: "Caveat", cursive;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-card: 0 14px 34px rgba(23, 10, 48, 0.16);
  --shadow-pop: 0 10px 24px rgba(216, 31, 95, 0.28);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ng-ink);
  background: var(--ng-cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ng-yellow);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--ng-yellow);
  border-radius: 2px;
}

.eyebrow.on-light {
  color: var(--ng-pink-deep);
}
.eyebrow.on-light::before {
  background: var(--ng-pink-deep);
}

.script {
  font-family: var(--font-script);
  font-weight: 600;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--ng-mint);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--ng-pink);
  color: var(--ng-white);
  box-shadow: var(--shadow-pop);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(216, 31, 95, 0.36);
}

.btn-ghost {
  background: transparent;
  color: var(--ng-cream);
  border-color: rgba(255, 249, 240, 0.4);
}

.btn-ghost:hover {
  border-color: var(--ng-cream);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ng-plum);
  color: var(--ng-cream);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* Nav ---------------------------------------------------------------------*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ng-plum);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ng-cream);
  text-decoration: none;
  font-weight: 700;
}

.logo .dot {
  color: var(--ng-yellow);
}

.logo-mark {
  height: 34px;
  width: auto;
  display: block;
}

.logo-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ng-cream);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.logo-footer img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-footer .dot {
  color: var(--ng-yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 249, 240, 0.85);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.16s ease, color 0.16s ease;
}

.nav-links a:hover {
  background: rgba(255, 249, 240, 0.1);
  color: var(--ng-cream);
}

.nav-links a.active {
  background: var(--ng-pink);
  color: var(--ng-white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255, 249, 240, 0.4);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--ng-cream);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ng-plum);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 20px;
    gap: 4px;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    text-align: center;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-cta .btn-primary {
    display: none;
  }
}

/* Drip dividers ------------------------------------------------------------ */

.drip {
  display: block;
  width: 100%;
  height: 46px;
  margin: 0;
  line-height: 0;
}

.drip svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hero ---------------------------------------------------------------------*/

.hero {
  position: relative;
  background: radial-gradient(circle at 82% 8%, var(--ng-plum-soft) 0%, var(--ng-plum) 46%, var(--ng-plum-deep) 100%);
  color: var(--ng-cream);
  overflow: hidden;
  padding-top: 72px;
}

.hero-blob {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: var(--ng-pink);
  opacity: 0.35;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  filter: blur(2px);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 56px 24px 0;
  max-width: var(--container);
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ng-white);
  margin-top: 14px;
}

.hero h1 .hi {
  color: var(--ng-yellow);
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 249, 240, 0.86);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ng-mint);
}

.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 249, 240, 0.7);
}

.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-bottom: 0;
}

.hero-gallery img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero-gallery .tile-a { grid-row: span 2; aspect-ratio: 3/4; object-fit: cover; height: 100%;}
.hero-gallery .tile-b { aspect-ratio: 4/3; }
.hero-gallery .tile-c { aspect-ratio: 4/3; }

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

/* Brand strip ---------------------------------------------------------------*/

.brand-strip {
  background: var(--ng-plum-deep);
  padding: 22px 0;
  overflow: hidden;
}

.brand-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll-left 34s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-chip {
  flex: none;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 249, 240, 0.18);
  color: rgba(255, 249, 240, 0.85);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Sections ------------------------------------------------------------------*/

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--ng-ink);
}

.section-on-plum {
  background: var(--ng-plum);
  color: var(--ng-cream);
}
.section-on-plum .section-head h2 {
  color: var(--ng-white);
}
.section-on-plum p {
  color: rgba(255, 249, 240, 0.78);
}

/* Value props / feature grid --------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--ng-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.feature-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-card:nth-child(1) .icon { background: rgba(255, 62, 127, 0.14); }
.feature-card:nth-child(2) .icon { background: rgba(255, 197, 61, 0.22); }
.feature-card:nth-child(3) .icon { background: rgba(47, 224, 168, 0.18); }

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--ng-ink);
}

.feature-card p {
  color: var(--ng-ink-soft);
  font-size: 0.96rem;
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Product cards ------------------------------------------------------------*/

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--ng-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(23, 10, 48, 0.22);
}

.product-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ng-cream-dim);
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3 {
  font-size: 1.35rem;
  color: var(--ng-ink);
  margin-bottom: 6px;
}

.product-card .tagline {
  color: var(--ng-ink-soft);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag {
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--ng-cream-dim);
  color: var(--ng-pink-deep);
  letter-spacing: 0.02em;
}

.pack-note {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--ng-ink-soft);
  border-top: 1px dashed rgba(74, 63, 102, 0.25);
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* Anchor offset for in-page category jumps (fixed header) */
.product-anchor {
  scroll-margin-top: 90px;
}

/* Filter chips (products page) -------------------------------------------- */

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 2px solid var(--ng-plum);
  background: transparent;
  color: var(--ng-plum);
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
  text-decoration: none;
  display: inline-block;
}

.filter-chip:hover,
.filter-chip.active {
  background: var(--ng-plum);
  color: var(--ng-cream);
}

/* CTA band ------------------------------------------------------------------*/

.cta-band {
  background: linear-gradient(120deg, var(--ng-pink) 0%, var(--ng-pink-deep) 100%);
  color: var(--ng-white);
  border-radius: var(--radius-lg);
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--ng-white);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 42ch;
}

/* Footer ---------------------------------------------------------------------*/

.site-footer {
  background: var(--ng-plum-deep);
  color: rgba(255, 249, 240, 0.7);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 249, 240, 0.12);
}

.footer-grid h4 {
  color: var(--ng-cream);
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  text-decoration: none;
  color: rgba(255, 249, 240, 0.7);
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: var(--ng-yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Page hero (interior pages) ------------------------------------------------*/

.page-hero {
  background: var(--ng-plum);
  color: var(--ng-cream);
  padding: 64px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-blob {
  width: 320px;
  height: 320px;
  top: -100px;
  right: -80px;
  opacity: 0.3;
}

.page-hero h1 {
  color: var(--ng-white);
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-top: 12px;
}

.page-hero p {
  max-width: 60ch;
  color: rgba(255, 249, 240, 0.82);
  font-size: 1.05rem;
}

/* About page ------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
}

.timeline-item .year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ng-pink-deep);
}

.timeline-item h4 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--ng-ink);
}

.timeline-item p {
  margin: 0;
  color: var(--ng-ink-soft);
  font-size: 0.94rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 10px 0 0;
}

.stat-box {
  background: var(--ng-white);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-box b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ng-pink-deep);
}

.stat-box span {
  font-size: 0.8rem;
  color: var(--ng-ink-soft);
}

@media (max-width: 700px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

.value-list {
  display: grid;
  gap: 18px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-item .bullet {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ng-mint);
  color: var(--ng-plum-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

/* Contact page --------------------------------------------------------------*/

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--ng-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 34px;
}

.info-list {
  display: grid;
  gap: 20px;
  margin: 26px 0;
}

.info-item {
  display: flex;
  gap: 14px;
}

.info-item .ico {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ng-cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h4 {
  margin: 0 0 2px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ng-ink);
}

.info-item p {
  margin: 0;
  color: var(--ng-ink-soft);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 6px;
  color: var(--ng-ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e5dcf0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--ng-cream);
  color: var(--ng-ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ng-pink);
  box-shadow: 0 0 0 4px rgba(255, 62, 127, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ng-ink-soft);
  margin-top: 14px;
}

.form-status {
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.92rem;
  display: none;
}

.form-status.visible {
  display: block;
}

.form-status.ok { color: #128a5e; }
.form-status.err { color: #c4224d; }

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* Utility ------------------------------------------------------------------*/

.center-btn-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.mt-0 { margin-top: 0; }
