/* =========================================================
   Rockness Music — site styles
   Rebuilt clean from the live WordPress/Elementor site.
   Palette and type are sampled to match the original exactly.
   ========================================================= */

:root {
  --purple:  #3e098a;  /* headings */
  --green:   #8bc968;  /* primary buttons */
  --cyan:    #35c2d6;  /* top accent bar */
  --yellow:  #fbae17;  /* "Socialize" section */
  --brown:   #936510;  /* copyright bar */
  --black:   #000000;  /* header */
  --text:    #171717;  /* body copy */
  --blue:    #3073c9;  /* footer links */
  --white:   #ffffff;

  --font-head: "Palanquin Dark", sans-serif;
  --font-body: "Coustard", serif;
  --font-btn:  "Roboto", sans-serif;

  --maxw: 1200px;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  background-image: url("../images/rockness_bg.jpg");
  background-position: center center;
  background-repeat: repeat-y;
  background-size: cover;
  background-attachment: fixed;
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--purple);
  text-transform: capitalize;
  line-height: 1.05;
}
.tt-none { text-transform: none; }
h1 { font-size: 60px; }
h2 { font-size: 40px; }
h3 { font-size: 22px; }
p  { margin-bottom: 1rem; }
p a { color: var(--purple); font-weight: 700; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 40px 0; }
/* Decorative blob shapes (absolute on live Elementor) — don't push page height */
.section--decor {
  padding: 0;
  height: 0;
  overflow: visible;
  position: relative;
  z-index: 0;
}
.img-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  max-width: 220px;
  width: 16vw;
  height: auto;
}
.estack { position: relative; }
.estack > .img-decor { top: 0; right: 0; }
/* Schedule / content rows: collapse columns that only hold a decor blob */
.erow { position: relative; }
.estack:has(> img.img-decor:only-child) {
  flex: 0 0 0 !important;
  min-width: 0 !important;
  width: 0;
  margin: 0;
  padding: 0;
  gap: 0;
  overflow: visible;
}
.erow > .estack:has(> img.img-decor:only-child):first-child > .img-decor {
  left: 0;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
}
.erow > .estack:has(> img.img-decor:only-child):last-child > .img-decor {
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
}
/* Form pages: flanking blob columns (live uses absolute Elementor widgets) */
.form-with-decor {
  position: relative;
  display: block;
}
.form-with-decor > .contact-form-wrap,
.form-with-decor > .form-slot {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
.form-decor {
  position: absolute;
  top: 0;
  width: 160px;
  z-index: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-decor--left { left: 0; }
.form-decor--right { right: 0; }
.form-decor img {
  max-width: 160px;
  width: 100%;
  height: auto;
  margin: 0;
}
@media (max-width: 900px) {
  .form-decor,
  .estack:has(> img.img-decor:only-child) > .img-decor { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  max-width: 100%;
  font-family: var(--font-btn);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 16px;
  text-align: center;
  color: #fff !important;
  text-decoration: none !important;
  background-color: initial;
  background-image: linear-gradient(rgba(173, 224, 143, .84), rgba(139, 202, 104, .84) 50%);
  padding: 18px;
  border: 0;
  border-radius: 42px;
  box-shadow: rgba(57, 31, 91, 0.24) 0 2px 2px, rgba(179, 132, 201, 0.4) 0 8px 12px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: rgba(57, 31, 91, 0.28) 0 3px 4px, rgba(179, 132, 201, 0.5) 0 10px 16px; }
/* Header CTA stays compact, not the full 230px content-button width */
.header-cta .btn {
  width: auto;
  padding: 12px 30px;
  background-image: none;
  background-color: var(--white);
  color: #6db33f !important;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  border: 2px solid #e8f5dd;
  box-shadow: rgba(57, 31, 91, 0.15) 0 2px 4px;
}
.header-cta .btn:hover { background-color: #f2fbea; }

/* Per-button color variants (hero CTAs) */
.btn--blue   { background-image: linear-gradient(#35c2d6 0%, #3073c9 100%); }
.btn--yellow { background-image: linear-gradient(#ffd31c 0%, #fbae17 100%); }

/* ---------- top accent bar ---------- */
.topbar { background: var(--cyan); height: 12px; width: 100%; }

/* ---------- header ---------- */
.site-header {
  background: var(--cyan);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.site-header .logo img { height: 56px; width: auto; }
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 16px;
}
.main-nav a:hover { color: var(--purple); }

/* dropdown */
.main-nav .has-sub { position: relative; }
.main-nav .has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  vertical-align: 2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
}
.main-nav .submenu {
  display: none;
  position: absolute;
  top: 130%;
  left: 0;
  background: #2bb0c2;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  min-width: 220px;
  padding: 10px 0;
  border-radius: 6px;
  flex-direction: column;
  gap: 0;
}
.main-nav .has-sub:hover .submenu { display: flex; }
.main-nav .submenu li { padding: 0; }
.main-nav .submenu a { display: block; padding: 8px 18px; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; color: var(--white); font-size: 26px; border: none; cursor: pointer; }

/* ---------- interior page hero banner + per-page themed header ---------- */
/* Live: a solid colored fixed header (color varies per page) floating over a
   full-bleed hero photo + translucent overlay-mask + white page title. */
.has-hero .topbar { display: none; }
.has-hero .site-header { position: fixed; top: 0; left: 0; right: 0; }
.hdr-teal   .site-header { background: #35C2D6; }
.hdr-purple .site-header { background: #3E098A; }
.hdr-blue   .site-header { background: #3073C9; }
.hdr-yellow .site-header { background: #FBAE17; }
.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  background-color: #3E098A;
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: cover, cover;
  padding: 110px 0 28px;
}
.page-hero h1 { color: var(--purple); font-size: 42px; margin: 0; }
.page-hero .container { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.page-hero-sub { color: var(--purple); font-family: var(--font-head); font-weight: 600; font-size: 22px; margin: 0; }
.page-hero-btn { align-self: flex-start; }
@media (max-width: 768px) { .page-hero { min-height: 300px; padding-top: 96px; } }

/* ---------- hero ---------- */
.hero {
  text-align: center;
  padding: 56px 0 40px;
  background-image: url("../images/bolt-bg.png");
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media (max-width: 768px) { .hero { background-size: contain; background-position: top right; } }
.hero h1 { margin-bottom: 28px; }
.hero-img { max-width: 768px; margin: 0 auto 28px; }
.hero h2 { margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }

/* ---------- alternating feature rows ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}
.feature.reverse .feature-media { order: 2; }
.feature h2 { margin-bottom: 18px; }
.feature .btn { margin-top: 10px; }
.feature-media img { margin: 0 auto; max-width: 460px; }
.feature-media.duo { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.feature-media.duo img { max-width: 48%; }

/* grown-ups full-width image band */
.band { text-align: center; }
.band h2 { margin-bottom: 28px; }
.band img { max-width: 520px; margin: 0 auto; }

/* ---------- testimonials ---------- */
.testimonials { text-align: center; }
.testimonials > .container > h2 { margin-bottom: 32px; }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.testi-media img { max-width: 460px; margin: 0 auto; }
.quotes { display: flex; flex-direction: column; gap: 22px; text-align: left; }
.quote { font-size: 18px; font-style: italic; color: var(--text); }
/* carousel testimonials on live use body font, upright, capitalized (not italic) */
.slider .slide.quote { font-style: normal; text-transform: capitalize; }
/* static attribution reviews on live are Roboto, upright, ~20px (not italic Coustard) */
.quote:not(.slide) { font-family: var(--font-btn); font-style: normal; font-size: 20px; }
.quote::before { content: ""; }
.slide-title {
  display: block;
  font-family: var(--font-head);
  font-style: normal;
  text-transform: none;
  font-weight: 600;
  color: var(--purple);
  font-size: 22px;
  margin-bottom: 10px;
}
.quote-attrib { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 18px auto 0; text-align: center; }
.quote-attrib img { max-width: 320px; border-radius: 8px; }
.quote-attrib p { line-height: 1.4; }

/* ---------- landing pages + reserve modal ---------- */
.header-landing .container {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.landing-tagline {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  margin: 0;
  line-height: 1.3;
  max-width: 28ch;
}
@media (max-width: 700px) {
  .landing-tagline { font-size: 14px; max-width: 18ch; }
}
.footer-landing .copyright { margin-top: 0; }
.modal-overlay[hidden] { display: none; }
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(23, 23, 23, .6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 32px 28px;
  box-shadow: rgba(57,31,91,.35) 0 12px 40px;
}
.modal h1 { font-size: 34px; margin-bottom: 18px; }
.modal-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: 0; font-size: 30px; line-height: 1;
  color: var(--text); cursor: pointer;
}
.modal .contact-form label { color: var(--text); }
.modal .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
/* contact-page form (white background: dark labels, bordered inputs) */
.contact-form-wrap { width: 100%; }
.contact-form-wrap .contact-form { max-width: 560px; margin: 0 auto; }
.contact-form-wrap .contact-form label { color: var(--text); }
.contact-form-wrap .contact-form input,
.contact-form-wrap .contact-form select,
.contact-form-wrap .contact-form textarea { border: 1px solid #cfcfcf; }
.contact-form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form-wrap .addr-group { border: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-form-wrap .addr-group legend { color: var(--text); font-weight: 700; font-size: 14px; padding: 0; margin-bottom: 4px; }
.contact-form-wrap .sub { display: block; font-size: 12px; color: #777; margin-top: 3px; }

/* ---------- captioned images ---------- */
figure.captioned { margin: 0; }
figure.captioned figcaption { text-align: center; font-size: 15px; color: var(--text); margin-top: 8px; }

/* ---------- teacher facts ---------- */
.facts { display: flex; flex-direction: column; gap: 20px; justify-content: center; text-align: center; }
.fact img { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 6px; }
.fact h3 { margin-bottom: 4px; text-transform: none; }
.fact p { margin: 0; }

/* ---------- video intro ---------- */
.video-intro .container { max-width: 840px; text-align: center; }
.video-intro .video-embed { margin: 0 auto; }
.video-band-img { max-width: 520px; margin: 28px auto 0; }

/* ---------- testimonials 3-column row ---------- */
.testi-trio {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 16px;
  align-items: center;
}
.testi-trio .testi-media img { max-width: 280px; margin: 0 auto; }
.testi-center { text-align: center; }
.testi-center h2 { margin-bottom: 8px; }
/* pull the "Grown Ups" heading and testimonials together, trim dead space */
.band { padding: 40px 0 0; }
.testimonials { padding-top: 16px; }
.testimonials .slider { padding: 0 40px; }
.testimonials .slider .slide { min-height: 120px; font-size: 18px; }

/* ---------- partners ---------- */
.partners { text-align: center; }
.partners h2 { margin-bottom: 32px; }
.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: 36px 48px;
}
@media (max-width: 768px) { .partner-logos { grid-template-columns: repeat(2, 1fr); } }
.partner-logos img { max-height: 70px; width: auto; filter: grayscale(0); }

/* ---------- contact band (blue, with banjo character bg) ---------- */
.footer-contact {
  background-color: #3073c9;
  background-image: url("../images/contact_bg.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  padding: 64px 0;
}
.footer-contact h2 { color: var(--yellow); margin-bottom: 24px; }
.contact-form {
  max-width: 560px;     /* keep the form off the banjo character on the right */
  margin: 0;
  display: grid;
  gap: 14px;
  text-align: left;
}
.contact-form label { color: var(--white); font-weight: 700; font-size: 14px; display: block; margin-bottom: 4px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  background: #fff;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn {
  justify-self: stretch;
  width: 100%;
  margin-top: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0;
  padding: 12px 18px;
  border-radius: 26px;
  background-image: linear-gradient(#9ed46d, #7cb857);
  box-shadow: rgba(57, 31, 91, 0.18) 0 2px 3px;
}

/* ---------- footer (orange band, three columns) ---------- */
.site-footer { background: var(--yellow); padding: 48px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h3 { color: var(--white); margin-bottom: 16px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a { color: var(--white); text-decoration: underline; font-size: 15px; }
.footer-grid a:hover { color: var(--purple); }
.social-icons { display: flex; gap: 16px; flex-wrap: wrap; }
.social-icons a { color: var(--white); display: inline-flex; }
.social-icons svg { width: 26px; height: 26px; }
.social-icons a:hover { color: var(--purple); }

.copyright {
  background: var(--brown);
  color: var(--white);
  text-align: center;
  padding: 22px 0;
  margin-top: 48px;
}
.copyright a { color: var(--white); text-decoration: underline; }
.copyright p { margin: 0; }

/* ---------- slider component ---------- */
.slider { position: relative; overflow: hidden; padding: 0 44px; }
.slider-track { display: flex; transition: transform .5s ease; }
.slider .slide {
  min-width: 100%;
  min-height: 150px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 12px;
  margin: 0;
  font-size: 20px;
  font-style: normal;
  text-transform: capitalize;
  line-height: 1.5;
  color: var(--text);
}
@media (max-width: 768px) { .slider .slide { min-height: 240px; } }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border: none;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { filter: brightness(1.1); }
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.slider-dot {
  width: 10px; height: 10px;
  padding: 0; border: none; border-radius: 50%;
  background: #d7c9ef; cursor: pointer;
}
.slider-dot.active { background: var(--purple); }

/* ---------- converted-page layout primitives ---------- */
.erow { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: center; }
.erow > * { flex: 1 1 300px; min-width: 260px; }
.erow.form-with-decor {
  display: block;
  position: relative;
}
.erow.form-with-decor > .form-decor,
.erow.form-with-decor > .contact-form-wrap,
.erow.form-with-decor > .form-slot {
  flex: unset;
  min-width: 0;
}
.erow--2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: start; }
.erow--2 > * { flex: unset; min-width: 0; width: auto; }
@media (max-width: 768px) { .erow--2 { grid-template-columns: 1fr; } }
.estack { display: flex; flex-direction: column; gap: 18px; }
.estack > img, .erow > img { margin: 0 auto; }
.rich { font-size: 16px; line-height: 1.6; }
.prose { max-width: 860px; margin: 0 auto; text-align: left; }
.rich h2, .rich h3, .rich h4 { margin: 0.6em 0 0.3em; }
.rich p { margin-bottom: 1rem; }
.rich ul, .rich ol { margin: 0 0 1rem 1.25rem; }
.rich a { color: var(--purple); font-weight: 700; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; width: 100%; border-radius: 12px; overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
.soundcloud-embed {
  width: 100%;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}
.soundcloud-embed iframe { width: 100%; height: 450px; border: 0; display: block; }
.slider--gallery .slide {
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-transform: none;
  justify-content: center;
}
.slider--gallery .slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}
.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.thank-you-box {
  background: var(--green);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 800px;
  width: 80%;
  margin: 0 auto;
  color: var(--white);
}
.thank-you-box h1,
.thank-you-box h2 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
}
.thank-you-box .rich,
.thank-you-box .rich p,
.thank-you-box a {
  color: var(--white);
}
.thank-you-box a { text-decoration: underline; font-weight: 700; }
.icon-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.icon-list li::before { content: "\2713  "; color: var(--green); font-weight: 700; }
/* (old accordion styles replaced by purple toggle bars below) */
.rule { border: 0; border-top: 1px solid #e6e6e6; margin: 16px 0; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 8px 14px; z-index: 999; border-radius: 6px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .feature, .testi-grid, .testi-trio { grid-template-columns: 1fr; gap: 28px; }
  .feature.reverse .feature-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-contact { background-position: top right; }
  .contact-form { max-width: 100%; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cyan);
    padding: 16px 24px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .main-nav .submenu { position: static; display: block; padding: 8px 0 8px 16px; }
}

/* ---------- form-page footer ---------- */
.footer-form .footer-logo img { max-width: 170px; margin-bottom: 12px; }
.footer-form .footer-col p { color: var(--white); font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
.footer-quicklinks { list-style: none; padding: 0; margin: 0; }
.footer-quicklinks li { margin-bottom: 8px; }
.footer-quicklinks a { color: var(--white); font-weight: 700; text-decoration: none; }
.footer-quicklinks a:hover { text-decoration: underline; }

/* ---------- photo hero banners (service pages, matches live) ---------- */
.page-hero {
  position: relative;
  background-size: cover, cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: contain;
  pointer-events: none;
}
.page-hero--purple::after { background-image: url("../images/overlay-mask-purple.png"); }
.page-hero--yellow::after { background-image: url("../images/overlay-mask-yellow.png"); }
.page-hero--blue::after   { background-image: url("../images/overlay-mask-blue.png"); }
.page-hero .container { position: relative; z-index: 1; width: 100%; }
.page-hero h1 { font-size: 42px; margin-bottom: 18px; }
.page-hero--short { min-height: 282px; }
.page-hero--tall  { min-height: 407px; }

/* ---------- photo carousel slides (seasonal classes, matches live) ---------- */
.slider .slide--photo {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  font-style: normal;
  padding: 40px 60px;
}
.slider .slide--photo::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.slider .slide--photo > * { position: relative; z-index: 1; }
.slider .slide--photo .slide-title { color: var(--white); font-family: var(--font-body); font-weight: 400; font-size: 35px; }
.slider .slide--photo .slide-text { font-size: 17px; max-width: 820px; margin: 0 auto; }

/* ---------- FAQ / toggle bars (purple, matches live) ---------- */
details.acc { border: 0; margin-bottom: 10px; }
details.acc summary {
  background: var(--purple);
  color: var(--white);
  font-size: 16px;
  padding: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::before {
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid currentColor;
  transition: transform .15s ease;
}
details.acc[open] summary::before { transform: rotate(90deg); }
details.acc > div { padding: 18px 6px; }

/* ---------- location photo cards (matches live) ---------- */
.loc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.loc-cards--2 { grid-template-columns: repeat(2, 1fr); }
.loc-card {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
}
.loc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/overlay-mask-blue.png");
  background-size: cover;
  background-position: left center;
}
.loc-card span { position: relative; z-index: 1; color: var(--white); font-family: var(--font-body); font-size: 16px; font-weight: 700; }
@media (max-width: 768px) {
  .loc-cards,
  .loc-cards--2 { grid-template-columns: 1fr; }
}

/* ---------- sticky bottom CTA (classes page, matches live) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  text-align: left;
  padding: 14px 28px;
  display: block;
  box-shadow: 0 -3px 10px rgba(0,0,0,.15);
}

/* ---------- small sub-headings (matches live Elementor sizes) ---------- */
.h-sub { font-size: 16px !important; line-height: 1.4; }
.h-sub--yellow { color: var(--yellow); font-weight: 400; }

/* sticky CTA refinements (centered, arrow icon — matches live) */
.sticky-cta { text-align: center; font-size: 22px; }
.sticky-cta-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-right: 10px;
  background: var(--white); color: var(--green);
  border-radius: 50%; font-size: 20px; vertical-align: middle;
}

/* current-page nav highlight (matches live) */
.main-nav a.current { color: var(--yellow); }
/* on the yellow-themed header, the yellow "current" link would vanish — use purple */
.hdr-yellow .main-nav a.current { color: var(--purple); }
