/* Ozone Therapy page — shared service-page styles live in mercury-removal.css */
.oz-intro {
  background: #f5f1ea;
  padding: 5rem 4rem 6rem;
}

.oz-intro-inner,
.oz-uses-inner,
.oz-benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.oz-intro-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.oz-section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0 0 1rem;
}

.oz-section-intro {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.85;
}

.oz-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.oz-intro .oz-section-heading { color: #4a4234; }
.oz-intro .oz-section-intro { color: #5d5746; margin: 0; }

.oz-intro-img-wrap {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(61, 53, 48, .16);
}

.oz-intro-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.oz-intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oz-intro-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .25rem 0;
}

.oz-intro-check {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: hsl(23, 32%, 48%);
  margin-top: .2rem;
  line-height: 1.6;
}

.oz-intro-item p {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 1.125rem;
  color: #4a4234;
  line-height: 1.75;
  margin: 0;
}

.oz-intro-item strong {
  font-weight: 700;
  color: #3d3530;
}

.oz-wave {
  line-height: 0;
  display: block;
  margin-bottom: -2px;
}

.oz-wave svg { display: block; width: 100%; height: 80px; }
.oz-wave--light-dark { background: #f5f1ea; }
.oz-wave--dark-warm { background: #4a4740; }
.oz-wave--warm-light { background: hsl(45, 22%, 86%); }

.oz-uses {
  background: #4a4740;
  padding: 5rem 4rem 6rem;
  margin-top: -2px;
}

.oz-uses-inner {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 5rem;
  align-items: center;
}

.oz-uses-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.oz-uses .oz-section-heading {
  color: hsl(45, 22%, 92%);
  margin: 0;
}

.oz-uses .oz-section-intro {
  color: hsl(45, 16%, 78%);
  margin: 0 0 .5rem;
}

.oz-use-detail {
  border-left: 3px solid hsl(23, 45%, 62%);
  padding-left: 1rem;
}

.oz-use-detail + .oz-use-detail {
  margin-top: .8rem;
}

.oz-use-detail h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: normal;
  text-transform: none;
  color: hsl(45, 22%, 92%);
  margin: 0 0 .5rem;
}

.oz-use-detail p {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 1.125rem;
  color: hsl(45, 16%, 78%);
  line-height: 1.8;
  margin: 0 0 .45rem;
}

.oz-treatment-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 1.7;
  text-transform: uppercase;
  color: hsl(45, 18%, 76%);
  text-wrap: pretty;
}

.oz-treatment-label strong {
  font-weight: 700;
  color: hsl(45, 24%, 92%);
}

.oz-uses-img-wrap {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(20, 16, 10, .35);
}

.oz-uses-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.oz-benefits {
  background: hsl(45, 22%, 86%);
  padding: 5rem 4rem 6rem;
  margin-top: -2px;
}

.oz-benefits .oz-section-heading {
  color: #4a4234;
  text-align: center;
}

.oz-benefits .oz-section-intro {
  color: #5d5746;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.oz-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.oz-benefit {
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(90,75,55,.13);
  border-radius: 12px;
  padding: 1.7rem;
}

.oz-benefit h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: #59614c;
  margin: 0 0 .55rem;
}

.oz-benefit p {
  font-family: 'Alegreya', Georgia, serif;
  font-size: 1.05rem;
  color: #5d5746;
  line-height: 1.75;
  margin: 0;
}

.oz-hero-img {
  object-fit: cover;
  object-position: 65% center;
}

@media (max-width: 900px) {
  .oz-intro-inner,
  .oz-benefits-grid { grid-template-columns: 1fr 1fr; }

  .oz-intro-inner,
  .oz-uses-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .oz-uses-img-wrap {
    width: min(100%, 520px);
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .mr-hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
    row-gap: 1rem;
  }

  .mr-hero-badge {
    align-items: center;
    text-align: center;
    min-width: 0;
  }

  .mr-hero-badge--rating {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-bottom: 1rem;
  }

  .mr-hero-badge-num {
    font-size: 1.2rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .mr-hero-badge--rating .mr-hero-badge-num {
    font-size: 1.45rem;
    letter-spacing: .08em;
  }

  .mr-hero-badge-label {
    line-height: 1.45;
  }

  .oz-intro,
  .oz-uses,
  .oz-benefits { padding: 3rem 1.5rem 4rem; }
  .oz-section-heading { font-size: 2rem; }
  .oz-benefits-grid { grid-template-columns: 1fr; }

  .oz-uses-img-wrap {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 360px) {
  .mr-hero-badges {
    column-gap: .75rem;
  }

  .mr-hero-badge-num {
    font-size: 1.08rem;
  }
}
