/* BioCell Partners — Wellness Site */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #FDF9F8;
  color: #2E2A28;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #8E1D22; text-decoration: none; }
a:hover { color: #6f1319; }
img { max-width: 100%; }

.wrap { max-width: 1180px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,249,248,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46,42,40,0.08);
}
.site-header .wrap {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 58px; width: auto; display: block; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.main-nav a:not(.btn) { color: #2E2A28; white-space: nowrap; }
.main-nav a:not(.btn):hover { color: #8E1D22; }

/* Buttons */
.btn {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  border-radius: 10px;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.btn:hover { filter: brightness(0.95); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: #8E1D22; color: #FDF9F8; }
.btn-primary:hover { color: #FDF9F8; background: #6f1319; }
.btn-secondary { background: transparent; color: #2E2A28; border: 1.5px solid rgba(46,42,40,0.16); }
.btn-secondary:hover { color: #2E2A28; background: rgba(46,42,40,0.04); }
.btn-light { background: #FDF9F8; color: #8E1D22; }
.btn-light:hover { color: #8E1D22; filter: brightness(0.97); }

.nav-cta { padding: 10px 18px; border-radius: 8px; font-weight: 600; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 60px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(142,29,34,0.08);
  color: #8E1D22;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: #8E1D22; display: inline-block; }

h1 {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: #2E2A28;
  margin-bottom: 22px;
}
.hero-copy {
  font-size: 18px;
  line-height: 1.6;
  color: #55504d;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn { padding: 14px 26px; font-size: 15.5px; }

/* Report card */
.report-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(46,42,40,0.1);
  box-shadow: 0 24px 60px rgba(46,42,40,0.10);
  padding: 28px 28px 30px;
  overflow: hidden;
}
.report-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.report-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #a9857e; font-weight: 700; }
.report-title { font-family: 'Source Serif 4', serif; font-size: 19px; font-weight: 600; color: #2E2A28; }
.report-bars { display: flex; align-items: flex-end; gap: 5px; height: 34px; }
.report-bars span { width: 8px; border-radius: 4px; display: block; }
.report-bars span:nth-child(1) { height: 40%; background: #d99a90; }
.report-bars span:nth-child(2) { height: 66%; background: #c56b62; }
.report-bars span:nth-child(3) { height: 100%; background: #8E1D22; }

.fragility { text-align: center; margin-bottom: 18px; }
.fragility-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #a9857e; font-weight: 700; margin-bottom: 4px; }
.fragility-score { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.fragility-score .num { font-family: 'Archivo', sans-serif; font-size: 46px; font-weight: 800; color: #2E2A28; line-height: 1; }
.fragility-score .max { font-family: 'Archivo', sans-serif; font-size: 20px; font-weight: 700; color: #a9857e; }
.fragility-status { font-size: 12.5px; color: #d97b3e; font-weight: 600; margin-top: 4px; }

.score-bar-wrap { margin-bottom: 22px; }
.score-bar {
  position: relative;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #3f9e6d 0%, #7fae4a 30%, #e0b23e 55%, #d97b3e 75%, #8E1D22 100%);
}
.score-marker {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2E2A28;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.score-scale { display: flex; justify-content: space-between; font-size: 10.5px; color: #8a827e; margin-top: 7px; font-weight: 600; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stat-chip { background: #faf1ee; border-radius: 10px; padding: 12px 8px; text-align: center; }
.stat-chip .val { font-family: 'Archivo', sans-serif; font-size: 18px; font-weight: 800; color: #2E2A28; }
.stat-chip .lbl { font-size: 10.5px; color: #8a827e; margin-top: 2px; letter-spacing: 0.03em; }

.report-footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(46,42,40,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b6561;
}
.dot-green { width: 8px; height: 8px; border-radius: 50%; background: #3f9e6d; display: inline-block; }

/* Event section */
.event-section { background: #2E2A28; color: #FDF9F8; padding: 6px 0; }
.event-grid {
  padding-top: 64px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.event-badge {
  display: inline-block;
  background: #8E1D22;
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.event-grid h2 { font-family: 'Source Serif 4', serif; font-weight: 600; font-size: 40px; line-height: 1.12; margin-bottom: 20px; }
.event-intro { font-size: 17px; line-height: 1.65; color: #cfc7c3; margin-bottom: 28px; max-width: 460px; }

.event-details { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.detail-block { border-left: 2px solid #8E1D22; padding-left: 16px; }
.detail-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #a59d99; margin-bottom: 6px; }
.detail-value { font-size: 17px; font-weight: 600; }
.event-location { border-left: 2px solid #8E1D22; padding-left: 16px; margin-bottom: 32px; }
.event-location .detail-value { font-size: 16px; font-weight: 500; line-height: 1.45; }

.event-cta { padding: 15px 28px; font-size: 15.5px; font-weight: 700; }

.know-card {
  background: rgba(253,249,248,0.05);
  border: 1px solid rgba(253,249,248,0.14);
  border-radius: 18px;
  padding: 34px;
}
.know-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.know-list { list-style: none; }
.know-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(253,249,248,0.1);
}
.know-list li:last-child { border-bottom: none; }
.know-check { color: #d98a8f; font-weight: 700; flex-shrink: 0; }
.know-text { font-size: 15px; line-height: 1.55; color: #ded7d3; }
.know-more { font-size: 13.5px; color: #a59d99; margin-top: 18px; line-height: 1.6; }
.know-more a { color: #d98a8f; }

/* About REMS */
.about-section { padding-top: 84px; padding-bottom: 40px; }
.section-intro { max-width: 640px; margin-bottom: 48px; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #8E1D22; margin-bottom: 14px; }
.about-section h2 { font-family: 'Source Serif 4', serif; font-weight: 600; font-size: 40px; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 18px; }
.section-intro p { font-size: 17px; line-height: 1.65; color: #55504d; }

.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card {
  background: #fff;
  border: 1px solid rgba(46,42,40,0.09);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(46,42,40,0.04);
}
.value-card .num { font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 700; color: #8E1D22; margin-bottom: 12px; }
.value-card h3 { font-family: 'Source Serif 4', serif; font-size: 22px; font-weight: 600; line-height: 1.2; margin-bottom: 10px; }
.value-card p { font-size: 15px; line-height: 1.6; color: #55504d; }

/* Compare table */
.compare-section { padding-top: 44px; padding-bottom: 84px; }
.compare-card { background: #fff; border: 1px solid rgba(46,42,40,0.09); border-radius: 18px; overflow: hidden; }
.compare-head { padding: 34px 34px 8px; }
.compare-head h3 { font-family: 'Source Serif 4', serif; font-size: 28px; font-weight: 600; margin-bottom: 6px; }
.compare-head p { font-size: 15px; color: #55504d; }
.compare-table { display: grid; grid-template-columns: 1.4fr 1fr 1fr; }
.compare-table .col-head { padding: 16px 34px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #8a827e; }
.compare-table .col-head.rems { padding: 16px 24px; font-size: 13.5px; font-weight: 800; color: #8E1D22; background: rgba(142,29,34,0.05); }
.compare-table .col-head.dexa { padding: 16px 24px; font-size: 13.5px; font-weight: 700; color: #55504d; }
.compare-row { display: contents; }
.compare-table .cell { padding: 18px 34px; font-size: 15px; font-weight: 500; border-top: 1px solid rgba(46,42,40,0.07); }
.compare-table .cell.rems { padding: 18px 24px; font-size: 14.5px; color: #2E2A28; border-top: 1px solid rgba(46,42,40,0.07); background: rgba(142,29,34,0.05); }
.compare-table .cell.dexa { padding: 18px 24px; font-size: 14.5px; color: #6b6561; border-top: 1px solid rgba(46,42,40,0.07); }
.cell-label { display: none; }

/* Services */
.services-section { background: #f6ebe6; padding: 84px 0; }
.services-intro { max-width: 620px; margin-bottom: 48px; }
.services-intro h2 { font-family: 'Source Serif 4', serif; font-weight: 600; font-size: 40px; line-height: 1.1; margin-bottom: 18px; }
.services-intro p { font-size: 17px; line-height: 1.65; color: #55504d; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  background: #FDF9F8;
  border: 1px solid rgba(46,42,40,0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 22px;
}
.service-mark {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(142,29,34,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #8E1D22;
}
.service-card h3 { font-size: 20px; font-weight: 600; font-family: 'Source Serif 4', serif; margin-bottom: 8px; }
.service-card p { font-size: 15px; line-height: 1.6; color: #55504d; }

/* CTA band */
.cta-section { padding: 84px 32px; }
.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  background: #8E1D22;
  border-radius: 22px;
  padding: 60px 48px;
  text-align: center;
  color: #FDF9F8;
}
.cta-inner h2 { font-family: 'Source Serif 4', serif; font-weight: 600; font-size: 38px; line-height: 1.1; margin-bottom: 16px; }
.cta-inner p { font-size: 17px; color: #f2d9db; max-width: 520px; margin: 0 auto 30px; line-height: 1.6; }
.cta-inner .btn { padding: 16px 34px; font-size: 16px; font-weight: 700; }

/* Footer */
.site-footer { background: #2E2A28; color: #cfc7c3; padding: 56px 0 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(253,249,248,0.12);
}
.footer-logo { height: 50px; width: auto; background: #FDF9F8; padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; display: block; }
.footer-blurb { font-size: 14.5px; line-height: 1.65; max-width: 320px; color: #a59d99; }
.footer-heading { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #FDF9F8; margin-bottom: 16px; }
.footer-address { font-size: 14.5px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer-links a.accent { color: #d98a8f; }
.footer-links a:not(.accent) { color: #cfc7c3; }
.footer-links a:not(.accent):hover { color: #FDF9F8; }
.footer-bottom { padding-top: 24px; font-size: 13px; color: #8a827e; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-copy { max-width: none; }
  h1 { font-size: 40px; }
  .event-grid { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 48px; }
  .event-details { grid-template-columns: 1fr; gap: 14px; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-section h2, .services-intro h2 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-table .col-head { display: none; }
  .compare-row {
    display: block;
    padding: 20px 24px;
    border-top: 1px solid rgba(46,42,40,0.07);
  }
  .compare-row:first-child { border-top: none; }
  .compare-table .cell,
  .compare-table .cell.rems,
  .compare-table .cell.dexa {
    padding: 0;
    border-top: none;
    background: none;
    font-size: 14.5px;
  }
  .compare-table .cell:first-child { font-weight: 700; font-size: 15.5px; color: #2E2A28; margin-bottom: 10px; }
  .compare-table .cell.rems { color: #2E2A28; margin-top: 6px; }
  .compare-table .cell.dexa { color: #6b6561; margin-top: 6px; }
  .cell-label {
    display: inline-block;
    min-width: 46px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8a827e;
    margin-right: 8px;
  }
  .compare-table .cell.rems .cell-label { color: #8E1D22; }
  .cta-inner { padding: 44px 24px; }
  .cta-inner h2 { font-size: 28px; }
}

@media (max-width: 600px) {
  .wrap, .hero, .event-grid, .about-section, .compare-section, .services-section .wrap { padding-left: 20px; padding-right: 20px; }
  .cta-section { padding: 56px 20px; }
  h1 { font-size: 32px; }
  .main-nav { gap: 14px; }
}
