:root {
  color-scheme: light;
  --ink: #202328;
  --muted: #5f6975;
  --line: #c9cdd3;
  --paper: #ffffff;
  --surface: #eef0f3;
  --surface-strong: #d7dbe0;
  --charcoal: #202328;
  --slate: #4f5965;
  --silver: #c9cdd3;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --accent-soft: #fff3e8;
  --danger: #b42318;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
}
a { color: var(--accent-dark); font-weight: 700; }
a:hover { color: var(--accent); }
.site-header, .site-footer, .admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 0.9rem clamp(1rem, 4vw, 3.5rem);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201, 205, 211, 0.18);
  color: #fff;
}
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 10px 28px rgba(32, 35, 40, 0.18);
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  pointer-events: none;
}
.site-header .brand,
.site-header .site-menu {
  pointer-events: auto;
}
.site-header .brand {
  margin-right: auto;
}
.site-header > nav {
  display: none;
}
.site-footer {
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
  border-top: 4px solid var(--accent);
  border-bottom: 0;
  padding-block: clamp(2rem, 5vw, 4rem);
}
.site-header a, .site-footer a, .admin-topbar a { color: #fff; }
.site-header a:hover, .site-footer a:hover, .admin-topbar a:hover { color: var(--accent); }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: none; }
.brand { font-weight: 800; text-decoration: none; color: #fff; }
.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-logo img {
  display: block;
  width: clamp(13rem, 24vw, 21rem);
  max-width: 100%;
  height: auto;
}
.admin-brand-logo img {
  width: clamp(11rem, 18vw, 17rem);
}
.login-brand-logo {
  margin-bottom: 1rem;
}
.login-brand-logo img {
  width: min(100%, 18rem);
}
nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.admin-topbar nav {
  align-items: center;
  justify-content: flex-end;
  row-gap: 0.5rem;
}
.admin-topbar nav a {
  color: #f4f6f8;
  font-size: 0.95rem;
  text-decoration: none;
}
.admin-topbar nav a:hover {
  color: var(--accent);
}
.admin-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.site-menu {
  position: relative;
}
.site-menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  gap: 0.28rem;
  padding: 0.68rem;
  background: transparent;
  border: 1px solid rgba(201, 205, 211, 0.45);
}
.site-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}
.site-menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}
.site-menu-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 14rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(32, 35, 40, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  transition: opacity 160ms ease, transform 160ms ease;
}
.site-menu.is-open .site-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-header .site-menu-panel a,
.admin-topbar .site-menu-panel a {
  display: block;
  color: var(--ink);
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.site-header .site-menu-panel a:hover,
.admin-topbar .site-menu-panel a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.admin-menu {
  margin-left: 0;
}
.admin-topbar .admin-menu-panel {
  display: grid;
  align-items: stretch;
  justify-content: stretch;
  justify-items: stretch;
  text-align: left;
  min-width: 18rem;
  width: min(22rem, calc(100vw - 2rem));
  max-height: min(70vh, 32rem);
  overflow-y: auto;
  z-index: 30;
}
.admin-topbar .admin-menu-panel a {
  display: block;
  width: 100%;
  text-align: left;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 620px) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  width: 100%;
}
.footer-contact {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}
.site-footer nav[aria-label="Service links"] {
  align-items: flex-start;
  align-self: start;
  flex-direction: column;
  grid-column: 2;
  gap: 0.65rem;
}
.site-footer nav[aria-label="Policy links"] {
  justify-content: center;
  width: 100%;
}
.page, .admin-shell {
  width: 100%;
  margin: 0;
  padding: 0 clamp(1rem, 4vw, 3.5rem) 2.5rem;
}
.hero {
  min-height: min(74vh, 720px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 7.5rem) 0;
}
.hero::after {
  position: absolute;
  right: -16vw;
  bottom: -9rem;
  width: min(70vw, 780px);
  height: 18rem;
  background: linear-gradient(135deg, transparent 0 22%, rgba(249, 115, 22, 0.92) 22% 58%, rgba(201, 205, 211, 0.8) 58% 62%, transparent 62%);
  content: "";
  transform: skewY(-11deg);
  pointer-events: none;
}
.hero:not(.hero-with-media) {
  background:
    linear-gradient(115deg, rgba(32, 35, 40, 0.98) 0%, rgba(32, 35, 40, 0.94) 45%, rgba(79, 89, 101, 0.8) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 8rem);
  color: #fff;
  margin: 0 calc(clamp(1rem, 4vw, 3.5rem) * -1);
  padding-inline: clamp(1rem, 4vw, 3.5rem);
  border-bottom: 5px solid var(--accent);
}
.hero:not(.hero-with-media) .lead { color: #edf0f2; }
.hero-with-media {
  color: #fff;
  background-position: center;
  background-size: cover;
  margin: 0 calc(clamp(1rem, 4vw, 3.5rem) * -1);
  padding-inline: clamp(1rem, 4vw, 3.5rem);
  box-shadow: inset 0 -5px 0 var(--accent);
}
.hero-with-media .lead { color: #e4edf0; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
h1 { font-size: clamp(2.6rem, 7vw, 6rem); line-height: 0.95; margin: 0 0 1rem; }
h2, h3 { line-height: 1.12; }
h2 { font-size: clamp(1.8rem, 3vw, 3.1rem); margin: 0 0 1rem; }
h3 { font-size: 1.25rem; }
.lead { font-size: clamp(1.1rem, 2vw, 1.45rem); color: var(--muted); max-width: 760px; }
.hero .lead { max-width: 680px; }
.hero p:not(.lead):not(.section-kicker) { max-width: 660px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.home-hero {
  min-height: calc(var(--hero-height, 720px) * 0.325);
  align-items: end;
  color: #f2f4f6;
  background:
    linear-gradient(115deg, rgba(38, 42, 47, 0) 0 47%, rgba(249, 115, 22, 0.3) 47% 100%),
    linear-gradient(180deg, #262a2f 0%, #24272c 48%, #202328 100%);
  margin: 0 calc(clamp(1rem, 4vw, 3.5rem) * -1);
  padding: calc(2.275rem * var(--hero-scale, 1)) clamp(1rem, 5vw, 3.5rem) calc(1.1375rem * var(--hero-scale, 1));
  border-bottom: 1px solid rgba(201, 205, 211, 0.16);
}
.home-hero::after {
  position: absolute;
  top: var(--hero-accent-top, 0%);
  right: 0;
  bottom: auto;
  z-index: 1;
  display: block;
  width: var(--hero-accent-width, 50%);
  height: var(--hero-accent-height, 100%);
  background:
    linear-gradient(145deg, rgba(255, 146, 51, 0.92) 0%, rgba(249, 115, 22, 0.98) 52%, rgba(194, 65, 12, 1) 100%),
    linear-gradient(25deg, transparent 0 28%, rgba(255, 255, 255, 0.18) 28% 30%, transparent 30% 100%);
  clip-path: polygon(var(--hero-accent-slant, 16%) 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  opacity: 1;
  pointer-events: none;
}
.home-hero::before {
  position: absolute;
  inset: -8% -10%;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.12), transparent),
    repeating-linear-gradient(135deg, rgba(201, 205, 211, 0.08) 0 1px, transparent 1px 28px);
  content: "";
  opacity: 0.78;
  transform: translateX(-3%);
  animation: heroMediaSwing 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.home-hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 35, 40, 0.92), rgba(32, 35, 40, 0.74) 46%, rgba(32, 35, 40, 0.36)),
    linear-gradient(180deg, rgba(32, 35, 40, 0.2), rgba(32, 35, 40, 0.72));
  content: "";
}
.home-hero.hero-with-media::before {
  opacity: 0.34;
}
.home-hero-media img,
.home-hero-media video {
  position: absolute;
  inset: -4% -8%;
  width: 116%;
  height: 108%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.9) contrast(1.08);
  transform: translateX(-3.5%) scale(1.04);
  animation: heroMediaSwing 14s ease-in-out infinite alternate;
}
@keyframes heroMediaSwing {
  from {
    transform: translateX(-3.5%) scale(1.04);
  }
  to {
    transform: translateX(3.5%) scale(1.04);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero-media img,
  .home-hero-media video {
    animation: none;
    transform: scale(1.04);
  }
}
.home-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--hero-content-max, 760px), 48vw);
  max-width: min(var(--hero-content-max, 760px), 48vw);
  padding-top: clamp(2.75rem, 6vw, 4.75rem);
}
.home-hero-component {
  display: block;
}
.home-hero-company {
  color: #eef1f3;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: calc(0.78rem * var(--hero-scale, 1));
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 calc(0.42rem * var(--hero-scale, 1));
  max-width: min(100%, 22rem);
  overflow-wrap: anywhere;
  white-space: normal;
}
.home-hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--accent);
  font-size: calc(0.68rem * var(--hero-scale, 1));
  margin-bottom: calc(0.38rem * var(--hero-scale, 1));
  text-transform: uppercase;
}
.home-hero-kicker::before {
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  content: "";
}
.home-hero-headline {
  color: #eef1f3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: calc(2.55rem * var(--hero-scale, 1));
  font-weight: 800;
  line-height: 0.98;
  margin-bottom: calc(0.85rem * var(--hero-scale, 1));
  max-width: min(100%, 38rem);
  overflow-wrap: normal;
  text-wrap: balance;
}
.home-hero-headline span {
  color: var(--accent);
}
.home-hero-lead,
.home-hero-body {
  color: #dce2e6;
  font-size: calc(0.98rem * var(--hero-scale, 1));
  font-weight: 650;
  line-height: 1.62;
  margin-bottom: calc(1rem * var(--hero-scale, 1));
}
.home-primary-button,
.home-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: calc(3.2rem * var(--hero-scale, 1));
  padding-inline: calc(1.45rem * var(--hero-scale, 1));
  margin: calc(0.5rem * var(--hero-scale, 1)) 0.75rem 0 0;
}
.home-primary-button svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.home-secondary-button {
  border-color: rgba(201, 205, 211, 0.48);
  color: #f5f7f8;
}
.home-secondary-button:hover {
  border-color: #fff;
}
.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 6vw, 5rem);
  margin-top: calc(1.5rem * var(--hero-scale, 1));
  padding-top: calc(1rem * var(--hero-scale, 1));
  border-top: 1px solid rgba(201, 205, 211, 0.18);
}
.home-hero-stats article {
  display: grid;
  gap: 0.4rem;
}
.home-hero-stats strong {
  color: var(--accent);
  font-size: calc(2rem * var(--hero-scale, 1));
  line-height: 1;
}
.home-hero-stats span {
  color: #cfd5da;
  font-size: calc(0.92rem * var(--hero-scale, 1));
  line-height: 1.45;
}
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.compact { padding: 1rem 0; }
.narrow { max-width: 820px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 2.5vw, 1.6rem); }
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.split-heading .grid {
  grid-column: 1 / -1;
}
.split-heading .service-panel-rail {
  grid-column: 1 / -1;
}
.services-section {
  row-gap: clamp(1.25rem, 3vw, 2rem);
}
.services-section > .section-intro,
.services-section > div:first-child:not(.services-intro-band) {
  display: none;
}
.services-intro-band {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  min-height: clamp(21rem, 30vw, 27rem);
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3.5rem);
  background:
    linear-gradient(90deg, rgba(238, 240, 243, 0.94), rgba(238, 240, 243, 0.82)),
    repeating-linear-gradient(135deg, rgba(32, 35, 40, 0.07) 0 1px, transparent 1px 24px);
  border-top: 4px solid var(--accent);
}
.services-intro-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: saturate(0.86) contrast(1.06);
}
.services-intro-main,
.services-intro-copy {
  position: relative;
  z-index: 1;
}
.services-intro-copy {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.services-subsection {
  max-width: 720px;
  padding-top: 1rem;
  border-top: 1px solid rgba(32, 35, 40, 0.16);
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.62;
}
.services-subsection h3 {
  margin: 0 0 0.6rem;
  color: var(--charcoal);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-intro {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}
.section-kicker {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  margin: 0 0 0.7rem;
  text-transform: none;
}
.page-hero {
  background: var(--charcoal);
  color: #fff;
  margin: 0 calc(clamp(1rem, 4vw, 3.5rem) * -1);
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 3.5rem);
  border-bottom: 5px solid var(--accent);
}
.page-hero h1 {
  max-width: 980px;
}
.page-hero .lead {
  color: #dfe4e8;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 100%;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  box-shadow: 0 12px 28px rgba(32, 35, 40, 0.06);
}
.card:hover {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 18px 38px rgba(32, 35, 40, 0.11);
}
.card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.service-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  background:
    linear-gradient(135deg, rgba(32, 35, 40, 0.12), rgba(201, 205, 211, 0.38)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(249, 115, 22, 0.16) 18px 22px);
  border: 1px solid rgba(201, 205, 211, 0.8);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-media span {
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(79, 89, 101, 0.42);
  border-radius: 8px;
  position: relative;
}
.service-card-media span::before,
.service-card-media span::after {
  position: absolute;
  content: "";
  background: rgba(79, 89, 101, 0.42);
}
.service-card-media span::before {
  width: 1.5rem;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-card-media span::after {
  width: 2px;
  height: 1.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-panel-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  isolation: isolate;
  margin-top: clamp(0.25rem, 2vw, 1.25rem);
  padding: 0.75rem 0 1.1rem;
}
.service-panel {
  position: relative;
  min-width: 0;
  min-height: clamp(23rem, 34vw, 31rem);
  transition: transform 280ms ease, filter 280ms ease;
  z-index: 1;
}
.service-panel + .service-panel {
  margin-left: clamp(-1.4rem, -1.5vw, -0.7rem);
}
.service-panel:nth-child(even) {
  transform: translateY(0.7rem);
}
.service-panel:hover,
.service-panel:focus-within {
  transform: translateY(-0.45rem) scale(1.035);
  z-index: 4;
}
.service-panel:nth-child(even):hover,
.service-panel:nth-child(even):focus-within {
  transform: translateY(0.15rem) scale(1.035);
}
.service-panel-link {
  position: relative;
  display: grid;
  grid-template-rows: minmax(13rem, 1.014fr) minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--charcoal);
  box-shadow: 0 20px 45px rgba(32, 35, 40, 0.18);
}
.service-panel-link:hover {
  color: #fff;
}
.service-panel-theme-charcoal .service-panel-link { background: var(--charcoal); }
.service-panel-theme-slate .service-panel-link { background: var(--slate); }
.service-panel-theme-orange .service-panel-link { background: var(--accent-dark); }
.service-panel-theme-light .service-panel-link { background: var(--paper); color: var(--charcoal); }
.service-panel-theme-dark .service-panel-link { background: #2f3339; }
.service-panel-theme-light .service-panel-link:hover { color: var(--charcoal); }
.service-panel-media {
  position: relative;
  min-height: 13rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px);
}
.service-panel-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(32, 35, 40, 0.08), rgba(32, 35, 40, 0.42));
  content: "";
  pointer-events: none;
}
.service-panel-theme-light .service-panel-media::after {
  background: linear-gradient(180deg, rgba(32, 35, 40, 0.02), rgba(32, 35, 40, 0.18));
}
.service-panel-media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 720ms ease;
}
.service-panel:hover .service-panel-media img,
.service-panel:focus-within .service-panel-media img {
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.16);
}
.service-panel-media span {
  position: absolute;
  inset: 1.25rem;
  z-index: 3;
  opacity: 0.56;
}
.service-panel-media span::before,
.service-panel-media span::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 36% 1px no-repeat,
    linear-gradient(currentColor 0 0) 0 0 / 1px 62% no-repeat,
    linear-gradient(currentColor 0 0) 50% 50% / 52% 1px no-repeat,
    linear-gradient(currentColor 0 0) 50% 50% / 1px 52% no-repeat,
    linear-gradient(currentColor 0 0) 100% 100% / 42% 1px no-repeat,
    linear-gradient(currentColor 0 0) 100% 100% / 1px 64% no-repeat;
  color: currentColor;
  content: "";
}
.service-panel-media span::after {
  inset: 18% 8% 8% 18%;
  opacity: 0.55;
}
.service-panel-content {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-width: 0;
  padding: clamp(1.05rem, 2vw, 1.55rem);
}
.service-panel-kicker {
  margin: 0;
  color: inherit;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.service-panel h2,
.service-panel h3,
.service-panel-title {
  margin: 0;
  color: inherit;
  font-size: clamp(1.38rem, 2.05vw, 2rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}
.service-panel-title p,
.service-panel-title div {
  margin: 0;
}
.service-panel-summary {
  color: currentColor;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  font-weight: 520;
  line-height: 1.45;
  opacity: 0.9;
}
.service-panel-summary p {
  margin: 0;
}
.service-panel-cta {
  align-self: end;
  justify-self: start;
  margin-top: auto;
  padding: 0.58rem 1rem;
  color: #fff;
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}
.service-panel:hover .service-panel-cta,
.service-panel:focus-within .service-panel-cta {
  background: var(--accent-dark);
  transform: translateX(0.25rem);
}
.theme-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: -0.45rem;
}
.theme-swatch {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 850;
}
.theme-swatch-charcoal,
.admin-service-theme-charcoal {
  background: var(--charcoal);
  color: #fff;
}
.theme-swatch-slate,
.admin-service-theme-slate {
  background: var(--slate);
  color: #fff;
}
.theme-swatch-orange,
.admin-service-theme-orange {
  background: var(--accent-dark);
  color: #fff;
}
.theme-swatch-light,
.admin-service-theme-light {
  background: var(--paper);
  color: var(--charcoal);
}
.theme-swatch-dark,
.admin-service-theme-dark {
  background: #2f3339;
  color: #fff;
}
.admin-service-card .muted {
  color: currentColor;
  opacity: 0.78;
}
.admin-service-card .button,
.admin-service-card button {
  background: var(--accent);
}
.admin-service-card .button:hover,
.admin-service-card button:hover {
  background: var(--accent-dark);
}
.portrait { aspect-ratio: 4 / 5; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.team-card {
  grid-template-columns: minmax(6.5rem, 0.34fr) minmax(0, 1fr);
  align-items: start;
}
.team-photo,
.team-avatar {
  width: 100%;
  max-width: 9rem;
  aspect-ratio: 1;
  border-radius: 8px;
}
.team-photo {
  object-fit: cover;
}
.team-avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(201, 205, 211, 0.85);
  background:
    linear-gradient(145deg, rgba(238, 240, 243, 0.98), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(135deg, rgba(79, 89, 101, 0.11) 0 8px, transparent 8px 16px);
}
.team-avatar span {
  position: relative;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--slate);
  box-shadow: 0 3.2rem 0 1.25rem var(--slate);
}
.team-avatar-female span {
  background: var(--accent-dark);
  box-shadow: 0 3.2rem 0 1.25rem var(--accent-dark);
}
.team-content {
  min-width: 0;
}
.team-content h3 {
  margin: 0;
}
.avatar {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 999px;
}
.eyebrow {
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0;
  text-transform: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--silver);
  margin: 2rem 0;
  border: 1px solid var(--silver);
  border-radius: 8px;
  overflow: hidden;
}
.stats-row article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--charcoal);
  color: #fff;
}
.stats-row strong { color: var(--accent); font-size: 2rem; }
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--charcoal);
  color: #fff;
  margin-inline: calc(clamp(1rem, 4vw, 3.5rem) * -1);
  padding-inline: clamp(1rem, 4vw, 3.5rem);
  border-top: 4px solid var(--accent);
}
.cta-band h2 { margin-bottom: 0; }
.featured-band {
  background: var(--paper);
  margin-inline: calc(clamp(1rem, 4vw, 3.5rem) * -1);
  padding-inline: clamp(1rem, 4vw, 3.5rem);
}
.story-panel {
  max-width: 980px;
  border-left: 5px solid var(--accent);
  padding-left: clamp(1rem, 3vw, 2rem);
}
.timeline { display: grid; gap: 1rem; }
.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.meta-grid div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}
.meta-grid dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.meta-grid dd { margin: 0.25rem 0 0; }
.button, button {
  appearance: none;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1rem;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 800;
}
button:hover, .button:hover { background: var(--accent-dark); }
.secondary-button {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}
.secondary-button:hover {
  background: #fff;
  border-color: #fff;
  color: var(--charcoal);
}
.text-link {
  color: var(--accent-dark);
  text-decoration: none;
}
.text-link::after {
  content: " ->";
}
.text-link:hover {
  color: var(--accent);
}
.button:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
  outline-offset: 2px;
}
.login-panel {
  width: min(420px, calc(100% - 2rem));
  margin: 10vh auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
}
.admin-media-preview {
  width: min(100%, 22rem);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.stack, form { display: grid; gap: 1rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
label { display: grid; gap: 0.35rem; color: var(--muted); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.rich-editor-source {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.rich-editor {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.rich-editor-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.45rem;
  background: #f7f8fa;
  border-bottom: 1px solid var(--line);
}
.rich-editor-select {
  width: auto;
  min-width: 8.5rem;
  height: 2.25rem;
  padding: 0.35rem 0.55rem;
}
.rich-editor-size {
  width: 5rem;
  min-width: 5rem;
  height: 2.25rem;
  padding: 0.35rem 0.55rem;
}
.rich-editor-button,
.rich-editor-upload,
.rich-editor-color {
  display: inline-grid;
  place-items: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
}
.rich-editor-button:hover,
.rich-editor-upload:hover,
.rich-editor-color:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}
.rich-editor-upload {
  cursor: pointer;
  font-size: 0.85rem;
}
.rich-editor-color {
  cursor: pointer;
  padding: 0.2rem;
}
.rich-editor-color input {
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}
.rich-editor-upload input {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.rich-editor-surface {
  min-height: 10rem;
  padding: 0.75rem;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.rich-editor-surface:focus {
  box-shadow: inset 0 0 0 3px rgba(249, 115, 22, 0.22);
}
.rich-editor-surface p:first-child {
  margin-top: 0;
}
.rich-editor-surface p:last-child {
  margin-bottom: 0;
}
.typography-admin {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1440px;
}
.hero-admin-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}
.hero-admin-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}
.hero-admin-field > label,
.hero-admin-field > span {
  color: var(--muted);
  font-weight: 700;
}
.hero-admin-field .rich-editor {
  min-width: 0;
}
.hero-admin-field .rich-editor-toolbar {
  align-items: center;
}
.hero-admin-field .rich-editor-surface {
  min-height: 8rem;
  max-height: 16rem;
  overflow-y: auto;
}
.typography-form {
  gap: 1.25rem;
}
.typography-form .section-heading {
  align-items: flex-start;
  gap: 0.75rem;
}
.typography-form .section-heading h2 {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.typography-editor-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.65fr);
  gap: 1rem;
  align-items: stretch;
}
.typography-controls {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.typography-preview-wrap {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}
.typography-preview-wrap > span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}
.typography-preview {
  margin: 0;
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  overflow-wrap: anywhere;
}
.typography-preview-pageTitle {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}
.typography-preview-sectionTitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.12;
}
.typography-preview-cardTitle {
  font-size: 1.25rem;
  line-height: 1.12;
}
.typography-preview-leadText {
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--muted);
}
.password-preview {
  display: block;
  position: relative;
}
.password-preview-toggle {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  color: var(--slate);
  background: transparent;
  border-radius: 6px;
  transform: translateY(-50%);
}
.password-preview input { padding-right: 3rem; }
.password-preview-toggle:hover {
  color: var(--charcoal);
  background: transparent;
}
.password-preview-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.password-preview-icon-eye-off,
.password-preview-toggle[aria-pressed="true"] .password-preview-icon-eye {
  display: none;
}
.password-preview-toggle[aria-pressed="true"] .password-preview-icon-eye-off {
  display: block;
}
.google-signin {
  width: 100%;
  min-height: 44px;
}
.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(32, 35, 40, 0.96) 0 18rem, rgba(238, 240, 243, 0) 18rem),
    var(--surface);
}
.admin-body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(32, 35, 40, 0.06) 0 1px, transparent 1px 22px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.08), transparent 42%);
  content: "";
  pointer-events: none;
}
.admin-body .admin-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(12rem, 1fr) auto;
  align-items: center;
  min-height: 5rem;
  background:
    linear-gradient(90deg, rgba(32, 35, 40, 0.96), rgba(47, 51, 57, 0.94)),
    var(--charcoal);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 18px 42px rgba(32, 35, 40, 0.28);
}
.admin-body .admin-brand-logo {
  justify-self: center;
  margin: 0;
}
.admin-body .admin-brand-logo img {
  width: clamp(10rem, 18vw, 15rem);
}
.admin-body .site-menu-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}
.admin-body .site-menu-toggle:hover {
  background: rgba(249, 115, 22, 0.18);
}
.admin-body .admin-menu-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem;
  width: min(42rem, calc(100vw - 2rem));
  min-width: min(42rem, calc(100vw - 2rem));
  padding: 0.7rem;
  border: 1px solid rgba(201, 205, 211, 0.72);
  background: rgba(255, 255, 255, 0.98);
}
.admin-body .admin-menu-panel a {
  border-radius: 6px;
  color: var(--charcoal);
  font-weight: 820;
}
.admin-body .admin-menu-panel a:hover {
  background: var(--accent-soft);
}
.admin-view-site {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}
.admin-view-site:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.admin-body .admin-actions {
  gap: 0.55rem;
}
.admin-body .admin-actions form {
  display: block;
  margin: 0;
}
.admin-shell {
  width: min(1520px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem) clamp(3rem, 5vw, 5rem);
}
.admin-shell > h1,
.admin-shell .toolbar h1 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
  margin: 0;
}
.admin-shell > h1 {
  margin-bottom: 1.35rem;
}
.admin-shell .toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  min-height: 7rem;
  margin: 0 0 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.admin-shell > .muted,
.admin-shell .toolbar + .muted {
  margin: -0.55rem 0 1.25rem;
  color: #d7dbe0;
}
.admin-shell .grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
}
.admin-shell .card,
.admin-shell > form,
.admin-shell .stack > .card,
.admin-shell .typography-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 205, 211, 0.82);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(32, 35, 40, 0.12);
}
.admin-shell > form,
.admin-shell .stack:not(form) {
  padding: clamp(1rem, 2vw, 1.4rem);
}
.admin-shell .card::before,
.admin-shell > form::before,
.admin-shell .typography-form::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.34rem;
  background: var(--accent);
  content: "";
}
.admin-shell .card:hover {
  border-color: rgba(249, 115, 22, 0.62);
  box-shadow: 0 24px 54px rgba(32, 35, 40, 0.18);
}
.admin-shell .card h2 {
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.02;
  margin: 0;
}
.admin-shell .card p {
  line-height: 1.48;
}
.admin-shell .card-media,
.admin-shell .admin-media-preview {
  border-radius: 0;
  border: 1px solid rgba(201, 205, 211, 0.9);
}
.admin-shell .button,
.admin-shell button {
  min-height: 2.55rem;
  border-radius: 0;
  background: var(--accent);
  box-shadow: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  line-height: 1;
}
.admin-shell .button:hover,
.admin-shell button:hover {
  background: var(--accent-dark);
}
.admin-shell .danger-button {
  background: var(--danger);
}
.admin-shell .inline-actions {
  display: inline-grid;
  margin: 0.35rem 0.35rem 0 0;
}
.admin-shell label {
  color: var(--charcoal);
  font-weight: 800;
}
.admin-shell input,
.admin-shell textarea,
.admin-shell select {
  border-radius: 0;
  border-color: rgba(79, 89, 101, 0.34);
  background: #fff;
}
.admin-shell input:focus,
.admin-shell textarea:focus,
.admin-shell select:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(249, 115, 22, 0.18);
}
.admin-shell .check {
  display: inline-flex;
  justify-content: start;
  padding: 0.75rem 0.85rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
}
.admin-shell .theme-swatch {
  border-radius: 0;
}
.admin-shell .rich-editor {
  border-radius: 0;
}
.admin-shell .rich-editor-toolbar {
  background: #f2f3f5;
}
.admin-shell .error {
  display: inline-block;
  padding: 0.75rem 0.9rem;
  background: #fff;
  border-left: 4px solid var(--danger);
}
.admin-login-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 1rem;
}
.admin-login-body .login-panel {
  position: relative;
  width: min(440px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 205, 211, 0.72);
  border-radius: 0;
  box-shadow: 0 28px 70px rgba(32, 35, 40, 0.34);
}
.admin-login-body .login-panel::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.42rem;
  background: var(--accent);
  content: "";
}
.admin-login-body .login-panel h1 {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  line-height: 0.95;
}
.admin-login-body .login-panel button {
  border-radius: 0;
}
.check { display: flex; align-items: center; gap: 0.5rem; }
.check input { width: auto; }
.error { color: var(--danger); font-weight: 700; }
.success { color: var(--accent-dark); font-weight: 700; }
.muted { color: var(--muted); }
.inline-actions { display: inline-grid; margin-right: 0.5rem; }
.danger-button { background: var(--danger); }
.filters { margin: 0 0 1.5rem; }
.filters a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0.55rem 0.8rem;
  text-decoration: none;
}
.filters a:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}
.responsive-media { width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }
.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  min-height: calc(100vh - 6rem);
}
.service-detail-main {
  max-width: 760px;
}
.service-detail-side {
  position: sticky;
  top: 5.5rem;
  min-height: min(70vh, 46rem);
  overflow: hidden;
}
.service-detail-side-plain {
  border-top: 4px solid var(--accent);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent),
    repeating-linear-gradient(135deg, rgba(32, 35, 40, 0.06) 0 1px, transparent 1px 24px);
}
.service-detail-image-grid {
  display: grid;
  height: 100%;
  min-height: inherit;
  gap: 0.9rem;
}
.service-detail-grid-one .service-detail-image-grid { grid-template-columns: 1fr; }
.service-detail-grid-oneByTwo .service-detail-image-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-detail-grid-twoByTwo .service-detail-image-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }
.service-detail-grid-twoByThree .service-detail-image-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }
.service-detail-image-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}
.service-detail-image-grid img {
  width: 100%;
  height: 100%;
  min-height: 13rem;
  object-fit: cover;
  display: block;
}
.service-detail-image-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.75rem 0.85rem;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(32, 35, 40, 0.88));
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 720;
  line-height: 1.35;
}
.service-detail-moving-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--charcoal);
}
.service-detail-moving-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(32, 35, 40, 0.14), rgba(32, 35, 40, 0.4));
  content: "";
}
.service-detail-moving-media img,
.service-detail-moving-media video {
  position: absolute;
  inset: -4% -8%;
  width: 116%;
  height: 108%;
  object-fit: cover;
  transform: translateX(-3.5%) scale(1.04);
  animation: heroMediaSwing 14s ease-in-out infinite alternate;
}
.map-frame {
  width: 100%;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 1rem 0;
}
.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .service-panel-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .service-panel,
  .service-panel:nth-child(even),
  .service-panel:hover,
  .service-panel:focus-within,
  .service-panel:nth-child(even):hover,
  .service-panel:nth-child(even):focus-within {
    transform: none;
  }
  .service-panel + .service-panel {
    margin-left: 0;
  }
  .service-panel {
    min-height: 24rem;
  }
  .home-hero-company {
    font-size: calc(0.72rem * var(--hero-scale, 1));
  }
  .home-hero-headline {
    font-size: calc(2.15rem * var(--hero-scale, 1));
  }
  .home-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .typography-admin,
  .typography-editor-row,
  .typography-controls,
  .hero-admin-grid {
    grid-template-columns: 1fr;
  }
  .site-header, .admin-topbar { align-items: flex-start; flex-direction: column; }
  .admin-body .admin-topbar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    min-height: 0;
  }
  .admin-body .admin-brand-logo {
    justify-self: end;
  }
  .admin-body .admin-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }
  .admin-body .admin-menu-panel {
    grid-template-columns: 1fr;
    min-width: min(calc(100vw - 2rem), 20rem);
    width: min(calc(100vw - 2rem), 20rem);
  }
  .admin-shell {
    padding-inline: 1rem;
  }
  .admin-shell .toolbar {
    align-items: flex-start;
    min-height: 0;
    padding-top: 1rem;
  }
  .admin-shell .grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    position: relative;
  }
  .site-menu {
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  .site-header .brand,
  .admin-brand-logo {
    margin-left: 3.5rem;
  }
  .site-menu-panel {
    width: min(calc(100vw - 2rem), 18rem);
  }
  .brand-logo img {
    width: min(100%, 16rem);
  }
  .hero {
    min-height: auto;
  }
  .home-hero {
    min-height: max(210px, calc(var(--hero-height, 720px) * 0.234));
    padding-top: calc(1.625rem * var(--hero-scale, 1));
  }
  .hero.home-hero::after {
    inset: auto 0 0 auto;
    width: 100%;
    height: 38%;
    clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.82;
  }
  .hero::after {
    right: -36vw;
    width: 110vw;
    height: 10rem;
  }
  .home-hero-headline {
    font-size: calc(1.78rem * var(--hero-scale, 1));
  }
  .home-hero-company {
    font-size: calc(0.68rem * var(--hero-scale, 1));
    white-space: normal;
  }
  .home-hero-lead,
  .home-hero-body {
    font-size: calc(1rem * var(--hero-scale, 1));
  }
  .home-hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .split-heading {
    grid-template-columns: 1fr;
  }
  .services-intro-band {
    grid-template-columns: 1fr;
    min-height: clamp(24rem, 80vw, 34rem);
  }
  .service-panel-rail {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .service-panel {
    min-height: auto;
  }
  .service-panel-link {
    grid-template-rows: minmax(15.6rem, 54.6vw) auto;
  }
  .service-panel h2,
  .service-panel h3,
  .service-panel-title {
    font-size: 1.55rem;
  }
  .team-grid,
  .team-card {
    grid-template-columns: 1fr;
  }
  .service-detail-layout {
    grid-template-columns: 1fr;
  }
  .service-detail-side {
    position: relative;
    top: auto;
    min-height: 24rem;
  }
  .service-detail-grid-oneByTwo .service-detail-image-grid,
  .service-detail-grid-twoByTwo .service-detail-image-grid,
  .service-detail-grid-twoByThree .service-detail-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .team-photo,
  .team-avatar {
    max-width: 7rem;
  }
  .section-heading,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .site-footer nav[aria-label="Service links"] {
    grid-column: auto;
  }
}
