@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;800;900&family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&display=swap");

:root {
  --green-950: #08261d;
  --green-900: #10382b;
  --green-800: #174a39;
  --green-700: #446868;
  --green-100: #dbe8df;
  --gold: #ffc36b;
  --paper: #f6f2e8;
  --cream: #fffaf0;
  --ink: #1b1f1e;
  --muted: #68736f;
  --line: rgba(27, 31, 30, .14);
  --shadow: 0 24px 70px rgba(8, 38, 29, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--green-900);
  font-family: "Barlow", "Trebuchet MS", sans-serif;
}

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

a {
  color: inherit;
}

.fixed-drone-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--green-950);
}

.fixed-drone-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  filter: saturate(.95) contrast(1.05);
}

.fixed-drone-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 38, 29, .78), rgba(16, 56, 43, .58) 48%, rgba(68, 104, 104, .3)),
    linear-gradient(180deg, rgba(8, 38, 29, .38), rgba(8, 38, 29, .68));
  mix-blend-mode: multiply;
}

.fixed-drone-shade::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(68, 104, 104, .18);
  mix-blend-mode: color;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(260px, 370px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  min-height: 104px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 32px;
  background:
    linear-gradient(90deg, var(--green-950) 0%, var(--green-900) 56%, var(--green-700) 100%);
  box-shadow: 0 18px 48px rgba(8, 38, 29, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 26px;
  background: rgba(8, 38, 29, .42);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: 100%;
  max-height: 82px;
  border-radius: 20px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
}

.nav a:hover {
  background: rgba(255, 255, 255, .13);
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  text-decoration: none;
}

.call-button {
  min-width: 150px;
  align-self: stretch;
  padding: 13px 16px;
  color: var(--green-950);
  background: var(--gold);
}

main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 64px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: white;
  background: transparent;
}

.hero--gallery-page {
  min-height: 430px;
}

.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 38, 29, .9), rgba(8, 38, 29, .6) 46%, rgba(8, 38, 29, .08)),
    radial-gradient(circle at 78% 16%, rgba(255, 195, 107, .35), transparent 20rem),
    rgba(68, 104, 104, .08);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(830px, 100%);
  padding: clamp(34px, 7vw, 78px);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .9);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: .86;
  letter-spacing: -.06em;
}

h2 {
  margin-bottom: 14px;
  color: white;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: .96;
  letter-spacing: -.048em;
}

.lede,
.hero__content p:not(.eyebrow),
.section-heading p,
.final-cta p:not(.eyebrow),
.tile--note p {
  color: rgba(255, 255, 255, .86);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.section-heading p,
.tile--note p {
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  padding: 14px 22px;
}

.button--primary {
  color: var(--green-950);
  background: var(--gold);
}

.button--secondary {
  border: 1px solid rgba(8, 38, 29, .28);
  color: var(--green-950);
  background: rgba(255, 250, 240, .94);
}

.button--on-dark {
  border-color: rgba(255, 255, 255, .46);
  color: white;
  background: rgba(255, 255, 255, .08);
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 12px;
  margin-top: 22px;
  padding: 6px 0 0;
}

.category-strip__group {
  display: flex;
  flex: 1 1 330px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: min(100%, 280px);
}

.category-strip__label {
  align-self: center;
  padding: 11px 2px 10px;
  color: rgba(255, 195, 107, .84);
  font-family: "Barlow Condensed", "Barlow", "Trebuchet MS", sans-serif;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.category-strip a {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: white;
  background: rgba(8, 38, 29, .52);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
}

.category-strip a:hover {
  border-color: rgba(255, 195, 107, .72);
  color: var(--gold);
}

.category-strip a:focus-visible,
.service-hub-card:focus-visible,
.feature-card:focus-visible,
.tile:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(255, 195, 107, .88);
  outline-offset: 4px;
}

.category-strip a[aria-current="page"] {
  border-color: rgba(255, 195, 107, .86);
  color: var(--green-950);
  background: var(--gold);
}

@media (max-width: 640px) {
  .category-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .category-strip__all {
    text-align: center;
  }

  .category-strip__group {
    flex-basis: auto;
    width: 100%;
  }

  .category-strip__label {
    flex-basis: 100%;
    padding-top: 14px;
  }
}

.service-hub-section {
  margin-top: clamp(34px, 6vw, 68px);
}

.service-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-hub-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 24px;
  color: white;
  background: var(--green-900);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(8, 38, 29, .14);
}

.service-hub-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .25s ease, opacity .25s ease;
}

.service-hub-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 38, 29, .12), rgba(8, 38, 29, .84)),
    linear-gradient(90deg, rgba(8, 38, 29, .72), rgba(8, 38, 29, .16));
  content: "";
}

.service-hub-card span,
.service-hub-card p {
  position: relative;
  z-index: 1;
}

.service-hub-card span {
  font-family: "Barlow Condensed", "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 900;
  line-height: .95;
}

.service-hub-card p {
  max-width: 390px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: .98rem;
}

.service-hub-card:hover img {
  opacity: .86;
  transform: scale(1.045);
}

.featured-section,
.gallery-section,
.final-cta {
  margin-top: clamp(34px, 6vw, 68px);
  padding: 0;
  color: white;
  background: transparent;
}

.gallery-section {
  scroll-margin-top: 170px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 14px;
}

.portfolio-category-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.tile {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 26px;
  color: white;
  background: var(--green-900);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(8, 38, 29, .12);
}

.feature-card {
  min-height: 380px;
}

.feature-card--wide {
  min-height: 460px;
}

.portfolio-category-card {
  min-height: 340px;
}

.feature-card img,
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.feature-card:hover img,
.tile:hover img {
  transform: scale(1.035);
}

.feature-card::after,
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 38, 29, .86));
}

.feature-card span,
.tile span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 195, 107, .94);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile {
  min-height: 260px;
}

.tile--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 534px;
}

.tile--note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .28);
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 195, 107, .18), transparent 18rem),
    linear-gradient(145deg, rgba(8, 38, 29, .62), rgba(68, 104, 104, .42));
}

.tile--note::after {
  display: none;
}

.tile--note strong {
  display: block;
  margin-bottom: 10px;
  color: white;
  font-size: 1.5rem;
  line-height: 1.05;
}

.tile--note p {
  margin-bottom: 0;
}

.final-cta {
  color: white;
  overflow: hidden;
}

.final-cta h2 {
  max-width: 760px;
  color: white;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: stretch;
    border-radius: 28px;
  }

  .brand {
    grid-column: 1 / -1;
    min-height: 88px;
  }

  .nav {
    justify-content: flex-start;
  }

  .feature-grid,
  .portfolio-category-grid,
  .service-hub-grid,
  .gallery-grid,
  .gallery-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header,
  main {
    width: min(100% - 20px, 1180px);
  }

  .hero,
  .featured-section,
  .gallery-section,
  .final-cta {
    border-radius: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 34px 22px;
  }

  .hero__actions,
  .feature-grid,
  .portfolio-category-grid,
  .service-hub-grid,
  .gallery-grid,
  .gallery-grid--compact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tile--large {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .feature-card,
  .feature-card--wide,
  .portfolio-category-card,
  .service-hub-card,
  .tile {
    min-height: 300px;
  }

  .button,
  .call-button {
    width: 100%;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }
}

/* Shared public-page header, matched to the homepage preview. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr auto;
  gap: clamp(16px, 2.4vw, 30px);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 106px;
  margin: 0;
  padding: 10px clamp(18px, 4vw, 52px);
  background:
    linear-gradient(90deg, rgba(27, 31, 30, 0.96), rgba(68, 104, 104, 0.96)),
    #446868;
  border: 0;
  border-bottom: 1px solid rgba(255, 195, 107, 0.34);
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(27, 31, 30, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: clamp(220px, 25vw, 350px);
  height: auto;
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Barlow", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a {
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.main-nav a:hover {
  color: #ffc36b;
  background: transparent;
}

.header-call {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 62px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 38, 29, 0.34);
  color: #ffffff;
  font-family: "Barlow", "Trebuchet MS", sans-serif;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(27, 31, 30, 0.11);
}

.header-call-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.header-call-number {
  color: #ffc36b;
  font-size: 1.02rem;
  line-height: 1.1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(190px, 1fr) auto;
    min-height: 92px;
  }

  .main-nav {
    display: none;
  }

  .header-call {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto;
    gap: 10px;
    min-height: 82px;
    padding: 10px 14px;
  }

  .brand img {
    width: clamp(160px, 48vw, 230px);
    max-height: 68px;
  }

  .header-call {
    min-width: 0;
    min-height: 50px;
    padding: 9px 12px;
  }

  .header-call-label {
    font-size: 0.58rem;
  }

  .header-call-number {
    font-size: 0.86rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 8px;
    min-height: 76px;
    padding: 9px 10px;
    overflow: hidden;
  }

  .brand img {
    width: min(46vw, 180px);
    max-height: 60px;
  }

  .header-call {
    justify-self: end;
    min-height: 46px;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .header-call-label {
    font-size: 0.52rem;
  }

  .header-call-number {
    font-size: 0.76rem;
  }
}

/* Brand typography refresh: bolder and closer to the LRC logo. */
body {
  font-family: "Barlow", "Trebuchet MS", sans-serif;
}

h1,
h2,
h3,
.eyebrow,
.section-kicker,
.main-nav,
.nav,
.button,
button,
.header-call,
.call-button,
.hero-card span,
.trust-strip span,
.site-footer {
  font-family: "Barlow Condensed", "Barlow", "Trebuchet MS", sans-serif;
}

h1,
h2 {
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.035em;
}

h1 {
  line-height: 0.84;
}

h2 {
  line-height: 0.92;
}

h3 {
  font-weight: 800;
  letter-spacing: -0.012em;
}

.eyebrow,
.section-kicker,
.main-nav,
.nav,
.button,
button,
.header-call,
.call-button,
.hero-card span,
.trust-strip span {
  letter-spacing: 0.08em;
}

/* Keep page links visible in the preview pane instead of hiding them on tablet widths. */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(170px, 1fr) auto;
    grid-template-areas:
      "brand call"
      "nav nav";
    gap: 8px 14px;
    min-height: auto;
    overflow: visible;
  }

  .brand {
    grid-area: brand;
  }

  .header-call {
    grid-area: call;
    justify-self: end;
  }

  .main-nav {
    grid-area: nav;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.78rem;
  }

  .main-nav a {
    padding: 3px 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: minmax(140px, 1fr) auto;
    grid-template-areas:
      "brand call"
      "nav nav";
  }

  .main-nav {
    gap: 6px 10px;
    font-size: 0.7rem;
  }
}

/* Header trust line with slogan and license numbers. */
.site-header {
  grid-template-columns: minmax(410px, 1.05fr) minmax(320px, auto) auto;
}

.brand {
  gap: clamp(12px, 1.8vw, 22px);
}

.brand img {
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 160px;
  padding-left: clamp(10px, 1.4vw, 18px);
  border-left: 1px solid rgba(255, 195, 107, 0.32);
  line-height: 1.05;
}

.brand-licenses {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Barlow", "Trebuchet MS", sans-serif;
  font-size: clamp(0.62rem, 0.82vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(360px, 1fr) auto;
  }
}

@media (max-width: 760px) {
  .brand img {
    width: clamp(150px, 35vw, 220px);
  }

  .brand-text {
    min-width: 0;
    padding-left: 10px;
  }

  .brand-licenses {
    display: none;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 8px;
  }

  .brand-text {
    display: none;
  }
}

/* Let the portfolio hero text sit directly on the video background. */
.hero {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero__shade {
  display: none;
}

.hero__content {
  text-shadow: 0 3px 24px rgba(8, 38, 29, 0.62);
}

/* Liquid Glass sitewide touches: visual polish only, no layout or copy changes. */
:root {
  --glass-surface: rgba(18, 46, 42, 0.62);
  --glass-surface-light: rgba(255, 255, 255, 0.13);
  --glass-surface-gold: rgba(255, 195, 107, 0.86);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-highlight: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 22px 68px rgba(0, 0, 0, 0.28);
}

.gallery-section,
.section-heading,
.feature-card,
.portfolio-category-card,
.tile,
.tile--note,
.final-cta {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, var(--glass-surface-light), rgba(255, 255, 255, 0.04) 38%, rgba(255, 195, 107, 0.08)),
    var(--glass-surface);
  box-shadow:
    var(--glass-shadow),
    inset 0 1px 0 var(--glass-highlight);
  backdrop-filter: blur(20px) saturate(1.22);
  -webkit-backdrop-filter: blur(20px) saturate(1.22);
}

.button,
.category-strip a {
  position: relative;
  overflow: hidden;
  outline: 1px solid var(--glass-border);
  outline-offset: -1px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 var(--glass-highlight);
  backdrop-filter: blur(20px) saturate(1.22);
  -webkit-backdrop-filter: blur(20px) saturate(1.22);
}

.button--primary,
.category-strip a[aria-current="page"] {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.04) 48%),
    var(--glass-surface-gold);
  outline-color: rgba(255, 233, 188, 0.82);
}

.button--secondary,
.button--on-dark,
.category-strip a {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
    rgba(18, 46, 42, 0.5);
}

.feature-card span,
.tile span {
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

.gallery-section--open,
.gallery-section--open .section-heading {
  overflow: visible !important;
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.section-heading--plain {
  overflow: visible !important;
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
