:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --text: #07101e;
  --muted: #5d6877;
  --line: #dce4ec;
  --soft-line: rgba(17, 30, 48, 0.1);
  --brand: #0097d7;
  --brand-strong: #087fba;
  --brand-soft: rgba(0, 151, 215, 0.1);
  --graphite: #0b1420;
  --inverse: #ffffff;
  --shadow: 0 24px 70px rgba(24, 45, 65, 0.12);
  --radius: 8px;
  --header-height: 96px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

:root[data-theme="dark"] {
  --bg: #090d12;
  --surface: #0e141c;
  --surface-strong: #121a24;
  --text: #f4f8fb;
  --muted: #a8b5c2;
  --line: #263343;
  --soft-line: rgba(232, 241, 248, 0.12);
  --brand: #20b7f0;
  --brand-strong: #13a5de;
  --brand-soft: rgba(32, 183, 240, 0.14);
  --graphite: #05080c;
  --inverse: #07101e;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 11% 24%, var(--brand-soft), transparent 24rem),
    linear-gradient(180deg, var(--surface) 0, var(--bg) 54rem);
  color: var(--text);
  transition:
    background 220ms ease,
    color 220ms ease;
}

body,
button,
input,
textarea,
select {
  font: inherit;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
textarea,
select {
  border-radius: 0;
}

button {
  cursor: pointer;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 14rem 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 5.2vw;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 12.8rem;
  min-height: 4rem;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

:root[data-theme="dark"] .brand-logo-light {
  display: none;
}

:root[data-theme="dark"] .brand-logo-dark {
  display: block;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 4.5rem);
  color: var(--text);
  font-size: 0.96rem;
}

.desktop-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.desktop-nav .home-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.desktop-nav .home-nav-link svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 1.9;
}

.desktop-nav .home-nav-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.desktop-nav .home-nav-link::after {
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  min-height: 3.2rem;
  padding: 0 1.55rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #ffffff;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}

.theme-toggle,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.theme-toggle-icon {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.theme-toggle-icon::after {
  position: absolute;
  inset: -0.38rem -0.38rem -0.38rem 45%;
  border-radius: 999px;
  background: var(--surface);
  content: "";
}

:root[data-theme="dark"] .theme-toggle-icon::after {
  inset: -0.38rem 45% -0.38rem -0.38rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.38rem;
}

.menu-toggle span {
  width: 1.35rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 19;
  display: none;
  padding: 1rem 5.2vw 1.4rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: clamp(32rem, calc(100vh - var(--header-height) - 4rem), 38rem);
  overflow: hidden;
  background:
    linear-gradient(115deg, var(--surface) 0 42%, transparent 42.2%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 5.5rem;
  left: 30vw;
  width: 16rem;
  height: 22rem;
  border-top: 1px solid var(--brand);
  border-right: 1px solid var(--brand);
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
  content: "";
  opacity: 0.55;
  transform: skewX(-19deg);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5.5rem) 5.2vw;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.accent-line {
  display: block;
  width: 4rem;
  height: 3px;
  margin-bottom: 1.8rem;
  background: var(--brand);
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 4.45vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 27rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.36rem);
  line-height: 1.45;
}

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

.hero-actions .btn {
  min-width: 12rem;
}

.hero-visual {
  position: relative;
  min-height: 32rem;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.18));
  content: "";
}

:root[data-theme="dark"] .hero-visual::after {
  background:
    linear-gradient(90deg, rgba(9, 13, 18, 0.22), transparent 36%),
    linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.38));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  background: color-mix(in srgb, var(--surface) 94%, var(--brand-soft));
  border-bottom: 1px solid var(--line);
}

.process-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 6.6rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  color: var(--text);
}

.process-item:last-child {
  border-right: 0;
}

.process-item svg {
  color: var(--brand);
  width: 2rem;
  height: 2rem;
  stroke-width: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  padding: 2px 0 0;
  background: var(--line);
}

.product-card {
  position: relative;
  min-height: 13.4rem;
  overflow: hidden;
  isolation: isolate;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 13.4rem;
  object-fit: cover;
  filter: saturate(0.88);
  transition:
    transform 520ms ease,
    filter 520ms ease;
}

.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 14, 24, 0.76), rgba(5, 14, 24, 0.28) 60%),
    linear-gradient(180deg, transparent, rgba(5, 14, 24, 0.28));
}

.product-title {
  position: absolute;
  bottom: 4.2rem;
  left: clamp(1.4rem, 4vw, 4rem);
  z-index: 2;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.9vw, 1.82rem);
  font-weight: 800;
  line-height: 1.08;
}

.product-title::after {
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 1rem;
  background: var(--brand);
  content: "";
}

.product-arrow {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.4rem, 4vw, 4rem);
  z-index: 2;
  color: #ffffff;
  font-size: 1.8rem;
}

.product-card:hover img {
  transform: scale(1.045);
  filter: saturate(1);
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 5.2vw;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.quality-band h2,
.contact-copy h2,
.admin-heading h1 {
  max-width: 15ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.contact-copy p,
.admin-heading p {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-media {
  position: relative;
  overflow: hidden;
  min-height: 25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.capability-section {
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-list article {
  min-height: 17rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--surface);
}

.capability-list span {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.26em;
}

.capability-list h3 {
  margin-bottom: 0.9rem;
  font-size: 1.4rem;
}

.capability-list p {
  color: var(--muted);
  line-height: 1.7;
}

.quality-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(135deg, rgba(0, 151, 215, 0.1), transparent 38%),
    var(--graphite);
  color: #ffffff;
}

.quality-band .eyebrow {
  color: #74d4ff;
}

.quality-band h2 {
  max-width: 19ch;
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  font-weight: 800;
}

.dark-link {
  color: var(--text);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  min-height: 3.05rem;
  padding: 0.78rem 0.9rem;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-result {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 800;
}

.form-result.success {
  color: #10986d;
}

.form-result.error {
  color: #c84a4a;
}

.full-field {
  grid-column: 1 / -1;
}

body.has-popup-open {
  overflow: hidden;
}

.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(3, 8, 14, 0.68);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity 180ms ease;
}

.welcome-popup.is-active {
  opacity: 1;
  pointer-events: auto;
}

.welcome-popup-panel {
  position: relative;
  width: min(100%, 34rem);
  max-height: min(86vh, 48rem);
  overflow: auto;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  background:
    linear-gradient(135deg, var(--brand-soft), transparent 42%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(12px);
  transition: transform 180ms ease;
}

.welcome-popup.is-active .welcome-popup-panel {
  transform: translateY(0);
}

.welcome-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.welcome-popup-close svg {
  width: 1.1rem;
  height: 1.1rem;
}

.welcome-popup-media {
  margin: -0.4rem -0.4rem 1.6rem;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
}

.welcome-popup-media img,
.welcome-popup-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
}

.welcome-popup-panel h2 {
  max-width: 16ch;
  margin: 0 3rem 1rem 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.welcome-popup-text {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.welcome-popup-button {
  margin-top: 1.5rem;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 5.2vw;
  background: #07101e;
  color: #dfe8f0;
}

.footer-logo {
  width: 11rem;
  margin-bottom: 1rem;
}

.site-footer p {
  margin: 0;
  color: #aebbc9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
}

.footer-links a {
  color: #ffffff;
}

.admin-body {
  min-height: 100vh;
  background: var(--bg);
}

.admin-shell {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  padding: 2.2rem 1.6rem;
  background: var(--surface);
  border-right: 1px solid var(--line);
}

.admin-brand {
  margin-bottom: 2.4rem;
}

.admin-sidebar nav {
  display: grid;
  gap: 0.5rem;
}

.admin-sidebar a:not(.brand) {
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  color: var(--muted);
}

.admin-sidebar a.active,
.admin-sidebar a:not(.brand):hover {
  border-color: var(--line);
  background: var(--bg);
  color: var(--text);
}

.admin-content {
  max-width: 64rem;
  padding: clamp(2rem, 6vw, 5rem);
}

.admin-card {
  margin-top: 2.2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.admin-card fieldset {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.admin-card legend {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.theme-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--bg);
}

.theme-option input {
  margin-top: 0.25rem;
  accent-color: var(--brand);
}

.theme-option strong,
.theme-option small {
  display: block;
}

.theme-option small {
  margin-top: 0.25rem;
  color: var(--muted);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.admin-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--brand);
  font-weight: 800;
}

.theme-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.theme-preview div {
  min-height: 11rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
}

.theme-preview div:first-child {
  background: #ffffff;
  color: #07101e;
}

.theme-preview div:last-child {
  background: #07101e;
  color: #ffffff;
}

.theme-preview span {
  display: block;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.theme-preview strong {
  display: block;
  max-width: 12rem;
  font-size: 1.6rem;
  line-height: 1.05;
}

.page-main {
  background:
    radial-gradient(circle at 12% 16%, var(--brand-soft), transparent 26rem),
    var(--bg);
}

.inner-page-header {
  position: relative;
  min-height: clamp(20rem, 42vh, 29rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--surface) 0, color-mix(in srgb, var(--surface) 88%, transparent) 48%, color-mix(in srgb, var(--surface) 58%, transparent) 100%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.inner-page-header::before {
  position: absolute;
  top: 3rem;
  right: 10vw;
  width: 18rem;
  height: 18rem;
  border-top: 1px solid var(--brand);
  border-right: 1px solid var(--brand);
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
  content: "";
  opacity: 0.32;
  transform: skewX(-19deg);
  pointer-events: none;
}

.inner-page-header-media {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

.inner-page-header-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--surface) 0, color-mix(in srgb, var(--surface) 90%, transparent) 38%, color-mix(in srgb, var(--surface) 42%, transparent) 100%),
    linear-gradient(180deg, transparent 48%, var(--bg) 120%);
  content: "";
}

:root[data-theme="dark"] .inner-page-header-media {
  opacity: 0.24;
}

.inner-page-header-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.inner-page-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  max-width: 72rem;
  padding: clamp(3.2rem, 6vw, 6rem) 5.2vw;
}

.inner-page-header-content h1 {
  max-width: 18ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
}

.inner-page-header-content p:not(.eyebrow) {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.62;
}

.managed-page-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.managed-content {
  max-width: 54rem;
}

.managed-content h1,
.managed-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 3.9vw, 4.1rem);
  line-height: 1.02;
}

.managed-content p:not(.eyebrow),
.section-heading > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.managed-side-panel {
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.managed-side-panel h3 {
  margin-bottom: 1.4rem;
  font-size: 1.45rem;
}

.managed-side-panel ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.managed-side-panel li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.55;
}

.managed-side-panel li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--brand);
  content: "";
}

.inner-process {
  border-top: 1px solid var(--line);
}

.product-page-section .section-heading {
  align-items: end;
}

.product-page-section .section-heading p:not(.eyebrow) {
  max-width: 36rem;
}

.product-list-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-list-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  min-height: 18rem;
  background: var(--surface);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

a.product-list-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-list-card img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  filter: saturate(0.9);
}

.product-list-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.product-list-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 1.02;
}

.product-list-card p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--muted);
  line-height: 1.72;
}

.compact-section {
  padding-top: clamp(3.2rem, 6vw, 5.4rem);
}

.subpage-chip-grid,
.chemical-list,
.address-card-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.subpage-chip,
.chemical-list-item,
.address-card,
.contact-info-card {
  background: var(--surface);
}

.subpage-chip,
.address-card {
  min-height: 15rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.subpage-chip span {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.subpage-chip h3,
.address-card h3,
.chemical-list-item h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.subpage-chip p,
.address-card p,
.chemical-list-item p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.68;
}

.chemical-list {
  gap: 1px;
}

.chemical-list-item {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  min-height: 12rem;
}

.chemical-list-item img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  filter: saturate(0.9);
}

.chemical-list-item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-details-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
}

.contact-info-card {
  padding: clamp(1.5rem, 3.4vw, 2.8rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-info-card h2 {
  max-width: 13ch;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.02;
}

.contact-methods {
  display: grid;
  gap: 1rem;
}

.contact-methods a {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--bg);
}

.contact-methods span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

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

.address-card .text-link {
  margin-top: 1rem;
}

.map-section {
  padding-top: 0;
}

.map-section iframe {
  width: 100%;
  min-height: clamp(22rem, 44vw, 34rem);
  border: 1px solid var(--line);
  filter: saturate(0.85);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 12rem 1fr auto;
    padding-inline: 3.5vw;
  }

  .desktop-nav {
    gap: 1.4rem;
  }

  .hero {
    grid-template-columns: 46% 54%;
  }

  h1 {
    font-size: clamp(2.7rem, 5.7vw, 4.4rem);
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 82px;
  }

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

  .brand {
    width: 10rem;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    background: var(--surface);
  }

  .hero::before {
    display: none;
  }

  .inner-page-header::before {
    display: none;
  }

  .hero-copy {
    padding: 4rem 5.2vw 3rem;
  }

  .inner-page-header-content {
    min-height: 20rem;
    padding: 4rem 5.2vw 3rem;
  }

  .hero-visual {
    min-height: 22rem;
    clip-path: none;
  }

  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-item {
    justify-content: flex-start;
    min-height: 5.2rem;
    border-bottom: 1px solid var(--line);
  }

  .product-grid,
  .capability-list,
  .split-section,
  .contact-section,
  .admin-shell,
  .managed-page-section,
  .product-list-card,
  .contact-details-section,
  .address-card-grid,
  .subpage-chip-grid,
  .chemical-list-item {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card img {
    min-height: 16rem;
  }

  .section-heading,
  .quality-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .admin-actions {
    display: grid;
  }

  .hero-actions .btn,
  .admin-actions .btn {
    width: 100%;
  }

  .process-strip,
  .theme-preview {
    grid-template-columns: 1fr;
  }

  .section,
  .hero-copy,
  .site-footer,
  .contact-section,
  .split-section,
  .contact-details-section,
  .compact-section {
    padding-inline: 1.1rem;
  }

  .eyebrow {
    letter-spacing: 0.28em;
  }
}
