:root {
  --red: #c8102e;
  --red-deep: #a81e29;
  --navy: #0d1b2a;
  --navy-soft: #18314c;
  --slate: #334155;
  --gold: #c9a227;
  --ivory: #f7f4ef;
  --stone: #f2efea;
  --mist: #e9eef4;
  --line: #ded7cc;
  --text: #1f2b37;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(13, 27, 42, 0.08);
  --shadow-soft: 0 8px 25px rgba(13, 27, 42, 0.06);
  --radius: 24px;
  --container: min(1240px, calc(100vw - 40px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf7 0%, #f7f4ef 100%);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(247, 244, 239, 0.88);
  border-bottom: 1px solid rgba(222, 215, 204, 0.8);
}
.header-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
}
.brand img.logo {
  height: 52px;
  width: auto;
}
.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.nav-toggle {
  display: none;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  padding: 10px 6px;
  position: relative;
}
.primary-nav a.active,
.primary-nav a:hover {
  color: var(--navy);
}
.primary-nav a.active::after,
.primary-nav a:hover::after {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
.top-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.top-phone small {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--slate);
  text-transform: uppercase;
}
.top-phone a {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.header-cta {
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.btn-secondary:hover {
  border-color: var(--gold);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: end;
  background: #14263b;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 20, 32, 0.78) 0%,
    rgba(10, 20, 32, 0.55) 38%,
    rgba(10, 20, 32, 0.18) 100%
  );
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.18),
    rgba(201, 162, 39, 0)
  );
}
.page-hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 30px;
  align-items: end;
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero-copy p {
  margin: 0 0 28px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-card {
  padding: 26px;
  border-radius: 26px;
  background: rgba(248, 245, 239, 0.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.hero-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--navy);
}
.hero-card p {
  margin: 0 0 14px;
  color: var(--slate);
}
.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.badge {
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.section {
  width: var(--container);
  margin: 0 auto;
  padding: 80px 0;
}
.section.narrow {
  max-width: 980px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-head h2,
.section-title {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.section-head p,
.lead {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--slate);
  font-size: 18px;
}
.cards {
  display: grid;
  gap: 24px;
}
.cards.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.card-body {
  padding: 24px;
}
.card h3,
.card h4 {
  margin: 0 0 10px;
  color: var(--navy);
}
.card p {
  margin: 0;
  color: var(--slate);
}
.card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.card-media.tall {
  height: 320px;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}
.card-media .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 32, 0.1),
    rgba(10, 20, 32, 0.58)
  );
}
.card-media .center-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -44px;
  position: relative;
  z-index: 10;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 10px;
}
.stat span {
  color: var(--slate);
  font-weight: 700;
}
.alt-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
  padding: 52px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.alt-section.reverse .alt-text {
  order: 1;
}
.alt-section.reverse .alt-media {
  order: 2;
}
.alt-section.shaded {
  background: linear-gradient(180deg, #f8f6f2, #f2efea);
}
.alt-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
}
.alt-text h2,
.alt-text h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  color: var(--navy);
}
.alt-text p {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--slate);
}
.alt-text ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--slate);
}
.alt-stack {
  display: grid;
  gap: 28px;
}
.cta-band {
  width: var(--container);
  margin: 0 auto 80px;
  padding: 50px;
  border-radius: 34px;
  background: linear-gradient(135deg, #0d1b2a, #193859);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.28),
    rgba(200, 16, 46, 0)
  );
}
.cta-band .eyebrow {
  color: #f4cfd4;
}
.cta-band h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
}
.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 760px;
}
.cta-band .cta-row {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.page-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 30px;
  align-items: start;
}
.main-column {
  display: grid;
  gap: 28px;
}
.side-panel {
  position: sticky;
  top: 104px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.side-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
}
.filter-group {
  margin-bottom: 18px;
}
.filter-group strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
}
.filter-chip {
  display: inline-flex;
  margin: 0 8px 8px 0;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--stone);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  color: var(--slate);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.compare-grid > div {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compare-grid > div:nth-child(5n) {
  border-right: none;
}
.compare-grid .head {
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}
.compare-grid .stub {
  font-weight: 800;
  color: var(--navy);
  background: #f9f7f2;
}
.icon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.icon-item {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.icon-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--navy);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.news-card .meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-layout {
  width: var(--container);
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
}
.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 46px;
  box-shadow: var(--shadow-soft);
}
.article h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.02;
  color: var(--navy);
}
.article h2 {
  margin: 34px 0 12px;
  font-size: 32px;
  color: var(--navy);
}
.article p,
.article li {
  font-size: 18px;
  color: var(--slate);
}
.article .byline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.article blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  background: var(--stone);
  border-radius: 0 18px 18px 0;
  color: var(--navy);
  font-weight: 700;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7d0c4;
  border-radius: 16px;
  padding: 16px 18px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.16);
}
textarea {
  min-height: 160px;
  resize: vertical;
}
.form-note {
  font-size: 14px;
  color: var(--slate);
}
.contact-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.contact-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.contact-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
}
.contact-card p {
  margin: 0 0 12px;
  color: var(--slate);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.step {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.step .num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
}
.legal {
  width: var(--container);
  margin: 0 auto;
  padding: 80px 0;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 42px;
  box-shadow: var(--shadow-soft);
}
.legal-card h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 56px);
  color: var(--navy);
}
.legal-card h2 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-size: 28px;
}
.legal-card p,
.legal-card li {
  color: var(--slate);
  font-size: 17px;
}
.notice {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff6e6;
  border: 1px solid #ecd19b;
  color: #7a5920;
  font-weight: 700;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.city-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.city-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
}
.accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 24px;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.accordion-content {
  display: none;
  padding: 0 24px 24px;
  color: var(--slate);
}
.accordion-item.open .accordion-content {
  display: block;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.spec {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.spec strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}
.footer {
  margin-top: 80px;
  background: linear-gradient(180deg, #0d1b2a, #102844);
  color: #fff;
}
.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 62px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer h4 {
  margin: 0 0 16px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4cfd4;
}
.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.78);
}
.footer a {
  display: block;
  margin-bottom: 10px;
}
.footer-brand img {
  max-width: 240px;
  margin-bottom: 16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
}
.kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.list-clean {
  margin: 0;
  padding-left: 18px;
}
.muted {
  color: var(--slate);
}
.center {
  text-align: center;
}
.hero-min {
  min-height: 420px;
}
@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: 'brand phone toggle' 'nav nav nav' 'cta cta cta';
  }
  .brand {
    grid-area: brand;
  }
  .top-phone {
    grid-area: phone;
  }
  .header-cta {
    grid-area: cta;
    justify-self: start;
  }
  .nav-toggle {
    grid-area: toggle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }
  .primary-nav {
    grid-area: nav;
    display: none;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  body.menu-open .primary-nav {
    display: flex;
  }
  .hero-inner,
  .contact-grid,
  .article-layout,
  .page-grid,
  .alt-section,
  .footer-top,
  .cards.cols-4,
  .city-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .cards.cols-3,
  .news-grid,
  .gallery-grid,
  .spec-grid,
  .cards.cols-2,
  .icon-list,
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .compare-grid {
    grid-template-columns: 1fr 1fr;
    overflow: auto;
  }
  .side-panel {
    position: static;
  }
}
@media (max-width: 760px) {
  .header-shell {
    padding: 10px 0;
  }
  .brand img.logo {
    height: 44px;
  }
  .top-phone a {
    font-size: 16px;
  }
  .page-hero {
    min-height: 520px;
  }
  .hero-inner {
    padding: 84px 0 54px;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .hero-copy p,
  .lead,
  .section-head p,
  .article p,
  .article li,
  .alt-text p {
    font-size: 17px;
  }
  .stat-strip,
  .cards.cols-3,
  .cards.cols-2,
  .cards.cols-4,
  .gallery-grid,
  .news-grid,
  .icon-list,
  .spec-grid,
  .city-grid,
  .process-steps,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .alt-section {
    padding: 28px;
  }
  .alt-media img {
    height: 300px;
  }
  .article {
    padding: 28px;
  }
  .legal-card {
    padding: 28px;
  }
  .section,
  .page-grid,
  .article-layout,
  .legal {
    padding: 56px 0;
  }
  .cta-band {
    padding: 34px;
  }
}

/* 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;
}
