:root {
  --bg: #fffaf8;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #f3fcfb;
  --surface-tint: #eefaf7;
  --surface-warm: #fff4ea;
  --text: #17343e;
  --muted: #5d7280;
  --teal: #25c5c7;
  --teal-deep: #0f7280;
  --green: #c7f6dc;
  --green-deep: #56c3b0;
  --turquoise: #74e3d7;
  --mint: #cdf7dd;
  --coral: #ff8d86;
  --peach: #ffc3a4;
  --pink: #ff78a6;
  --pink-soft: #ffd9e8;
  --yellow: #ffe48c;
  --yellow-soft: #fff3b9;
  --line: rgba(23, 52, 62, 0.1);
  --shadow-soft: 0 22px 48px rgba(42, 138, 146, 0.14);
  --shadow-card: 0 20px 40px rgba(255, 120, 166, 0.14);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(116, 227, 215, 0.32), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 120, 166, 0.18), transparent 23%),
    radial-gradient(circle at 22% 32%, rgba(255, 228, 140, 0.2), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fff8fb 32%, #f2fffb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 60%);
  opacity: 0.35;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 1.5rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.25rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--coral), var(--pink));
  box-shadow: 0 0 0 6px rgba(255, 141, 134, 0.14);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.hero-grid > *,
.split-layout > *,
.menu-grid > *,
.benefit-grid > *,
.review-grid > *,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}

.section-heading h2,
.contact-card h2,
.cta-card h2,
.site-footer h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p:last-child,
.about-copy p,
.contact-card p,
.site-footer p,
.cta-card p {
  color: var(--muted);
}

.demo-banner {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, var(--teal-deep), var(--teal), var(--pink), #ff9d72);
  color: #ffffff;
}

.demo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.demo-banner p,
.demo-banner a {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.demo-banner a {
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.demo-banner a:hover,
.demo-banner a:focus-visible {
  opacity: 1;
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line);
  box-shadow: 0 16px 32px rgba(20, 52, 54, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--teal), var(--pink), var(--coral));
  box-shadow: var(--shadow-card);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.84rem;
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  padding: 0.75rem;
  border: 0;
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  color: var(--muted);
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: linear-gradient(135deg, rgba(116, 227, 215, 0.18), rgba(255, 228, 140, 0.22));
  color: var(--teal-deep);
  outline: none;
}

.header-call {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 195, 164, 0.4), rgba(255, 217, 232, 0.65));
  color: var(--teal-deep);
  font-weight: 800;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-call:hover,
.header-call:focus-visible {
  background: linear-gradient(135deg, rgba(255, 195, 164, 0.55), rgba(255, 217, 232, 0.82));
  transform: translateY(-1px);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(255, 120, 166, 0.2);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: #ffffff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(37, 197, 199, 0.18);
  color: var(--teal-deep);
}

.button-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.button-light:hover,
.button-light:focus-visible {
  box-shadow: 0 18px 28px rgba(255, 255, 255, 0.16);
}

.contact-card-primary .button-primary,
.cta-card .button-primary {
  background: #ffffff;
  color: #d85a87;
}

.contact-card-primary .button-primary:hover,
.contact-card-primary .button-primary:focus-visible,
.cta-card .button-primary:hover,
.cta-card .button-primary:focus-visible {
  box-shadow: 0 18px 28px rgba(255, 255, 255, 0.2);
}

.hero-section {
  position: relative;
  padding: 2rem 0 5rem;
}

.hero-frame {
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(37, 197, 199, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 228, 140, 0.34), transparent 17%),
    radial-gradient(circle at 84% 16%, rgba(255, 120, 166, 0.22), transparent 22%),
    radial-gradient(circle at 88% 78%, rgba(116, 227, 215, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 250, 0.9), rgba(237, 255, 250, 0.88));
  box-shadow: var(--shadow-soft);
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-frame::before {
  width: 12rem;
  height: 12rem;
  top: -4rem;
  right: -1rem;
  background: radial-gradient(circle, rgba(255, 120, 166, 0.22), transparent 72%);
}

.hero-frame::after {
  width: 10rem;
  height: 10rem;
  bottom: -3rem;
  left: -2rem;
  background: radial-gradient(circle, rgba(255, 228, 140, 0.22), transparent 72%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 0.5rem;
}

.hero-copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(3rem, 10vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-text {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-details {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.45rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 52, 62, 0.09);
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-details a {
  color: var(--teal-deep);
  font-weight: 800;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  align-content: start;
  max-width: 30rem;
  margin-inline: auto;
  padding: 0.25rem;
}

.showcase-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.showcase-main {
  padding: 1.9rem;
  background:
    radial-gradient(circle at top right, rgba(255, 120, 166, 0.18), transparent 24%),
    radial-gradient(circle at 16% 12%, rgba(255, 228, 140, 0.22), transparent 16%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 255, 250, 0.92), rgba(255, 245, 250, 0.9));
}

.showcase-main h2 {
  margin: 1rem 0 0.75rem;
  font-size: 2rem;
  line-height: 1.05;
}

.showcase-main p,
.showcase-accent span {
  margin: 0;
  color: var(--muted);
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 228, 140, 0.62), rgba(255, 195, 164, 0.42));
  color: #8a4f2f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.showcase-meta span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.showcase-accent {
  padding: 1.15rem;
  width: min(100%, 18rem);
  justify-self: start;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 185, 0.82), rgba(255, 216, 232, 0.7));
}

.showcase-accent p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-accent strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.split-layout,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.about-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 228, 140, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 243, 248, 0.4));
}

.about-copy {
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 195, 164, 0.16), transparent 22%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.about-points span,
.menu-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--teal-deep);
  font-weight: 700;
}

.about-points span:nth-child(1) {
  background: linear-gradient(135deg, rgba(116, 227, 215, 0.32), rgba(255, 255, 255, 0.94));
}

.about-points span:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 217, 232, 0.74), rgba(255, 255, 255, 0.95));
}

.about-points span:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 228, 140, 0.72), rgba(255, 255, 255, 0.95));
}

.about-points span:nth-child(4) {
  background: linear-gradient(135deg, rgba(205, 247, 221, 0.82), rgba(255, 255, 255, 0.95));
}

.menu-section {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(255, 217, 232, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 246, 250, 0.38));
}

.menu-grid,
.benefit-grid,
.review-grid {
  display: grid;
  gap: 1.15rem;
}

.menu-card,
.benefit-card,
.review-card,
.contact-card,
.cta-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid rgba(37, 197, 199, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.menu-card,
.benefit-card,
.review-card,
.contact-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.menu-card:hover,
.menu-card:focus-within,
.benefit-card:hover,
.benefit-card:focus-within,
.review-card:hover,
.review-card:focus-within,
.contact-card:hover,
.contact-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 120, 166, 0.2);
  box-shadow: 0 24px 42px rgba(255, 120, 166, 0.14);
}

.menu-card {
  --menu-accent: rgba(116, 227, 215, 0.22);
  --menu-accent-alt: rgba(255, 217, 232, 0.34);
  --menu-icon-start: rgba(116, 227, 215, 0.24);
  --menu-icon-end: rgba(255, 228, 140, 0.38);
  --menu-badge-bg: rgba(255, 255, 255, 0.86);
  --menu-badge-text: var(--teal-deep);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, var(--menu-accent), transparent 28%),
    radial-gradient(circle at bottom left, var(--menu-accent-alt), transparent 24%),
    rgba(255, 255, 255, 0.94);
}

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--menu-badge-bg);
  color: var(--menu-badge-text);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.menu-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--menu-icon-start), var(--menu-icon-end));
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.menu-card-shakes {
  --menu-accent: rgba(255, 141, 134, 0.24);
  --menu-accent-alt: rgba(255, 217, 232, 0.3);
  --menu-icon-start: rgba(255, 195, 164, 0.4);
  --menu-icon-end: rgba(255, 120, 166, 0.3);
}

.menu-card-teas {
  --menu-accent: rgba(116, 227, 215, 0.28);
  --menu-accent-alt: rgba(255, 228, 140, 0.22);
  --menu-icon-start: rgba(116, 227, 215, 0.34);
  --menu-icon-end: rgba(205, 247, 221, 0.4);
}

.menu-card-coffee {
  --menu-accent: rgba(255, 195, 164, 0.26);
  --menu-accent-alt: rgba(255, 228, 140, 0.22);
  --menu-icon-start: rgba(255, 228, 140, 0.4);
  --menu-icon-end: rgba(255, 195, 164, 0.42);
}

.menu-card-bowls {
  --menu-accent: rgba(255, 120, 166, 0.18);
  --menu-accent-alt: rgba(116, 227, 215, 0.22);
  --menu-icon-start: rgba(255, 217, 232, 0.65);
  --menu-icon-end: rgba(116, 227, 215, 0.3);
}

.menu-card-smoothies {
  --menu-accent: rgba(255, 228, 140, 0.3);
  --menu-accent-alt: rgba(255, 195, 164, 0.22);
  --menu-icon-start: rgba(255, 228, 140, 0.46);
  --menu-icon-end: rgba(116, 227, 215, 0.32);
}

.menu-card-waffles {
  --menu-accent: rgba(255, 195, 164, 0.3);
  --menu-accent-alt: rgba(255, 228, 140, 0.22);
  --menu-icon-start: rgba(255, 195, 164, 0.48);
  --menu-icon-end: rgba(255, 228, 140, 0.42);
}

.menu-card-hydration {
  --menu-accent: rgba(116, 227, 215, 0.26);
  --menu-accent-alt: rgba(205, 247, 221, 0.32);
  --menu-icon-start: rgba(116, 227, 215, 0.34);
  --menu-icon-end: rgba(205, 247, 221, 0.5);
}

.menu-card-shots {
  --menu-accent: rgba(255, 120, 166, 0.22);
  --menu-accent-alt: rgba(255, 141, 134, 0.22);
  --menu-icon-start: rgba(255, 120, 166, 0.36);
  --menu-icon-end: rgba(255, 195, 164, 0.4);
}

.menu-card h3,
.benefit-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.menu-card p,
.benefit-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

.menu-benefit {
  display: block;
  margin-top: auto;
  color: var(--teal-deep);
  font-size: 0.94rem;
  line-height: 1.5;
}

.menu-note {
  width: fit-content;
  margin: 1.5rem auto 0;
  background: linear-gradient(135deg, rgba(255, 243, 185, 0.9), rgba(205, 247, 221, 0.76), rgba(255, 217, 232, 0.7));
  text-align: center;
  white-space: normal;
}

.benefits-section {
  background:
    radial-gradient(circle at top left, rgba(116, 227, 215, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 228, 140, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 245, 250, 0.4), rgba(255, 255, 255, 0));
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 15.5rem;
  padding: 4.4rem 1.5rem 1.85rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 255, 251, 0.9)),
    #ffffff;
}

.benefit-number {
  position: absolute;
  top: 1.3rem;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(37, 197, 199, 0.1);
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.benefit-card:nth-child(1) .benefit-number {
  background: rgba(116, 227, 215, 0.2);
}

.benefit-card:nth-child(2) .benefit-number {
  background: rgba(255, 217, 232, 0.68);
  color: #cd4b7b;
}

.benefit-card:nth-child(3) .benefit-number {
  background: rgba(255, 228, 140, 0.6);
  color: #8a6418;
}

.benefit-card:nth-child(4) .benefit-number {
  background: rgba(205, 247, 221, 0.82);
}

.benefit-card h3 {
  max-width: 12rem;
}

.benefit-card p {
  max-width: 14rem;
}

.community-section {
  padding-top: 0.5rem;
  padding-bottom: 5rem;
}

.community-card {
  position: relative;
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 228, 140, 0.28), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 120, 166, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 255, 251, 0.92), rgba(255, 245, 250, 0.92));
  box-shadow: var(--shadow-soft);
}

.community-card::before {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(116, 227, 215, 0.18), transparent 70%);
}

.community-copy {
  position: relative;
  z-index: 1;
}

.community-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.community-copy p:last-child {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.community-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.community-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 24px rgba(23, 52, 62, 0.08);
  font-weight: 800;
}

.community-pill:nth-child(1) {
  background: linear-gradient(135deg, rgba(116, 227, 215, 0.34), rgba(255, 255, 255, 0.92));
}

.community-pill:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 217, 232, 0.82), rgba(255, 255, 255, 0.94));
}

.community-pill:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 228, 140, 0.76), rgba(255, 255, 255, 0.94));
}

.community-pill:nth-child(4) {
  background: linear-gradient(135deg, rgba(205, 247, 221, 0.8), rgba(255, 255, 255, 0.94));
}

.reviews-section {
  position: relative;
}

.review-card {
  background:
    radial-gradient(circle at top right, rgba(255, 120, 166, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(116, 227, 215, 0.14), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 255, 251, 0.84));
}

.review-card strong {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal-deep);
}

.review-card span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  background:
    radial-gradient(circle at top left, rgba(116, 227, 215, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 228, 140, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 255, 251, 0.4));
}

.contact-card-primary {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(135deg, var(--teal-deep), var(--teal), var(--coral));
  color: #ffffff;
}

.contact-card-primary p,
.contact-card-primary .phone-link {
  color: rgba(255, 255, 255, 0.88);
}

.contact-card-primary .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card-primary .eyebrow::before {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.location-address {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.phone-link,
.footer-phone {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--teal-deep);
  font-weight: 800;
}

.contact-card-primary .button-secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.contact-card-primary .button-secondary:hover,
.contact-card-primary .button-secondary:focus-visible {
  box-shadow: 0 18px 28px rgba(255, 255, 255, 0.16);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-list span {
  color: var(--muted);
}

.hours-copy {
  margin-top: 1rem;
}

.cta-section {
  padding-top: 1rem;
  padding-bottom: 4.75rem;
}

.cta-card {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 34%),
    radial-gradient(circle at 15% 30%, rgba(255, 228, 140, 0.18), transparent 20%),
    linear-gradient(135deg, var(--teal-deep), var(--teal), var(--pink), var(--coral));
  color: #ffffff;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-card .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.cta-card .eyebrow::before {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14);
}

.cta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.cta-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
}

.site-footer {
  padding: 0 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 228, 140, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 248, 251, 0.42));
}

.footer-grid {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.85rem;
}

.site-footer h2 {
  font-size: 1.55rem;
  line-height: 1.15;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 0.65rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-footer .footer-phone {
  color: var(--teal-deep);
}

.site-footer a:hover,
.site-footer a:focus-visible,
.hero-details a:hover,
.hero-details a:focus-visible,
.phone-link:hover,
.phone-link:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible {
  color: var(--teal-deep);
  outline: none;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 699px) {
  body::before {
    background-size: 26px 26px;
    opacity: 0.24;
  }

  .section {
    padding: 3.75rem 0;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .section-heading h2,
  .contact-card h2,
  .cta-card h2,
  .site-footer h2 {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
    line-height: 1.12;
  }

  .section-heading p:last-child,
  .about-copy p,
  .contact-card p,
  .site-footer p,
  .cta-card p,
  .community-copy p:last-child,
  .menu-card p,
  .benefit-card p,
  .review-card p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .demo-banner-inner {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    padding: 0.65rem 0;
  }

  .demo-banner p,
  .demo-banner a {
    font-size: 0.82rem;
  }

  .header-inner {
    min-height: 76px;
    gap: 0.75rem;
  }

  .brand {
    min-width: 0;
    gap: 0.75rem;
    flex: 1 1 auto;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 18px;
    flex-shrink: 0;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .brand-text span {
    font-size: 0.78rem;
  }

  .menu-toggle {
    width: 3.1rem;
    height: 3.1rem;
    flex-shrink: 0;
  }

  .site-nav {
    top: calc(100% + 0.5rem);
    right: 0.75rem;
    left: 0.75rem;
    padding: 0.55rem;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero-section {
    padding: 1.35rem 0 3.75rem;
  }

  .hero-frame {
    padding: 1.15rem;
    border-radius: 28px;
  }

  .hero-frame::before,
  .hero-frame::after,
  .community-card::before {
    content: none;
  }

  .hero-grid {
    gap: 1.6rem;
  }

  .hero-copy {
    padding: 0.25rem;
  }

  .hero-copy h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    line-height: 0.98;
    max-width: 8ch;
  }

  .hero-text {
    max-width: none;
    font-size: 1rem;
    line-height: 1.66;
  }

  .hero-actions,
  .cta-actions,
  .contact-actions {
    gap: 0.75rem;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .hero-actions .button,
  .cta-actions .button,
  .contact-actions .button {
    width: 100%;
    flex: 1 1 100%;
  }

  .button {
    min-height: 3.4rem;
    padding: 0.85rem 1.15rem;
  }

  .hero-details {
    gap: 0.45rem;
    margin-top: 1.15rem;
    padding-top: 0.9rem;
    font-size: 0.95rem;
  }

  .hero-visual {
    max-width: none;
    gap: 0.85rem;
    padding: 0;
  }

  .showcase-main,
  .showcase-accent,
  .about-copy,
  .menu-card,
  .benefit-card,
  .review-card,
  .contact-card,
  .cta-card,
  .community-card {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .showcase-main h2 {
    font-size: 1.65rem;
  }

  .showcase-meta {
    gap: 0.5rem;
  }

  .showcase-meta span,
  .showcase-tag,
  .card-badge,
  .menu-note,
  .community-pill,
  .cta-pills span,
  .about-points span {
    font-size: 0.78rem;
  }

  .showcase-accent {
    width: 100%;
    justify-self: stretch;
  }

  .about-points,
  .community-pills,
  .cta-pills {
    gap: 0.6rem;
  }

  .menu-card {
    gap: 0.8rem;
  }

  .menu-card-top {
    gap: 0.8rem;
  }

  .card-badge {
    max-width: calc(100% - 3.35rem);
    padding: 0.38rem 0.65rem;
  }

  .menu-icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 16px;
    flex-shrink: 0;
  }

  .menu-card h3,
  .benefit-card h3 {
    font-size: 1.22rem;
  }

  .menu-benefit {
    font-size: 0.9rem;
  }

  .menu-note {
    width: 100%;
    max-width: none;
    margin-top: 1.25rem;
  }

  .benefit-card {
    min-height: 0;
    padding-top: 4rem;
    gap: 0.75rem;
  }

  .benefit-card h3,
  .benefit-card p {
    max-width: none;
  }

  .community-section {
    padding-top: 0.25rem;
    padding-bottom: 3.75rem;
  }

  .community-card {
    gap: 1.1rem;
  }

  .community-copy h2 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .review-card strong {
    margin-top: 0.9rem;
  }

  .hours-list li {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .cta-section {
    padding-top: 0.25rem;
    padding-bottom: 3.75rem;
  }

  .footer-grid {
    gap: 1.25rem;
    padding: 1.6rem 0;
  }

  .footer-bottom {
    padding-top: 0.85rem;
  }

  .footer-bottom p {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section {
    padding: 3.4rem 0;
  }

  .header-inner {
    min-height: 72px;
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text span {
    font-size: 0.75rem;
  }

  .site-nav {
    right: 0.625rem;
    left: 0.625rem;
  }

  .hero-section {
    padding-top: 1.15rem;
    padding-bottom: 3.35rem;
  }

  .hero-frame {
    padding: 1rem;
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 11.5vw, 2.9rem);
  }

  .hero-text {
    font-size: 0.97rem;
  }

  .showcase-main,
  .showcase-accent,
  .about-copy,
  .menu-card,
  .benefit-card,
  .review-card,
  .contact-card,
  .cta-card,
  .community-card {
    padding: 1.1rem;
    border-radius: 22px;
  }

  .showcase-main h2 {
    font-size: 1.42rem;
  }

  .showcase-tag,
  .showcase-meta span,
  .card-badge,
  .menu-note,
  .community-pill,
  .cta-pills span,
  .about-points span {
    font-size: 0.75rem;
  }

  .menu-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .benefit-card {
    padding-top: 3.7rem;
  }

  .hours-list li {
    flex-direction: column;
    gap: 0.2rem;
  }

  .demo-banner-inner {
    align-items: flex-start;
  }
}

@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .hero-section {
    padding-top: 2.3rem;
  }

  .hero-frame {
    padding: 1.75rem;
  }

  .hero-details {
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.75rem 1.25rem;
  }

  .split-layout,
  .contact-grid,
  .footer-grid,
  .cta-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid,
  .benefit-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-banner-inner {
    padding: 0.75rem 0;
  }
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }

  .header-call {
    display: inline-flex;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 0.8rem 1rem;
  }

  .hero-frame {
    padding: 2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.84fr);
    gap: 3rem;
  }

  .hero-copy {
    padding: 0.75rem 0.5rem 0.75rem 0.75rem;
  }

  .hero-visual {
    max-width: none;
    padding: 0.25rem 0;
  }

  .showcase-accent {
    justify-self: end;
  }

  .about-copy {
    padding: 2rem;
  }

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

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

  .community-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    align-items: center;
  }

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

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@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;
  }
}
