/* Grow’n Go — components (in components.css import order)
   Generated by scripts/copy-assets.mjs from "Grow'nGo Design System/".
   Do not edit by hand — edit the design system source and re-run `npm run assets`. */


/* ---- buttons/button.css ---- */
/* ==========================================================================
   Grow'nGo — Button
   Single source of truth for button styling. Used directly as classes in
   page HTML (WordPress-ready) and mirrored by the <Button> React wrapper.
   ========================================================================== */

.gg-btn {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-soft),
              background-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.gg-btn:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }
.gg-btn:active { transform: translateY(1px) scale(0.985); }
.gg-btn[aria-disabled="true"], .gg-btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.gg-btn i { font-size: 1.15em; }

/* Sizes — all ≥40px, md/lg clear the 44px touch target */
.gg-btn--sm { height: var(--control-h-sm); padding: 0 var(--space-4); font-size: var(--text-sm); }
.gg-btn--md { height: var(--control-h-md); padding: 0 var(--space-5); font-size: var(--text-md); }
.gg-btn--lg { height: var(--control-h-lg); padding: 0 var(--space-6); font-size: var(--text-lg); }
.gg-btn--block { width: 100%; }

/* Variants */
.gg-btn--primary { background: var(--brand-primary); color: var(--text-on-primary); box-shadow: var(--shadow-coral); }
.gg-btn--primary:hover { background: var(--coral-300); box-shadow: var(--shadow-lg); }
.gg-btn--secondary { background: var(--mint-600); color: var(--text-on-mint); box-shadow: var(--shadow-sm); }
.gg-btn--secondary:hover { background: var(--mint-500); }
.gg-btn--outline { background: var(--surface-card); color: var(--coral-700); border-color: var(--coral-300); }
.gg-btn--outline:hover { background: var(--coral-50); border-color: var(--coral-400); }
.gg-btn--ghost { background: transparent; color: var(--coral-700); }
.gg-btn--ghost:hover { background: var(--coral-50); }


/* ---- badge/badge.css ---- */
/* ==========================================================================
   Grow'nGo — Badge / Tag
   Soft tinted pill for status, age groups, blog categories.
   ========================================================================== */

.gg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  line-height: 1;
  border: 1.5px solid transparent;
}
.gg-badge i { font-size: 1.05em; }
.gg-badge .gg-badge__dot { width: 0.5em; height: 0.5em; border-radius: 999px; background: currentColor; }

/* Sizes */
.gg-badge--sm { font-size: var(--text-xs); padding: 0.3em 0.7em; }
.gg-badge--md { font-size: var(--text-sm); padding: 0.42em 0.85em; }

/* Tones (soft tinted bg + readable text) */
.gg-badge--coral   { background: var(--coral-50);  color: var(--coral-700);  }
.gg-badge--sun     { background: var(--sun-50);    color: var(--sun-500);    }
.gg-badge--mint    { background: var(--mint-50);   color: var(--mint-600);   }
.gg-badge--sky     { background: var(--sky-50);    color: var(--sky-500);    }
.gg-badge--neutral { background: var(--sand-100);  color: var(--ink-700);    }

/* Solid emphasis (e.g. "Few spaces left") */
.gg-badge--solid-coral { background: var(--coral-400); color: var(--ink-900); }
.gg-badge--solid-mint  { background: var(--mint-600);  color: var(--white);   }

/* Outline variant */
.gg-badge--outline { background: transparent; border-color: var(--border-strong); color: var(--text-body); }


/* ---- card/card.css ---- */
/* ==========================================================================
   Grow'nGo — Card
   Soft rounded container. White with a gentle warm shadow by default;
   `warm` and `outline` tones available. Optional hover-lift for clickable cards.
   ========================================================================== */

.gg-card {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gg-card--warm    { background: var(--surface-warm); }
.gg-card--mint    { background: var(--surface-mint); border-color: var(--mint-100); }
.gg-card--coral   { background: var(--surface-coral); border-color: var(--coral-100); }
.gg-card--outline { background: var(--surface-card); box-shadow: none; border-color: var(--border-strong); }
.gg-card--flat    { box-shadow: none; }

/* When the whole card is a link, don't inherit the global link underline/color */
a.gg-card { text-decoration: none; color: inherit; }
a.gg-card:hover { color: inherit; }

.gg-card--interactive { cursor: pointer; transition: transform var(--dur-base) var(--ease-soft), box-shadow var(--dur-base) var(--ease-out); }
.gg-card--interactive:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gg-card--interactive:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

/* Slots */
.gg-card__media { position: relative; line-height: 0; }
.gg-card__media img { width: 100%; height: 100%; object-fit: cover; }

.gg-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.gg-card__body--lg { padding: var(--space-6); }

.gg-card__title { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-xl); color: var(--text-strong); margin: 0; line-height: var(--leading-snug); }
.gg-card__text  { font-size: var(--text-md); color: var(--text-body); margin: 0; line-height: var(--leading-normal); }

.gg-card__footer { margin-top: auto; padding: var(--space-4) var(--space-5) var(--space-5); display: flex; align-items: center; gap: var(--gap-inline); }


/* ---- forms/forms.css ---- */
/* ==========================================================================
   Grow'nGo — Form controls
   Friendly, large, accessible. Soft rounded fields, clear focus, ≥48px tall.
   ========================================================================== */

/* Field wrapper: label + control + hint/error */
.gg-field { display: flex; flex-direction: column; gap: var(--space-2); }
.gg-field__label { font-family: var(--font-body); font-weight: var(--weight-bold); font-size: var(--text-sm); color: var(--text-strong); }
.gg-field__req { color: var(--coral-600); margin-left: 2px; }
.gg-field__hint { font-size: var(--text-sm); color: var(--text-muted); }
.gg-field__error { font-size: var(--text-sm); color: var(--coral-700); font-weight: var(--weight-semibold); display: flex; align-items: center; gap: 0.4em; }

/* Shared control look */
.gg-input, .gg-textarea, .gg-select {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--text-strong);
  background: var(--surface-card);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0 var(--space-4);
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.gg-input, .gg-select { height: var(--control-h-md); }
.gg-textarea { padding: var(--space-3) var(--space-4); min-height: 130px; line-height: var(--leading-normal); resize: vertical; }

.gg-input::placeholder, .gg-textarea::placeholder { color: var(--ink-400); }

.gg-input:hover, .gg-textarea:hover, .gg-select:hover { border-color: var(--ink-400); }
.gg-input:focus, .gg-textarea:focus, .gg-select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 4px var(--sky-100);
}
.gg-input[aria-invalid="true"], .gg-textarea[aria-invalid="true"], .gg-select[aria-invalid="true"] {
  border-color: var(--coral-500);
}
.gg-input[aria-invalid="true"]:focus { box-shadow: 0 0 0 4px var(--coral-100); }
.gg-input:disabled, .gg-textarea:disabled, .gg-select:disabled { background: var(--sand-50); color: var(--text-disabled); cursor: not-allowed; }

/* Select chevron */
.gg-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23756A60' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-8);
}

/* Checkbox & radio */
.gg-check { display: flex; align-items: flex-start; gap: var(--space-3); cursor: pointer; font-size: var(--text-md); color: var(--text-body); }
.gg-check input { appearance: none; -webkit-appearance: none; margin: 0; flex-shrink: 0;
  width: 24px; height: 24px; border: 2px solid var(--border-strong); background: var(--surface-card);
  cursor: pointer; transition: background var(--dur-fast), border-color var(--dur-fast); }
.gg-check input[type="checkbox"] { border-radius: var(--radius-xs); }
.gg-check input[type="radio"] { border-radius: var(--radius-pill); }
.gg-check input:hover { border-color: var(--coral-400); }
.gg-check input:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.gg-check input:checked { background: var(--coral-400); border-color: var(--coral-400); }
.gg-check input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232B2520' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.gg-check input[type="radio"]:checked { box-shadow: inset 0 0 0 5px var(--coral-400); background: var(--ink-900); border-color: var(--coral-400); }
.gg-check__text { padding-top: 1px; }


/* ---- section-header/section-header.css ---- */
/* ==========================================================================
   Grow'nGo — Section header
   Eyebrow + title + optional lead, used at the top of every page section.
   ========================================================================== */

.gg-section-header { display: flex; flex-direction: column; gap: var(--space-3); max-width: 60ch; }
.gg-section-header--center { align-items: center; text-align: center; margin-inline: auto; }

.gg-section-header__title { margin: 0; font-family: var(--font-display); font-weight: var(--weight-semibold);
  font-size: var(--type-h2-size); line-height: var(--leading-snug); letter-spacing: var(--tracking-tight); color: var(--text-strong); }
.gg-section-header__title .accent { color: var(--brand-primary-strong); }

.gg-section-header__lead { margin: 0; font-size: var(--type-body-lead); line-height: var(--leading-relaxed); color: var(--text-body); }

/* Header with a trailing action (e.g. "View all") on wide screens */
.gg-section-header--row { max-width: none; flex-direction: row; align-items: flex-end; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.gg-section-header--row .gg-section-header__copy { display: flex; flex-direction: column; gap: var(--space-3); max-width: 60ch; }


/* ---- cta/cta.css ---- */
/* ==========================================================================
   Grow'nGo — CTA block
   Warm closing banner: heading + supporting line + action buttons.
   ========================================================================== */

.gg-cta {
  border-radius: var(--radius-xl);
  padding: var(--space-9) var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  position: relative;
  overflow: hidden;
}
.gg-cta__inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); max-width: 56ch; position: relative; z-index: 1; }
.gg-cta__title { margin: 0; font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--type-h2-size); line-height: var(--leading-snug); letter-spacing: var(--tracking-tight); }
.gg-cta__text { margin: 0; font-size: var(--type-body-lead); line-height: var(--leading-relaxed); }
.gg-cta__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }

/* Tones */
.gg-cta--coral { background: var(--coral-100); }
.gg-cta--coral .gg-cta__title { color: var(--coral-700); }
.gg-cta--coral .gg-cta__text { color: var(--ink-700); }

.gg-cta--mint { background: var(--mint-50); }
.gg-cta--mint .gg-cta__title { color: var(--mint-600); }
.gg-cta--mint .gg-cta__text { color: var(--ink-700); }

.gg-cta--sun { background: var(--sun-100); }
.gg-cta--sun .gg-cta__title { color: var(--ink-900); }
.gg-cta--sun .gg-cta__text { color: var(--ink-700); }

.gg-cta--ink { background: var(--ink-900); }
.gg-cta--ink .gg-cta__title { color: var(--cream); }
.gg-cta--ink .gg-cta__text { color: var(--sand-200); }

/* Soft decorative blob (kept subtle, no harsh gradient) */
.gg-cta::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: var(--white); opacity: 0.16; right: -90px; top: -120px;
}
.gg-cta--ink::after { background: var(--coral-400); opacity: 0.18; }

@media (min-width: 768px) {
  .gg-cta { padding: var(--space-10) var(--space-9); }
}


/* ---- navigation/navigation.css ---- */
/* ==========================================================================
   Grow'nGo — Site header & footer
   ========================================================================== */

/* ---- Brand lockup (shared) ---- */
.gg-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.gg-brand__mark { width: 40px; height: 40px; border-radius: 12px; background: var(--coral-400);
  display: grid; place-items: center; transform: rotate(-4deg); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.gg-brand__mark i { font-size: 23px; color: var(--ink-900); }
.gg-brand__word { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: 26px; line-height: 1; letter-spacing: -0.01em; color: var(--ink-900); }
.gg-brand__word .apos { color: var(--coral-500); }
.gg-brand--inverse .gg-brand__word { color: var(--cream); }

/* ---- Header ---- */
.gg-header { position: sticky; top: 0; z-index: var(--z-sticky); background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(1.2) blur(10px); border-bottom: 1px solid var(--border-subtle); }
.gg-header__bar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
  height: 76px; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); }
.gg-header__nav { display: none; align-items: center; gap: var(--space-2); }
.gg-header__link { font-family: var(--font-body); font-weight: var(--weight-bold); font-size: var(--text-md);
  color: var(--text-body); text-decoration: none; padding: 8px 14px; border-radius: var(--radius-pill);
  transition: background var(--dur-fast), color var(--dur-fast); }
.gg-header__link:hover { background: var(--coral-50); color: var(--coral-700); }
.gg-header__link[aria-current="page"] { color: var(--coral-700); background: var(--coral-50); }
.gg-header__actions { display: flex; align-items: center; gap: var(--space-3); }

.gg-header__toggle { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: var(--radius-md);
  border: 2px solid var(--border-strong); background: var(--surface-card); color: var(--ink-900); font-size: 24px; cursor: pointer; }
.gg-header__toggle:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

/* Mobile drawer */
.gg-header__drawer { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-4) var(--gutter) var(--space-6);
  border-top: 1px solid var(--border-subtle); background: var(--cream); }
.gg-header__drawer .gg-header__link { font-size: var(--text-lg); padding: 12px 14px; }
.gg-header__drawer[hidden] { display: none; }

@media (min-width: 960px) {
  .gg-header__nav { display: flex; }
  .gg-header__toggle { display: none; }
  .gg-header__drawer { display: none !important; }
}

/* ---- Footer ---- */
.gg-footer { background: var(--ink-900); color: var(--sand-200); }
.gg-footer__inner { max-width: var(--container-max); margin-inline: auto; padding: var(--space-10) var(--gutter) var(--space-6);
  display: grid; gap: var(--space-8); grid-template-columns: 1fr; }
.gg-footer__about { display: flex; flex-direction: column; gap: var(--space-4); max-width: 36ch; }
.gg-footer__about p { margin: 0; color: var(--sand-200); font-size: var(--text-md); line-height: var(--leading-relaxed); }
.gg-footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-7); }
.gg-footer__col h4 { font-family: var(--font-body); font-size: var(--text-sm); letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--sand-300); margin: 0 0 var(--space-4); font-weight: var(--weight-bold); }
.gg-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.gg-footer__col a { color: var(--cream); text-decoration: none; font-size: var(--text-md); }
.gg-footer__col a:hover { color: var(--coral-300); }
.gg-footer__contact { display: flex; flex-direction: column; gap: var(--space-3); font-size: var(--text-md); }
.gg-footer__contact a, .gg-footer__contact span { color: var(--cream); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.gg-footer__contact i { color: var(--coral-300); font-size: 1.2rem; }
.gg-footer__social { margin-top: var(--space-2); }
.gg-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: var(--space-5) var(--gutter);
  max-width: var(--container-max); margin-inline: auto; display: flex; justify-content: space-between; gap: var(--space-4);
  flex-wrap: wrap; font-size: var(--text-sm); color: var(--sand-300); }

@media (min-width: 768px) {
  .gg-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .gg-footer__cols { grid-template-columns: 1fr 1fr; grid-column: auto; }
}


/* ---- media/media.css ---- */
/* ==========================================================================
   Grow'nGo — Media: ImagePlaceholder & Avatar
   ImagePlaceholder is the clearly-marked stand-in for real photography in
   mockups (carries the alt text the developer should wire up).
   ========================================================================== */

.gg-imgph {
  position: relative;
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: repeating-linear-gradient(45deg, var(--sand-100) 0 14px, var(--sand-50) 14px 28px);
  border: 2px dashed var(--border-strong);
  color: var(--ink-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  padding: var(--space-5);
}
.gg-imgph--warm  { background: repeating-linear-gradient(45deg, var(--coral-100) 0 14px, var(--coral-50) 14px 28px); border-color: var(--coral-200); color: var(--coral-700); }
.gg-imgph--mint  { background: repeating-linear-gradient(45deg, var(--mint-100) 0 14px, var(--mint-50) 14px 28px); border-color: var(--mint-200); color: var(--mint-600); }
.gg-imgph--plain { border-style: solid; }

.gg-imgph i { font-size: 2rem; opacity: 0.85; }
.gg-imgph__label { font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.gg-imgph__alt   { font-size: var(--text-sm); color: var(--ink-400); max-width: 32ch; }

/* Aspect ratios */
.gg-imgph--1x1  { aspect-ratio: 1 / 1; }
.gg-imgph--4x3  { aspect-ratio: 4 / 3; }
.gg-imgph--3x2  { aspect-ratio: 3 / 2; }
.gg-imgph--16x9 { aspect-ratio: 16 / 9; }
.gg-imgph--portrait { aspect-ratio: 3 / 4; }

/* When used inside a card media slot the card already rounds/clips it */
.gg-card__media .gg-imgph { border-radius: 0; border: none; }
.gg-card__media .gg-imgph__label { color: inherit; }

/* ---- Avatar ---- */
.gg-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--sun-200);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-xs);
}
.gg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.gg-avatar--sm { width: 36px; height: 36px; font-size: var(--text-sm); }
.gg-avatar--md { width: 48px; height: 48px; font-size: var(--text-md); }
.gg-avatar--lg { width: 64px; height: 64px; font-size: var(--text-lg); }
.gg-avatar--xl { width: 96px; height: 96px; font-size: var(--text-2xl); }
.gg-avatar--coral { background: var(--coral-200); }
.gg-avatar--mint  { background: var(--mint-200); }
.gg-avatar--sky   { background: var(--sky-100); }


/* ---- program-card/program-card.css ---- */
/* ==========================================================================
   Grow'nGo — Program card
   Age-group program tile: colored accent header, title, blurb, key facts.
   ========================================================================== */

.gg-program {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-soft), box-shadow var(--dur-base) var(--ease-out);
  text-decoration: none;
  color: inherit;
}
a.gg-program:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
a.gg-program:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

.gg-program__top {
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.gg-program__icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: grid; place-items: center; font-size: 1.6rem; flex-shrink: 0; }
.gg-program__age { font-family: var(--font-body); font-weight: var(--weight-bold); font-size: var(--text-sm); color: var(--text-muted); }

.gg-program__body { padding: 0 var(--space-5) var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.gg-program__title { margin: 0; font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: var(--text-xl); color: var(--text-strong); }
.gg-program__text { margin: 0; font-size: var(--text-md); color: var(--text-body); line-height: var(--leading-normal); }

.gg-program__facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); margin-top: auto; }
.gg-program__facts li { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); color: var(--text-body); font-weight: var(--weight-semibold); }
.gg-program__facts i { color: var(--mint-500); font-size: 1.05rem; }

/* Tone accents (header tint per age group) */
.gg-program--coral .gg-program__icon { background: var(--coral-100); color: var(--coral-600); }
.gg-program--sun   .gg-program__icon { background: var(--sun-100);   color: var(--sun-500); }
.gg-program--mint  .gg-program__icon { background: var(--mint-100);  color: var(--mint-600); }
.gg-program--sky   .gg-program__icon { background: var(--sky-100);   color: var(--sky-500); }

.gg-program--coral { border-top: 4px solid var(--coral-300); }
.gg-program--sun   { border-top: 4px solid var(--sun-300); }
.gg-program--mint  { border-top: 4px solid var(--mint-300); }
.gg-program--sky   { border-top: 4px solid var(--sky-300); }


/* ---- social/social.css ---- */
/* ==========================================================================
   Grow'nGo — Social: icon links, feed grid & follow CTA
   - SocialLinks  → real <a> links (header / footer / contact)
   - SocialFeed   → visual container + placeholder tiles; the LIVE Instagram /
                    Facebook feed is injected into .gg-feed by the WordPress
                    developer later (each child becomes one real post tile).
   ========================================================================== */

/* ---- Icon links ---- */
.gg-social { display: inline-flex; align-items: center; gap: var(--space-3); list-style: none; margin: 0; padding: 0; }
.gg-social__link {
  width: var(--tap-min); height: var(--tap-min); border-radius: var(--radius-pill);
  display: grid; place-items: center; font-size: 1.3rem; text-decoration: none; flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-soft);
}
.gg-social__link:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.gg-social__link:active { transform: translateY(1px) scale(0.96); }
.gg-social--sm .gg-social__link { width: 40px; height: 40px; font-size: 1.1rem; }

/* tones */
.gg-social--tinted  .gg-social__link { background: var(--sand-100); color: var(--ink-900); }
.gg-social--tinted  .gg-social__link:hover { background: var(--coral-400); color: var(--ink-900); transform: translateY(-2px); }
.gg-social--inverse .gg-social__link { background: rgba(255,255,255,0.08); color: var(--cream); }
.gg-social--inverse .gg-social__link:hover { background: var(--coral-500); color: var(--ink-900); transform: translateY(-2px); }
.gg-social--ghost   .gg-social__link { background: transparent; color: var(--ink-700); }
.gg-social--ghost   .gg-social__link:hover { background: var(--coral-50); color: var(--coral-700); }

/* header placement: visible only on wide screens (mobile uses the drawer) */
.gg-header__social { display: none; }
@media (min-width: 1100px) { .gg-header__social { display: inline-flex; } }

/* ---- Feed grid ---- */
/* 2-up on mobile/tablet, 3-up on desktop. The developer can keep this grid and
   simply render the live feed items as .gg-feed__tile children. */
.gg-feed { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); list-style: none; margin: 0; padding: 0; }
@media (min-width: 960px) { .gg-feed { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }

.gg-feed__tile {
  position: relative; display: block; aspect-ratio: 1 / 1; border-radius: var(--radius-md); overflow: hidden;
  text-decoration: none; border: 1px solid var(--border-subtle);
  background: repeating-linear-gradient(45deg, var(--sand-100) 0 14px, var(--sand-50) 14px 28px);
  transition: transform var(--dur-base) var(--ease-soft), box-shadow var(--dur-base) var(--ease-out);
}
.gg-feed__tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gg-feed__tile:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

.gg-feed__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--ink-500); }
.gg-feed__ph i { font-size: 1.7rem; }
.gg-feed__ph span { font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }

.gg-feed__badge { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.92); display: grid; place-items: center; color: var(--ink-900); font-size: 1rem; box-shadow: var(--shadow-xs); }

.gg-feed__overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(43, 37, 32, 0.55); color: var(--cream); font-weight: var(--weight-bold); font-size: var(--text-sm);
  opacity: 0; transition: opacity var(--dur-base) var(--ease-out); }
.gg-feed__overlay i { font-size: 1.2rem; }
.gg-feed__tile:hover .gg-feed__overlay, .gg-feed__tile:focus-visible .gg-feed__overlay { opacity: 1; }

/* ---- Follow CTA (handles) ---- */
.gg-follow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-4); }
.gg-follow__label { font-family: var(--font-display); font-weight: var(--weight-semibold); color: var(--text-strong); font-size: var(--text-lg); }
.gg-follow__handles { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.gg-follow__handle { display: inline-flex; align-items: center; gap: 0.5em; padding: 10px 16px; border-radius: var(--radius-pill);
  background: var(--surface-card); border: 2px solid var(--border-subtle); text-decoration: none; color: var(--text-strong);
  font-family: var(--font-body); font-weight: var(--weight-bold); font-size: var(--text-sm);
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-soft); }
.gg-follow__handle i { font-size: 1.25em; color: var(--coral-500); }
.gg-follow__handle:hover { border-color: var(--coral-300); background: var(--coral-50); color: var(--coral-700); transform: translateY(-2px); }
.gg-follow__handle:hover i { color: var(--coral-600); }
.gg-follow__handle:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

