/* ==========================================================================
   Divine Wellness — Shared Components
   Buttons, links, chips, cards, forms, announcement bar, site nav, footer.
   Loads after base.css. Component markup for nav/footer lives in
   js/components.js (<site-nav> / <site-footer>).
   ========================================================================== */

/* =========================== Buttons =========================== */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background var(--hover-fast), color var(--hover-fast),
              border-color var(--hover-fast), transform var(--hover-fast);
}

.btn--sm { font-size: var(--fs-ui); padding: 14px 26px; }
.btn--xs { font-size: 14px; padding: 12px 24px; }

/* Dark ink pill — the default CTA on light surfaces */
.btn--primary {
  background: var(--ink);
  color: var(--cream);
}

/* Add to hero-level CTAs that float above the page */
.btn--raised { box-shadow: var(--shadow-btn); }
.btn--primary:hover {
  background: var(--coral);
  color: var(--cream);
  transform: translateY(-2px);
}

/* Frosted white pill with hairline — hero secondary CTA */
.btn--frost {
  background: var(--wash-white);
  color: var(--ink);
  border: 1px solid rgba(22, 58, 67, 0.18);
}
.btn--frost:hover { color: var(--ink); border-color: var(--coral); transform: translateY(-2px); }

/* Transparent pill with hairline border on light surfaces */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
}
.btn--outline:hover { color: var(--ink); border-color: var(--coral); }

/* Cream pill on dark surfaces */
.btn--cream {
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
}
.btn--cream:hover { background: var(--coral); color: var(--cream-bright); transform: translateY(-2px); }
.btn--cream.btn--hover-gold:hover { background: var(--gold); color: var(--ink); }

/* Gold pill — event/announcement CTAs on dark panels */
.btn--gold {
  background: var(--gold);
  color: var(--plum-deep);
  font-weight: 800;
}
.btn--gold:hover { background: var(--cream); color: var(--plum-deep); transform: translateY(-2px); }

/* Mauve pill — gemstone sections */
.btn--mauve {
  background: var(--mauve);
  color: var(--plum-deep);
  font-weight: 800;
}
.btn--mauve:hover { background: var(--on-dark-pink); color: var(--plum-deep); transform: translateY(-2px); }

/* Transparent pill on dark surfaces; hover border takes the local --accent */
.btn--outline-light {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid rgba(220, 238, 244, 0.35);
}
.btn--outline-light:hover { color: var(--on-dark); border-color: var(--accent); }

/* =========================== Text links =========================== */

/* Bold arrow link, e.g. "Explore Gemstones →". Set color via .accent-* on
   the link (or a parent). On dark cards add .link-arrow--to-light so hover
   brightens instead of darkening. */
.link-arrow {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
  font-size: var(--fs-ui);
  border-bottom: 2px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding-bottom: 3px;
  transition: color var(--hover-fast), border-color var(--hover-fast);
}
.link-arrow:hover { color: var(--ink); border-color: var(--ink); }
.link-arrow--to-light:hover { color: var(--cream); border-color: var(--cream); }

/* Small inline text link with soft underline */
.link-quiet {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  transition: color var(--hover-fast);
}
.link-quiet:hover { color: var(--ink); }
.link-quiet--to-light:hover { color: var(--cream); }

/* =========================== Chips & badges =========================== */

.chip {
  display: inline-block;
  background: rgba(22, 58, 67, 0.06);
  border: 1px solid var(--hairline);
  color: var(--ink-2);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

/* Chip on dark surfaces (gemstone feature tags) */
.chip--dark {
  background: rgba(220, 238, 244, 0.1);
  border: 1px solid rgba(220, 238, 244, 0.16);
  color: var(--on-dark-soft);
  font-size: var(--fs-micro);
  padding: 8px 16px;
  transition: background var(--hover-slow), color var(--hover-slow);
}
.chip--dark:hover { background: rgba(199, 138, 178, 0.22); color: var(--on-dark-pink); }

/* Floating pill badge over photos */
.badge-pill {
  background: rgba(22, 58, 67, 0.88);
  backdrop-filter: blur(6px);
  color: var(--cream);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  font-size: var(--fs-micro);
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Dot-prefixed inline fact (hero address lines, announcement bar items) */
.dot-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.dot-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

/* =========================== Cards =========================== */

/* Frosted light card on tinted sections */
.card {
  background: var(--wash-white-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-md);
  box-shadow: var(--shadow-card-soft);
}

/* Dark gradient feature card (background set per instance) */
.card-feature {
  border-radius: var(--r-card-xl);
  padding: clamp(28px, 3.6vw, 44px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card-lg);
  transition: transform var(--hover-card), box-shadow var(--hover-card);
}
.card-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 38px 66px -32px rgba(22, 58, 67, 0.7);
}
.card-feature--tilt-l:hover { transform: translateY(-5px) rotate(-0.3deg); }
.card-feature--tilt-r:hover { transform: translateY(-5px) rotate(0.3deg); }

.card-feature__img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: 0 18px 32px -14px rgba(0, 0, 0, 0.5);
  margin-bottom: 22px;
}

/* Tinted card with photo header (spa services, gemstone categories).
   Compose with a .tint-grad--* fill; tag/link colors follow --accent. */
.photo-card {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--hover-slow), box-shadow var(--hover-slow);
}
.photo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-lg); }
.photo-card__media { height: 200px; overflow: hidden; }
.photo-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-card:hover .photo-card__media img { transform: scale(1.04); }
.photo-card__body {
  padding: 26px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.photo-card__tag {
  margin: 0 0 8px 0;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: var(--track-label);
  color: var(--accent);
}
.photo-card h3 {
  margin: 0 0 10px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
}
.photo-card__desc {
  margin: 0 0 18px 0;
  font-size: var(--fs-ui);
  line-height: 1.65;
  color: var(--body);
  flex: 1;
  text-wrap: pretty;
}
.photo-card .link-arrow { align-self: flex-start; font-size: var(--fs-small); }

/* Dark quote card */
.quote-card {
  background: var(--ink);
  border-radius: var(--r-card-lg);
  box-shadow: 0 34px 60px -32px rgba(22, 58, 67, 0.65);
}
.quote-card blockquote {
  margin: 0 0 14px 0;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.55;
  color: var(--on-dark);
}
.quote-card figcaption {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
}

/* Centered testimonial variant with the slight tilt-to-straight hover */
.quote-card--tilt {
  margin: 0 auto;
  max-width: 640px;
  padding: clamp(28px, 4vw, 44px);
  transform: rotate(-0.4deg);
  transition: transform 0.35s ease;
}
.quote-card--tilt:hover { transform: rotate(0deg); }
.quote-card--tilt blockquote { font-size: clamp(19px, 2vw, 23px); }

/* =========================== FAQ accordion =========================== */

/* Wrap items in [data-faq-group]; main.js wires the toggles. Mark the
   default-open item with .is-open in the HTML. */
.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card-soft);
}
.faq-item__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-sans);
}
.faq-item__q {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.faq-item__sign {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(22, 58, 67, 0.08);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s ease;
}
.faq-item__sign::before { content: "+"; }
.faq-item.is-open .faq-item__sign { background: var(--ink); color: var(--cream); }
.faq-item.is-open .faq-item__sign::before { content: "\2212"; }
.faq-item__a { display: none; padding: 0 24px 22px 24px; }
.faq-item.is-open .faq-item__a { display: block; }
.faq-item__a p {
  margin: 0 0 12px 0;
  font-size: var(--fs-body-sm);
  line-height: var(--lh-loose);
  color: var(--body);
  text-wrap: pretty;
}
.faq-item__a p:last-child { margin-bottom: 0; }

/* =========================== Forms =========================== */

.input-pill {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--hairline-mid);
  border-radius: var(--r-pill);
  padding: 15px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.input-pill:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(227, 122, 109, 0.15);
  outline: none;
}
.input-pill--error { border-color: var(--coral); }

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.subscribe-form .input-pill { flex: 1 1 280px; max-width: 380px; }
.subscribe-form .btn { font-weight: 800; padding: 15px 30px; }

.subscribe-success {
  margin: 0 0 14px 0;
  background: rgba(199, 216, 201, 0.6);
  display: inline-block;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
}

/* Inline validation message (used with `novalidate` forms — see main.js).
   Height is reserved; text becomes visible on error. */
.subscribe-error {
  margin: 0;
  min-height: 20px;
  flex-basis: 100%;
  font-size: var(--fs-small);
  font-weight: 700;
  color: transparent;
}
.subscribe-error.is-visible { color: var(--coral-mist); }

/* =========================== Breadcrumb =========================== */

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb__sep { color: var(--blue-mist); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* On dark heroes */
.breadcrumb--dark ol { color: var(--on-dark-faint); }
.breadcrumb--dark a { color: var(--on-dark-faint); }
.breadcrumb--dark a:hover { color: var(--on-dark-pink); }
.breadcrumb--dark .breadcrumb__sep { color: var(--blue-slate); }
.breadcrumb--dark [aria-current="page"] { color: var(--on-dark-pink); }

/* =========================== Page hero =========================== */

/* Full-bleed gradient hero pulled up behind the sticky nav pill.
   Pages override padding-top when the prototype differs. */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--tint-blue) 0%, var(--tint-green) 42%, var(--cream) 100%);
  margin-top: -74px;
  padding: calc(clamp(48px, 7vw, 88px) + 84px) var(--gutter) clamp(56px, 7vw, 90px) var(--gutter);
}

/* =========================== Trust strip =========================== */

.trust {
  background: var(--ink);
  padding: 22px var(--gutter);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark-soft);
  letter-spacing: 0.02em;
  transition: color var(--hover-slow), transform var(--hover-slow);
}
.trust__item:hover { color: var(--cream); transform: translateY(-1px); }
.trust__gem {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  display: inline-block;
  border-radius: 2px;
  background: var(--accent);
}

/* =========================== Info block =========================== */

.info-block {
  background: var(--wash-white);
  border: 1px solid rgba(22, 58, 67, 0.07);
  border-radius: var(--r-card-sm);
  padding: 18px 20px;
}
.info-block__label {
  margin: 0 0 6px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: var(--track-label);
  color: var(--accent);
}
.info-block__value {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink-2);
  white-space: pre-line;
}

/* =========================== Tinted gradient fills =========================== */

.tint-grad--blue { background: linear-gradient(160deg, var(--tint-blue), var(--tint-aqua)); }
.tint-grad--sand { background: linear-gradient(160deg, var(--cream), var(--cream-warm)); }
.tint-grad--sage { background: linear-gradient(160deg, var(--tint-sage), var(--tint-sage-soft)); }
.tint-grad--pink { background: linear-gradient(160deg, var(--tint-pink), var(--tint-pink-soft)); }

/* =========================== Diamond-bullet checklist =========================== */

/* Bullet color follows the contextual --accent (set via .accent-* on the card) */
.diamond-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.diamond-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  color: var(--body);
}
.diamond-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  min-width: 7px;
  transform: rotate(45deg) translateY(-1px);
  background: var(--accent);
  border-radius: 1.5px;
}

/* =========================== Floating cards over photos =========================== */

.float-card {
  position: absolute;
  background: rgba(241, 232, 219, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline-soft);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 18px 36px -18px rgba(22, 58, 67, 0.4);
}
.float-card__label {
  margin: 0 0 3px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: var(--track-label);
  color: var(--coral);
}
.float-card__value {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.float-card--dark {
  background: rgba(22, 58, 67, 0.9);
  backdrop-filter: blur(6px);
  border: none;
  box-shadow: none;
}
.float-card--dark .float-card__label {
  margin: 0;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* =========================== Pill links =========================== */

/* Anchor pills on dark strips (section jump bars) */
.pill-link {
  color: var(--on-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(220, 238, 244, 0.22);
  transition: background var(--hover-fast), border-color var(--hover-fast);
}
.pill-link:hover {
  color: var(--on-dark);
  background: rgba(220, 238, 244, 0.12);
  border-color: var(--gold);
}

/* Frosted pills on light surfaces (related-page quick links) */
.pill-link--light {
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(22, 58, 67, 0.1);
  font-size: var(--fs-small);
  padding: 10px 20px;
}
.pill-link--light:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--coral);
  color: var(--coral);
}

/* =========================== Final CTA panel =========================== */

.cta-section {
  padding: clamp(28px, 4vw, 56px) var(--gutter);
  background: var(--cream);
}
.cta-panel {
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 45%, var(--plum) 100%);
  border-radius: var(--r-panel);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--on-dark);
  box-shadow: var(--shadow-panel);
}
.cta-panel__content { position: relative; }
.cta-panel h2 {
  margin: 0 auto 18px auto;
  max-width: 22ch;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: var(--lh-tight);
  color: var(--cream);
}
.cta-panel .prose {
  color: var(--on-dark-muted);
  margin-left: auto;
  margin-right: auto;
}
.cta-panel__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cta-panel__blob {
  top: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(100, 183, 198, 0.22), rgba(100, 183, 198, 0) 70%);
  filter: blur(28px);
  animation-duration: 13s;
}

/* =========================== Announcement bar =========================== */

.announce {
  background: linear-gradient(100deg, var(--ink-deep) 0%, var(--ink) 45%, var(--ink-light) 100%);
  color: var(--on-dark);
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 22px;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
}

.announce__lead {
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
}
.announce__lead:hover { color: var(--gold); }

.announce__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--on-dark-faint);
  text-decoration: none;
  font-weight: 600;
}
a.announce__item { font-weight: 700; }
a.announce__item:hover { color: var(--cream); }

.announce__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: inline-block;
}

/* =========================== Site nav =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.nav-shell {
  padding: 10px 16px 0 16px;
  display: flex;
  justify-content: center;
}

.nav {
  width: 100%;
  max-width: var(--container);
  background: var(--nav-frost);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-nav);
  padding: 8px 12px 8px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex: 0 0 auto;
}
.nav__logo span {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 0;
  flex-shrink: 0;
}
.nav__logo img { height: 100%; width: auto; display: block; object-fit: contain; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 14px;
  font-weight: 600;
}

.nav__link {
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.nav__link:hover { color: var(--coral); }
.nav__link.is-active { color: var(--coral); border-bottom-color: var(--coral); }

/* Dropdown trigger buttons (Shop, Spa Services) */
.nav__drop { position: relative; }

.nav__drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 4px 0;
}
.nav__drop-btn:hover { color: var(--coral); }
.nav__drop.is-active .nav__drop-btn { color: var(--coral); border-bottom-color: var(--coral); }

.nav__caret { transition: transform 0.2s ease; }
.nav__drop.is-open .nav__caret { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  z-index: 70;
  display: none;
}
.nav__drop.is-open .nav__menu { display: block; }

.nav__menu-panel {
  min-width: 214px;
  background: rgba(241, 238, 229, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(22, 58, 67, 0.1);
  border-radius: var(--r-card-sm);
  box-shadow: var(--shadow-dropdown);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__menu-item {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--r-chip);
}
.nav__menu-item:hover { background: var(--tint-blue); color: var(--ink-2); }
.nav__menu-item--lead { color: var(--ink); font-weight: 700; }

.nav__cta {
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  transition: background var(--hover-fast), transform var(--hover-fast);
}
.nav__cta:hover { background: var(--coral); color: var(--cream); transform: translateY(-1px); }

/* Mobile hamburger + slide-down menu */
.nav__burger {
  display: none;
  background: var(--ink);
  border: none;
  border-radius: var(--r-pill);
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}
.nav__burger span:last-child { width: 12px; }

.nav__mobile {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: 76vh;
  overflow-y: auto;
  background: rgba(241, 238, 229, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-md);
  box-shadow: 0 24px 48px -20px rgba(22, 58, 67, 0.4);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav.is-open .nav__mobile { display: flex; }

.nav__group-label {
  margin: 12px 12px 4px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: var(--track-label);
  color: var(--blue);
}
.nav__group-label:first-child { margin-top: 6px; }

.nav__mobile-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15.5px;
  padding: 11px 14px;
  border-radius: 14px;
}
.nav__mobile-link:hover { background: var(--tint-blue); color: var(--ink); }

.nav__mobile-quiet {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 14px;
}

.nav__mobile-cta {
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--r-pill);
  margin-top: 8px;
}
.nav__mobile-cta:hover { color: var(--cream); }

@media (max-width: 1100px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__logo span { height: 40px; }
}

/* =========================== Footer =========================== */

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: clamp(52px, 6vw, 80px) var(--gutter) 36px var(--gutter);
  font-family: var(--font-sans);
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 48px;
}

.footer__brand { flex: 1.5 1 300px; min-width: 260px; }
.footer__brand img { height: 60px; width: auto; display: block; margin-bottom: 20px; }
.footer__blurb {
  margin: 0;
  font-size: 14px;
  line-height: var(--lh-loose);
  max-width: 46ch;
  color: var(--footer-text);
  text-wrap: pretty;
}

.footer__col { flex: 1 1 150px; min-width: 140px; }
.footer__col h3 {
  margin: 0 0 16px 0;
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: var(--track-label);
  color: var(--gold);
}
.footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__col a {
  color: var(--on-dark-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.footer__col a:hover { color: var(--cream); }

/* Sitewide wellness disclaimer — sits directly above the address/copyright row.
   Kept readable (not fine print): 13px desktop / 14px mobile, adequate contrast. */
.footer__disclaimer {
  border-top: 1px solid rgba(220, 238, 244, 0.12);
  padding-top: 26px;
  margin-bottom: 24px;
}
.footer__disclaimer p {
  margin: 0;
  max-width: none;
  font-size: 13px;
  line-height: 1.7;
  color: var(--footer-text);
  text-wrap: pretty;
}
.footer__disclaimer strong { color: var(--on-dark-soft); font-weight: 700; }
@media (max-width: 700px) {
  .footer__disclaimer p { font-size: 14px; }
}

.footer__legal {
  border-top: 1px solid rgba(220, 238, 244, 0.12);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 32px;
  font-size: 13px;
  color: var(--footer-meta);
}
.footer__legal p { margin: 0; }
