:root {
  --ink: #203a2a;
  --ink-2: #3f6148;
  --muted: #5f745d;
  --line: rgba(48, 86, 54, 0.14);
  --paper: #fffaf0;
  --soft: #f5f0df;
  --navy: #2f6b36;
  --navy-2: #1f4e2b;
  --teal: #7f9d4a;
  --teal-2: #e5ecd0;
  --gold: #b88746;
  --gold-2: #efe1c4;
  --deep-green: #16391f;
  --bg-mint: #f8f3e7;
  --radius: 24px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --shadow: 0 18px 48px rgba(47, 73, 38, 0.09);
  --glass-bg: rgba(255, 250, 240, 0.86);
  --glass-border: 1px solid rgba(48, 86, 54, 0.14);
  --glass-blur: blur(20px);
  --glass-shadow: 0 18px 48px rgba(47, 73, 38, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes poolPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-mint);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(47, 107, 54, 0.07), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(184, 135, 70, 0.08), transparent 25%);
  background-attachment: fixed;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

:focus-visible {
  outline: 3px solid rgba(184, 135, 70, 0.72);
  outline-offset: 4px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.55rem, 5vw, 5.5rem);
  font-weight: 900;
}

h2 {
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

p {
  margin: 0;
  color: var(--ink-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid rgba(48, 86, 54, 0.1);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.admin-header .nav {
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  max-width: 150px;
  color: var(--ink);
  line-height: 1.05;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-nav {
  position: static;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 18px;
  box-shadow: none;
  border: 0;
  padding: 0;
}

.admin-nav a {
  padding: 18px 0;
}

.admin-nav a::after {
  bottom: 10px;
}

.admin-actions {
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: none;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(47, 107, 54, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(47, 107, 54, 0.3);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(48, 86, 54, 0.14);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 14px 34px rgba(47, 73, 38, 0.08);
}

.button.secondary:hover {
  background: #fffaf0;
}

.button.gold {
  color: #000;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.icon-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: #fffaf0;
  border: 1px solid rgba(48, 86, 54, 0.16);
  border-radius: 16px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fffaf0 0%, #e8efd7 48%, #cfddb1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.94) 0%, rgba(245, 240, 223, 0.82) 42%, rgba(47, 107, 54, 0.26) 100%),
    radial-gradient(circle at 12% 20%, rgba(184, 135, 70, 0.24), transparent 34%),
    radial-gradient(circle at 88% 30%, rgba(47, 107, 54, 0.3), transparent 38%),
    url('/assets/img/hero-bg.png') no-repeat center right / cover;
  opacity: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(47, 107, 54, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 54, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
  mask-image: radial-gradient(circle at center top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(170, 241, 232, 0.45) 45%, transparent 72%);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(167, 232, 223, 0.28);
  opacity: var(--opacity);
  animation:
    hero-float var(--duration) ease-in-out infinite,
    hero-twinkle calc(var(--duration) * 0.7) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes hero-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.12);
  }
}

@keyframes hero-twinkle {
  0%,
  100% {
    opacity: calc(var(--opacity) * 0.7);
  }
  50% {
    opacity: 1;
  }
}

@keyframes hero-stage-in {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes hero-card-in {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.96);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes hero-background-in {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: var(--hero-background-opacity, 1);
    transform: scale(1);
  }
}

.hero::before,
.hero::after {
  transform-origin: center;
  animation: hero-background-in 900ms ease both;
}

.hero::before {
  --hero-background-opacity: 1;
}

.hero::after {
  --hero-background-opacity: 0.86;
}

.hero .pill,
.hero h1,
.hero .lead,
.hero > .container > div:first-child > div,
.page-hero .eyebrow,
.page-hero h1,
.page-hero .lead,
.page-hero .hero-actions {
  opacity: 0;
  animation: hero-stage-in 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero .pill,
.page-hero .eyebrow {
  animation-delay: 90ms;
}

.hero h1,
.page-hero h1 {
  animation-delay: 190ms;
}

.hero .lead,
.page-hero .lead {
  animation-delay: 320ms;
}

.hero > .container > div:first-child > div,
.page-hero .hero-actions {
  animation-delay: 450ms;
}

.hero-bento-grid .bento-card {
  opacity: 0;
  transform-origin: center;
  animation: hero-card-in 740ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-bento-grid .bento-card:nth-child(1) {
  animation-delay: 300ms;
}

.hero-bento-grid .bento-card:nth-child(2) {
  animation-delay: 410ms;
}

.hero-bento-grid .bento-card:nth-child(3) {
  animation-delay: 520ms;
}

.hero-bento-grid .bento-card:nth-child(4) {
  animation-delay: 630ms;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 640ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reduced-motion .reveal-on-scroll,
.reveal-on-scroll.is-visible {
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero .pill,
  .hero h1,
  .hero .lead,
  .hero > .container > div:first-child > div,
  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero .lead,
  .page-hero .hero-actions,
  .hero-bento-grid .bento-card {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
  min-height: 690px;
  padding: 76px 0 96px;
}

.hero h1,
.hero p,
.hero .eyebrow {
  color: #f8fafc;
}

.hero .lead {
  max-width: 650px;
  margin-top: 24px;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .button {
  max-width: 100%;
}

.hero-card {
  align-self: end;
  padding: 30px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #fff;
}

.hero-card h2 {
  font-family: Inter, sans-serif;
  font-size: 1.35rem;
  color: #fff;
}

.hero-card p {
  color: #cbd5e1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.proof-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

section {
  padding: 90px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 520px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 30px;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(48, 86, 54, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(47, 73, 38, 0.14);
  background: #fffaf0;
}

.card .icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(47, 107, 54, 0.22);
}
.card .icon svg {
  width: 28px;
  height: 28px;
}

.card p {
  margin-top: 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

/* HERO BENTO GRID RESPONSIVENESS */
.hero-bento-grid {
  flex: 1;
  min-width: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bento-card {
  border: none;
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  text-decoration: none;
}

a.bento-card {
  color: inherit;
  cursor: pointer;
}

a.bento-card:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}

.bento-card.emerald {
  background: var(--navy);
  color: white;
  box-shadow: 0 16px 42px rgba(47, 107, 54, 0.2);
}
.bento-card.white {
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.bento-card.lime {
  background: var(--teal);
  box-shadow: 0 16px 42px rgba(127, 157, 74, 0.2);
}
.bento-card.forest {
  background: var(--deep-green);
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 44, 34, 0.3);
  text-align: center;
}

.bento-badge {
  background: rgba(0,0,0,0.15);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.bento-link {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 24px;
}
.bento-card.forest .bento-link {
  margin-top: 12px;
  display: block;
}

.bento-quote {
  background: rgba(0,0,0,0.05);
  padding: 16px;
  border-radius: 20px;
}
.bento-quote p {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink);
}
.bento-quote span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-2);
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.icon-circle.arrow-circle {
  width: 48px;
  height: 48px;
  background: white;
  color: var(--navy);
  font-size: 1.5rem;
}
.icon-circle.teal-circle {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: var(--teal);
  color: var(--ink);
  margin-bottom: 24px;
}

@media (max-width: 920px) {
  .hero {
    padding: 78px 0 72px !important;
  }

  .hero > .container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    align-items: start !important;
  }

  .hero > .container > div:first-child {
    max-width: 680px !important;
    min-width: 0 !important;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 9vw, 4.8rem) !important;
    line-height: 0.98 !important;
    max-width: 11ch;
  }

  .hero .lead {
    max-width: 620px !important;
    margin-bottom: 32px !important;
  }

  .hero-bento-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .bento-card {
    min-height: 200px;
    border-radius: 30px;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .hero-bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .bento-card {
    border-radius: 20px;
    padding: 14px;
    min-height: 150px;
  }
  .bento-card h3 {
    font-size: 1.1rem !important;
    line-height: 1.2;
    margin-bottom: 6px !important;
  }
  .bento-card h2 {
    font-size: 2rem !important;
  }
  .bento-badge {
    font-size: 0.65rem;
    padding: 4px 6px;
    white-space: normal;
    line-height: 1.2;
  }
  .bento-link {
    font-size: 0.65rem;
    margin-top: auto;
  }
  .bento-quote {
    padding: 10px;
    border-radius: 12px;
  }
  .bento-quote p {
    font-size: 0.75rem;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .bento-quote span {
    font-size: 0.7rem;
  }
  .icon-circle.arrow-circle {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin-top: auto;
  }
  .icon-circle.teal-circle {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .icon-circle.teal-circle svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 54px 0 52px !important;
  }

  .hero > .container {
    gap: 28px !important;
  }

  .hero > .container > div:first-child {
    width: 100%;
  }

  .hero .pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.25rem) !important;
    line-height: 1 !important;
    max-width: 10ch;
    margin-bottom: 18px !important;
  }

  .hero .lead {
    font-size: 1rem !important;
    line-height: 1.65;
    max-width: 100% !important;
    margin-bottom: 28px !important;
  }

  .hero .button {
    width: 100%;
    justify-content: center;
    padding: 16px 20px !important;
    font-size: 1rem !important;
  }

  .hero-bento-grid {
    gap: 12px;
  }

  .bento-card {
    min-height: 158px;
    border-radius: 22px;
    padding: 16px;
  }

  .bento-card h3 {
    font-size: 1.12rem !important;
  }

  .bento-card h2 {
    font-size: 2.35rem !important;
  }

  .bento-quote {
    padding: 12px;
    border-radius: 16px;
  }

  .bento-quote p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .icon-circle.arrow-circle {
    width: 42px;
    height: 42px;
  }

  .icon-circle.teal-circle {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    margin-bottom: 14px;
  }
}

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

  .bento-card {
    min-height: 132px;
  }
}


.band {
  background: var(--deep-green);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #f8fafc;
}

.home-contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(184, 135, 70, 0.16), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(127, 157, 74, 0.2), transparent 32%),
    linear-gradient(135deg, #fffaf0, #e8efd7);
  border-top: 1px solid rgba(48, 86, 54, 0.12);
  border-bottom: 1px solid rgba(48, 86, 54, 0.12);
}

.home-contact::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(47, 107, 54, 0.16), transparent 68%);
  content: "";
  pointer-events: none;
}

.home-contact .container {
  position: relative;
  z-index: 1;
}

.home-contact .form-shell {
  background: rgba(255, 250, 240, 0.9);
  border-color: rgba(48, 86, 54, 0.14);
  box-shadow: 0 20px 52px rgba(47, 73, 38, 0.1);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.reviews-main {
  padding-top: 56px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.reviews-content {
  display: grid;
  gap: 28px;
}

.reviews-section-head {
  margin-bottom: 0;
}

.reviews-section-head p:last-child {
  max-width: 460px;
}

.reviews-form-column {
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px 28px;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(48, 86, 54, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.review-stars {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.review-quote {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.8;
}

.review-meta {
  margin-top: auto;
  padding-top: 22px;
}

.review-meta h3 {
  font-size: 1.34rem;
}

.review-meta p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.review-form-shell {
  position: sticky;
  top: 104px;
}

.review-form-head {
  margin-bottom: 24px;
}

.review-form-head h2 {
  font-family: Inter, sans-serif;
  font-size: 1.72rem;
}

.review-form-head p:last-child {
  margin-top: 10px;
  color: var(--muted);
}

.visual-panel {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(48, 86, 54, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.visual-panel img {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: min(88%, 560px);
  max-height: 90%;
  object-fit: contain;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.feature .check {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-2);
  border-radius: 14px;
}

.wellness-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: stretch;
}

.wellness-panel {
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(229, 236, 208, 0.82)),
    radial-gradient(circle at 8% 12%, rgba(47, 107, 54, 0.12), transparent 28%);
  border: 1px solid rgba(48, 86, 54, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.wellness-panel h2 {
  max-width: 820px;
}

.wellness-panel .lead {
  max-width: 780px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.wellness-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  color: #fffaf0;
  background: linear-gradient(150deg, var(--deep-green), var(--navy));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.wellness-note h3,
.wellness-note p {
  color: inherit;
}

.wellness-note .button {
  align-self: flex-start;
  color: var(--ink);
  background: var(--gold-2);
  box-shadow: none;
}

.wellness-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.wellness-service {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.76);
  border: 1px solid rgba(48, 86, 54, 0.14);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(47, 73, 38, 0.07);
}

.wellness-service .icon {
  color: var(--deep-green);
  background: var(--teal-2);
}

.wellness-service p {
  font-size: 0.95rem;
}

.affiliate-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  color: #fffaf0;
  background:
    radial-gradient(circle at 92% 18%, rgba(239, 225, 196, 0.18), transparent 28%),
    linear-gradient(135deg, var(--deep-green), #244d2b 62%, var(--navy));
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(47, 73, 38, 0.16);
}

.affiliate-panel h2,
.affiliate-panel h3,
.affiliate-panel p {
  color: inherit;
}

.affiliate-panel .eyebrow {
  color: var(--gold-2);
}

.affiliate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.affiliate-actions .button {
  color: var(--ink);
  background: var(--gold-2);
  box-shadow: none;
}

.affiliate-actions .button.secondary {
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.12);
  border-color: rgba(255, 250, 240, 0.25);
}

.shaklee-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shaklee-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 0 24px 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(229, 236, 208, 0.78), transparent 34%),
    rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(48, 86, 54, 0.14);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(47, 73, 38, 0.08);
}

.shaklee-card-image {
  display: grid;
  min-height: 150px;
  margin: 0 -24px 4px;
  place-items: center;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 250, 240, 0.88), transparent 34%),
    linear-gradient(145deg, #f7eedc, #e8efd7);
  border-bottom: 1px solid rgba(48, 86, 54, 0.12);
}

.shaklee-card-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.shaklee-card .icon {
  color: var(--deep-green);
  background: var(--teal-2);
}

.shaklee-card p {
  font-size: 0.95rem;
}

.shaklee-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

.shaklee-card-actions .card-link {
  margin: 0;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(48, 86, 54, 0.13);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(47, 73, 38, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(47, 107, 54, 0.24);
  box-shadow: 0 24px 58px rgba(47, 73, 38, 0.13);
  transform: translateY(-4px);
}

.product-card .media {
  position: relative;
  display: grid;
  min-height: 238px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 250, 240, 0.92), transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(229, 236, 208, 0.85), transparent 34%),
    linear-gradient(145deg, #f7eedc, #e8efd7 58%, #d6e0bd);
  border-bottom: 1px solid rgba(48, 86, 54, 0.12);
}

.product-card .media::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.8);
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.product-card .media::after {
  position: absolute;
  right: 12%;
  bottom: 18px;
  left: 12%;
  height: 22px;
  background: radial-gradient(ellipse, rgba(32, 58, 42, 0.22), transparent 70%);
  filter: blur(6px);
  content: "";
  pointer-events: none;
}

.product-card img {
  position: relative;
  z-index: 1;
  width: 86%;
  height: 238px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: saturate(0.94) contrast(1.03);
  transition: transform 220ms ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card .content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-card p {
  margin-top: 10px;
}

.product-card .button {
  width: 100%;
  margin-top: auto;
}

.product-card:has([href="/ionic-foot-detox-machine/"]) img {
  width: 94%;
}

.product-card:has([href="/portable-ultrasound-machine/"]) img,
.product-card:has([href="/microcirculation/"]) img,
.product-card:has([href="/digital-compound-microscope-with-imaging-system/"]) img {
  width: 88%;
  padding: 18px 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 92px;
  background: var(--page-hero-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-hero::before, .page-hero::after { display: none; }

.page-hero::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 82px
    );
  opacity: 0.6;
}

.page-hero::after {
  inset: auto -6% -32% auto;
  width: min(44vw, 420px);
  height: min(44vw, 420px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: var(--page-hero-accent);
  transform: rotate(-10deg);
  box-shadow:
    0 30px 60px rgba(4, 16, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero h1,
.page-hero h2,
.page-hero p,
.page-hero li,
.page-hero strong {
  color: #ffffff;
}

.page-hero .lead {
  max-width: 780px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.page-hero .button.secondary {
  color: var(--page-hero-text);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.page-hero .hero-particles {
  opacity: 0.68;
}

.page-hero.page-hero-about {
  --page-hero-bg:
    linear-gradient(135deg, rgba(32, 58, 42, 0.97), rgba(47, 107, 54, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(239, 225, 196, 0.35), rgba(229, 236, 208, 0.2));
}

.page-hero.page-hero-services {
  --page-hero-bg:
    linear-gradient(135deg, rgba(22, 57, 31, 0.98), rgba(63, 97, 72, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(184, 135, 70, 0.28), rgba(245, 240, 223, 0.18));
}

.page-hero.page-hero-legal {
  --page-hero-bg:
    linear-gradient(135deg, rgba(26, 54, 38, 0.98), rgba(47, 107, 54, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(239, 225, 196, 0.34), rgba(127, 157, 74, 0.18));
}

.page-hero.page-hero-equipment,
.page-hero.page-hero-product {
  --page-hero-bg:
    linear-gradient(135deg, rgba(22, 57, 31, 0.98), rgba(47, 107, 54, 0.88));
  --page-hero-accent:
    linear-gradient(135deg, rgba(184, 135, 70, 0.32), rgba(245, 240, 223, 0.18));
}

.page-hero.page-hero-reviews {
  --page-hero-bg:
    linear-gradient(135deg, rgba(47, 73, 38, 0.97), rgba(127, 103, 67, 0.86));
  --page-hero-accent:
    linear-gradient(135deg, rgba(239, 225, 196, 0.28), rgba(229, 236, 208, 0.18));
}

.page-hero.page-hero-contact {
  --page-hero-bg:
    linear-gradient(135deg, rgba(32, 58, 42, 0.98), rgba(95, 116, 93, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(184, 135, 70, 0.32), rgba(245, 240, 223, 0.18));
}

.page-hero.page-hero-admin {
  --page-hero-bg:
    linear-gradient(135deg, rgba(22, 57, 31, 0.98), rgba(47, 107, 54, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(239, 225, 196, 0.3), rgba(127, 157, 74, 0.18));
}

.page-hero.page-hero-account {
  --page-hero-bg:
    linear-gradient(135deg, rgba(32, 58, 42, 0.98), rgba(95, 116, 93, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(184, 135, 70, 0.3), rgba(229, 236, 208, 0.18));
}

.page-hero.page-hero-privacy,
.page-hero.page-hero-terms {
  --page-hero-bg:
    linear-gradient(135deg, rgba(26, 54, 38, 0.98), rgba(63, 97, 72, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(239, 225, 196, 0.26), rgba(127, 157, 74, 0.18));
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.product-image {
  position: relative;
  display: grid;
  min-height: 540px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 250, 240, 0.95), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(229, 236, 208, 0.88), transparent 34%),
    linear-gradient(145deg, #f7eedc, #e8efd7 58%, #d6e0bd);
  border: 1px solid rgba(48, 86, 54, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(47, 73, 38, 0.1);
}

.product-image::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 250, 240, 0.82);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.product-image::after {
  position: absolute;
  right: 18%;
  bottom: 34px;
  left: 18%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(32, 58, 42, 0.2), transparent 72%);
  filter: blur(8px);
  content: "";
  pointer-events: none;
}

.product-image img {
  position: relative;
  z-index: 1;
  width: min(88%, 640px);
  max-height: 500px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: saturate(0.94) contrast(1.03);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
}

.specs {
  display: grid;
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(48, 86, 54, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.9);
}

.specs div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(48, 86, 54, 0.12);
}

.specs dt,
.specs dd {
  margin: 0;
}

.specs dt {
  color: var(--muted);
  font-weight: 800;
}

.notice {
  padding: 18px;
  color: #664400;
  background: var(--gold-2);
  border: 1px solid #f4d393;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
}

.form-shell {
  padding: 30px;
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(48, 86, 54, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  color: var(--ink);
}

form {
  display: grid;
  gap: 14px;
}

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

.admin-list-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.admin-list-media {
  width: 120px;
  height: 90px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 8px;
}

.admin-inline-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 800;
}

select option {
  color: #000000 !important;
  background-color: #ffffff !important;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdf7;
  border: 1px solid rgba(48, 86, 54, 0.18);
  border-radius: 12px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(184, 135, 70, 0.18);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.footer {
  padding: 64px 0 34px;
  color: var(--ink-2);
  background: #f3ecd9;
  border-top: 1px solid rgba(48, 86, 54, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.9fr;
  gap: 40px;
}

.footer h3,
.footer strong {
  color: var(--ink);
}

.footer a,
.footer p {
  color: var(--ink-2);
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(48, 86, 54, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .icon-button {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    z-index: 80;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 104px);
    padding: 12px;
    overflow-y: auto;
    background: #fffaf0;
    border: 1px solid rgba(48, 86, 54, 0.18);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(22, 57, 31, 0.24);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 16px;
    color: var(--ink);
    border-radius: 12px;
    background: transparent;
    border-bottom: 1px solid rgba(48, 86, 54, 0.1);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: rgba(229, 236, 208, 0.8);
    color: var(--navy-2);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions .button.secondary {
    display: none;
  }

  .admin-header .nav {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .admin-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 4px;
    overflow-x: auto;
  }

  .admin-actions {
    margin-left: auto;
  }

  .hero-inner,
  .split,
  .product-detail,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .grid.three,
  .grid.four,
  .wellness-services,
  .shaklee-products,
  .product-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 76px 0;
  }

  .wellness-intro {
    grid-template-columns: 1fr;
  }

  .affiliate-panel {
    grid-template-columns: 1fr;
  }

  .affiliate-actions {
    justify-content: flex-start;
  }

  .page-hero {
    padding: 84px 0 80px;
  }

  .page-hero::after {
    width: min(54vw, 300px);
    height: min(54vw, 300px);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand span {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .nav-actions .button {
    display: none;
  }

  .admin-header .brand span {
    display: inline;
  }

  .admin-actions .button {
    display: inline-flex;
  }

  .hero-inner,
  section {
    padding: 52px 0;
  }

  .card,
  .review-card,
  .form-shell,
  .wellness-note {
    padding: 24px;
  }

  .wellness-panel,
  .affiliate-panel {
    padding: 26px;
  }

  .hero-actions .button,
  .product-card .button,
  .admin-inline-actions .button,
  .admin-inline-actions .button.secondary {
    width: 100%;
  }

  .page-hero {
    padding: 72px 0 66px;
  }

  .page-hero h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 9.2vw, 2.55rem);
    line-height: 1.08;
  }

  .page-hero .lead {
    max-width: 31ch;
    font-size: 1rem;
    line-height: 1.65;
  }

  .page-hero::before {
    opacity: 0.42;
  }

  .page-hero::after {
    right: -18%;
    bottom: -22%;
    width: 240px;
    height: 240px;
    border-radius: 24px;
  }

  .section-head,
  .footer-bottom {
    display: block;
  }

  .wellness-services {
    grid-template-columns: 1fr;
  }

  .shaklee-products {
    grid-template-columns: 1fr;
  }

  .wellness-note .button {
    width: 100%;
  }

  .affiliate-actions,
  .affiliate-actions .button {
    width: 100%;
  }

  .reviews-main {
    padding-top: 42px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
  }

  .review-form-shell {
    position: static;
  }

  .section-head p {
    margin-top: 16px;
  }

  .grid.three,
  .grid.four,
  .product-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 360px;
    border-radius: 18px;
  }

  .product-card .media {
    min-height: 210px;
  }

  .product-card img {
    height: 210px;
  }

  .shaklee-card-image,
  .shaklee-card-image img {
    min-height: 132px;
    height: 132px;
  }

  .footer {
    padding: 46px 0 28px;
  }

  .admin-list-item {
    grid-template-columns: 1fr;
  }

  .admin-list-media {
    width: 100%;
    height: 180px;
  }

  .specs div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav {
    min-height: 70px;
  }

  .brand img,
  .icon-button {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    top: 70px;
    right: 12px;
    left: 12px;
    max-height: calc(100vh - 88px);
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 44px;
    padding: 12px 18px;
  }

  .card,
  .review-card,
  .form-shell,
  .wellness-service {
    padding: 22px;
  }

  .product-card .content {
    padding: 22px;
  }
}

.band h2, .band p, .band .eyebrow {
  color: #f8fafc;
}
.band p.eyebrow {
  color: var(--teal-2);
}
.band .feature p, .band .feature-list p {
  color: #cbd5e1;
}

.band .form-shell {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.band .form-shell label {
  color: #cbd5e1;
}
.band .form-shell input, .band .form-shell select, .band .form-shell textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.band .form-shell select option {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.band .form-shell input::placeholder, .band .form-shell textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.band .form-shell h2, .band .form-shell p {
  color: #fff;
}

.review-card p, .review-card h3 {
  color: var(--ink);
}
.review-quote {
  color: var(--ink-2) !important;
}
