body.theme-kane {
  font-family: "Public Sans", sans-serif;
  color: #f0f3f8;
  background: #0b0e14;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1045;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 56px;
  padding: 0.95rem 1.2rem;
  background: rgba(12, 18, 28, 0.9);
  color: #f0f3f8;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.sticky-cta a:hover,
.sticky-cta a:focus {
  background: #f0f3f8;
  color: #0b0e14;
  border-color: #f0f3f8;
  transform: translateY(-2px);
}

h1,
h2,
h3,
.brand-lockup strong {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 92px;
  height: 100vh;
  padding: 2rem 0;
  background: linear-gradient(180deg, #121722 0%, #090b11 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 40;
}

.side-header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  min-height: 100%;
  z-index: 3;
}

.brand-lockup {
  display: grid;
  grid-template-columns: 54px;
  align-items: center;
  text-decoration: none;
  justify-content: center;
}

.brand-lockup img {
  filter: brightness(0) invert(1);
}

.brand-lockup img,
.mobile-nav-bar img {
  width: 54px;
  height: 54px;
}

.side-drawer {
  position: absolute;
  top: 0;
  left: 100%;
  width: 300px;
  height: 100%;
  padding: 9rem 1.75rem 1.5rem;
  background: rgba(13, 17, 24, 0.96);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 18px 0 40px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transform: translateX(-16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s ease, opacity 0.22s ease, visibility 0.22s ease;
  z-index: 2;
}

body.nav-open .side-drawer {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-brand {
  display: grid;
  gap: 0.25rem;
  padding-right: 1rem;
}

.drawer-brand strong {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.drawer-brand small {
  color: rgba(240, 243, 248, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.rail-nav {
  display: grid;
  gap: 1.15rem;
}

.rail-nav a {
  text-decoration: none;
  color: rgba(240, 243, 248, 0.8);
  padding: 0.2rem 0;
  font-size: 1rem;
  font-weight: 700;
}

.rail-nav a:hover,
.rail-nav a:focus {
  color: #ffffff;
}

.rail-contact {
  display: grid;
  gap: 0.55rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rail-contact span {
  color: rgba(240, 243, 248, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.rail-contact a {
  text-decoration: none;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.rail-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.side-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #ffffff;
  color: #0b0e14;
  flex-shrink: 0;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.side-toggle i {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}

.side-toggle:hover,
.side-toggle:focus {
  background: #dfe6ef;
  color: #0b0e14;
}

.rail-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rail-social a:hover,
.rail-social a:focus {
  background: #ffffff;
  color: #0b0e14;
}

.content-flow {
  margin-left: 92px;
  min-width: 0;
}

.mobile-nav-bar {
  background: rgba(9, 11, 17, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-bar .navbar-brand {
  color: #fff;
  font-weight: 700;
}

.mobile-cta {
  background: #fff;
  color: #0b0e14;
  border-radius: 0;
  padding: 0.85rem 1.2rem;
  font-weight: 800;
}

.scroll-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-media {
  position: absolute;
  inset: 0;
}

.panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 14, 0.85) 0%, rgba(7, 9, 14, 0.52) 45%, rgba(7, 9, 14, 0.78) 100%);
}

.panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-copy {
  position: relative;
  z-index: 1;
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}

.eyebrow {
  display: inline-block;
  color: #a3adc0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.hero-panel h1,
.text-panel h2,
.split-panel h2,
.contact-panel h2 {
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.98;
  margin: 0;
}

.hero-panel p,
.section-heading p,
.service-band p,
.maintenance-grid p,
.contact-panel p,
.site-footer p {
  color: rgba(240, 243, 248, 0.8);
  line-height: 1.72;
}

.btn,
.btn-primary-action,
.btn-secondary-action {
  border-radius: 0;
  padding: 1rem 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary-action {
  background: #ffffff;
  color: #0b0e14;
  border: 1px solid #ffffff;
}

.btn-secondary-action {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-primary-action:hover,
.btn-primary-action:focus {
  background: #d8dfe8;
  color: #0b0e14;
}

.btn-secondary-action:hover,
.btn-secondary-action:focus {
  background: #ffffff;
  color: #0b0e14;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.metric-stack,
.service-ribbon,
.maintenance-grid,
.contact-list,
.quote-form,
.map-card {
  background: rgba(8, 11, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-stack {
  display: grid;
  gap: 1px;
}

.metric-stack article {
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
}

.metric-stack strong,
.contact-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.metric-stack span,
.contact-list span,
.contact-list a {
  color: rgba(240, 243, 248, 0.8);
  text-decoration: none;
}

.text-panel .container-fluid,
.gallery-panel .container-fluid,
.contact-panel .container-fluid {
  padding: 5rem 4.5rem;
}

.service-ribbon {
  margin-top: 2.5rem;
}

.service-band {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.3rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-band:last-child {
  border-bottom: 0;
}

.service-band span {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.24);
}

.service-band h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.service-band ul {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: rgba(240, 243, 248, 0.8);
}

.service-band li + li {
  margin-top: 0.28rem;
}

.split-panel {
  background: #11151d;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}

.maintenance-grid article {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.02);
}

.maintenance-grid h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.gallery-panel {
  background: #090b11;
}

.gallery-columns {
  margin-top: 2.5rem;
  columns: 3 280px;
  column-gap: 1rem;
}

.gallery-columns figure {
  break-inside: avoid;
  margin: 0 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.gallery-columns img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.contact-panel {
  background: linear-gradient(180deg, #0d1118 0%, #131925 100%);
}

.contact-list {
  display: grid;
  gap: 1px;
  margin: 2rem 0;
}

.contact-list div {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}

.map-card {
  margin-top: 1.5rem;
}

.map-card iframe {
  width: 100%;
  height: 280px;
  display: block;
}

.quote-form {
  padding: 1.5rem;
}

.quote-form .form-control {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  padding: 1rem;
}

.quote-form .form-control:focus,
.rail-social a:focus,
.rail-nav a:focus,
.btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: none;
}

.form-label {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.site-footer {
  padding: 2rem 4.5rem;
  background: #080a0f;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .side-nav {
    display: none;
  }

  .panel-copy,
  .text-panel .container-fluid,
  .gallery-panel .container-fluid,
  .contact-panel .container-fluid,
  .site-footer {
    padding: 4rem 1.2rem;
  }

  .scroll-panel,
  .panel-copy {
    min-height: auto;
  }

  .panel-copy {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 767px) {
  .maintenance-grid {
    grid-template-columns: 1fr;
  }

  .service-band {
    grid-template-columns: 1fr;
  }

  .hero-panel h1,
  .text-panel h2,
  .split-panel h2,
  .contact-panel h2,
  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .gallery-columns {
    columns: 1;
  }

  .map-card iframe {
    height: 260px;
  }

  .sticky-cta {
    right: 1rem;
    left: 6.5rem;
    bottom: 1rem;
  }

  .sticky-cta a {
    width: 100%;
    justify-content: center;
  }
}
