/* MIA × FirstRand Wellness — standalone styles */
:root {
  --background: #fefcf8;
  --foreground: #2a1810;
  --surface: #f9f3e9;
  --card: #ffffff;
  --border: #ece3d4;
  --muted-fg: #7a6a5a;
  --primary: #c1372b;
  --primary-fg: #ffffff;
  --ink: #1f1611;
  --brand-amber: #f5b342;
  --brand-orange: #ee7a2a;
  --brand-red: #c1372b;
  --brand-deep: #6b1f17;

  --gradient-brand: linear-gradient(90deg, #f5b342 0%, #ee7a2a 45%, #c1372b 100%);
  --gradient-brand-soft: linear-gradient(135deg, #fdf3e3 0%, #fbe3ce 100%);
  --shadow-soft: 0 1px 2px rgba(40, 20, 10, .06), 0 8px 24px rgba(193, 55, 43, .08);
  --shadow-lift: 0 2px 4px rgba(40, 20, 10, .08), 0 18px 40px rgba(193, 55, 43, .18);

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.muted {
  color: var(--muted-fg);
}

.small {
  font-size: 18px;
}

.center {
  text-align: center;
}

.strong {
  font-weight: 600;
  color: var(--ink);
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--primary-fg);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
  box-shadow: var(--shadow-lift);
}

.btn-ghost {
  background: var(--card);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
}

.btn-glass {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
  backdrop-filter: blur(4px);
  margin-top: 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(254, 252, 248, .88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  padding: 16px 24px;
}

.header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "logo slogan"
    "tagline tagline"
    "nav nav";
  align-items: start;
  column-gap: 12px;
  row-gap: 12px;
}

.brand {
  grid-area: logo;
  width: auto;
}

.header-vrule {
  display: none;
}

.header-nav-block {
  display: contents;
}

.header-aside {
  display: contents;
}

.header-slogan {
  grid-area: slogan;
  margin: 0;
  align-self: center;
  justify-self: end;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-align: right;
}

.header-nav-block .brand-tagline {
  grid-area: tagline;
}

.brand-logo {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.brand-tagline {
  margin: 0;
  width: 100%;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted-fg);
  text-align: center;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .02em;
}

.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-fg);
}

.brand-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 8px;
}

.partner-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-fg);
}

.site-nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 4px 20px;
  margin-top: 0;
  padding-top: 12px;
  border-top: none;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .header-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 28px;
  }

  .brand {
    flex-shrink: 0;
    grid-area: unset;
  }

  .brand-logo {
    height: 64px;
    max-width: 280px;
  }

  .header-vrule {
    display: block;
    flex-shrink: 0;
    align-self: stretch;
    width: 1px;
    height: auto;
    min-height: 48px;
    background: var(--border);
  }

  .header-nav-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
  }

  .site-nav {
    grid-area: unset;
    justify-content: center;
    width: 100%;
    padding-top: 0;
    flex-wrap: nowrap;
    gap: 4px 28px;
    font-size: 14px;
  }

  .header-nav-block .brand-tagline {
    grid-area: unset;
    width: 100%;
    margin-top: 10px;
    padding: 10px 0 0;
    border-top: 1px solid var(--border);
    border-bottom: none;
    font-size: 10px;
    letter-spacing: .16em;
    text-align: center;
    white-space: nowrap;
  }

  .header-aside {
    display: block;
    flex-shrink: 0;
    text-align: right;
  }

  .header-slogan {
    grid-area: unset;
    font-size: 24px;
    line-height: 1.15;
  }
}

/* Hero */
.hero {
  background: var(--gradient-brand-soft);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 40px;
  padding: 64px 24px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    padding: 96px 24px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(193, 55, 43, .2);
  background: rgba(255, 255, 255, .7);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--primary);
}

.eyebrow-plain {
  display: inline-block;
  border: none;
  background: none;
  padding: 0;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .9);
}

.display {
  margin-top: 24px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: .95;
  font-weight: 800;
  color: var(--ink);
}

@media (min-width: 768px) {
  .display {
    font-size: clamp(42px, 4.2vw, 62px);
  }
}

.section-title,
.section-title-sm {
  font-weight: 800;
}

.lead {
  margin-top: 24px;
  max-width: 560px;
  font-size: 18px;
  color: var(--muted-fg);
}

.lead strong {
  color: var(--foreground);
}

.lead-sm {
  margin-top: 12px;
  max-width: 560px;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.price-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .price-chip {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.price-tag {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
}

.price-tag .price-tag-amount {
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .price-tag {
    font-size: 18px;
    padding: 10px 18px;
  }
}

.trust-strip {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-fg);
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-image-wrap {
  position: relative;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.blob-1 {
  width: 160px;
  height: 160px;
  left: -32px;
  top: -32px;
  background: var(--gradient-brand);
  opacity: .25;
}

.blob-2 {
  width: 192px;
  height: 192px;
  bottom: -40px;
  right: -24px;
  background: rgba(245, 179, 66, .4);
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-lift);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

@media (min-width: 640px) {
  .hero-image img {
    height: 560px;
  }
}

.stat-card {
  display: none;
  position: absolute;
  bottom: -24px;
  left: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .stat-card {
    display: block;
  }
}

.stat-label,
.stat-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-fg);
}

.stat-sub {
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
}

/* Sections */
.section-title {
  margin-top: 12px;
  font-size: clamp(32px, 4.5vw, 44px);
  color: var(--ink);
}

.section-title-sm {
  margin-top: 12px;
  font-size: 28px;
  color: var(--ink);
}

/* Benefits */
.benefits {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.benefits-grid {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.benefit {
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.benefit h3 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.benefit p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted-fg);
}

.icon-square {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
}

/* Events */
.events {
  background: var(--background);
  padding: 80px 0;
}

.events-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .events-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.events-grid {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: all .2s;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 55, 43, .4);
  box-shadow: var(--shadow-lift);
}

.date-block {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 12px;
  padding: 8px;
}

.date-block span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .9;
}

.date-block strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  margin-top: 2px;
}

.event-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.event-body h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.event-card:hover .event-body h3 {
  color: var(--primary);
}

.event-body p {
  font-size: 12px;
  color: var(--muted-fg);
}

.event-meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.event-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--brand-orange);
  margin-top: 2px;
}

.footnote {
  margin-top: 32px;
  text-align: center;
  font-style: italic;
  font-size: 12px;
  color: var(--muted-fg);
}

/* Learn more */
.learn {
  background: var(--surface);
  padding: 80px 0;
}

.learn-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .learn-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.learn-cta {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 28px;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-lift);
  display: block;
}

.learn-cta-textlink {
  display: block;
  color: inherit;
  text-decoration: none;
}

.learn-cta-textlink:hover {
  opacity: .98;
}

.learn-inline-image-link {
  display: block;
  width: 100%;
  max-width: 420px;
  margin-top: 20px;
  margin-bottom: 16px;
  padding-top: 8px;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  text-decoration: none;
}

.learn-inline-image-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .9);
  outline-offset: 3px;
}

.learn-cta h3 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.learn-body {
  margin-top: 12px;
  max-width: 420px;
  font-size: 14px;
  opacity: .92;
}

.learn-inline-image {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  object-fit: cover;
}

.learn-list {
  padding: 40px;
}

.checks {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checks li {
  display: flex;
  gap: 16px;
}

.dot {
  margin-top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
}

.checks p {
  font-size: 14px;
  color: var(--muted-fg);
}

.checks .strong {
  font-size: 15px;
}

.price-row {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--gradient-brand-soft);
  padding: 18px 22px;
  border-radius: 16px;
}

.price-row--white {
  background: #ffffff;
}

.price-row-intro {
  margin: 0;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
  text-align: center;
}

.price-row-intro strong {
  font-weight: 800;
}


.price-row-divider {
  height: 1px;
  width: 100%;
  margin: 14px 0;
  background: var(--border);
}

.price-row-divider.price-row-divider--tight-before-foot {
  margin-top: 6px;
  margin-bottom: 6px;
}

.price-row-cashline {
  margin: 0;
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.price-row-cash-label {
  padding-top: 0;
  width: 100%;
  text-align: center;
}

.price-row-amount-stack {
  margin-inline: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
}

.price-row-inclusive {
  display: block;
  width: 100%;
  margin-top: 6px;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.price-big {
  font-family: var(--font-display);
  font-size: clamp(26px, 21vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  white-space: nowrap;
}

.price-big.price-big--row {
  white-space: nowrap;
}

.price-big.price-big--row.price-big--gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}



@media (min-width: 768px) {
  .price-big {
    font-size: clamp(40px, 3.8vw, 56px);
  }
}

/* FAQ */
.faq {
  background: var(--background);
  padding: 80px 0;
}

.faq-narrow {
  max-width: 800px;
}

.faq-list {
  margin-top: 40px;
  padding: 0;
  overflow: hidden;
}

.faq-list details {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.faq-list details:last-child {
  border-bottom: none;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list .plus {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--primary);
  transition: transform .2s;
}

.faq-list details[open] .plus {
  transform: rotate(45deg);
}

.faq-list p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted-fg);
}

.faq-list .faq-detail-cta {
  margin-top: 14px;
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding: 56px 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand .brand-logo {
  height: 50px;
}

.footer-tagline {
  margin-top: 10px;
  text-align: left;
}

.footer-blurb {
  margin-top: 16px;
  max-width: 380px;
  font-size: 14px;
}

.footer-partner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  margin-top: 24px;
  gap: 8px;
  width: 100%;
}

.footer-partner .partner-label {
  text-align: left;
}

.footer-partner .partner-logo {
  height: 32px;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}

.footer-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--brand-orange);
  margin-top: 2px;
}

.contact-label {
  color: var(--muted-fg);
  font-weight: 600;
}

.footer-list a {
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(193, 55, 43, .35);
  text-underline-offset: 3px;
}

.footer-list a:hover {
  color: var(--primary);
}

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

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  font-size: 12px;
  color: var(--muted-fg);
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}