/* The Healthy Hive — logo palette (gold, black, cream, amber) */
:root {
  --hive-gold: #e5b318;
  --hive-gold-light: #f8d54a;
  --hive-gold-dark: #c99a0f;
  --hive-amber: #e8941a;
  --hive-cream: #fff9eb;
  --hive-cream-dark: #f5edd8;
  --hive-black: #1a1a1a;
  --honey: var(--hive-gold);
  --honey-light: #fce8a0;
  --honey-dark: var(--hive-gold-dark);
  --sage: var(--hive-black);
  --sage-light: #3d3d3d;
  --sage-pale: #fff5d6;
  --cream: var(--hive-cream);
  --cream-dark: var(--hive-cream-dark);
  --charcoal: var(--hive-black);
  --charcoal-soft: #3a3a3a;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 26, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --transition: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--hive-cream);
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill='none' stroke='%23e5b318' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(229, 179, 24, 0.18), transparent 55%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/logo.png") right -8% bottom -6% / min(42vw, 360px) no-repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
}

h1 em {
  font-style: italic;
  color: var(--honey-dark);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--hive-cream-dark) 0%, var(--hive-cream) 100%);
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-header p:last-child {
  color: var(--charcoal-soft);
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--hive-gold);
  color: var(--hive-black);
  font-weight: 600;
  border-color: var(--hive-black);
}

.btn-primary:hover {
  background: var(--hive-black);
  color: var(--hive-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal-soft);
}

.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.btn-nav {
  background: var(--honey);
  color: var(--charcoal);
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.btn-nav:hover {
  background: var(--honey-dark);
  color: var(--white);
}

.btn-nav-text {
  background: var(--hive-black);
  color: var(--hive-gold);
}

.btn-nav-text:hover {
  background: var(--hive-gold-dark);
  color: var(--hive-black);
}

.hero-order-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  font-weight: 500;
}

.order-callout {
  background: linear-gradient(135deg, var(--hive-black) 0%, #2d2d2d 55%, var(--hive-gold-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
}

.order-callout-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.order-callout-text {
  flex: 1;
  min-width: 260px;
  max-width: 560px;
}

.order-callout-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.2;
}

.order-callout-text p:last-child {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.eyebrow-light {
  color: var(--honey-light);
}

.order-callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  padding: 1rem 1.5rem;
  text-align: center;
}

.order-btn-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.order-btn-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.order-callout-compact {
  background: var(--sage-pale);
  border: 2px solid var(--sage-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
  text-align: center;
}

.order-callout-compact p {
  margin: 0 0 0.35rem;
}

.order-callout-compact a {
  color: var(--sage);
  font-weight: 700;
}

.order-callout-compact .small {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  margin: 0;
}

.order-callout-below {
  margin-top: 1.25rem;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn-light {
  background: var(--white);
  color: var(--sage);
}

.btn-light:hover {
  background: var(--cream);
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 249, 235, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 179, 24, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.logo-img {
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.12);
}

.logo-icon {
  color: var(--honey);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: color var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--sage);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(229, 179, 24, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(232, 148, 26, 0.16) 0%, transparent 55%),
    var(--hive-cream);
  z-index: -1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/logo.png") center 42% / min(58vw, 440px) no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill='none' stroke='%23e5b318' stroke-opacity='0.08' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.85;
}

.hero-content {
  max-width: 720px;
}

.hero-logo {
  width: min(150px, 38vw);
  height: auto;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  filter: drop-shadow(0 6px 20px rgba(26, 26, 26, 0.18));
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 42, 38, 0.1);
}

.hero-stats dt {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--honey-dark);
  line-height: 1;
}

.hero-stats dd {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  margin-top: 0.25rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 360px;
}

.about-card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.about-card-main {
  top: 0;
  left: 0;
  width: 65%;
  background: var(--white);
  z-index: 2;
}

.about-card-accent {
  bottom: 0;
  right: 0;
  width: 55%;
  background: linear-gradient(145deg, var(--hive-gold) 0%, var(--hive-amber) 100%);
  color: var(--hive-black);
  z-index: 1;
}

.about-emoji {
  font-size: 2.5rem;
}

.about-card p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.about-text p {
  color: var(--charcoal-soft);
  margin-bottom: 1rem;
}

.about-list {
  margin-top: 1.5rem;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--charcoal-soft);
}

.about-list li::before {
  content: "⬡";
  position: absolute;
  left: 0;
  color: var(--honey);
  font-size: 0.75rem;
  top: 0.15rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage);
  transition: color var(--transition);
}

.service-link:hover {
  color: var(--honey-dark);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--honey-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.step p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

/* Photo gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.photo-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.photo-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sage);
}

.photo-card figcaption span {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}

/* Testimonials */
.google-rating {
  margin-top: 0.5rem;
}

.google-rating .stars,
.review-stars {
  color: #f4b400;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
}

.google-rating p {
  margin-top: 0.35rem;
  color: var(--charcoal-soft);
}

.testimonial-google {
  border-left-color: #4285f4;
}

.testimonial-google footer cite {
  color: var(--charcoal);
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Herbalife online shop */
.herbalife-shop-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.herbalife-shop-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}

.herbalife-shop-content > p {
  color: var(--charcoal-soft);
  margin-bottom: 1.25rem;
  max-width: 540px;
}

.herbalife-product-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.herbalife-product-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--charcoal);
  font-weight: 500;
}

.herbalife-product-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.herbalife-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.herbalife-highlight {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  text-align: center;
}

.herbalife-highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: 0.15rem;
}

.herbalife-highlight span {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  line-height: 1.3;
}

.herbalife-shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.herbalife-disclaimer {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 520px;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.herbalife-disclaimer a {
  color: var(--sage);
  font-weight: 600;
}

.herbalife-shop-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.herbalife-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--honey);
}

.herbalife-card-accent {
  border-left-color: var(--sage);
  background: var(--sage-pale);
}

.herbalife-card-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.herbalife-card p {
  margin: 0 0 0.35rem;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.herbalife-card p strong {
  color: var(--charcoal);
  font-size: 1.05rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--honey);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial footer span {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--hive-gold) 0%, var(--hive-amber) 100%);
  color: var(--hive-black);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--hive-black);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.cta-banner .btn-ghost {
  border-color: var(--hive-black);
  color: var(--hive-black);
}

.cta-banner .btn-ghost:hover {
  background: rgba(26, 26, 26, 0.08);
  border-color: var(--hive-black);
  color: var(--hive-black);
}

/* Menu */
.menu-categories {
  display: grid;
  gap: 1.5rem;
}

.menu-categories-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.menu-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.menu-category h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.menu-category-desc {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.menu-items li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--cream-dark);
}

.menu-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-item-detail {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
}

.menu-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.menu-note a {
  color: var(--sage);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.menu-note a:hover {
  color: var(--honey-dark);
}

.menu-hero {
  padding-bottom: 1rem;
}

.menu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.full-menu-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.full-menu-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.full-menu-block h2 {
  font-size: 1.75rem;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.full-menu-subhead {
  font-size: 1.35rem !important;
  margin-top: 1.5rem !important;
}

.full-menu-desc {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.full-menu-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin: 1rem 0 0.5rem;
}

.full-menu-flavors p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.full-menu-flavors strong {
  color: var(--charcoal);
}

.full-menu-note {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  margin-top: 0.75rem;
  font-style: italic;
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.menu-price-table th,
.menu-price-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-price-table th:not(:first-child),
.menu-price-table td:not(:first-child) {
  text-align: right;
}

.menu-price-table-compact td:last-child {
  text-align: right;
  color: var(--charcoal-soft);
  font-size: 0.85rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem 1.25rem;
}

.addons-grid div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.addons-grid span {
  font-weight: 600;
  color: var(--honey-dark);
  white-space: nowrap;
}

.full-menu-order {
  text-align: center;
  background: var(--sage);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.full-menu-order h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.full-menu-order a {
  color: var(--honey-light);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.full-menu-order a:hover {
  color: var(--white);
}

/* Embedded print menu viewer */
.menu-viewer-section {
  padding-top: 0;
}

.menu-viewer-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-viewer-toolbar p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin: 0;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.menu-viewer {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: min(85vh, 900px);
  border: 1px solid var(--cream-dark);
}

.menu-noscript {
  padding: 1rem 1.25rem;
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
  background: var(--sage-pale);
}

.menu-noscript a {
  color: var(--hive-gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.menu-viewer iframe {
  display: block;
  width: 100%;
  min-width: 900px;
  height: 680px;
  border: 0;
}

.menu-viewer-note {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.menu-viewer-note a {
  color: var(--sage);
  font-weight: 600;
}

@media (max-width: 768px) {
  .menu-viewer {
    max-height: 70vh;
  }

  .menu-viewer iframe {
    height: 560px;
    min-width: 720px;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-inline a {
  color: var(--charcoal);
  font-weight: 500;
  transition: color var(--transition);
}

.social-inline a:hover {
  color: var(--sage);
}

.map-wrap {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-dark);
}

.contact-info p {
  color: var(--charcoal-soft);
  margin-bottom: 2rem;
}

.contact-details li {
  margin-bottom: 1.25rem;
}

.contact-details strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--charcoal);
  transition: color var(--transition);
}

.contact-details a:hover {
  color: var(--sage);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sage-light);
  box-shadow: 0 0 0 3px rgba(92, 122, 94, 0.15);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  min-height: 1.4em;
}

.form-note.success {
  color: var(--sage);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.faq-item dd {
  color: var(--charcoal-soft);
  margin: 0;
}

.faq-item a {
  color: var(--hive-gold-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item a:hover {
  color: var(--hive-black);
}

/* Menu page — crawlable summary */
.menu-seo-index {
  padding-top: 2rem;
}

.menu-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.menu-seo-grid article {
  background: var(--white);
  border: 1px solid rgba(229, 179, 24, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.menu-seo-grid h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.menu-seo-grid p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.55;
}

.menu-noscript-fallback,
.menu-crawler-fallback {
  text-align: center;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  margin: 0 0 1rem;
}

.menu-noscript-fallback {
  padding: 1rem 1.25rem;
  background: var(--hive-cream-dark);
  border: 1px solid rgba(229, 179, 24, 0.25);
  border-radius: var(--radius);
}

.menu-crawler-fallback {
  margin-top: 0.75rem;
}

.menu-noscript-fallback a,
.menu-crawler-fallback a {
  color: var(--hive-gold-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-nap {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-nap a {
  color: var(--honey-light);
}

.footer-bottom a {
  color: var(--honey-light);
}

/* Footer */
.site-footer {
  background: var(--hive-black);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
  border-top: 4px solid var(--hive-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 280px;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--honey-light);
  margin-bottom: 1rem;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  font-size: 0.95rem;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .order-callout-inner {
    flex-direction: column;
    text-align: center;
  }

  .order-callout-actions {
    justify-content: center;
    width: 100%;
  }

  .herbalife-shop-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .herbalife-highlights {
    grid-template-columns: 1fr;
  }
}
