/** Shopify CDN: Minification failed

Line 92:0 All "@import" rules must come first

**/
/* =========================================================================
   GROFIE — DESIGN TOKENS
   Single source of truth for the "Whole Foods" palette + type scale + spacing.
   Loaded first (before grofie-base.css) on every Grofie template.
   ========================================================================= */

:root {
  /* ===== PALETTE ===== */
  --grofie-forest: #2d5a3d;          /* Deep forest green — primary */
  --grofie-forest-dark: #1f4029;     /* Hover / active */
  --grofie-forest-soft: #e8f0ea;     /* Tints, hovers, subtle backgrounds */
  --grofie-tan: #c8956d;             /* Warm tan — secondary accent */
  --grofie-tan-dark: #a87850;
  --grofie-tan-soft: #f3e8da;
  --grofie-cream: #fdf9f0;           /* Page background */
  --grofie-cream-warm: #f7f0e0;      /* Section dividers, alt rows */
  --grofie-charcoal: #1a1a1a;        /* Body text */
  --grofie-graphite: #4b4b4b;        /* Muted text */
  --grofie-mist: #8a8a8a;            /* Tertiary text, disabled */
  --grofie-line: #e8e3d6;            /* Borders, dividers */
  --grofie-success: #4a8b5c;
  --grofie-danger: #c0463a;

  /* Override the legacy aliases used by ported CSS so the OLD Grofie sections
     pick up the new palette automatically without any markup changes. */
  --green-main: var(--grofie-forest);
  --green-cta: var(--grofie-forest);
  --orange-accent: var(--grofie-tan);
  --leaf-green: var(--grofie-tan);
  --header-bg: var(--grofie-forest);
  --header-icon-bg: var(--grofie-forest-dark);
  --bb-red: var(--grofie-danger);
  --text-dark: var(--grofie-charcoal);
  --text-gray: var(--grofie-graphite);
  --border-color: var(--grofie-line);
  --bg-gray: var(--grofie-cream-warm);

  /* ===== TYPE SCALE ===== */
  --grofie-font-display: 'Inter', serif;
  --grofie-font-body: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --grofie-fs-display: clamp(2.25rem, 4.5vw, 4rem);
  --grofie-fs-h1: clamp(1.75rem, 3vw, 2.5rem);
  --grofie-fs-h2: clamp(1.5rem, 2.5vw, 2rem);
  --grofie-fs-h3: 1.25rem;
  --grofie-fs-body: 1rem;
  --grofie-fs-small: 0.875rem;
  --grofie-fs-xs: 0.75rem;

  --grofie-lh-tight: 1.15;
  --grofie-lh-normal: 1.5;
  --grofie-lh-relaxed: 1.65;

  /* ===== SPACING ===== */
  --grofie-space-xs: 4px;
  --grofie-space-sm: 8px;
  --grofie-space-md: 16px;
  --grofie-space-lg: 24px;
  --grofie-space-xl: 40px;
  --grofie-space-2xl: 64px;
  --grofie-space-3xl: 96px;

  /* ===== RADIUS ===== */
  --grofie-r-sm: 6px;
  --grofie-r-md: 12px;
  --grofie-r-lg: 20px;
  --grofie-r-xl: 28px;
  --grofie-r-full: 999px;

  /* Override legacy radius vars */
  --radius-sm: var(--grofie-r-sm);
  --radius-md: var(--grofie-r-md);
  --radius-lg: var(--grofie-r-lg);

  /* ===== ELEVATION ===== */
  --grofie-shadow-xs: 0 1px 2px rgba(26, 26, 26, 0.04);
  --grofie-shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --grofie-shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
  --grofie-shadow-lg: 0 16px 40px rgba(26, 26, 26, 0.12);

  /* ===== EASINGS ===== */
  --grofie-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --grofie-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Load both fonts. Fraunces for display, Inter for body. */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

body.grofie-template {
  font-family: var(--grofie-font-body);
  background: var(--grofie-cream);
  color: var(--grofie-charcoal);
  font-size: var(--grofie-fs-body);
  line-height: var(--grofie-lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.grofie-template h1,
body.grofie-template h2,
body.grofie-template h3,
body.grofie-template .grofie-display,
body.grofie-template .grofie-headline {
  font-family: var(--grofie-font-display);
  font-weight: 600;
  line-height: var(--grofie-lh-tight);
  letter-spacing: -0.01em;
  color: var(--grofie-charcoal);
}

/* ===== UTILITY: button primary (forest) ===== */
.grofie-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grofie-forest);
  color: var(--grofie-cream);
  padding: 14px 28px;
  border-radius: var(--grofie-r-full);
  font-size: var(--grofie-fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--grofie-ease-out), transform 0.15s var(--grofie-ease-out), box-shadow 0.2s var(--grofie-ease-out);
  box-shadow: var(--grofie-shadow-sm);
}
.grofie-btn-primary:hover {
  background: var(--grofie-forest-dark);
  box-shadow: var(--grofie-shadow-md);
  transform: translateY(-1px);
}
.grofie-btn-primary:active {
  transform: translateY(0);
}

/* ===== UTILITY: button secondary (outlined cream) ===== */
.grofie-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--grofie-charcoal);
  padding: 13px 26px;
  border-radius: var(--grofie-r-full);
  font-size: var(--grofie-fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid var(--grofie-charcoal);
  cursor: pointer;
  transition: background 0.2s var(--grofie-ease-out), color 0.2s var(--grofie-ease-out);
}
.grofie-btn-secondary:hover {
  background: var(--grofie-charcoal);
  color: var(--grofie-cream);
}

/* On dark backgrounds (hero overlays) */
.grofie-btn-secondary--on-dark {
  color: #fff;
  border-color: #fff;
}
.grofie-btn-secondary--on-dark:hover {
  background: #fff;
  color: var(--grofie-charcoal);
}

/* ===== UTILITY: page width ===== */
.grofie-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--grofie-space-md);
}
@media (min-width: 769px) {
  .grofie-container { padding: 0 var(--grofie-space-xl); }
}

/* ===== UTILITY: section spacing ===== */
.grofie-section {
  padding: var(--grofie-space-2xl) 0;
}
@media (max-width: 768px) {
  .grofie-section { padding: var(--grofie-space-xl) 0; }
}

.grofie-eyebrow {
  font-family: var(--grofie-font-body);
  font-size: var(--grofie-fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grofie-forest);
  margin-bottom: var(--grofie-space-sm);
}

.grofie-section-title {
  font-family: var(--grofie-font-display);
  font-size: var(--grofie-fs-h1);
  font-weight: 600;
  line-height: var(--grofie-lh-tight);
  letter-spacing: -0.01em;
  color: var(--grofie-charcoal);
  margin: 0 0 var(--grofie-space-md);
}

.grofie-section-subtitle {
  font-family: var(--grofie-font-body);
  font-size: 1.0625rem;
  line-height: var(--grofie-lh-relaxed);
  color: var(--grofie-graphite);
  max-width: 56ch;
  margin: 0 0 var(--grofie-space-xl);
}
