/* ============================================================================
   The Clover Clinic — custom visual identity
   Loaded AFTER PicoCSS. Plain descriptive classes, Pinegrow-friendly.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  --tcc-cyan:        #00afe4;
  --tcc-cyan-dark:   #0092bd;
  --tcc-green:       #6b8238;
  --tcc-green-dark:  #59702c;
  --tcc-ink:         #463939;   /* warm brown — button labels, READ MORE */
  --tcc-text:        #2b2b2b;
  --tcc-muted:       #5c5c5c;
  --tcc-page-bg:     #eeeeee;
  --tcc-card:        #ffffff;
  --tcc-footer-bg:   #00afe4;

  --tcc-font-head: "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  --tcc-font-body: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  --tcc-font-serif: "Cardo", Georgia, "Times New Roman", serif;

  --tcc-maxw: 960px;      /* Duda "Layout Theme" content width — matches live site */
  --tcc-gap: 2rem;

  /* Pico overrides */
  --pico-font-family: var(--tcc-font-body);
  --pico-line-height: 1.55;
  --pico-border-radius: 2px;
  --pico-typography-spacing-vertical: 1.25rem;
}

/* ---- Base ------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--tcc-page-bg);
  color: var(--tcc-text);
  font-family: var(--tcc-font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

[x-cloak] { display: none !important; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tcc-font-head);
  color: var(--tcc-text);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

p { margin: 0 0 1.1em; }

a { color: var(--tcc-cyan-dark); }

/* PicoCSS's classless build turns `body > header/main/footer` into a centred,
   max-width container with side + block padding. Our layout is full-bleed —
   every section background runs edge to edge and the inner `.container`
   (and `.header-inner`) do the width limiting — so undo Pico's treatment here.
   Without this, the #eee body shows as grey strips beside every section. */
body > header,
body > main,
body > footer {
  max-width: none;
  padding: 0;
  margin: 0;
}

/* Pico also puts `margin-bottom` on every <section>, which shows as a grey
   strip of page background between our full-bleed sections. Sections butt
   together on the live site — kill it. */
main > section { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: calc(var(--tcc-maxw) + 40px);   /* 960 content + 20px gutter each side */
  margin-inline: auto;
  padding-inline: 20px;
}

.center { text-align: center; }
.text-cyan  { color: var(--tcc-cyan); }
.text-green { color: var(--tcc-green); }

/* Section rhythm -------------------------------------------------------------*/
.section { padding-block: 3.25rem; }
.section--tight { padding-block: 2.75rem; }
.section--white { background: #fff; }
.section--grey  { background: var(--tcc-page-bg); }

.section-title {
  color: var(--tcc-green);
  font-size: clamp(1.9rem, 4vw, 36px);
  text-align: center;
  letter-spacing: normal;
  font-weight: 700;
  margin-bottom: 2.25rem;
}
.section-title--plain { text-transform: none; }

.lead {
  font-size: 1.15rem;
  color: var(--tcc-muted);
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--tcc-font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.btn-cyan {
  background: var(--tcc-cyan);
  color: #fff;
}
.btn-cyan:hover { background: var(--tcc-cyan-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--tcc-ink);
  border: 1px solid var(--tcc-ink);
}
.btn-outline:hover { background: var(--tcc-ink); color: #fff; }

.readmore {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 300;
  letter-spacing: normal;
  font-size: 18px;
  color: var(--tcc-ink);
  text-decoration: none;
}
.readmore:hover { color: var(--tcc-cyan-dark); }

/* white-outline button — used on Speciality Area image cards (matches live) */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--tcc-text); }

/* ============================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}
.header-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 0.6rem 40px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand { flex: 0 0 auto; display: block; }
.brand img { width: 158px; }

.site-nav { flex: 1 1 auto; }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 0.6rem;
  row-gap: 0.15rem;
}
.nav-list > li { position: relative; padding: 0; margin: 0; }  /* override PicoCSS nav li padding */
.nav-list > li > a {
  display: inline-block;
  padding: 0.2rem 0.15rem;
  font-family: var(--tcc-font-body);
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-list > li > a:hover { color: var(--tcc-green); }

/* active page — driven by <body data-page="…"> */
body[data-page="home"]              [data-nav="home"],
body[data-page="about-us"]          [data-nav="about-us"],
body[data-page="general-services"]  [data-nav="general-services"],
body[data-page="brain-bootcamp"]    [data-nav="brain-bootcamp"],
body[data-page="smart-baby"]        [data-nav="smart-baby"],
body[data-page="baby-in-a-box"]     [data-nav="baby-in-a-box"],
body[data-page="new-patients"]      [data-nav="new-patients"],
body[data-page="memberships"]       [data-nav="memberships"],
body[data-page="giving-back"]       [data-nav="giving-back"],
body[data-page="contact"]           [data-nav="contact"] {
  color: var(--tcc-green);
  border-bottom-color: var(--tcc-green);
}
/* keep SERVICES lit while on one of its sub-pages */
body[data-page="general-services"] .has-dropdown > a,
body[data-page="brain-bootcamp"]   .has-dropdown > a,
body[data-page="smart-baby"]       .has-dropdown > a,
body[data-page="baby-in-a-box"]    .has-dropdown > a {
  color: var(--tcc-green);
}
/* colon dividers between top-level items */
.nav-list > li.nav-item:not(:last-of-type)::after {
  content: ":";
  margin-left: 0.6rem;
  color: #9a9a9a;
  font-size: 1.05rem;
}
.caret { font-size: 0.8em; }

/* dropdown */
.has-dropdown .dropdown {
  display: block;                 /* override Pico's `nav ul { display:flex }` */
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  min-width: 230px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
  border-top: 3px solid var(--tcc-green);
  z-index: 50;
}
.has-dropdown .dropdown li {
  display: block;
  margin: 0;
  padding: 0;
}
.has-dropdown .dropdown li a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}
.has-dropdown .dropdown li a:hover {
  background: var(--tcc-page-bg);
  color: var(--tcc-green);
}

.call-btn {
  flex: 0 0 auto;
  display: inline-block;
  background: var(--tcc-cyan);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 1.4rem;
  border-radius: 3px;
  white-space: nowrap;
}
.call-btn:hover { background: var(--tcc-cyan-dark); color: #fff; }

/* hamburger */
.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--tcc-green);
  border-radius: 2px;
  margin: 5px 0;
}

/* ============================================================================
   HERO (home)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 876px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #5b5b5b center / cover no-repeat;
  background-attachment: fixed;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 35, 35, .48);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 4rem 1.5rem;
}
.hero-wordmark {
  font-family: var(--tcc-font-head);
  font-style: italic;
  font-weight: 700;
  color: #fff;
  font-size: clamp(2rem, 6vw, 48px);
  line-height: 1.5;
  letter-spacing: normal;
  margin: 0;
}
.hero-title {
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 48px);
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}
.hero-sub {
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.1rem, 3vw, 28px);
  font-weight: 300;
  margin: 0.4rem 0 0;
}

/* ============================================================================
   QUOTE BAND  ("we treat the body, not the symptoms")
   ========================================================================== */
.quote-band {
  position: relative;
  background: #fff;
  text-align: center;
  padding-block: 2.5rem;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/clover_green_tiny.svg") 0 0 / 260px repeat;
  opacity: 0.07;
  pointer-events: none;
}
.quote-band > * { position: relative; z-index: 1; }
.quote-head {
  color: var(--tcc-cyan);
  font-size: clamp(1.8rem, 5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.quote-def {
  font-family: var(--tcc-font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  line-height: 1.5;
  max-width: 960px;
  margin-inline: auto;
  color: #1c1c1c;
}

/* ============================================================================
   MEDIA ROWS  (image + text, alternating, offset overlap)
   ========================================================================== */
/* Full-bleed alternating image / text rows ("What is a Naturopath").
   Each row is a 50 / 50 split: the photo runs to the outer edge of the
   viewport, the text half carries a deep inset that pushes copy toward
   the centre — matches the live site's Duda "full bleed" rows. */
.section-media { background: #fff; }

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.media-row .media-figure { margin: 0; align-self: stretch; }
.media-row .media-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-row .media-body {
  padding: 3.5rem clamp(1.5rem, 6vw, 100px);
}
.media-row .media-body > *:last-child { margin-bottom: 0; }

.media-head {
  color: var(--tcc-text);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 700;
  margin: 0;
}
.rule {
  width: 60px;
  height: 3px;
  background: #111;
  margin: 0.9rem 0 1.4rem;
}

/* stacked intro: portrait + two paragraphs (kept within the 960 container) */
.intro-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: flex-start;
}
.intro-split img { box-shadow: 0 18px 40px rgba(0, 0, 0, .16); }
.intro-split .big { font-size: 1rem; line-height: 1.7; }

/* ============================================================================
   SERVICES CARDS
   ========================================================================== */
.section-services {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.section-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/clover_green_tiny.svg") 0 0 / 260px repeat;
  opacity: 0.07;
  pointer-events: none;
}
.section-services > .container { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}
.service-card {
  padding: 2.5rem 2rem 3rem;
  text-align: center;
  border-right: 1px solid #ededed;
}
.service-card:last-child { border-right: 0; }
.service-card .clover-ico {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
}
.service-card h3 {
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--tcc-text);
  margin-bottom: 1.2rem;
}
.service-card ul {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
}
.service-card ul li {
  list-style: none;
  padding: 0.32rem 0;
  color: var(--tcc-text);
}
.service-card ul li::marker { content: ""; }

/* ============================================================================
   SPECIALITY AREA CARDS  (image bg + overlay + hover)
   ========================================================================== */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.specialty-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.75rem;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.specialty-card > *:not(.specialty-bg) { position: relative; z-index: 2; }
.specialty-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .5s ease;
}
.specialty-card::after {     /* overlay */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 38, .55);
  z-index: 1;
  transition: background .35s ease;
}
.specialty-card:hover::after { background: rgba(20, 28, 38, .3); }
.specialty-card:hover .specialty-bg { transform: scale(1.05); }
.specialty-card h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.specialty-card p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 34ch;
}
.specialty-card .btn { margin-top: 0.8rem; }

/* ============================================================================
   INTERIOR PAGE HERO / BANNER
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #4a4a4a center / cover no-repeat;
  background-attachment: fixed;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 40, 48, .5);
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  padding: 1rem;
}

.prose { max-width: 900px; margin-inline: auto; }
.prose h2 {
  color: var(--tcc-green);
  margin-top: 2.2rem;
  font-size: 1.7rem;
}
.prose h3 { color: var(--tcc-text); margin-top: 1.8rem; }
.prose ul { padding-left: 1.2rem; }
.prose ul li { margin-bottom: 0.4rem; }

/* anchor link list (general services) */
.anchor-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  columns: 2;
  column-gap: 2.5rem;
}
.anchor-list li { margin-bottom: 0.6rem; break-inside: avoid; }
.anchor-list a {
  color: var(--tcc-cyan-dark);
  font-weight: 600;
  text-decoration: none;
}
.anchor-list a:hover { text-decoration: underline; }

/* ============================================================================
   MEMBERSHIP PLAN CARDS
   ========================================================================== */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.plan-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-top: 4px solid var(--tcc-green);
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
}
.plan-card h3 {
  color: var(--tcc-green);
  text-transform: uppercase;
  font-size: 1.35rem;
}
.plan-price {
  font-family: var(--tcc-font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--tcc-cyan);
  margin: 0.25rem 0 1rem;
}
.plan-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================================
   GIVING BACK
   ========================================================================== */
.donation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.donation-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  padding: 1.75rem;
}
.donation-card h2 {
  color: var(--tcc-green);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* simple Alpine carousel */
.carousel { position: relative; max-width: 900px; margin: 2.5rem auto 0; }
.carousel-viewport {
  position: relative;
  aspect-ratio: 16 / 8;
  background: #dfe6ea;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  background: center / cover no-repeat;
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 28, .5);
  z-index: 0;
}
.carousel-slide > * { position: relative; z-index: 1; }
.carousel-slide h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: .5rem; }
.carousel-slide p { color: #fff; max-width: 46ch; margin: 0 auto; font-size: 1.02rem; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .85);
  border: 0;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 50%;
}
.carousel-btn.prev { left: 0.75rem; }
.carousel-btn.next { right: 0.75rem; }
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.carousel-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: #bcc7cd;
  cursor: pointer;
  padding: 0;
}
.carousel-dots button[aria-current="true"] { background: var(--tcc-green); }

/* ============================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  font: inherit;
  margin-top: 0.3rem;
  background: #fff;
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-details h3 { color: var(--tcc-cyan); text-transform: uppercase; }
.contact-details p { margin-bottom: 0.35rem; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--tcc-footer-bg);
  color: #fff;
  padding-block: 3rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
  text-align: center;
}
.footer-col .footer-ico {
  width: 42px;
  height: 42px;
  margin: 0 auto 1rem;
  fill: #fff;
}
.footer-col p { margin-bottom: 0.4rem; }
.footer-fine { font-size: 0.85rem; opacity: 0.9; margin-top: 0.8rem; }
.footer-fs img { width: 210px; margin: 0 auto; }
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================================
   SCROLL-IN ANIMATION
   ========================================================================== */
/* Content is visible by default; the fade-in only applies when JS is active
   (html.js-anim is set by an inline script before first paint). This keeps
   the page fully readable with no JS and inside the Pinegrow editor. */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.js-anim .reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .brand img { width: 160px; }
  .nav-list > li > a { font-size: 0.98rem; }
  .call-btn { font-size: 0.95rem; padding: 0.8rem 1rem; }
}

@media (max-width: 900px) {
  body { font-size: 17px; }
  .header-inner { flex-wrap: wrap; gap: 0.75rem; }
  .nav-toggle { display: block; }
  .site-nav {
    flex-basis: 100%;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding-block: 0.5rem;
  }
  .nav-list > li > a {
    display: block;
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid #eee;
    white-space: normal;
  }
  .nav-list > li.nav-item:not(:last-of-type)::after { content: none; }
  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    border-top: 0;
    padding-left: 1rem;
    min-width: 0;
  }
  .call-btn { order: 3; }

  .media-row { grid-template-columns: 1fr; }
  .media-row .media-figure { order: -1; }          /* photo on top when stacked */
  .media-row .media-figure img { height: auto; max-height: 60vh; }
  .media-row .media-body { padding: 2.5rem 1.25rem; }
  .intro-split { grid-template-columns: 1fr; }
  .intro-split img { max-width: 340px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-bottom: 1px solid #ededed; }
  .specialty-grid { grid-template-columns: 1fr; }
  .plan-grid,
  .donation-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .anchor-list { columns: 1; }
  .hero { background-attachment: scroll; min-height: 78vh; }
  .page-hero { background-attachment: scroll; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero, .page-hero { background-attachment: scroll; }
  .js-anim .reveal { opacity: 1; transform: none; transition: none; }
  .specialty-card .specialty-bg { transition: none; }
}
