/* Lymphatic Health and Wellness — site styles */

:root {
  --sage-deep: #96a8ac;
  --sage-deep-hover: #7d9398;
  --sage-bg: #4e7176;
  --sage-bg-hover: #3d5f64;
  --sage-light: #c0d2d5;
  --sage-mist: #e4eef0;
  --cream: #F7F4EE;
  --cream-warm: #efeadf;
  --ink: #161616;
  --muted: #6B6B6B;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(22, 22, 22, 0.05);
  --shadow-md: 0 4px 18px rgba(22, 22, 22, 0.08);
  --shadow-lg: 0 18px 44px rgba(22, 22, 22, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --content-max: 1180px;
  --content-narrow: 820px;
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
  html, body { font-size: 18px; }
}

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

a {
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover { color: var(--sage-deep-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.01em; }

p { margin: 0 0 1.2em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container.narrow { max-width: var(--content-narrow); }

section { padding: clamp(3rem, 7vw, 6rem) 0; }
section.tight { padding: clamp(2rem, 5vw, 4rem) 0; }

.section-cream { background: var(--cream); }
.section-sage { background: var(--sage-bg); color: var(--white); }
.section-sage h1, .section-sage h2, .section-sage h3 { color: var(--white); }
.section-sage a { color: var(--white); text-decoration: underline; }
.section-sage-light { background: var(--sage-mist); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--sage-deep);
  color: var(--ink);
}
.btn-primary:hover { background: var(--sage-deep-hover); color: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: var(--white); color: var(--sage-deep); }

.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  padding: 0.5rem 0;
  border-radius: 0;
}
.btn-ghost .arrow { transition: transform 150ms ease; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(22, 22, 22, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.logo img, .logo svg {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .logo img, .logo svg { height: 84px; width: auto; }
}
/* Header / mobile nav: wordmark is in the image — hide duplicate text */
.site-header .logo-text,
.mobile-nav .logo-text { display: none; }
/* Footer: image is dark on dark bg — hide it, show text instead */
.site-footer .logo img,
.site-footer .logo svg { display: none; }
.site-footer .logo-text { display: flex !important; flex-direction: column; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 2px;
}

.nav-primary {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.nav-primary a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
}
.nav-primary a:hover,
.nav-primary a.active {
  color: var(--sage-deep);
}
.nav-primary a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
}

.nav-cta {
  display: none;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .nav-primary { display: flex; }
  .nav-cta { display: inline-flex; }
}
@media (min-width: 1200px) {
  .nav-cta { padding: 0.65rem 1.3rem; font-size: 0.95rem; }
}

/* Mobile menu button */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(22,22,22,0.12);
  border-radius: 999px;
  cursor: pointer;
  padding: 0 12px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  transform: translateY(-100%);
  transition: transform 250ms ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav-links a {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(22,22,22,0.08);
}
.mobile-nav-cta {
  margin-top: 2rem;
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--ink);
  padding: 0.4rem 0.6rem;
  line-height: 1;
}

/* Sticky bottom mobile CTA */
.sticky-book {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 90;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.sticky-book a {
  pointer-events: auto;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 1024px) {
  .sticky-book { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.22) 50%, rgba(0,0,0,0.48) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 6rem;
  max-width: 780px;
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 22px rgba(0,0,0,0.25);
}
.hero p.lede {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 640px;
  text-shadow: 0 1px 14px rgba(0,0,0,0.3);
}
.hero .btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* smaller page hero used on non-home pages */
.page-hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--cream);
  border-bottom: 1px solid rgba(22,22,22,0.06);
}
.page-hero .eyebrow { color: var(--sage-deep); }
.page-hero h1 { margin-bottom: 0.6rem; }
.page-hero p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid.cols-2 { grid-template-columns: 1fr; }
.grid.cols-3 { grid-template-columns: 1fr; }
.grid.cols-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 680px) {
  .grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(22,22,22,0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sage-mist);
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 24px; height: 24px; }

/* Benefit card (more prominent) */
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(22,22,22,0.05);
}

/* Audience card (image + caption) */
.audience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sage-light);
  color: var(--white);
}
.audience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.audience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.7) 100%);
}
.audience-card .caption {
  position: absolute;
  z-index: 2;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.audience-card .tag {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.92);
  color: var(--sage-deep);
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* Team strip */
.team-strip {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .team-strip { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
  text-align: center;
}
.team-card .portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.team-card h3 { margin-bottom: 0.2rem; }
.team-card .role {
  color: var(--sage-deep);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

/* ---------- Treatments menu ---------- */
.treatment {
  border-top: 1px solid rgba(22,22,22,0.1);
  padding: 2rem 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.treatment:last-child { border-bottom: 1px solid rgba(22,22,22,0.1); }
@media (min-width: 820px) {
  .treatment {
    grid-template-columns: 1.2fr 2fr auto;
    align-items: center;
    gap: 2.5rem;
  }
}
.treatment h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}
.treatment .meta {
  color: var(--sage-deep);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.treatment p { color: var(--muted); margin: 0.75rem 0 0; }
.treatment .price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ink);
  justify-self: start;
}
@media (min-width: 820px) {
  .treatment .price { justify-self: end; }
}

.treatments-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ---------- Testimonial cards ---------- */
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(88, 111, 99, 0.12);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--sage-light);
  line-height: 0.8;
  position: absolute;
  top: 1rem;
  left: 1.6rem;
  opacity: 0.7;
}
.testimonial-body {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  padding-top: 1.2rem;
}
.testimonial-body.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.testimonial-body.clamped::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50px;
  background: linear-gradient(180deg, rgba(247,244,238,0) 0%, var(--cream) 100%);
}
.testimonial-body.expanded { display: block; }
.testimonial .attribution {
  margin-top: 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--sage-deep);
}
.testimonial .read-more {
  margin-top: 1rem;
  background: transparent;
  border: none;
  color: var(--sage-deep);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0;
}
.testimonial .read-more:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid rgba(22,22,22,0.1);
  padding: 0.3rem 0;
}
.faq-item:first-child { border-top: 1px solid rgba(22,22,22,0.1); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
  text-align: left;
  line-height: 1.3;
}
.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--sage-mist);
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 200ms ease, background 200ms ease;
}
.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  background: var(--sage-bg);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

/* ---------- Gallery ---------- */
.gallery {
  columns: 1;
  column-gap: 1rem;
}
@media (min-width: 640px) { .gallery { columns: 2; column-gap: 1rem; } }
@media (min-width: 1024px) { .gallery { columns: 3; column-gap: 1.2rem; } }
.gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
}

/* ---------- Comparison table ---------- */
.compare-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(22,22,22,0.07);
}
.compare-table thead th {
  background: var(--sage-bg);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
}
.compare-table tbody th {
  background: var(--cream);
  font-weight: 600;
  color: var(--ink);
  width: 30%;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Contact form ---------- */
.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(22,22,22,0.14);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(88,111,99,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.checkbox input { margin-top: 4px; }

.honeypot {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  display: none;
}
.form-status.success {
  background: var(--sage-mist);
  color: var(--sage-deep);
  display: block;
}
.form-status.error {
  background: #fde4e4;
  color: #8a2626;
  display: block;
}

/* ---------- Contact info block ---------- */
.contact-info {
  display: grid;
  gap: 1rem;
}
.contact-info .row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.contact-info .row svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--sage-deep);
  margin-top: 3px;
}
.contact-info .row strong {
  display: block;
  color: var(--ink);
}
.contact-info .row a,
.contact-info .row span {
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfcfcf;
  padding: 4rem 0 2rem;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a {
  color: #cfcfcf;
  display: inline-block;
  padding: 0.2rem 0;
}
.site-footer a:hover { color: var(--white); }
.site-footer .btn {
  padding: 0.9rem 1.6rem;
}
.site-footer .btn-outline-light { color: var(--white); border-color: var(--white); }
.site-footer .btn-outline-light:hover { background: var(--white); color: var(--sage-deep); }
.site-footer .btn-primary { color: var(--ink); }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand p { color: #9a9a9a; max-width: 320px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-cta {
  background: var(--sage-bg);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-cta h3 {
  color: var(--white);
  margin: 0;
  max-width: 520px;
}
.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: #9a9a9a;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}
.footer-legal p { margin: 0; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-prose { max-width: 720px; }
.max-narrow { max-width: 640px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.25rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }

.section-header { margin-bottom: 2.5rem; max-width: 720px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { color: var(--muted); font-size: 1.08rem; }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.pill-list li {
  background: var(--sage-mist);
  color: var(--sage-deep);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.check-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--ink);
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--sage-mist);
  color: var(--sage-deep);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}

.two-col {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .two-col.reverse > div:first-child { order: 2; }
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.note {
  background: var(--cream);
  border-left: 3px solid var(--sage-deep);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 2px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
