/* ==========================================================================
   בר לוין | שיאצו, יוגה ותנועה
   Stylesheet - design tokens + structure (content-agnostic build)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand - from logo */
  --sage: #D2E7D4;
  /* logo background, primary surface accent   */
  --sage-mid: #AFCFB6;
  /* derived: hover / borders                  */
  --sage-deep: #D2E7D4;
  /* derived: icon strokes, links, small text  */
  --sage-ink: #2B2926;
  /* derived: deep sage for headings on cream  */


  --sage-dark: #ADC2AF;
  --dust-pastel: #C9B7B4;



  /* Brand - supporting palette */
  --rose: #F4DACC;
  /* dusty rose accent                         */
  --rose-deep: #E8BCA6;
  /* dusty rose, hover/darker                  */
  --cream: #F6F4EF;
  /* warm cream background                    */
  --clay: #545454;
  /* muted clay, secondary text               */

  /* Neutrals */
  --ink: #2B2926;
  /* warm near-black, primary text            */
  --white: #FFFFFF;

  /* Type - one display face used sparingly (hero headline + pull-quote
     only), one body face for every other piece of text on the site */
  --font-display: 'Rubik', 'Arial Hebrew', sans-serif;
  --font-body: 'Rubik', 'Arial Hebrew', sans-serif;

  /* Signature corner treatment: rounded top-left only ("folded corner").
     Kept modest on purpose - a detail, not a shape statement. */
  --fold-lg: 40px;
  --fold-sm: 10px;

  /* Shadows / motion */
  --shadow-soft: 0 24px 48px -28px rgba(43, 41, 38, 0.28);
  --shadow-card: 0 16px 32px -20px rgba(43, 41, 38, 0.20);
  --ease: 0.3s cubic-bezier(.4, 0, .2, 1);

  --container-w: 1180px;
}



/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.debug {
  border: 1px solid red;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* One consistent type system: Heebo carries every heading level, the
   display serif is reserved for exactly two moments (hero h1 + pull-quote)
   so the page reads as one voice instead of switching fonts per section. */
h1,
h2,
h3,
h4 {
  font-family: var(--font-body);
  color: var(--sage-ink);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 .6em;
}

h1 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--clay);
  font-size: calc(1.12rem * 2);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
  color: var(--ink);
}

h4 {
  font-size: 1rem;
  color: var(--ink);
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  position: relative;
}

/* focus visibility (accessibility floor) */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. Utility: eyebrow label, section title, buttons, signature corner-fold
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: .02em;
  margin-bottom: 14px;
}


.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

.section-sub {
  color: var(--clay);
  font-size: 1.05rem;
}

/* Buttons */
.btn-fold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  white-space: nowrap;
}

.btn-fold i {
  font-size: .85em;
}

.btn-fold:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
}

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

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

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

.btn-rose {
  background: var(--rose);
  color: var(--white);
}

.btn-rose:hover {
  background: var(--rose-deep);
}

/* Signature corner treatment - rounded only on the top-left corner.
   Applied to photography, media stubs and cards throughout the site. */
.corner-fold {
  border-top-left-radius: var(--fold-lg);
  border-top-right-radius: var(--fold-sm);
  border-bottom-right-radius: var(--fold-sm);
  border-bottom-left-radius: var(--fold-sm);
  overflow: hidden;
  object-fit: cover;
}

.corner-fold.small {
  --fold-lg: 14px;
}

/* Image stubs - placeholders until real photography is supplied */
.stub-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--sage-deep);
  transition: transform var(--ease);
}

.stub-img i {
  font-size: 1.6rem;
  opacity: .7;
}

.stub-img span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--sage-ink);
  opacity: .75;
}

/* Ambient repeating texture - a quiet dot-grid tinted with brand colour,
   used instead of a literal line illustration. Colour + size are tuned
   per section via the modifier classes below. */
.texture-dots {
  background-image:
    radial-gradient(circle at 6px 6px, var(--dot-c, rgba(92, 127, 104, .16)) 1.4px, transparent 1.6px),
    radial-gradient(circle at 20px 20px, var(--dot-c, rgba(92, 127, 104, .16)) 1.1px, transparent 1.3px);
  background-size: 26px 26px;
}

.texture-dots--sage {
  --dot-c: rgba(92, 127, 104, .14);
}

.texture-dots--deep {
  --dot-c: rgba(51, 71, 59, .14);
}

.texture-dots--white {
  --dot-c: rgba(255, 255, 255, .35);
}

/* --------------------------------------------------------------------------
   4. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, .92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(92, 127, 104, .14);
  transition: box-shadow var(--ease), background var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(250, 248, 245, .98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 58px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .98rem;
  font-weight: 500;
  color: var(--ink);
  transition: background var(--ease), color var(--ease);
}

.main-nav a:hover,
.main-nav li.is-active>a {
  background: var(--sage);
  color: var(--sage-ink);
}

.main-nav .nav-cta {
  background: var(--sage-ink);
  color: var(--white);
  margin-inline-start: 6px;
}

.main-nav .nav-cta:hover {
  background: var(--sage-deep);
  color: var(--white);
}

/* mobile-only brand name + nav toggle, grouped near the burger */
.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.brand-name-mobile {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--sage-ink);
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding-block: 12px 96px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-areas: "left media";
  gap: 56px;
  align-items: center;
}

.hero-inner .hero-left {
  grid-area: left;
}

.hero-inner .hero-media-frame {
  grid-area: media;
}


.hero-copy p {
  color: var(--clay);
  font-size: 1.12rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* Bullet row of the four treatments, shown above the hero heading */
.hero-treatments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 10px;
  margin: 0 0 18px;
  list-style: none;
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-treatments li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sage-ink);
}

.hero-treatments li img {
  width: 26px;
  height: auto;
}

.hero-treatments .leaf-icon {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--sage-deep);
}

/* frame is capped narrower than its grid column so the photo reads
   smaller; the image keeps its natural ratio (no cropping) and carries
   a soft grey drop shadow */
.hero-media-frame {
  padding-top: 50px;
  width: 100%;
  max-width: 440px;
  margin-inline-start: auto;
}

.hero-media {
  display: block;

  box-shadow:
    0 26px 50px -14px rgba(50, 48, 45, .64),
    0 8px 18px -6px rgba(50, 48, 45, .94);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-top-left-radius: calc(var(--fold-lg) - 4px);
  border-top-right-radius: calc(var(--fold-sm) - 4px);
  border-bottom-right-radius: calc(var(--fold-sm) - 4px);
  border-bottom-left-radius: calc(var(--fold-sm) - 4px);
}

/* about.php: portrait sits top-aligned and smaller so the long bio text has more room */
.about-hero .hero-inner {
  /* grid-template-columns: 1.3fr .7fr; */
  align-items: start;
}

.about-hero .hero-media-frame {
  /* max-width: 508px; */
}

.about-hero .hero-copy p {
  max-width: none;
}


.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p {
  color: var(--clay);
}

.hero-copy h1 {
  font-size: calc(1.12rem * 2);
}

/* --------------------------------------------------------------------------
   6. Intro / quote band
   -------------------------------------------------------------------------- */
.intro-quote {
  background: url(/assets/img/brush.png) no-repeat center right;
  background-size: contain;
  padding-block: 40px 20px;
  text-align: center;
  padding-left: 110px;

  padding-right: 120px;
  margin-top: 0;
}

.intro-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--sage-ink);
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.intro-quote cite {
  display: inline-block;
  font-style: normal;
  color: var(--clay);
  font-size: .95rem;
}

/* --------------------------------------------------------------------------
   7. Services teaser grid
   -------------------------------------------------------------------------- */
.services-teaser {
  padding-block: 40px 96px;
}

.service-card {
  height: 100%;
  padding: 34px 26px;
  background: var(--white);
  border: 1px solid rgba(92, 127, 104, .10);
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--sage-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.service-card p {
  color: var(--clay);
  font-size: .98rem;
  margin-bottom: 14px;
}

.service-card .link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--sage-deep);
}

/* --------------------------------------------------------------------------
   8. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  padding: 72px 24px;
  text-align: center;
  ba1ckground:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .12) 0, rgba(255, 255, 255, .12) 1px, transparent 1px, transparent 22px),
    var(--rose);
  background-color: #e8bca6;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0h2v20H9V0zm25.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm-20 20l1.732 1-10 17.32-1.732-1 10-17.32zM58.16 4.134l1 1.732-17.32 10-1-1.732 17.32-10zm-40 40l1 1.732-17.32 10-1-1.732 17.32-10zM80 9v2H60V9h20zM20 69v2H0v-2h20zm79.32-55l-1 1.732-17.32-10L82 4l17.32 10zm-80 80l-1 1.732-17.32-10L2 84l17.32 10zm96.546-75.84l-1.732 1-10-17.32 1.732-1 10 17.32zm-100 100l-1.732 1-10-17.32 1.732-1 10 17.32zM38.16 24.134l1 1.732-17.32 10-1-1.732 17.32-10zM60 29v2H40v-2h20zm19.32 5l-1 1.732-17.32-10L62 24l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM111 40h-2V20h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zM40 49v2H20v-2h20zm19.32 5l-1 1.732-17.32-10L42 44l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM91 60h-2V40h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM39.32 74l-1 1.732-17.32-10L22 64l17.32 10zm16.546 4.16l-1.732 1-10-17.32 1.732-1 10 17.32zM71 80h-2V60h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM120 89v2h-20v-2h20zm-84.134 9.16l-1.732 1-10-17.32 1.732-1 10 17.32zM51 100h-2V80h2v20zm3.134.84l1.732 1-10 17.32-1.732-1 10-17.32zm24.026 3.294l1 1.732-17.32 10-1-1.732 17.32-10zM100 109v2H80v-2h20zm19.32 5l-1 1.732-17.32-10 1-1.732 17.32 10zM31 120h-2v-20h2v20z' fill='%23f4dacc' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
  overflow: hidden;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 1.2em;
}

.cta-band .btn-fold {
  background: var(--white);
  color: var(--rose-deep);
}

.cta-band .btn-fold:hover {
  background: var(--sage-ink);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   9. Services gallery (repeating "bottom section") - square photography
   -------------------------------------------------------------------------- */
.services-gallery {
  padding-block: 24px 88px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-item {
  margin: 0;
  aspect-ratio: 1 / 1;
}

.gallery-item .stub-img {
  min-height: 0;
}

.gallery-item .stub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover .stub-img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: .92rem;
  font-weight: 600;
  color: var(--sage-ink);
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--sage);
  padding-block: 48px 28px;
  position: relative;
  overflow: hidden;
  --dot-c: rgba(51, 71, 59, .22);
  background-size: 22px 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr 1.2fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-col--brand {
  display: flex;
  align-items: flex-start;
}

.footer-col--brand .brand-logo {
  height: 128px;
  width: 128px;
  box-shadow: var(--shadow-card);
}

.footer-col h4 {
  font-size: .95rem;
  margin-bottom: 14px;
  padding-top: 6px;
}

.footer-locations li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--ink);
}

.footer-locations i {
  color: var(--sage-deep);
  margin-top: 4px;
}

.footer-locations strong {
  display: block;
  margin-bottom: 2px;
}

.footer-locations span {
  color: var(--clay);
  font-size: .92rem;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a:hover {
  color: var(--clay);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.footer-social a:hover {
  background: var(--sage-ink);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(51, 71, 59, .16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copyright,
.footer-legal {
  font-size: .82rem;
  color: var(--clay);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal a {
  color: var(--clay);
}

.footer-legal a:hover {
  color: var(--sage-deep);
}

/* --------------------------------------------------------------------------
   11. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "quote"
      "media"
      "copy";
  }


  .hero-inner .hero-left {
    display: contents;
  }

  .hero-inner .intro-quote {
    grid-area: quote;
  }

  .hero-inner .hero-copy {
    grid-area: copy;
  }

  .hero-media-frame {
    max-width: 300px;
    margin-inline: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--brand,
  .footer-grid .footer-col:nth-child(2) {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-treatments {
    font-size: 1.4rem;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid rgba(92, 127, 104, .14);
    box-shadow: var(--shadow-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--ease);
  }

  .main-nav.is-open {
    max-height: 520px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 4px;
  }

  .main-nav a {
    border-radius: 12px;
    padding: 14px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .header-mobile-actions {
    display: flex;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col--brand {
    justify-content: center;
  }

  .cta-band {
    padding: 56px 20px;
  }

  :root {
    --fold-lg: 16px;
  }

  .intro-quote {
    background: url(/assets/img/brush-mobile.png) no-repeat center center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-size: contain;
    background-size: 100% 100%;
    padding-left: 40px;
    padding-right: 45px;
  }

  .hero-media-frame {
    padding-top: 10px;
  }

  .hero-treatments {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px 8px;
    margin-bottom: 12px;
  }

  .hero-treatments li {
    gap: 3px;
    white-space: nowrap;
  }

  .hero-treatments li img {
    width: 12px;
  }
  p {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* --------------------------------------------------------------------------
   10. Treatments page - jump nav + per-treatment blocks
   -------------------------------------------------------------------------- */
.treatments-jumpnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 56px;
}

.treatments-jumpnav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  border-radius: 999px;
  background: var(--rose-deep);
  color: var(--sage-ink);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.treatments-jumpnav a:hover {
  background: var(--sage-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.treatment-block {
  margin-bottom: 88px;
}

.treatment-block:last-child {
  margin-bottom: 0;
}

.treatment-media {
  position: relative;
  width: 75%;
  margin-inline: auto;
}

.treatment-media-inner {
  aspect-ratio: 16 / 9;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: var(--shadow-card);
}

.treatment-media-inner .stub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 216px;
  height: 216px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.treatment-band {
  width: 75%;
  margin-inline: auto;
  padding: 18px 24px;
  text-align: center;
}

.treatment-band h2 {
  margin: 0;
}

.treatment-body {
  max-width: 760px;
  margin: 0 auto;
  text-align: right;
  padding-top: 28px;
  font-size: 1.12rem;
}

.treatment-cta {
  text-align: center;
  margin-top: 1.4em;
}

@media (max-width: 640px) {
  .treatment-badge {
    width: 67px;
    height: 67px;
    top: 16px;
    right: 16px;
  }
}

