:root {
  --navy-deep: #0c2340;
  --navy-mid: #1a4a6e;
  --header-background: #081a2f;
  --header-text: #ffffff;
  --header-muted: rgba(255, 255, 255, 0.42);
  --header-accent: #5cbdb9;
  --header-button-background: #5cbdb9;
  --header-button-text: #0c2340;
  --header-button-hover-text: #0c2340;
  --teal-accent: #2d8a9e;
  --mint-glow: #5cbdb9;
  --surface-light: #f7fafc;
  --surface-white: #fdfefe;
  --text-muted: rgba(12, 35, 64, 0.65);
  --cta-hover: #fb924b;
  --cta-hover-strong: #f97316;
  --footer-background: #0c2340;
  --footer-text: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.64);
  --footer-subtle: rgba(255, 255, 255, 0.42);
  --footer-link-hover: #5cbdb9;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --shadow-soft: 0 20px 45px -35px rgba(12, 35, 64, 0.28);
  --container: 80rem;
  --header-logo-size: 34px;
  --header-logo-x: 0px;
  --footer-logo-size: 176px;
  --footer-logo-y: -24px;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes company-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-deep);
  background: var(--surface-light);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-container {
  width: min(var(--container), calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--header-background);
  backdrop-filter: blur(18px);
}

.site-header__utility {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-deep);
  color: #fff;
}

.site-header__utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.7rem;
}

.site-header__utility-spacer {
  flex: 1 1 auto;
}

.site-utility-search {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-utility-icon-button svg,
.site-utility-social svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-utility-search__panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 7.5rem 1rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.25rem);
  transition: opacity 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms ease;
  background: linear-gradient(180deg, rgba(12, 35, 64, 0.98) 0%, rgba(12, 35, 64, 0.94) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px -32px rgba(12, 35, 64, 0.55);
}

.site-utility-search.is-open .site-utility-search__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-utility-search__panel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-utility-search__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-utility-search__close:hover {
  color: var(--header-accent);
}

.site-utility-search__panel input {
  width: min(100%, 44rem);
  min-height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #fff;
  padding: 0.9rem 1.5rem;
  color: var(--navy-deep);
  font: inherit;
  font-size: 1.05rem;
  box-shadow: 0 20px 40px -28px rgba(12, 35, 64, 0.5);
}

.site-utility-search__panel input::placeholder {
  color: rgba(12, 35, 64, 0.48);
}

.site-utility-search__panel input:focus {
  outline: none;
  border-color: rgba(12, 35, 64, 0.16);
  background: #fff;
}

.site-utility-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}

.site-utility-tools {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  padding-left: 1.3rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.site-utility-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 0;
  background: transparent;
  padding: 0;
  color: #fff;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-utility-icon-button:hover,
.site-utility-social:hover {
  color: var(--header-accent);
}

.site-utility-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
}

.site-utility-link__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: rgba(251, 146, 75, 0.92);
  color: var(--navy-deep);
  padding: 0 0.24rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -0.5rem;
  right: -0.6rem;
}

.site-utility-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header--primary {
  position: relative;
}

.site-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transform: translateY(-108%);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 14px 30px -24px rgba(12, 35, 64, 0.38);
  will-change: transform, opacity;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

.site-header--sticky.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 10rem) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.5rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--header-text);
}

.site-logo span {
  color: var(--header-accent);
}

.site-header .site-logo img,
.site-header .site-logo .custom-logo {
  display: block;
  width: auto;
  max-width: none;
  height: var(--header-logo-size);
}

.site-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-header .site-logo .custom-logo-link {
  transform: translateX(var(--header-logo-x));
}

.site-header__nav-shell {
  display: flex;
  justify-content: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav__list,
.site-nav__submenu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__submenu-toggle {
  display: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.2rem 0;
  color: var(--header-text);
  opacity: 0.74;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--header-accent) 0%, transparent), color-mix(in srgb, var(--header-accent) 95%, transparent), color-mix(in srgb, var(--header-accent) 0%, transparent));
  transform: scaleX(0.45);
  transform-origin: center;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--header-accent);
  opacity: 1;
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.site-nav a.is-ancestor {
  color: var(--header-text);
  opacity: 1;
}

.site-nav a.is-current,
.site-nav a[aria-current="page"] {
  color: var(--header-accent);
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a.is-ancestor::after,
.site-nav a.is-current::after,
.site-nav a[aria-current="page"]::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav__item--has-children > a {
  gap: 0.5rem;
}

.site-nav__item--has-children > a::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.12rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
  order: 2;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 50%;
  z-index: 30;
  min-width: 14rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: rgba(8, 26, 47, 0.96);
  box-shadow: 0 24px 48px -32px rgba(12, 35, 64, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.4rem);
  transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
}

.site-nav__item--has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.7rem;
}

.site-nav__submenu a {
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
  padding: 0.65rem 0.8rem;
  border-radius: 0.9rem;
  color: #fff;
  font-size: 0.85rem;
  opacity: 0.88;
}

.site-nav__submenu a::after,
.site-nav__submenu .site-nav__item--has-children > a::before {
  display: none;
}

.site-nav__item:hover > .site-nav__submenu,
.site-nav__item:focus-within > .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__item:hover > a::before,
.site-nav__item:focus-within > a::before {
  transform: rotate(225deg);
  opacity: 1;
}

.site-nav__mobile-login,
.site-nav a.site-nav__mobile-login {
  display: none;
}

.site-nav__mobile-utility,
.site-nav__mobile-socials,
.site-nav__mobile-tools,
.site-nav__mobile-icon-link,
.site-nav__mobile-icon-button {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: flex-end;
}

.site-header .button,
.site-header a.button,
.site-header button.button,
.site-header .button--small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--header-button-background);
  color: var(--header-button-text);
  padding: 0.7rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.site-header .button:hover,
.site-header a.button:hover,
.site-header button.button:hover,
.site-header .button--small:hover {
  background: var(--cta-hover);
  color: var(--header-button-hover-text);
}

.site-header__support p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--header-muted);
}

.site-header__support a {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--header-accent);
}

.site-header__support {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}

.site-header__toggle {
  display: none;
  border: 0;
  background: none;
  padding: 0;
}

.site-header__toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.22rem 0;
  background: var(--header-text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--mint-glow);
  color: var(--navy-deep);
  padding: 0.95rem 1.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--cta-hover);
}

.button--small {
  min-height: 3rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.78rem;
}

.button--ghost,
.button--outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}

.button--outline {
  border-color: rgba(12, 35, 64, 0.12);
  color: var(--navy-deep);
}

.button--light {
  background: #fff;
  color: var(--navy-deep);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
  background: var(--navy-deep);
  color: #fff;
}

.hero--video .hero__media {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
}

.hero--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,35,64,1) 0%, rgba(12,35,64,0.8) 55%, rgba(12,35,64,0.25) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 24rem;
}

.hero--video .hero__inner {
  min-height: 38rem;
}

.hero__inner--single {
  display: block;
  max-width: 80rem;
}

.hero__content {
  max-width: 42rem;
  align-self: center;
}

.hero__status {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  line-height: 1;
  color: var(--mint-glow);
}

.hero__status--live {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.35rem 0 1.75rem;
  padding: 0.85rem 1.15rem 0.85rem 3rem;
}

.hero__status--live::before,
.hero__status--live::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero__status--live::before {
  left: 1rem;
  top: calc(50% - 0.7rem);
  width: 1.4rem;
  height: 1.4rem;
  background: rgba(92, 189, 185, 0.24);
  box-shadow: 0 0 24px rgba(92, 189, 185, 0.28);
  animation: pulse-ring 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  transform-origin: center;
}

.hero__status--live::after {
  left: 1.42rem;
  top: calc(50% - 0.28rem);
  width: 0.56rem;
  height: 0.56rem;
  background: var(--mint-glow);
  box-shadow: 0 0 12px rgba(92, 189, 185, 0.65);
}

.hero__title-accent {
  color: var(--teal-accent);
}

.hero h1 {
  margin: 0;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero__lead {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero__inner--single > p:last-of-type:not(.hero__status) {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__actions--center {
  justify-content: center;
}

.hero-stats {
  width: 100%;
  max-width: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(26, 74, 110, 0.4);
  padding: 0.75rem;
  backdrop-filter: blur(12px);
  align-self: center;
  justify-self: end;
}

.hero-stats__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(12, 35, 64, 0.35);
}

.hero-stats__item + .hero-stats__item {
  margin-top: 0.75rem;
}

.hero-stats__item.is-active {
  border-color: rgba(92, 189, 185, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.hero-stats__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.hero-stats__row > :first-child {
  flex: 1;
  min-width: 0;
}

.hero-stats__row h3 {
  margin: 0;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  min-height: 3rem;
}

.hero-stats__row p,
.hero-stats__details {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.hero-stats__row p {
  min-height: 1.625rem;
}

.hero-stats__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
  align-self: flex-start;
}

.hero-stats__value {
  color: var(--mint-glow);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.1rem;
  white-space: nowrap;
}

.hero-stats__icon {
  color: rgba(255, 255, 255, 0.45);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stats__item.is-active .hero-stats__icon {
  transform: rotate(45deg);
}

.hero-stats__details-wrap {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  opacity: 0;
  will-change: max-height, padding, opacity;
  transition:
    max-height 420ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease;
}

.hero-stats__details-wrap.is-open {
  max-height: 8.5rem;
  padding: 0 1rem 1rem;
  opacity: 1;
}

.hero-stats__details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  min-height: 7.5rem;
}

.section {
  padding: 6rem 0;
}

.section--white {
  background: var(--surface-white);
}

.section--soft {
  background: var(--surface-light);
}

.section--dark {
  background: var(--navy-deep);
  color: #fff;
}

.section--dark .entry-card {
  border-color: rgba(255, 255, 255, 0.08);
  background: #182e4a;
}

.section--dark .entry-card__meta {
  color: rgba(255, 255, 255, 0.45);
}

.section--dark .entry-card__description {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title eyebrow"
    "description eyebrow";
  column-gap: 1.5rem;
  row-gap: 0.75rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading span {
  grid-area: eyebrow;
  display: inline-block;
  color: rgba(12, 35, 64, 0.45);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  justify-self: end;
  align-self: end;
}

.section-heading--light span {
  color: rgba(255, 255, 255, 0.46);
}

.section-heading h2 {
  grid-area: title;
  margin: 0;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading--light h2 {
  color: #fff;
}

.section-heading p {
  grid-area: description;
  max-width: 52rem;
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.68);
}

.section-heading--center {
  display: block;
  text-align: center;
}

.featured-card,
.entry-card,
.value-card,
.contact-side,
.contact-form-card,
.cta-panel,
.why-card {
  box-shadow: var(--shadow-soft);
}

.featured-card {
  overflow: hidden;
  border: 1px solid rgba(12, 35, 64, 0.08);
  border-radius: var(--radius-2xl);
  background: #fff;
  margin-bottom: 1.5rem;
}

.featured-card__link {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.featured-card--news-home .featured-card__link {
  grid-template-columns: 0.96fr 1.04fr;
}

.featured-card__content {
  padding: 2.5rem;
}

.featured-card__content h3 {
  margin: 1rem 0 0;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 2rem;
  line-height: 1.15;
}

.featured-card__content p:last-of-type {
  margin-top: 1rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid--archive {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--projects-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--news-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.entry-card {
  overflow: hidden;
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: var(--radius-xl);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.entry-card:hover,
.value-card:hover,
.why-card--secondary:hover {
  transform: translateY(-4px);
}

.entry-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(45,138,158,0.24), rgba(12,35,64,0.18));
}

.card-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(12, 35, 64, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.entry-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 2rem;
}

.entry-card__meta {
  margin: 0;
  color: rgba(12, 35, 64, 0.45);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.entry-card__meta--price {
  color: var(--teal-accent);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.entry-card__meta--price ins {
  text-decoration: none;
}

.entry-card__meta--price del {
  margin-right: 0.4rem;
  opacity: 0.55;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.34fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.shop-sidebar,
.shop-results {
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 2rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.shop-sidebar {
  position: sticky;
  top: 6.5rem;
  padding: 1.5rem;
}

.shop-filters {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shop-filters__section + .shop-filters__section {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.shop-filters__label {
  display: block;
  margin: 0.6rem 0 0.45rem;
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.shop-filter-group {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.shop-filter-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(12, 35, 64, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
  cursor: pointer;
}

.shop-filter-option input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--teal-accent);
}

.shop-filters input,
.shop-filters select {
  width: 100%;
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 1rem;
  background: var(--surface-light);
  padding: 0.85rem 0.95rem;
  color: var(--navy-deep);
  font: inherit;
}

.shop-filters input:focus,
.shop-filters select:focus {
  outline: none;
  border-color: var(--teal-accent);
  box-shadow: 0 0 0 3px rgba(45, 138, 158, 0.12);
}

.shop-filters__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.shop-filters__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.shop-results {
  padding: 1.5rem;
}

.shop-results__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.shop-results__count {
  margin: 0;
  color: rgba(12, 35, 64, 0.56);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.shop-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.shop-category-bar__button {
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 999px;
  background: var(--surface-light);
  color: rgba(12, 35, 64, 0.74);
  padding: 0.7rem 1rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.shop-category-bar__button:hover,
.shop-category-bar__button.is-active {
  border-color: rgba(45, 138, 158, 0.24);
  background: rgba(45, 138, 158, 0.08);
  color: var(--teal-accent);
}

.shop-empty-state {
  margin-top: 1rem;
  padding: 2rem;
  border: 1px dashed rgba(12, 35, 64, 0.14);
  border-radius: 1.5rem;
  background: var(--surface-light);
}

.shop-empty-state h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.4rem;
}

.shop-empty-state p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.shop-product-card__stock {
  margin: 0 0 0.7rem;
  color: #2d8a5f;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.shop-product-card__details {
  display: grid;
  gap: 0.22rem;
  margin-top: 0.95rem;
}

.shop-product-card__details p {
  margin: 0;
  color: rgba(12, 35, 64, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

.shop-product-card__details strong {
  color: var(--navy-deep);
}

.shop-product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.shop-product-card__specs li {
  border-radius: 999px;
  background: rgba(12, 35, 64, 0.05);
  padding: 0.45rem 0.7rem;
  color: rgba(12, 35, 64, 0.72);
  font-size: 0.8rem;
  line-height: 1.2;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.55fr);
  gap: 1.5rem;
  align-items: start;
}

.product-main,
.product-purchase__card {
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 2rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-main {
  overflow: hidden;
}

.product-gallery__main {
  background: linear-gradient(135deg, rgba(45, 138, 158, 0.12), rgba(12, 35, 64, 0.08));
}

.product-gallery__image,
.product-gallery__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(12, 35, 64, 0.45);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1rem 0;
}

.product-gallery__thumb {
  width: 4.75rem;
  height: 4.75rem;
  overflow: hidden;
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 1rem;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.product-gallery__thumb.is-active {
  border-color: rgba(45, 138, 158, 0.3);
  box-shadow: 0 0 0 3px rgba(45, 138, 158, 0.08);
}

.product-gallery__thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-main__content {
  padding: 1.5rem 1.75rem 1.75rem;
}

.product-specs {
  margin-top: 2rem;
}

.product-specs h2 {
  margin: 0 0 1rem;
  color: var(--navy-deep);
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.65rem;
  line-height: 1.15;
}

.product-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-specs__card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(12, 35, 64, 0.08);
  border-radius: 1.2rem;
  background: var(--surface-light);
}

.product-specs__card p:last-child {
  margin: 0.55rem 0 0;
  color: rgba(12, 35, 64, 0.74);
  line-height: 1.65;
}

.product-purchase {
  position: sticky;
  top: 6.5rem;
}

.product-purchase__card {
  padding: 1.75rem;
}

.product-purchase__price {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
}

.product-purchase__price ins {
  text-decoration: none;
}

.product-purchase__price del {
  margin-right: 0.45rem;
  opacity: 0.55;
}

.product-purchase__stock {
  margin: 0.9rem 0 0;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-purchase__stock.is-in-stock {
  color: #2d8a5f;
}

.product-purchase__stock.is-out-of-stock {
  color: #b91c1c;
}

.product-purchase__lead {
  margin: 1rem 0 0;
  color: rgba(12, 35, 64, 0.66);
  line-height: 1.75;
}

.product-purchase__cart {
  margin-top: 1.5rem;
}

.product-purchase__cart form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.product-purchase__cart .stock {
  display: none !important;
}

.product-purchase__cart.is-sold-individually {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.product-purchase__cart.is-sold-individually form.cart {
  margin: 0;
  flex: 0 0 auto;
  align-items: center;
}

.product-purchase__cart .quantity--static {
  flex: 0 0 auto;
}

.product-purchase__cart .quantity .qty {
  width: 5rem;
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 999px;
  background: var(--surface-light);
  padding: 0.8rem 0.95rem;
  font: inherit;
}

.product-purchase__cart .quantity--static .qty {
  pointer-events: none;
  text-align: center;
}

.product-purchase__cart .single_add_to_cart_button,
.product-purchase__cart .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--cta-hover);
  color: var(--navy-deep);
  padding: 0.95rem 1.65rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  -webkit-appearance: none;
  appearance: none;
  transition: background 180ms ease, color 180ms ease;
}

.product-purchase__cart .single_add_to_cart_button:hover,
.product-purchase__cart .button:hover {
  background: var(--cta-hover-strong);
  color: #fff;
}

.woocommerce div.product .product-purchase__cart .single_add_to_cart_button,
.woocommerce-page div.product .product-purchase__cart .single_add_to_cart_button,
.woocommerce div.product .product-purchase__cart .button,
.woocommerce-page div.product .product-purchase__cart .button {
  background: var(--cta-hover) !important;
  background-color: var(--cta-hover) !important;
  color: var(--navy-deep) !important;
  box-shadow: none;
}

.woocommerce div.product .product-purchase__cart .single_add_to_cart_button:hover,
.woocommerce-page div.product .product-purchase__cart .single_add_to_cart_button:hover,
.woocommerce div.product .product-purchase__cart .button:hover,
.woocommerce-page div.product .product-purchase__cart .button:hover {
  background: var(--cta-hover-strong) !important;
  background-color: var(--cta-hover-strong) !important;
  color: #fff !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) div.product .product-purchase__cart .single_add_to_cart_button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) div.product .product-purchase__cart button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) div.product .product-purchase__cart input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce div.product .product-purchase__cart .single_add_to_cart_button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce div.product .product-purchase__cart button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce div.product .product-purchase__cart input.button.alt {
  background: var(--cta-hover) !important;
  background-color: var(--cta-hover) !important;
  color: var(--navy-deep) !important;
  border-color: transparent !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) div.product .product-purchase__cart .single_add_to_cart_button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) div.product .product-purchase__cart button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) div.product .product-purchase__cart input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce div.product .product-purchase__cart .single_add_to_cart_button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce div.product .product-purchase__cart button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce div.product .product-purchase__cart input.button.alt:hover {
  background: var(--cta-hover-strong) !important;
  background-color: var(--cta-hover-strong) !important;
  color: #fff !important;
}

.single-product form.cart button.single_add_to_cart_button.button.alt {
	background-color: var(--cta-hover) !important;
	border-color: var(--cta-hover) !important;
	color: #101820 !important;
	border-radius: 999px;
	font-weight: 650;
	padding: 0.9rem 1.4rem;
	text-transform: none;
}

.single-product form.cart button.single_add_to_cart_button.button.alt:hover,
.single-product form.cart button.single_add_to_cart_button.button.alt:focus-visible {
	background-color: var(--cta-hover-strong) !important;
	border-color: var(--cta-hover-strong) !important;
	color: #fff !important;
}

.product-purchase__meta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.product-purchase__meta p {
  margin: 0;
  color: rgba(12, 35, 64, 0.68);
  line-height: 1.7;
}

.product-purchase__meta p + p {
  margin-top: 0.5rem;
}

.product-purchase__meta strong {
  color: var(--navy-deep);
}

.entry-card__title {
  margin: 0.8rem 0 0;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.entry-card__description {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.entry-card__cta {
  display: inline-flex;
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--teal-accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.card-grid--news-home {
  margin-top: 1.5rem;
}

.entry-card--news-home .card-media {
  aspect-ratio: 16 / 11;
}

.entry-card--news-home .entry-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.entry-card--news-home .entry-card__title {
  font-size: 1.2rem;
}

.entry-card--news-home .entry-card__cta {
  padding-top: 1.1rem;
}

.entry-card--news .card-media {
  aspect-ratio: 16 / 11;
}

.entry-card--service .card-media,
.entry-card--project .card-media {
  aspect-ratio: 16 / 11;
}

.section__actions {
  margin-top: 2rem;
}

.section__actions--center {
  display: flex;
  justify-content: center;
}

.news-feed__status {
  min-height: 1.5rem;
  margin-top: 1.25rem;
  color: rgba(12, 35, 64, 0.52);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.news-feed__sentinel {
  width: 100%;
  height: 1px;
}

.section-block {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: 1rem;
}

.why-card {
  border-radius: var(--radius-xl);
}

.why-card--primary {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  background: var(--navy-deep);
  color: #fff;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card--primary:hover {
  box-shadow: 0 24px 48px -28px rgb(12 35 64 / 0.4);
}

.why-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.why-card--primary h3,
.why-card--secondary h3,
.value-card h3 {
  margin: 0;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.55rem;
}

.why-card__description {
  margin: 0;
  line-height: 1.7;
}

.why-card__description--primary {
  margin-top: 1rem;
  max-width: 20rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.why-card__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.8);
}

.why-card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.why-card__list li + li {
  margin-top: 0.55rem;
}

.why-card__check {
  color: var(--mint-glow);
  flex: 0 0 auto;
}

.why-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(92, 189, 185, 0.12);
  color: var(--mint-glow);
  font-family: var(--font-mono);
  padding: 0.4rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.why-card__cta {
  margin-top: 2rem;
  align-self: flex-start;
  text-decoration: none;
}

.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-card--secondary,
.value-card {
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(12, 35, 64, 0.1);
  background: #fff;
  border-radius: var(--radius-xl);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card--secondary h3 {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  font-size: 1.25rem;
}

.why-card__number {
  color: rgba(12, 35, 64, 0.14);
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.why-card__title {
  display: inline-block;
}

.why-card__description--secondary,
.value-card p {
  color: var(--text-muted);
}

.why-card__label {
  margin: 0.5rem 0 0;
  color: var(--teal-accent) !important;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.why-card__description--secondary {
  margin-top: 0.55rem;
  color: rgba(12, 35, 64, 0.65);
}

.value-card:hover,
.why-card--secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgb(12 35 64 / 0.18);
  border-color: rgba(12, 35, 64, 0.2);
  background: rgba(247, 250, 252, 0.7);
}

.company-marquee-mask {
  position: relative;
  overflow: hidden;
}

.company-marquee-mask::before,
.company-marquee-mask::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 4.5rem;
  height: 100%;
  pointer-events: none;
}

.company-marquee-mask::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface-light) 15%, rgba(247, 250, 252, 0));
}

.company-marquee-mask::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface-light) 15%, rgba(247, 250, 252, 0));
}

.company-marquee-mask--white::before {
  background: linear-gradient(90deg, var(--surface-white) 15%, rgba(253, 254, 254, 0));
}

.company-marquee-mask--white::after {
  background: linear-gradient(270deg, var(--surface-white) 15%, rgba(253, 254, 254, 0));
}

.company-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  animation: company-marquee 34s linear infinite;
}

.company-marquee-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.company-marquee-logo {
  display: block;
  width: auto;
  max-width: 140%;
  height: auto;
  max-height: 3.75rem;
  border-radius: 1rem;
  object-fit: contain;
}

.cta-panel {
  border-radius: 2rem;
  background: var(--teal-accent);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-panel h2 {
  margin: 0;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.cta-panel p {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.site-footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--footer-background);
  color: var(--footer-text);
}

.site-footer__stack {
  display: grid;
  grid-template-columns: 30% 17.5% 17.5% 17.5% 17.5%;
  gap: 2rem;
  align-items: start;
}

.site-footer__primary {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.site-footer__stack > :nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.site-footer__stack > :nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.site-footer__stack > :nth-child(4) {
  grid-column: 5;
  grid-row: 1;
}

.site-footer__section {
  min-width: 0;
}

.site-footer__section h3 {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--footer-text);
}

.site-footer__intro,
.site-footer__meta,
.site-footer__list,
.site-footer__address {
  color: var(--footer-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.site-footer__intro {
  margin: 0.9rem 0 0;
}

.site-logo--footer {
  display: inline-flex;
  align-items: flex-start;
  vertical-align: top;
  color: var(--footer-text);
}

.site-logo--footer span {
  color: var(--footer-link-hover);
}

.site-logo--footer .custom-logo-link {
  display: inline-flex;
  align-items: flex-start;
  transform: translateY(var(--footer-logo-y));
}

.site-logo--footer img,
.site-logo--footer .custom-logo {
  display: block;
  width: auto;
  max-width: none;
  height: var(--footer-logo-size);
}

.site-footer__brand {
  padding-top: 0;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li + li {
  margin-top: 0.5rem;
}

.site-footer__address,
.site-footer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__address {
  font-style: normal;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--footer-subtle);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--footer-link-hover);
}

.site-footer__mini-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.prose {
  max-width: 60rem;
}

.prose--wide {
  max-width: none;
}

.prose p {
  line-height: 1.85;
  color: var(--text-muted);
}

.article-feature {
  margin: 0 0 2rem;
}

.article-feature__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.75rem;
  box-shadow: 0 28px 54px -34px rgba(12, 35, 64, 0.2);
}

.prose figure,
.prose .wp-block-image,
.prose .wp-block-gallery {
  margin: 2rem 0;
}

.prose img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}

.prose figure img,
.prose .wp-block-image img {
  box-shadow: 0 24px 48px -30px rgba(12, 35, 64, 0.18);
}

.prose figcaption,
.prose .wp-element-caption,
.prose .blocks-gallery-caption {
  margin-top: 0.85rem;
  color: rgba(12, 35, 64, 0.52);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.prose .alignwide,
.prose .wp-block-image.alignwide,
.prose .wp-block-gallery.alignwide {
  max-width: 68rem;
}

.prose .alignfull,
.prose .wp-block-image.alignfull,
.prose .wp-block-gallery.alignfull {
  max-width: none;
}

.nlradio-video-player {
  --nlradio-video-progress: 0%;
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid rgba(92, 189, 185, 0.18);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(92, 189, 185, 0.18), transparent 34%),
    linear-gradient(180deg, #102949 0%, #09182c 100%);
  box-shadow: 0 28px 60px -38px rgba(12, 35, 64, 0.5);
}

.nlradio-video-player__media {
  display: block;
  width: 100%;
  height: auto;
  background: #081a2f;
  cursor: pointer;
  accent-color: var(--mint-glow);
}

.nlradio-video-player__media::-webkit-media-controls-panel {
  background: linear-gradient(180deg, rgba(8, 26, 47, 0.82) 0%, rgba(8, 26, 47, 0.96) 100%);
}

.nlradio-video-player__media::-webkit-media-controls-current-time-display,
.nlradio-video-player__media::-webkit-media-controls-time-remaining-display {
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.nlradio-video-player__media::-webkit-media-controls-play-button,
.nlradio-video-player__media::-webkit-media-controls-fullscreen-button,
.nlradio-video-player__media::-webkit-media-controls-mute-button {
  border-radius: 999px;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.nlradio-video-player__media::-webkit-media-controls-play-button:hover,
.nlradio-video-player__media::-webkit-media-controls-fullscreen-button:hover,
.nlradio-video-player__media::-webkit-media-controls-mute-button:hover {
  background-color: rgba(92, 189, 185, 0.22);
  box-shadow: inset 0 0 0 1px rgba(92, 189, 185, 0.34);
}

.nlradio-video-player__media::-webkit-media-controls-volume-slider,
.nlradio-video-player__media::-webkit-media-controls-timeline {
  accent-color: var(--mint-glow);
}

.nlradio-video-player__controls {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 1.1rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(7, 18, 31, 0.84) 0%, rgba(7, 18, 31, 0.96) 100%);
}

.nlradio-video-player__timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
}

.nlradio-video-player__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.nlradio-video-player__actions-group {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.nlradio-video-player__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.72rem 1rem;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nlradio-video-player__button:hover {
  transform: translateY(-1px);
  border-color: rgba(92, 189, 185, 0.55);
  background: rgba(92, 189, 185, 0.16);
  box-shadow: 0 16px 28px -24px rgba(92, 189, 185, 0.55);
}

.nlradio-video-player__button:focus-visible,
.nlradio-video-player__progress:focus-visible,
.nlradio-video-player__volume:focus-visible {
  outline: 2px solid rgba(92, 189, 185, 0.62);
  outline-offset: 2px;
}

.nlradio-video-player__play {
  min-width: 5.7rem;
  border-color: rgba(92, 189, 185, 0.34);
  background: rgba(92, 189, 185, 0.14);
  color: #d8fbf9;
}

.nlradio-video-player__time {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nlradio-video-player__progress,
.nlradio-video-player__volume {
  appearance: none;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.nlradio-video-player__progress {
  width: 100%;
  background: linear-gradient(90deg, #5cbdb9 0%, #5cbdb9 var(--nlradio-video-progress), rgba(255, 255, 255, 0.14) var(--nlradio-video-progress), rgba(255, 255, 255, 0.14) 100%);
}

.nlradio-video-player__volume {
  width: 6.5rem;
  background: linear-gradient(90deg, rgba(251, 146, 75, 0.96) 0%, rgba(251, 146, 75, 0.96) 55%, rgba(255, 255, 255, 0.14) 55%, rgba(255, 255, 255, 0.14) 100%);
}

.nlradio-video-player__progress::-webkit-slider-thumb,
.nlradio-video-player__volume::-webkit-slider-thumb {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(12, 35, 64, 0.34);
}

.nlradio-video-player__progress::-moz-range-thumb,
.nlradio-video-player__volume::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(12, 35, 64, 0.34);
}

.nlradio-video-player__progress::-moz-range-track,
.nlradio-video-player__volume::-moz-range-track {
  height: 0.45rem;
  border-radius: 999px;
  background: transparent;
}

.nlradio-video-player.is-playing .nlradio-video-player__play {
  border-color: rgba(251, 146, 75, 0.34);
  background: rgba(251, 146, 75, 0.14);
  color: #ffe7d1;
}

@media (min-width: 861px) {
  .prose p:has(> img + img),
  .prose p:has(> img + br + img) {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .prose p:has(> img + img) > img,
  .prose p:has(> img + br + img) > img {
    display: block;
    width: calc(50% - 0.75rem);
    margin: 1.5rem 0 0;
    flex: 0 0 calc(50% - 0.75rem);
  }

  .prose p > img + br {
    display: none;
  }

  .prose p:has(> img + img) > img + img,
  .prose p:has(> img + br + img) > img + br + img {
    margin-left: 0;
  }
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.about-highlights__pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 999px;
  background: #fff;
  padding: 0.65rem 1rem;
  color: rgba(12, 35, 64, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

.card-grid--values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1.5rem;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
  gap: 1.5rem;
  align-items: start;
}

.prose--project {
  max-width: none;
}

.project-sidebar {
  position: sticky;
  top: 8.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.project-sidebar-card,
.project-contact-card {
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.project-sidebar-card {
  background: #fff;
  padding: 1.6rem;
}

.project-sidebar-card h3,
.project-contact-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.15;
}

.project-sidebar-card__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.project-sidebar-card__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(12, 35, 64, 0.08);
}

.project-sidebar-card__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.project-sidebar-card__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-sidebar-card__label {
  color: rgba(12, 35, 64, 0.48);
}

.project-sidebar-card__value {
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.project-contact-card {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(92, 189, 185, 0.2), transparent 38%),
    linear-gradient(180deg, #102949 0%, #0c2340 100%);
  color: #fff;
}

.project-contact-card__content {
  position: relative;
  z-index: 1;
  padding: 1.7rem 1.6rem 1.8rem;
}

.project-contact-card p {
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.project-contact-card__link {
  display: inline-flex;
  margin-top: 1.15rem;
}

.contact-side,
.contact-form-card {
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 2rem;
  background: #fff;
  padding: 2rem;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(92, 189, 185, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.contact-side__intro {
  padding: 0 0 0.35rem;
}

.contact-side__eyebrow {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: rgba(12, 35, 64, 0.45);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.contact-side__intro h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
}

.contact-side__intro p {
  margin: 0.7rem 0 0;
  color: rgba(12, 35, 64, 0.68);
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-side__details {
  display: grid;
  gap: 0.75rem;
}

.contact-side__block {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(12, 35, 64, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
}

.contact-side__block a {
  display: inline-block;
  margin-top: 0.3rem;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-deep);
}

.contact-side__block:first-child a,
.contact-side__block:nth-child(2) a {
  color: var(--teal-accent);
}

.contact-side__block p:last-child,
.contact-side__trust li,
.contact-form__note,
  .contact-form__actions p {
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-side__block address {
  display: flex;
  flex-direction: column;
  margin-top: 0.35rem;
  color: rgba(12, 35, 64, 0.72);
  font-style: normal;
  line-height: 1.65;
}

.contact-side__trust {
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 1.2rem;
  background: var(--surface-light);
  padding: 1.1rem 1.15rem;
}

.contact-side__trust h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-side__trust ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.contact-side__trust li {
  display: flex;
  gap: 0.75rem;
  margin: 0;
  color: rgba(12, 35, 64, 0.65);
  font-size: 0.84rem;
  line-height: 1.45rem;
}

.contact-side__trust li + li {
  margin-top: 0.45rem;
}

.contact-form-card {
  padding: 2.35rem 2.35rem 2.2rem;
  border-color: rgba(12, 35, 64, 0.12);
  box-shadow: 0 28px 64px -36px rgba(12, 35, 64, 0.22);
}

.contact-form-card__header {
  margin-bottom: 1.5rem;
}

.contact-form-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: rgba(12, 35, 64, 0.45);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.contact-form-card__header h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.7rem;
  line-height: 1.15;
}

.contact-form-card__header p {
  margin: 0.8rem 0 0;
  color: rgba(12, 35, 64, 0.65);
  line-height: 1.7;
}

.contact-form .wpcf7 {
  width: 100%;
}

.contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .wpcf7-form p {
  margin: 0;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form .wpcf7-form label {
  display: block;
  margin-top: 1rem;
  color: var(--navy-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form .wpcf7-form label > br,
.contact-form .wpcf7-form p > br {
  display: none;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5rem;
}

.contact-form .wpcf7 input:not([type="submit"]):not([type="checkbox"]),
.contact-form .wpcf7 select,
.contact-form .wpcf7 textarea {
  width: 100%;
  border: 1px solid rgba(12, 35, 64, 0.1);
  border-radius: 1.2rem;
  background: var(--surface-light);
  padding: 0.95rem 1rem;
  color: var(--navy-deep);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form .wpcf7 input:not([type="submit"]):not([type="checkbox"]):focus,
.contact-form .wpcf7 select:focus,
.contact-form .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--teal-accent);
  box-shadow: 0 0 0 3px rgba(45, 138, 158, 0.12);
}

.contact-form .wpcf7 textarea {
  min-height: 11rem;
  resize: vertical;
}

.contact-form [data-show-for][hidden] {
  display: none !important;
}

.contact-form .wpcf7-acceptance {
  display: block;
  margin: 0.25rem 0 0;
}

.contact-form .wpcf7-form-control-wrap[data-name="terms"],
.contact-form .wpcf7-form-control-wrap[data-name="privacy"],
.contact-form .wpcf7-form-control-wrap[data-name="newsletter"] {
  margin-top: 0;
}

.contact-form .wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact-form .wpcf7-acceptance label {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--navy-deep);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  cursor: pointer;
}

.contact-form .wpcf7-acceptance input[type="checkbox"] {
  width: 16px !important;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  padding: 0 !important;
  margin: 0;
  border-radius: 0;
  flex: 0 0 16px;
}

.contact-form .wpcf7-acceptance .wpcf7-list-item-label {
  display: inline !important;
  margin: 0 !important;
  font-weight: 400;
}

.contact-form .wpcf7-acceptance a {
  color: var(--navy-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-form .wpcf7-submit,
.contact-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--cta-hover);
  color: var(--navy-deep);
  padding: 0.95rem 1.65rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.contact-form .wpcf7-submit:hover,
.contact-form input[type="submit"]:hover {
  background: var(--cta-hover-strong);
  color: #fff;
}

.contact-form .wpcf7-spinner {
  margin: 0.75rem 0 0 0.75rem;
}

.contact-form .wpcf7-response-output,
.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 0.5rem 0 0;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 0.45rem;
  font-size: 0.82rem;
}

.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: rgba(185, 28, 28, 0.18);
  background: rgba(185, 28, 28, 0.06);
  color: #991b1b;
}

.contact-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(45, 138, 158, 0.2);
  background: rgba(45, 138, 158, 0.08);
  color: #0f4c5c;
}

@media (max-width: 700px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.75rem;
  }
}

@media (max-width: 1100px) {
  .hero__inner,
  .why-grid,
  .contact-layout,
  .shop-layout,
  .product-layout,
  .featured-card__link {
    grid-template-columns: 1fr;
  }

  .card-grid--archive,
  .card-grid--shop,
  .card-grid--values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-sidebar {
    position: static;
  }

  .product-purchase {
    position: static;
  }

  .site-footer__stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-footer__stack > :nth-child(1),
  .site-footer__stack > :nth-child(2),
  .site-footer__stack > :nth-child(3),
  .site-footer__stack > :nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__primary,
  .site-footer__section {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .prose figure,
  .prose .wp-block-image {
    display: block;
    width: 100%;
    margin-right: 0;
  }

  .prose p:has(> img + img),
  .prose p:has(> img + br + img) {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .prose p > img {
    margin-top: 0;
  }

  .prose p > img + br {
    display: none;
  }

  .page-template-template-contact .section--white .section__inner {
    display: flex;
    flex-direction: column;
  }

  .page-template-template-contact .section--white .contact-layout {
    order: 1;
  }

  .page-template-template-contact .section--white .section-heading {
    order: 2;
  }

  .hero--video .hero__inner {
    min-height: 27rem;
  }

  .project-layout {
    grid-template-columns: 1fr;
  }

  .project-sidebar {
    position: static;
  }

  .site-header--sticky,
  .site-header--sticky.is-visible {
    display: none;
  }

  .site-header__utility-inner {
    justify-content: flex-end;
    padding: 0.55rem 0;
  }

  .site-header__utility-spacer {
    display: none;
  }

  .site-utility-actions {
    justify-content: flex-end;
  }

  .site-utility-tools {
    padding-left: 1rem;
  }

  .site-header__inner {
    display: flex;
    position: relative;
    z-index: 221;
  }

  .site-header__toggle {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 222;
  }

  .site-header__actions,
  .site-header__support,
  .site-header__login,
  .site-header__actions .button {
    display: none;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .site-header {
    position: relative;
    z-index: 220;
  }

  .site-header__utility {
    position: relative;
    z-index: 221;
  }

  .site-nav {
    display: flex;
    position: fixed;
    top: 7.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 210;
    width: 100vw;
    height: calc(100dvh - 7.75rem);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    overflow-y: auto;
    padding: 1.25rem 1.5rem 2rem;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 220ms ease,
      visibility 0ms linear 360ms;
  }

  .site-nav__list,
  .site-nav__submenu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-nav__item {
    width: 100%;
  }

  .site-nav__item--has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 220ms ease,
      visibility 0ms linear 0ms;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
    padding: 0.72rem 0;
    border-radius: 0;
    background: transparent;
    color: var(--navy-deep);
    border: 0;
    box-shadow: none;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .site-nav__item--has-children > a {
    grid-column: 1 / 2;
    padding-left: 2.25rem;
    padding-right: 0.75rem;
  }

  .site-nav__item--has-children > a::before,
  .site-nav__item--has-children::after {
    display: none;
  }

  .site-nav__submenu-toggle {
    display: inline-flex;
    grid-column: 2 / 3;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    background: transparent;
    color: var(--navy-deep);
    padding: 0;
    cursor: pointer;
  }

  .site-nav__submenu-toggle span {
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .site-nav__item--has-children.is-open .site-nav__submenu-toggle span {
    transform: rotate(225deg);
  }

  .site-nav__submenu {
    position: static;
    display: flex;
    max-height: 0;
    overflow: hidden;
    grid-column: 1 / -1;
    min-width: 0;
    align-items: center;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition:
      max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease,
      margin-top 220ms ease,
      padding 220ms ease,
      visibility 0ms linear 260ms;
  }

  .site-nav__item--has-children.is-open > .site-nav__submenu {
    max-height: 12rem;
    margin-top: 0.1rem;
    padding: 0.1rem 0 0.15rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease,
      margin-top 220ms ease,
      padding 220ms ease,
      visibility 0ms linear 0ms;
  }

  .site-nav__item:hover > .site-nav__submenu,
  .site-nav__item:focus-within > .site-nav__submenu {
    transform: translateX(0) translateY(0);
  }

  .site-nav__submenu .site-nav__item {
    display: flex;
    justify-content: center;
  }

  .site-nav__submenu a {
    display: inline-flex;
    width: auto;
    justify-content: center;
    padding: 0.45rem 0;
    color: rgba(12, 35, 64, 0.78);
    font-size: 0.84rem;
    font-weight: 600;
    text-align: center;
  }

  .site-nav__submenu a.is-current,
  .site-nav__submenu a.is-ancestor {
    color: var(--header-accent);
  }

  .site-nav a.site-nav__mobile-login {
    display: inline-flex;
    margin-top: 0.9rem;
    min-height: 3rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0c2340;
    background: #5cbdb9;
  }

  .site-nav a.site-nav__mobile-login:hover,
  .site-nav a.site-nav__mobile-login:focus-visible {
    color: #0c2340;
    background: color-mix(in srgb, #5cbdb9 88%, #000 12%);
  }

  .site-nav__mobile-utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.55rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(12, 35, 64, 0.08);
  }

  .site-nav__mobile-socials,
  .site-nav__mobile-tools {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
  }

  .site-nav__mobile-tools {
    padding-left: 1rem;
    border-left: 1px solid rgba(12, 35, 64, 0.08);
  }

  .site-nav a.site-nav__mobile-icon-link,
  .site-nav .site-nav__mobile-icon-button {
    display: inline-flex;
    width: 1.35rem;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--navy-deep);
    box-shadow: none;
  }

  .site-nav a.site-nav__mobile-icon-link:hover,
  .site-nav .site-nav__mobile-icon-button:hover,
  .site-nav a.site-nav__mobile-icon-link:focus-visible,
  .site-nav .site-nav__mobile-icon-button:focus-visible {
    color: var(--header-accent);
    background: transparent;
  }

  .hero {
    padding-top: 2rem;
  }

  .section {
    padding: 2.25rem 0;
  }

  .hero__inner {
    gap: 2rem;
    align-items: start;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .hero__lead {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero__actions {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .hero__actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 1rem;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero-stats {
    display: none;
  }

  .featured-card__content h3 {
    font-size: 1.35rem;
  }

  .featured-card__content {
    padding: 1.5rem;
  }

  .featured-card--news-home .featured-card__link {
    grid-template-columns: 1fr;
  }

  .cta-panel .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-panel .hero__actions .button {
    min-width: 14rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "description";
  }

  .section-heading span {
    justify-self: start;
  }

}

@media (max-width: 720px) {
  .hero {
    padding-top: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .card-grid--news-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .entry-card--news-home .card-media {
    aspect-ratio: 16 / 10;
  }

  .entry-card--news-home .entry-card__body {
    padding: 1rem 0.95rem 1.15rem;
  }

  .entry-card--news-home .entry-card__meta {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .entry-card--news-home .entry-card__title {
    font-size: 0.95rem;
    line-height: 1.22;
  }

  .entry-card--news-home .entry-card__cta {
    padding-top: 0.8rem;
    font-size: 0.82rem;
  }

  .site-utility-socials {
    gap: 0.75rem;
  }

  .site-utility-tools {
    gap: 0.8rem;
    padding-left: 0.85rem;
  }

  .site-utility-search__panel {
    height: 320px;
    padding-top: 6.75rem;
  }

  .site-utility-search__panel input {
    min-height: 3.5rem;
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    padding-inline: 0.9rem;
    font-size: 0.76rem;
  }

  .card-grid--archive,
  .card-grid--shop,
  .card-grid--values,
  .contact-form__grid,
  .product-specs__grid {
    grid-template-columns: 1fr;
  }

  .card-grid--news-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .shop-filters__grid {
    grid-template-columns: 1fr;
  }

  .shop-category-bar {
    margin-bottom: 1.25rem;
  }

  .company-marquee-track {
    gap: 1.25rem;
    animation-duration: 24s;
  }

  .company-marquee-logo {
    max-height: 2.75rem;
  }

  .site-footer__bottom,
  .contact-form__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__bottom {
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .site-footer__bottom p {
    margin: 0;
    line-height: 1.7;
  }

  .site-footer__mini-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }

}
