:root {
  --ivory: #fbf8f3;
  --cream: #f5eee7;
  --cream2: #f0e7de;
  --stone: #d8c9bd;
  --taupe: #a9907d;
  --taupe-dark: #7c6657;
  --charcoal: #171310;
  --text: #25201d;
  --muted: #5f5550;
  --line: #ded0c4;
  --white: #fffdf9;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow: 0 18px 42px rgba(62, 48, 38, 0.11);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.58;
  letter-spacing: 0.01em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.wide {
  width: min(1280px, calc(100% - 60px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: #fff;
  padding: 10px 14px;
  z-index: 999;
}
.skip-link:focus {
  top: 20px;
}
.header {
  height: 86px;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(222, 208, 196, 0.76);
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 24px;
}
.logo img {
  width: 250px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  line-height: 1;
  color: #15110f;
}
.nav a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 1px;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.24s;
}
.nav a:hover:after,
.nav a.active:after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: var(--taupe);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 11px;
  transition: 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn.dark {
  background: var(--charcoal);
}
.btn.outline {
  background: transparent;
  color: var(--taupe-dark);
  border-color: var(--taupe-dark);
}
.btn.light {
  background: #fff;
  color: var(--taupe-dark);
  border-color: #fff;
}
.btn.small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 10px;
}
.book-fixed {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 79;
  display: none;
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a3930;
  font-weight: 700;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.04;
  margin: 0;
}
h1 {
  font-size: clamp(48px, 6.2vw, 80px);
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em;
}
h3 {
  font-size: 25px;
  letter-spacing: -0.012em;
}
p {
  margin: 0;
  color: var(--muted);
}
.lead {
  font-size: 18px;
  line-height: 1.75;
  color: #302a27;
}
.italic {
  font-style: italic;
  color: #8d7a6e;
}
.hero {
  background: linear-gradient(
    90deg,
    #fbf8f3 0%,
    #fbf8f3 47%,
    #efe6df 47%,
    #efe6df 100%
  );
  min-height: 642px;
}
.hero .wide {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 642px;
}
.hero-copy {
  padding: 92px 30px 38px 10px;
}
.hero h1 {
  max-width: 600px;
  margin-bottom: 28px;
}
.hero p.lead {
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 642px;
  object-fit: cover;
  object-position: center top;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 680px;
}
.trust-item {
  text-align: center;
  color: #181410;
}
.trust-icon {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--taupe-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--taupe-dark);
  font-size: 16px;
}
.trust-item strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.trust-item span {
  display: block;
  color: #4c423d;
  font-size: 12px;
  line-height: 1.35;
}
.section {
  padding: 82px 0;
}
.section.tight {
  padding: 54px 0;
}
.section.white {
  background: #fffdf9;
}
.section.cream {
  background: var(--cream);
}
.section-title {
  text-align: center;
  margin: 0 auto 38px;
  max-width: 800px;
}
.section-title h2 {
  margin-bottom: 14px;
}
.section-title p {
  max-width: 650px;
  margin: 0 auto;
}
.services-strip {
  background: #fffdf9;
  padding: 38px 0 50px;
}
.strip-title {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #44342d;
  margin-bottom: 28px;
}
.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(122px, 1fr));
  gap: 20px;
}
.mini-service {
  display: block;
  text-align: center;
}
.mini-service img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 15px;
  background: #eadfd6;
}
.mini-service strong {
  font-size: 13px;
  line-height: 1.24;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  display: block;
}
.mini-service:hover img {
  filter: saturate(1.05) contrast(1.03);
}
.about-home {
  display: grid;
  grid-template-columns: 42% 58%;
  background: #fff;
}
.about-copy {
  padding: 62px 80px 56px 64px;
}
.about-copy h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.short-line {
  width: 38px;
  height: 1px;
  background: var(--taupe-dark);
  margin: 24px 0;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.check-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 26px;
  color: #403832;
  font-size: 14px;
}
.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--taupe-dark);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 392px;
}
.why-strip {
  background: #fffdf9;
  padding: 38px 0 44px;
}
.why-strip h2 {
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 28px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.why-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
}
.why-icon {
  font-size: 30px;
  color: var(--taupe-dark);
  line-height: 1;
}
.why-item strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 6px;
}
.why-item span {
  font-size: 13px;
  color: #4c423d;
  display: block;
  line-height: 1.45;
}
.cta-band {
  position: relative;
  background: #a58d7b;
  color: #fff;
  overflow: hidden;
}
.cta-band:before {
  content: '';
  position: absolute;
  left: -20px;
  top: -35px;
  width: 210px;
  height: 210px;
  background: url('pattern-flower.svg') center/contain no-repeat;
  opacity: 0.82;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 48px 0;
}
.cta-band h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 10px;
}
.cta-band p {
  color: #fff;
}
.footer {
  background: #fffdf9;
  border-top: 1px solid var(--line);
  padding: 36px 0 22px;
}
.footer-main {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.footer-logo img {
  width: 210px;
  max-height: 70px;
  object-fit: contain;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 8px 0 12px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li,
.footer a,
.footer p {
  font-size: 13px;
  color: #423934;
}
.footer li {
  margin: 6px 0;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 11px;
  color: #7a6b60;
}
.page-hero {
  background: linear-gradient(
    90deg,
    #fbf8f3 0%,
    #fbf8f3 52%,
    #efe6df 52%,
    #efe6df 100%
  );
  min-height: 470px;
}
.page-hero .wide {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 470px;
}
.page-copy {
  padding: 76px 40px 66px 8px;
}
.breadcrumbs {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 24px;
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.page-copy h1 {
  font-size: clamp(42px, 5.2vw, 68px);
  margin-bottom: 22px;
}
.page-copy .lead {
  max-width: 560px;
}
.page-img {
  overflow: hidden;
}
.page-img img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 8px 24px rgba(62, 48, 38, 0.05);
}
.card h3 {
  margin-bottom: 13px;
}
.card p {
  font-size: 14px;
}
.card.image-card {
  padding: 0;
  overflow: hidden;
}
.card.image-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.card-body {
  padding: 25px;
}
.service-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.service-card:first-child {
  border-top: 1px solid var(--line);
}
.service-card img {
  width: 160px;
  height: 132px;
  object-fit: cover;
}
.service-card h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.service-card .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.pill {
  border: 1px solid var(--line);
  background: #fffdf9;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 13px;
  color: #4e443e;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: #fffdf9;
}
.split > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 460px;
}
.split-copy {
  padding: 50px;
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}
.step {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px 18px 18px 70px;
  position: relative;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  background: var(--taupe);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.step strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 5px;
}
.notice {
  background: #fff9f2;
  border: 1px solid var(--line);
  padding: 17px;
  font-size: 13px;
  color: #5a504a;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
details {
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 22px;
}
summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--charcoal);
}
summary::-webkit-details-marker {
  display: none;
}
details p {
  margin-top: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a3930;
  font-weight: 700;
  margin: 0 0 7px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4c3b7;
  background: #fffdf9;
  padding: 14px 13px;
  border-radius: 0;
  font: inherit;
  color: var(--text);
}
textarea {
  min-height: 135px;
  resize: vertical;
}
.form-full {
  grid-column: 1/-1;
}
.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.form-note {
  font-size: 12px;
  color: #75685e;
  margin-top: 12px;
}
.booking-box {
  min-height: 250px;
  border: 1px dashed var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fffdf9;
  color: #6b5d55;
  padding: 30px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.article-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 10px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-placeholder {
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 24px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-image: linear-gradient(
    135deg,
    rgba(240, 231, 222, 0.9),
    rgba(255, 253, 249, 0.9)
  );
}
.result-placeholder h3 {
  font-size: 25px;
}
.sticky-note {
  position: sticky;
  top: 110px;
}
.top-space {
  margin-top: 32px;
}
@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 240px auto auto;
  }
  .logo img {
    width: 205px;
  }
  .nav {
    gap: 18px;
  }
  .hero .wide,
  .page-hero .wide {
    grid-template-columns: 1fr;
  }
  .hero,
  .page-hero {
    background: var(--ivory);
  }
  .hero-copy,
  .page-copy {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-visual img,
  .page-img img {
    height: auto;
    max-height: 650px;
  }
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-home,
  .content-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .card-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 790px) {
  .container,
  .wide {
    width: min(100% - 34px, 1180px);
  }
  .header {
    height: 74px;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .logo img {
    width: 190px;
  }
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: #fffdf9;
    padding: 10px 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 10px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 17px;
    right: 17px;
    background: #fffdf9;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .nav.open {
    display: flex;
  }
  .header .btn {
    display: none;
  }
  .book-fixed {
    display: inline-flex;
    left: 18px;
    right: 18px;
    width: auto;
  }
  .hero {
    min-height: 0;
  }
  .hero .wide {
    min-height: 0;
  }
  .hero-copy {
    padding-top: 52px;
  }
  .hero-actions {
    margin-bottom: 36px;
  }
  .trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trust-item {
    text-align: left;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
  .trust-icon {
    margin: 0;
  }
  .service-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-copy {
    padding: 46px 25px;
  }
  .why-grid,
  .footer-main,
  .card-grid,
  .faq-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .cta-band .container {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .page-hero {
    min-height: 0;
  }
  .page-hero .wide {
    min-height: 0;
  }
  .page-copy {
    padding-top: 46px;
  }
  .service-card {
    grid-template-columns: 1fr;
  }
  .service-card img {
    width: 100%;
    height: 220px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    padding-bottom: 90px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .page-copy h1 {
    font-size: 44px;
  }
}

.location-details {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.location-details div {
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 16px;
}
.location-details strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 5px;
}
.mini-service {
  transition: 0.22s ease;
}
.mini-service:hover {
  transform: translateY(-3px);
}
.mini-service:focus-visible {
  outline: 2px solid var(--taupe-dark);
  outline-offset: 4px;
}
.page-service-image {
  margin-top: 34px;
  border: 1px solid var(--line);
  background: #fffdf9;
}
.page-service-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.service-strip-grid.nine {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
}
@media (max-width: 790px) {
  .page-service-image img {
    height: 260px;
  }
  .logo img {
    max-height: 54px;
  }
}

/* Calendar booking link cards */
.booking-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.booking-option {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 250px;
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(62, 48, 38, 0.05);
}
.booking-option .booking-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  font-weight: 700;
}
.booking-option h3 {
  font-size: 30px;
  margin: 0 0 8px;
}
.booking-option p {
  font-size: 14px;
}
.booking-option .btn {
  width: 100%;
}
.booking-note {
  background: #fff9f2;
  border: 1px solid var(--line);
  padding: 18px;
  margin-top: 24px;
  color: #5a504a;
  font-size: 13px;
}
.location-booking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.location-booking-actions .btn {
  white-space: normal;
  text-align: center;
}
.external-note {
  font-size: 12px;
  color: #75685e;
  margin-top: 10px;
}
.direct-booking-card {
  border: 1px solid var(--line);
  background: #fffdf9;
  padding: 24px;
}
.direct-booking-card h3 {
  font-size: 28px;
}
@media (max-width: 1120px) {
  .booking-link-grid {
    grid-template-columns: 1fr;
  }
  .booking-option {
    min-height: auto;
  }
}
@media (max-width: 790px) {
  .location-booking-actions .btn {
    width: 100%;
  }
}

.mini-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: #fffdf9;
  border: 1px solid var(--line);
  padding: 34px;
  box-shadow: 0 8px 24px rgba(62, 48, 38, 0.05);
}
.mini-banner h2 {
  font-size: 34px;
  margin-bottom: 0;
}
@media (max-width: 790px) {
  .mini-banner {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .mini-banner .btn {
    width: 100%;
  }
}

/* EC-BTN-104 + EC-NAV-121: Re-assert hero / CTA text-white on buttons & links.
   Uses class~= (word match) not class*= (substring) to avoid matching hover:text-white etc. */
button[class~='text-white/90'],
a[class~='text-white/90'] {
  color: rgba(255, 255, 255, 0.9);
}
button[class~='text-white/80'],
a[class~='text-white/80'] {
  color: rgba(255, 255, 255, 0.8);
}
button[class~='text-white/70'],
a[class~='text-white/70'] {
  color: rgba(255, 255, 255, 0.7);
}
button[class~='text-white/60'],
a[class~='text-white/60'] {
  color: rgba(255, 255, 255, 0.6);
}
button[class~='text-white/50'],
a[class~='text-white/50'] {
  color: rgba(255, 255, 255, 0.5);
}
button[class~='text-white/40'],
a[class~='text-white/40'] {
  color: rgba(255, 255, 255, 0.4);
}
button[class~='text-white'],
a[class~='text-white'] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* EC-ANIM-008b / EC-ANIM-009: carousel-only override — scroll-reveal elements animate via IO in functions.php */
.scroll-fade-up:has([aria-roledescription='carousel']),
.scroll-fade-up:has([data-wpconvert-blog-filter-bar]),
.scroll-fade-left:has([aria-roledescription='carousel']),
.scroll-fade-right:has([aria-roledescription='carousel']),
.scroll-scale-in:has([aria-roledescription='carousel']) {
  opacity: 1 !important;
  transform: none !important;
}
