*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.2rem, 1.08rem);
  line-height: 1.55;
  color: #ffffff;
  background: #143f35;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
label span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111614;
}
input,
textarea,
select {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 22, 20, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #111614;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(31, 95, 77, 0.18);
  border-color: rgba(31, 95, 77, 0.32);
}
.site-shell {
  overflow: clip;
}
.container {
  width: min(calc(100% - 2rem), 1240px);
  margin-inline: auto;
}
@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.2rem), 1240px);
  }
}
.CardGrid {
  display: grid;
  gap: 1.25rem;
}
.CardGrid--two-columns {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .CardGrid--two-columns {
    grid-template-columns: 1fr;
  }
}
.CardGrid--three-columns {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .CardGrid--three-columns {
    grid-template-columns: 1fr;
  }
}
.CardGrid--four-columns {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .CardGrid--four-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .CardGrid--four-columns {
    grid-template-columns: 1fr;
  }
}
.CardGrid--centred-content {
  text-align: center;
}
.CardGrid--centred-content .CardGrid__card-footer {
  text-align: center;
}
.CardGrid .CardGrid__card {
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.CardGrid .CardGrid__card p {
  margin-top: 0;
}
.CardGrid .CardGrid__card .CardGrid__card-graphic {
  border-radius: 24px 24px 0 0;
}
.CardGrid .CardGrid__card .CardGrid__card-graphic--image {
  width: 100%;
  height: 200px;
  /* or any fixed / responsive height */
  overflow: hidden;
  position: relative;
}
.CardGrid .CardGrid__card .CardGrid__card-graphic--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* key property */
  object-position: center;
  /* centers the image */
  display: block;
}
.CardGrid .CardGrid__card .CardGrid__card-graphic--icon {
  display: grid;
  place-items: center;
  width: 100%;
}
.CardGrid .CardGrid__card .CardGrid__card-graphic--icon i {
  margin: 2rem;
  font-size: 6rem;
}
.CardGrid .CardGrid__card .CardGrid__card-body {
  margin: 0 1.6rem;
}
.CardGrid .CardGrid__card .CardGrid__card-footer {
  margin: 1.6rem;
  margin-top: auto;
}
.Section {
  padding: 2rem 0;
}
.Section--vertical-padding {
  padding: 7rem 0;
}
.Section p.eyebrow {
  margin: 0 0 1rem;
  font-size: clamp(0.88rem, 1rem, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.Section__footer {
  text-align: center;
  margin-top: 4rem;
}
.Section--light {
  background: radial-gradient(circle at top right, rgba(31, 95, 77, 0.07), transparent 22%), linear-gradient(180deg, #f4f4f1 0%, #efefeb 100%);
  color: rgba(0, 60, 0, 0.7);
}
.Section--light h2 {
  color: rgba(0, 60, 0, 0.7);
}
.Section--light p.eyebrow {
  color: rgba(0, 60, 0, 0.9);
}
.Section--light .CardGrid__card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 22, 20, 0.08);
}
.Section--light .CardGrid__card-graphic--icon {
  background: #143f35;
}
.Section--light .CardGrid__card-graphic--icon i {
  color: rgba(255, 255, 255, 0.9);
}
.Section--light .CardGrid__card-body {
  color: rgba(0, 60, 0, 0.5);
}
.Section--light .CardGrid__card-body h3 {
  color: rgba(0, 60, 0, 0.7);
}
.Section--light .CardGrid__card-footer .btn {
  color: #7F9A94;
  background: transparent;
  border: 1px solid #7F9A94;
}
.Section--dark {
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03), transparent 24%), linear-gradient(180deg, #1f5f4d 0%, #143f35 100%);
  color: #ffffff;
}
.Section--dark h2 {
  color: rgba(255, 255, 255, 0.6);
}
.Section--dark p.eyebrow {
  color: rgba(255, 255, 255, 0.9);
}
.Section--dark .CardGrid__card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(17, 22, 20, 0.08);
}
.Section--dark .CardGrid__card-graphic--icon {
  background: rgba(0, 0, 0, 0.2);
}
.Section--dark .CardGrid__card-graphic--icon i {
  color: rgba(255, 255, 255, 0.8);
}
.Section--dark .CardGrid__card-body {
  color: rgba(255, 255, 255, 0.7);
}
.Section--dark .CardGrid__card-body h3 {
  color: rgba(255, 255, 255, 0.9);
}
.Section--dark .CardGrid__card-footer .btn {
  color: #7F9A94;
  background: transparent;
  border: 1px solid #7F9A94;
}
.Section--dark-video {
  position: relative;
  overflow: hidden;
}
.Section--dark-video .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.Section--dark-video .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03), transparent 24%), linear-gradient(180deg, #1f5f4d 0%, #143f35 100%);
  z-index: 1;
  opacity: 0.85;
}
.Section--bg-mountains {
  position: relative;
  background: #efefeb;
  overflow: hidden;
  isolation: isolate;
}
.Section--bg-mountains::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(233, 231, 226, 0.82), rgba(233, 231, 226, 0.82)), url("/images/mountains.jpg") center center / cover no-repeat;
  opacity: 0.6;
  filter: grayscale(100%) contrast(0.9) brightness(1.05);
}
.Section--bg-clouds {
  position: relative;
  background: #efefeb;
  overflow: hidden;
  isolation: isolate;
}
.Section--bg-clouds::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(233, 231, 226, 0.82), rgba(233, 231, 226, 0.82)), url("/images/clouds.jpg") center center / cover no-repeat;
  opacity: 0.6;
  filter: grayscale(100%) contrast(0.9) brightness(1.05);
}
.Section--bg-road {
  position: relative;
  background: #efefeb;
  overflow: hidden;
  isolation: isolate;
}
.Section--bg-road::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(233, 231, 226, 0.82), rgba(233, 231, 226, 0.82)), url("/images/road-full-portrait.jpg") center center / cover no-repeat;
  opacity: 0.7;
  filter: grayscale(100%) contrast(0.9) brightness(1.05);
}
.Section__header {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}
#home h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 1.85rem, 1.6rem);
  letter-spacing: -0.03em;
}
.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.05em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(20, 63, 53, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.5rem;
  white-space: nowrap;
}
.logo-mark {
  width: 48px;
  color: #ffffff;
}
.logo-text {
  line-height: 1;
}
#header-logo {
  height: 49px;
  width: 107px;
  margin: 15px 0;
  background-image: url("/images/litherra-white.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.1rem;
  height: 78px;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-item-dropdown {
  z-index: 20;
}
.nav-link,
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 78px;
  padding: 0 1rem;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.84);
  font: inherit;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}
.nav-link:hover,
.nav-dropdown-toggle:hover {
  color: #ffffff;
}
.nav-dropdown-toggle {
  position: relative;
}
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0;
  height: 1px;
  background: transparent;
  transition: background-color 180ms ease;
}
.nav-item-dropdown.nav-open .nav-dropdown-toggle {
  color: #ffffff;
}
.nav-item-dropdown.nav-open .nav-dropdown-toggle::after {
  background: rgba(255, 255, 255, 0.14);
}
.nav-item-dropdown.nav-open .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}
.nav-item-dropdown.nav-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.8;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 260ms ease, opacity 260ms ease;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 220ms ease,
          transform 320ms ease;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 180ms ease, background-color 180ms ease;
}
.nav-dropdown a:first-child {
  border-top: 0;
}
.nav-dropdown a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}
.nav-dropdown-inner {
  overflow: hidden;
  background: rgba(20, 63, 53, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}
.header-cta {
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  margin: 4px auto;
}
.mobile-nav {
  display: none;
  padding: 0 1rem 1rem;
  background: rgba(20, 63, 53, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav.mobile-nav-open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.9);
}
.mobile-nav-item {
  display: block;
}
.mobile-nav-link,
.mobile-nav > a:not(.btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  width: 100%;
  padding: 0.95rem 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.mobile-nav-dropdown-toggle {
  font-weight: 600;
}
.mobile-nav-caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.8;
  transform: rotate(45deg);
  transition: transform 260ms ease;
  flex: 0 0 auto;
  margin-left: 0.75rem;
}
.mobile-nav-item-dropdown.mobile-nav-open .mobile-nav-caret {
  transform: rotate(225deg);
}
.mobile-nav-item-dropdown.mobile-nav-open .mobile-nav-dropdown {
  max-height: 220px;
  opacity: 1;
}
.mobile-nav-dropdown {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms ease, opacity 220ms ease;
}
.mobile-nav-dropdown-inner {
  padding: 0 0 0.4rem;
}
.mobile-nav-dropdown a {
  display: block;
  padding: 0.8rem 0 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-nav-dropdown a:hover {
  color: #ffffff;
}
.mobile-nav-cta {
  margin-top: 0.9rem;
  color: #1f5f4d !important;
  text-align: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease, color 260ms ease, box-shadow 260ms ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: #ffffff;
  color: #1f5f4d;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}
.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}
.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}
.btn-full {
  width: 100%;
}
.card .btn {
  box-shadow: none;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: auto;
  font-weight: normal;
  min-height: 40px;
}
.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  background: linear-gradient(180deg, #1f5f4d 0%, #143f35 100%);
}
.hero h1 {
  font-size: clamp(2.4rem, 4.7rem, 4rem);
  max-width: 11ch;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 42rem;
}
.hero-text {
  color: rgba(255, 255, 255, 0.78);
  margin: 1.5rem 0 0;
  max-width: 38rem;
  font-size: clamp(1.2rem, 1.85rem, 1.6rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.8rem;
}
.hero-points li {
  color: rgba(255, 255, 255, 0.8);
}
.hero-points li::before {
  content: "•";
  color: rgba(255, 255, 255, 0.95);
  margin-right: 0.65rem;
}
.hero-visual {
  position: relative;
  min-height: 610px;
}
.hero-panel {
  position: absolute;
  inset: 0 2rem 2rem 0;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.panel-image {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 22%), linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 30%), linear-gradient(180deg, #2a6f5c 0%, #19483c 100%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.panel-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1800ms ease-in-out;
  pointer-events: none;
}
.panel-image img.is-active {
  opacity: 1;
}
.panel-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.panel-overlay h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2rem, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
  color: rgba(235, 255, 235, 0.9);
}
.panel-tag {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.85rem;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.floating-card {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  animation: floatCard 10s ease-in-out infinite;
  width: 180px;
  top: -1rem;
  right: 1rem;
}
.floating-card__label {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #dfffdb;
  margin-bottom: 0.45rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.floating-card strong {
  font-size: 1.02rem;
  line-height: 1.25;
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.55;
}
.hero-bg-glow-1 {
  width: 340px;
  height: 340px;
  top: 4%;
  left: -6%;
  background: rgba(255, 255, 255, 0.08);
}
.hero-bg-glow-2 {
  width: 420px;
  height: 420px;
  bottom: 0;
  right: -8%;
  background: rgba(127, 129, 131, 0.18);
}
.trust-strip {
  padding: 1.2rem 0;
  background: #143f35;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.trust-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.trust-items span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact-section {
  position: relative;
  background: radial-gradient(circle at top right, rgba(31, 95, 77, 0.1), transparent 20%), linear-gradient(180deg, #f4f4f1 0%, #ecece8 100%);
  color: #111614;
  isolation: isolate;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  padding: 1.6rem;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 22, 20, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}
.contact-card .btn-primary {
  background: #1f5f4d;
  color: #ffffff;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-glow {
  position: absolute;
  right: -8rem;
  bottom: -6rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 95, 77, 0.22), transparent 60%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease,
          transform 700ms ease;
}
.reveal-delay {
  transition-delay: 120ms;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .main-nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }
  .hero-grid,
  .grid--projects,
  .contact-grid,
  .grid--features,
  .grid--services,
  .grid--testimonials {
    grid-template-columns: 1fr;
  }
  .project-card-large {
    grid-row: auto;
  }
  .hero-visual {
    min-height: 480px;
  }
  .hero-panel {
    inset: 0 1rem 2rem 0;
  }
}
@media (max-width: 760px) {
  .section {
    padding: 4.5rem 0;
  }
  .hero {
    padding-top: 4rem;
  }
  .hero h1 {
    max-width: 12ch;
  }
  .hero-visual {
    min-height: 360px;
  }
  .hero-panel {
    inset: 0 0.75rem 1.75rem 0;
    border-radius: 28px;
  }
  .panel-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
  }
  .floating-card-top {
    width: 160px;
  }
  .floating-card-bottom {
    width: 180px;
    left: 0.5rem;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .trust-row {
    justify-content: flex-start;
  }
}
@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .floating-card {
    position: absolute;
    padding: 0.8rem 0.9rem;
  }
  .floating-card-top {
    right: 0;
    top: 0.75rem;
  }
  .floating-card-bottom {
    bottom: 0;
  }
}
.Page {
  width: min(calc(100% - 2rem), 1240px);
  margin-inline: auto;
}
@media (max-width: 520px) {
  .Page {
    width: min(calc(100% - 1.2rem), 1240px);
  }
}
@media (max-width: 520px) {
  .Page {
    width: min(calc(100% - 1.2rem), 1240px);
  }
}
.Page__subtitle {
  margin-bottom: 1rem;
}
.ProductGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .ProductGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .ProductGrid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.ProductGrid__product-summary {
  display: flex;
}
.ProductSummary {
  border: 1px solid #ccc;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}
.ProductSummary__image {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.ProductSummary__content {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ProductSummary__tags-list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.ProductSummary__tag-icon {
  margin-right: 0.2rem;
}
.ProductSummary__product-description {
  margin-top: auto;
}
.ProductDetail__subtitle {
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.ProductDetail__tags-list {
  margin: 2rem 0 1rem;
  padding: 1rem 0;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr;
  gap: 8px 16px;
  border-style: solid;
  border-color: #ddd;
  border-width: 1px 0;
}
.ProductDetail__tag {
  display: contents;
}
.ProductDetail__tag-label {
  font-weight: bold;
}
.ProductDetail__tag-label,
.ProductDetail__tag-description {
  padding: 8px 0;
}
.ProductDetail__tag-icon {
  margin-right: 0.3rem;
}
.ProductDetail__gallery {
  margin-top: 2rem;
}
.ProductDetail__html-content {
  margin-top: 2rem;
}
.ProductDetail__documents {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .ProductDetail__tags-list {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .ProductDetail__tag-label {
    padding-bottom: 0;
  }
  .ProductDetail__tag-description {
    padding-top: 0;
    margin-bottom: 0.75rem;
  }
}
.ProductImageGallery {
  max-width: 100%;
}
.ProductImageGallery__main {
  margin-bottom: 16px;
}
.ProductImageGallery__main-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
  border-radius: 6px;
  object-fit: contain;
  cursor: pointer;
}
.ProductImageGallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ProductImageGallery__thumb-link {
  display: inline-block;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}
.ProductImageGallery__thumb-link.is-active {
  border-color: #333;
}
.ProductImageGallery__thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
}
.ProductDetail__spec-list {
  margin: 0 0 24px 0;
  padding: 8px 16px;
  list-style: none;
  background: #fafafa;
  border-radius: 8px;
}
.ProductDetail__spec-list .SpecList__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.ProductDetail__spec-list .SpecList__item:last-child {
  border-bottom: none;
}
.ProductDetail__spec-list .SpecList__item--key-value .SpecList__item-key {
  font-weight: 500;
  color: #333;
  flex: 1;
  letter-spacing: 0.2px;
}
.ProductDetail__spec-list .SpecList__item--key-value .SpecList__item-value {
  flex: 1;
  text-align: right;
  color: #666;
  font-size: 0.95rem;
}
.ProductDetail__spec-list .SpecList__item--value-only {
  justify-content: flex-start;
}
.ProductDetail__spec-list .SpecList__item--value-only .SpecList__item-value {
  font-weight: 500;
  color: #333;
  flex: 1;
  letter-spacing: 0.2px;
}
.ProductDetail__spec-list + h3 {
  margin-top: 32px;
}
.DocumentLinkList {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.DocumentLinkList__empty {
  font-style: italic;
}
.DocumentLink {
  display: flex;
  text-decoration: none;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
}
.DocumentLink:hover {
  background-color: #f9f9f9;
}
.DocumentLink__pdf-icon i {
  font-size: 3.5rem;
  color: #143f35;
}
.DocumentLink__content {
  margin-left: 1rem;
}
.DocumentLink__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.DocumentLink__info {
  font-size: 0.8rem;
  font-style: italic;
}
.ContactForm .text-danger,
.ContactForm .field-validation-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #b42318;
}
.ContactForm .input-validation-error {
  border-color: #b42318;
}
.ContactForm .field-validation-valid {
  display: none;
}
.ContactForm .form-message {
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
}
.ContactForm .form-message-success {
  background: #ecfdf3;
  color: #027a48;
}
.ContactForm .form-message-error {
  background: #fef3f2;
  color: #b42318;
}
.ContactForm .ContactForm__field-validation-message.field-validation-error span {
  color: #b42318;
}
.ContactForm .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ContactForm .js-contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.Tabset {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.Tabset__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
}
.Tabset__button {
  appearance: none;
  border: 1px solid #d7d7d7;
  background: #fff;
  color: #222;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.Tabset__button:hover,
.Tabset__button:focus-visible {
  background: #efefef;
  outline: none;
}
.Tabset__button.is-active {
  background: #222;
  color: #fff;
  border-color: #222;
}
.Tabset__panel {
  padding: 20px;
}
.Tabset__search-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.Tabset__search-input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  font: inherit;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .Tabset__nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .Tabset__panel {
    padding: 16px;
  }
  .Tabset__button {
    padding: 10px 12px;
  }
}
.ImageTextRows {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* desktop: between rows */
}
.ImageTextRows__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image text";
  gap: 3rem;
  /* desktop: image ↔ text */
  align-items: center;
}
.ImageTextRows__image-section {
  grid-area: image;
}
.ImageTextRows__image-section img {
  border-radius: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.ImageTextRows__text-section {
  grid-area: text;
}
.ImageTextRows__row--reverse {
  grid-template-areas: "text image";
}
@media (max-width: 768px) {
  .ImageTextRows {
    gap: 2rem;
  }
  .ImageTextRows__row,
  .ImageTextRows__row--reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "text";
    gap: 1rem;
  }
}
.IconLedSections__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
}
.IconLedSections__icon {
  flex: 0 0 8rem;
  width: 7rem;
}
.IconLedSections__icon i {
  display: block;
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
}
.IconLedSections__content {
  flex: 1 1 auto;
  text-align: left;
}
.IconLedSections__content h2 {
  margin: 0 0 1rem;
}
.IconLedSections__content p {
  margin: 0 0 1rem;
}
.IconLedSections__button-area {
  margin-top: 2rem;
}
.IconLedSections__button-area .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.08);
}
.IconLedSections__button-area .btn i {
  font-size: 18px;
  margin-right: 0.5rem;
}
.CycledText {
  position: relative;
  height: 1em;
}
.CycledText span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
}
/* timing: 3 words = 9s total */
.CycledText span:nth-child(1) {
  animation-delay: 0s;
}
.CycledText span:nth-child(2) {
  animation-delay: 3s;
}
.CycledText span:nth-child(3) {
  animation-delay: 6s;
}
.CycledText--fade span {
  animation: fadeCycle 9s infinite;
}
@keyframes fadeCycle {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.CycledText--vertical span {
  animation: verticalCycle 9s infinite;
}
@keyframes verticalCycle {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  35% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.CycledText--horizontal span {
  animation: horizontalCycle 9s infinite;
}
@keyframes horizontalCycle {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  35% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
.TagsAsFilterButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.TagsAsFilterButtons__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.TagsAsFilterButtons__list-item {
  display: inline-block;
  padding: 0.2rem;
}
.TagsAsFilterButtons__tag {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 5rem;
  padding: 0.3rem 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  border: 3px solid transparent;
}
.TagsAsFilterButtons__tag--active {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0) 180%);
  color: #fff;
  border: 3px solid #c9ff78;
}
.TagsAsFilterButtons__tag--iszenith {
  background: darkgoldenrod;
}
.TagsAsFilterButtons__tag--producttype {
  background-color: #143f35;
}
.TagsAsFilterButtons__tag-icon {
  margin-right: 0.5rem;
}
.TagsAsFilterButtons__tag-text {
  font-size: 1rem;
}
.TagsAsFilterButtons__count {
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 600;
}
h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}
@media (max-width: 600px) {
  .ProductDetail__spec-list .SpecList__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .ProductDetail__spec-list .SpecList__item--key-value .SpecList__item-value {
    text-align: left;
    margin-top: 4px;
  }
}
.HeadingWithIcon i {
  margin-right: 0.7rem;
  font-size: 125%;
  line-height: 135%;
}
/*# sourceMappingURL=site.css.map */