/* ==========================================================================
   Grovewell Digest — Mobile-first theme styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  --gw-yellow: #F7D147;
  --gw-yellow-soft: #FFF6D6;
  --gw-green: #609447;
  --gw-green-dark: #4d7a36;
  --gw-brown: #732E2E;
  --gw-bg: #F4F7FA;
  --gw-white: #fff;
  --gw-text: #2c2c2c;
  --gw-muted: #6b6b6b;
  --gw-radius: 12px;
  --gw-radius-sm: 8px;
  --gw-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);

  --gw-font-body: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gw-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

  --gw-container: 1200px;
  --gw-gutter: 1.25rem;
  --gw-header-h: 72px;
  --gw-topbar-h: 36px;
  --gw-transition: 0.25s ease;
  --gw-transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--gw-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gw-text);
  background: var(--gw-bg);
  overflow-x: hidden;
}

body.gw-nav-open,
body.gw-modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

a {
  color: var(--gw-green-dark);
  text-decoration: none;
  transition: color var(--gw-transition);
}

a:hover,
a:focus-visible {
  color: var(--gw-brown);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gw-font-display);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: var(--gw-text);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--gw-container);
  margin-inline: auto;
  padding-inline: var(--gw-gutter);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  margin: 0;
  clip: auto;
  overflow: visible;
  white-space: normal;
  background: var(--gw-yellow);
  color: var(--gw-text);
  font-weight: 600;
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
}

/* Scroll reveal */
.gw-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--gw-transition-slow),
    transform var(--gw-transition-slow);
}

.gw-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--gw-transition),
    color var(--gw-transition),
    border-color var(--gw-transition),
    transform var(--gw-transition),
    box-shadow var(--gw-transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gw-green);
  color: var(--gw-white);
  border-color: var(--gw-green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gw-green-dark);
  border-color: var(--gw-green-dark);
  color: var(--gw-white);
}

.btn-outline {
  background: transparent;
  color: var(--gw-green-dark);
  border-color: var(--gw-green);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--gw-green);
  color: var(--gw-white);
  border-color: var(--gw-green);
}

.btn-phone {
  background: var(--gw-brown);
  color: var(--gw-white);
  border-color: var(--gw-brown);
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}

.btn-phone:hover,
.btn-phone:focus-visible {
  background: #5a2424;
  border-color: #5a2424;
  color: var(--gw-white);
}

.btn-store {
  background: var(--gw-green);
  color: var(--gw-white);
  border-color: var(--gw-green);
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}

.btn-store:hover,
.btn-store:focus-visible {
  background: var(--gw-green-dark);
  border-color: var(--gw-green-dark);
  color: var(--gw-white);
}

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */
.top-bar {
  background: var(--gw-yellow);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--gw-topbar-h);
  padding-block: 0.35rem;
}

.top-bar__tagline {
  margin: 0;
  font-weight: 500;
  color: var(--gw-text);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-bar__social {
  flex-shrink: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  color: var(--gw-text);
  background: rgba(255, 255, 255, 0.45);
  transition:
    background var(--gw-transition),
    color var(--gw-transition),
    transform var(--gw-transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--gw-white);
  color: var(--gw-brown);
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Site header (sticky)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--gw-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--gw-transition);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: var(--gw-header-h);
  padding-block: 0.65rem;
}

.site-branding {
  flex: 1 1 auto;
  min-width: 0;
}

.site-branding .custom-logo-link {
  display: inline-block;
  line-height: 0;
}

.site-branding .custom-logo {
  max-height: 48px;
  width: auto;
}

.site-title {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--gw-text);
  line-height: 1.2;
}

.site-title:hover,
.site-title:focus-visible {
  color: var(--gw-green-dark);
}

.site-name {
  font-family: var(--gw-font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.site-tagline {
  font-size: 0.75rem;
  color: var(--gw-muted);
  font-weight: 400;
}

/* Nav toggle (hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--gw-radius);
  background: var(--gw-bg);
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gw-text);
  border-radius: 2px;
  transition: transform var(--gw-transition), opacity var(--gw-transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Primary navigation */
.primary-navigation {
  order: 10;
  flex: 1 1 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height var(--gw-transition-slow),
    opacity var(--gw-transition),
    visibility var(--gw-transition);
}

.primary-navigation.is-open {
  max-height: 80vh;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  padding-block: 0.75rem 1rem;
}

.primary-menu {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.primary-menu > li > a {
  display: block;
  padding: 0.65rem 0.5rem;
  font-weight: 600;
  color: var(--gw-text);
  border-radius: var(--gw-radius-sm, 8px);
  transition: background var(--gw-transition), color var(--gw-transition);
}

.primary-menu > li > a:hover,
.primary-menu > li > a:focus-visible {
  background: var(--gw-yellow-soft);
  color: var(--gw-green-dark);
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item-has-children > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  transition: transform var(--gw-transition);
}

.sub-menu {
  display: none;
  padding: 0.35rem 0 0.35rem 1rem;
}

.menu-item-has-children.is-expanded > .sub-menu {
  display: block;
}

.menu-item-has-children.is-expanded > a::after {
  transform: rotate(180deg);
}

.sub-menu a {
  display: block;
  padding: 0.45rem 0.5rem;
  font-size: 0.9375rem;
  color: var(--gw-muted);
  border-radius: 6px;
}

.sub-menu a:hover,
.sub-menu a:focus-visible {
  color: var(--gw-green-dark);
  background: var(--gw-yellow-soft);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-actions .search-form {
  display: none;
}

.header-actions .btn-phone span {
  display: none;
}

/* Search form (WP standard) */
.search-form {
  display: flex;
  align-items: stretch;
  position: relative;
  max-width: 220px;
}

.search-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.search-field {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 2.5rem 0.5rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: var(--gw-bg);
  outline: none;
  transition: border-color var(--gw-transition), box-shadow var(--gw-transition);
}

.search-field:focus {
  border-color: var(--gw-green);
  box-shadow: 0 0 0 3px rgba(96, 148, 71, 0.15);
}

.search-submit {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gw-green-dark);
  transition: background var(--gw-transition), color var(--gw-transition);
}

.search-submit:hover,
.search-submit:focus-visible {
  background: var(--gw-green);
  color: var(--gw-white);
}

/* --------------------------------------------------------------------------
   Hero section
   -------------------------------------------------------------------------- */
.hero-section {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.45), transparent 55%),
    linear-gradient(135deg, var(--gw-yellow) 0%, #f0c93a 55%, var(--gw-yellow-soft) 100%);
  padding-block: 1.5rem 2rem;
}

.hero-section__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-section__media {
  text-align: center;
  order: 1;
}

.hero-section__media img {
  margin-inline: auto;
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

.hero-section__content {
  order: 2;
}

.hero-section__side {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: var(--gw-font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gw-brown);
}

.hero-title {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  margin-bottom: 0.75rem;
  color: var(--gw-brown);
  font-weight: 700;
}

.hero-lead {
  font-size: 1rem;
  color: var(--gw-text);
  opacity: 0.9;
  max-width: 540px;
}

.hero-promo-card {
  padding: 1.1rem 1.25rem;
  background: var(--gw-yellow);
  border: 2px solid rgba(115, 46, 46, 0.12);
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
}

.hero-promo-card__icon {
  font-size: 1.35rem;
  color: var(--gw-brown);
  margin-bottom: 0.35rem;
}

.hero-promo-card__title {
  font-size: 1.15rem;
  color: var(--gw-brown);
  margin-bottom: 0.4rem;
}

.hero-promo-card__text {
  font-size: 0.875rem;
  color: var(--gw-text);
  margin-bottom: 0.85rem;
}

/* Quick actions */
.quick-actions {
  display: grid;
  gap: 0.75rem;
}

.quick-actions--stacked {
  grid-template-columns: 1fr;
}

.quick-action-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  text-align: left;
  background: var(--gw-white);
  border: 0;
  border-radius: var(--gw-radius-sm);
  box-shadow: var(--gw-shadow);
  cursor: pointer;
  transition: transform var(--gw-transition), box-shadow var(--gw-transition);
  color: inherit;
  font: inherit;
}

.quick-action-card:hover,
.quick-action-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.quick-action-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gw-yellow-soft);
  color: var(--gw-green-dark);
  font-size: 1.1rem;
}

.quick-action-card__label {
  font-weight: 600;
  color: var(--gw-brown);
  font-size: 0.9375rem;
}

@media (min-width: 640px) {
  .quick-actions--stacked {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-action-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-section__grid {
    grid-template-columns: 1.1fr 1fr 0.85fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .hero-section__media,
  .hero-section__content,
  .hero-section__side {
    order: initial;
  }

  .hero-section__media img {
    max-height: 460px;
  }

  .hero-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quick-actions--stacked {
    grid-template-columns: 1fr;
  }

  .quick-action-card {
    flex-direction: row;
    text-align: left;
  }
}

/* Health check cards — horizontal like reference */
.health-check-section__inner {
  display: grid;
  gap: 1.5rem;
}

.health-check-section__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.health-check-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.health-check-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gw-white);
  border-radius: var(--gw-radius-sm);
  box-shadow: var(--gw-shadow);
}

.health-check-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.health-check-card__text {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.health-check-card__text h3 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gw-brown);
}

.health-check-card__link {
  border: 0;
  background: transparent;
  color: var(--gw-green);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.35rem 0.5rem;
}

.health-check-card__link:hover {
  color: var(--gw-green-dark);
  text-decoration: underline;
}

.health-check-section__doctors {
  text-align: center;
}

.health-check-section__doctors img {
  max-width: 280px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .health-check-section__inner {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: center;
  }

  .health-check-section__doctors img {
    max-width: 100%;
  }
}

.health-check-section {
  padding-block: 2.5rem 3rem;
}

.health-check-section__inner {
  background: var(--gw-yellow);
  border-radius: var(--gw-radius);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--gw-shadow);
}

.health-check-section__intro h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--gw-brown);
  text-align: left;
  margin-bottom: 0.35rem;
}

.health-check-section__intro p {
  color: var(--gw-text);
  opacity: 0.9;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .health-check-section__inner {
    padding: 2rem 2rem;
  }
}

/* --------------------------------------------------------------------------
   Research story
   -------------------------------------------------------------------------- */
.research-story {
  padding-block: 3rem;
  background: var(--gw-white);
}

.research-story__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.research-story__text h2 {
  font-size: clamp(1.5rem, 4vw, 2.125rem);
  margin-bottom: 1.25rem;
}

.research-story__text p {
  color: var(--gw-muted);
  margin-bottom: 1rem;
}

.research-story__images {
  display: grid;
  gap: 1.5rem;
}

.research-story__images figure img {
  border-radius: var(--gw-radius);
  width: 100%;
  box-shadow: var(--gw-shadow);
}

.research-story__images figcaption {
  margin-top: 0.65rem;
  font-size: 0.875rem;
  color: var(--gw-muted);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Benefits strip
   -------------------------------------------------------------------------- */
.benefits-strip {
  padding-block: 3rem;
  background: var(--gw-bg);
}

.benefits-strip__heading {
  text-align: center;
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  margin-bottom: 2rem;
}

.benefits-strip__list {
  display: grid;
  gap: 1rem;
}

.benefits-strip__list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--gw-white);
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
  text-align: center;
}

.benefits-strip__list li i {
  font-size: 1.5rem;
  color: var(--gw-green);
  margin-bottom: 0.25rem;
}

.benefits-strip__list li strong {
  font-family: var(--gw-font-display);
  font-size: 1.0625rem;
  color: var(--gw-text);
}

.benefits-strip__list li span {
  font-size: 0.875rem;
  color: var(--gw-muted);
}

/* --------------------------------------------------------------------------
   Articles section
   -------------------------------------------------------------------------- */
.articles-section {
  padding-block: 3rem;
  background: var(--gw-white);
}

.articles-section > .container > h2 {
  text-align: center;
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  margin-bottom: 2rem;
}

.article-cards {
  display: grid;
  gap: 1.5rem;
}

.article-card {
  background: var(--gw-white);
  border-radius: var(--gw-radius);
  overflow: hidden;
  box-shadow: var(--gw-shadow);
  transition: transform var(--gw-transition);
}

.article-card:hover {
  transform: translateY(-3px);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card h3 {
  font-size: 1.125rem;
  padding: 1.25rem 1.25rem 0.5rem;
}

.article-card h3 a {
  color: var(--gw-text);
  text-decoration: none;
}

.article-card h3 a:hover {
  color: var(--gw-green-dark);
}

.article-card p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gw-muted);
}

/* --------------------------------------------------------------------------
   Herbal banner
   -------------------------------------------------------------------------- */
.herbal-banner {
  position: relative;
  padding-block: 4rem;
  background-color: var(--gw-green-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.herbal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 122, 54, 0.92) 0%, rgba(115, 46, 46, 0.75) 100%);
}

.herbal-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--gw-white);
  max-width: 720px;
}

.herbal-banner__content h2 {
  color: var(--gw-white);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.herbal-banner__content p {
  font-size: 1.0625rem;
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.herbal-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.herbal-banner .btn-outline {
  border-color: var(--gw-white);
  color: var(--gw-white);
}

.herbal-banner .btn-outline:hover,
.herbal-banner .btn-outline:focus-visible {
  background: var(--gw-white);
  color: var(--gw-green-dark);
}

/* --------------------------------------------------------------------------
   Product CTA
   -------------------------------------------------------------------------- */
.product-cta {
  padding-block: 3.5rem;
  background: var(--gw-bg);
}

.product-cta__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.product-cta__copy h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--gw-green-dark);
}

.product-cta__copy > p {
  color: var(--gw-muted);
  margin-bottom: 1.25rem;
}

.product-cta__features {
  margin-bottom: 1.5rem;
}

.product-cta__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gw-text);
}

.product-cta__features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gw-green);
  font-size: 0.875rem;
}

.product-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-cta__media {
  text-align: center;
}

.product-cta__media img {
  margin-inline: auto;
  max-height: 400px;
  width: auto;
  filter: drop-shadow(var(--gw-shadow));
}

/* --------------------------------------------------------------------------
   Rewards & videos teasers
   -------------------------------------------------------------------------- */
.rewards-teaser,
.videos-teaser {
  padding-block: 2.5rem;
  text-align: center;
}

.rewards-teaser {
  background: var(--gw-yellow-soft);
}

.videos-teaser {
  background: var(--gw-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.rewards-teaser h2,
.videos-teaser h2 {
  font-size: clamp(1.375rem, 3.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.rewards-teaser p,
.videos-teaser p {
  max-width: 560px;
  margin-inline: auto;
  color: var(--gw-muted);
}

/* --------------------------------------------------------------------------
   Modals
   -------------------------------------------------------------------------- */
.grovewell-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    visibility var(--gw-transition),
    opacity var(--gw-transition);
}

.grovewell-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.grovewell-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.55);
  backdrop-filter: blur(2px);
}

.grovewell-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--gw-white);
  border-radius: var(--gw-radius);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--gw-transition-slow);
}

.grovewell-modal.is-open .grovewell-modal__panel {
  transform: translateY(0) scale(1);
}

.grovewell-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gw-bg);
  color: var(--gw-muted);
  font-size: 1.125rem;
  transition: background var(--gw-transition), color var(--gw-transition);
}

.grovewell-modal__close:hover,
.grovewell-modal__close:focus-visible {
  background: var(--gw-yellow);
  color: var(--gw-text);
}

.grovewell-modal__title {
  font-size: 1.375rem;
  padding-right: 2rem;
  margin-bottom: 0.65rem;
  color: var(--gw-green-dark);
}

.grovewell-modal__intro {
  font-size: 0.9375rem;
  color: var(--gw-muted);
  margin-bottom: 1.5rem;
}

/* Consult form */
.grovewell-consult-form {
  display: grid;
  gap: 0.85rem;
}

.grovewell-form-field {
  margin: 0;
}

.grovewell-form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--gw-text);
}

.grovewell-form-field input,
.grovewell-form-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: var(--gw-bg);
  outline: none;
  transition: border-color var(--gw-transition), box-shadow var(--gw-transition);
}

.grovewell-form-field input:focus,
.grovewell-form-field textarea:focus {
  border-color: var(--gw-green);
  box-shadow: 0 0 0 3px rgba(96, 148, 71, 0.15);
  background: var(--gw-white);
}

.grovewell-form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.grovewell-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.grovewell-form-actions {
  margin: 0.5rem 0 0;
}

.grovewell-form-actions .btn {
  width: 100%;
}

.grovewell-form-actions .btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.grovewell-form-feedback {
  margin: 0;
  font-size: 0.875rem;
  min-height: 1.25rem;
}

.grovewell-form-feedback.is-success {
  color: var(--gw-green-dark);
}

.grovewell-form-feedback.is-error {
  color: #b33;
}

/* --------------------------------------------------------------------------
   Site footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #1e2a22;
  color: rgba(255, 255, 255, 0.82);
  padding-block: 3rem 1.5rem;
  font-size: 0.9375rem;
}

.footer-columns {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-column__title {
  font-family: var(--gw-font-display);
  font-size: 1.0625rem;
  color: var(--gw-yellow);
  margin-bottom: 1rem;
}

.footer-column-menu li {
  margin-bottom: 0.45rem;
}

.footer-column-menu a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  transition: color var(--gw-transition);
}

.footer-column-menu a:hover,
.footer-column-menu a:focus-visible {
  color: var(--gw-yellow);
}

.footer-company {
  margin-bottom: 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-company p {
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-company strong {
  color: var(--gw-white);
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.footer-policies a:hover,
.footer-policies a:focus-visible {
  color: var(--gw-yellow);
}

.footer-link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  margin-bottom: 1.25rem;
}

.footer-link-item {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  transition: color var(--gw-transition);
}

.footer-link-item:hover,
.footer-link-item:focus-visible {
  color: var(--gw-yellow);
}

.footer-link-item:not(:last-child)::after {
  content: '|';
  margin-inline: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.footer-copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   Cookie bar
   -------------------------------------------------------------------------- */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9400;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--gw-gutter);
  background: var(--gw-white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform var(--gw-transition-slow),
    opacity var(--gw-transition),
    visibility var(--gw-transition);
}

.cookie-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-bar.is-hidden {
  display: none;
}

.cookie-bar p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  color: var(--gw-muted);
}

.cookie-bar__accept {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Blog & inner pages
   -------------------------------------------------------------------------- */
.site-main {
  min-height: 50vh;
}

.content-area {
  display: grid;
  gap: 2rem;
  padding-block: 2.5rem;
}

.content-area__main {
  min-width: 0;
}

.post-card,
.entry {
  background: var(--gw-white);
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.post-card__thumb img,
.entry img {
  width: 100%;
}

.entry-header,
.post-card .entry-header {
  padding: 1.25rem 1.25rem 0;
}

.entry-title {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.entry-title a {
  color: var(--gw-text);
  text-decoration: none;
}

.entry-title a:hover {
  color: var(--gw-green-dark);
}

.entry-meta {
  font-size: 0.8125rem;
  color: var(--gw-muted);
  margin-bottom: 0.75rem;
}

.entry-meta span + span::before {
  content: ' · ';
}

.entry-summary,
.entry-content {
  padding: 0 1.25rem 1.25rem;
  color: var(--gw-muted);
}

.entry-footer,
.post-card .entry-footer {
  padding: 0 1.25rem 1.25rem;
}

.read-more {
  font-weight: 600;
  color: var(--gw-green-dark);
}

.read-more:hover {
  color: var(--gw-brown);
}

.widget-area.sidebar {
  min-width: 0;
}

.widget {
  background: var(--gw-white);
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.widget-title {
  font-family: var(--gw-font-display);
  font-size: 1.0625rem;
  margin-bottom: 0.85rem;
  color: var(--gw-green-dark);
}

.widget ul li {
  margin-bottom: 0.4rem;
}

.widget ul a {
  color: var(--gw-muted);
  font-size: 0.9375rem;
}

.widget ul a:hover {
  color: var(--gw-green-dark);
}

.posts-navigation,
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.posts-navigation a,
.post-navigation a {
  font-weight: 600;
  color: var(--gw-green-dark);
}

/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */
.btt {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gw-green);
  color: var(--gw-white);
  box-shadow: var(--gw-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity var(--gw-transition),
    visibility var(--gw-transition),
    transform var(--gw-transition),
    background var(--gw-transition);
}

.btt.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btt:hover,
.btt:focus-visible {
  background: var(--gw-green-dark);
  color: var(--gw-white);
}

body.gw-cookie-visible .btt {
  bottom: 5.5rem;
}

/* --------------------------------------------------------------------------
   Breakpoint: 640px
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  :root {
    --gw-gutter: 1.5rem;
  }

  .quick-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .health-check-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .health-check-cards .health-check-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.625rem);
    justify-self: center;
  }

  .benefits-strip__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-actions .btn-phone span {
    display: inline;
  }
}

/* --------------------------------------------------------------------------
   Breakpoint: 768px
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --gw-header-h: 80px;
  }

  .nav-toggle {
    display: none;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    gap: 1.5rem;
  }

  .site-branding {
    flex: 0 1 auto;
  }

  .primary-navigation {
    order: 0;
    flex: 1 1 auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }

  .primary-menu {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.15rem 0.25rem;
  }

  .primary-menu > li > a {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 0.5rem;
    background: var(--gw-white);
    border-radius: var(--gw-radius);
    box-shadow: var(--gw-shadow);
    z-index: 100;
    display: none;
  }

  .menu-item-has-children:hover > .sub-menu,
  .menu-item-has-children:focus-within > .sub-menu {
    display: block;
  }

  .menu-item-has-children.is-expanded > .sub-menu {
    display: block;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .header-actions .search-form {
    display: flex;
  }

  .hero-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-section__media {
    order: 2;
  }

  .hero-section__content {
    order: 1;
  }

  .health-check-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .health-check-cards .health-check-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .health-check-section__inner {
    padding: 2.5rem;
  }

  .research-story__grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-strip__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-cta__inner {
    grid-template-columns: 1fr 1fr;
  }

  .content-area {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }

  .footer-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Breakpoint: 1024px
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  :root {
    --gw-gutter: 2rem;
  }

  .hero-section {
    padding-block: 3rem 3.5rem;
  }

  .primary-menu > li > a {
    font-size: 0.9375rem;
    padding: 0.5rem 0.85rem;
  }

  .benefits-strip__list {
    grid-template-columns: repeat(5, 1fr);
  }

  .health-check-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .content-area {
    grid-template-columns: 1fr 320px;
  }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gw-fade-up {
    opacity: 1;
    transform: none;
  }
}
