:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --bg-muted: #ffffff;
  --font-ui: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --text: #1f2937;
  --text-soft: #6b7280;
  --line: rgba(148, 163, 184, 0.22);
  --navy: #4b2e20;
  --navy-soft: #6a4330;
  --steel: #9a6541;
  --ember: #d66a2d;
  --ember-dark: #ad481f;
  --gold: #f2b766;
  --success: #587a59;
  --shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
  --focus-ring-color: #005fcc;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --section-padding-y: 96px;
  --hero-min-height: 530px;
  --page-hero-radius: 26px;
  --container: min(1180px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.page-shell {
  overflow: clip;
  background: #fff;
}

main {
  background: #fff;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

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

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
}

.eyebrow--light {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.button--large {
  min-height: 58px;
  padding: 0 28px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ember) 0%, #f0a15f 100%);
}

.button--ghost {
  color: var(--navy);
  border-color: rgba(148, 163, 184, 0.34);
  background: #fff;
}

.button--glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
}

.button--dark {
  background: rgba(15, 23, 42, 0.04);
}

.cms-rich-text {
  display: grid;
  gap: 0.72em;
}

.cms-rich-text > :first-child {
  margin-top: 0;
}

.cms-rich-text > :last-child {
  margin-bottom: 0;
}

.cms-rich-text p,
.cms-rich-text div,
.cms-rich-text ul,
.cms-rich-text ol,
.cms-rich-text blockquote {
  margin: 0;
}

.cms-rich-text ul,
.cms-rich-text ol {
  padding-left: 1.2em;
}

.cms-rich-text a {
  color: var(--ember-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cms-rich-text blockquote {
  border-left: 3px solid var(--ember);
  padding-left: 14px;
  color: var(--navy);
}

.cms-rich-text img {
  max-width: min(100%, 760px);
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(31, 41, 55, 0.12);
}

.cms-rich-text table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 106, 45, 0.18);
  border-radius: 18px;
  background: #fff;
}

.cms-rich-text th,
.cms-rich-text td {
  border-bottom: 1px solid rgba(214, 106, 45, 0.14);
  border-right: 1px solid rgba(214, 106, 45, 0.14);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.cms-rich-text th {
  background: #fff3e8;
  color: var(--navy);
  font-weight: 800;
}

.cms-rich-text tr:last-child td,
.cms-rich-text tr:last-child th {
  border-bottom: 0;
}

.cms-rich-text td:last-child,
.cms-rich-text th:last-child {
  border-right: 0;
}

.cms-rich-text hr {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(214, 106, 45, 0.22);
  margin: 0.4em 0;
}

.fraud-alert {
  width: min(720px, calc(100vw - 28px));
  max-height: min(760px, calc(100dvh - 28px));
  border: 0;
  border-radius: 32px;
  padding: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow: hidden;
}

.fraud-alert::backdrop {
  background:
    radial-gradient(circle at 50% 20%, rgba(214, 106, 45, 0.22), transparent 28rem),
    rgba(31, 41, 55, 0.54);
  backdrop-filter: blur(8px);
}

.fraud-alert__card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  max-height: inherit;
  border: 1px solid rgba(214, 106, 45, 0.24);
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(255, 248, 241, 0.98), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 32px 90px rgba(31, 41, 55, 0.25);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 30px;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.fraud-alert.is-open .fraud-alert__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.fraud-alert__badge {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffedd9, #fff8f1);
  box-shadow: inset 0 0 0 1px rgba(214, 106, 45, 0.22);
}

.fraud-alert__badge span {
  position: relative;
  width: 38px;
  height: 38px;
  border: 3px solid var(--ember-dark);
  border-radius: 50%;
}

.fraud-alert__badge span::before,
.fraud-alert__badge span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  border-radius: 999px;
  background: var(--ember-dark);
  transform: translateX(-50%);
}

.fraud-alert__badge span::before {
  top: 7px;
  height: 15px;
}

.fraud-alert__badge span::after {
  bottom: 7px;
  height: 4px;
}

.fraud-alert__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(31, 41, 55, 0.06);
}

.fraud-alert__close::before,
.fraud-alert__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.fraud-alert__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.fraud-alert__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.fraud-alert__content {
  min-width: 0;
  padding-right: 26px;
}

.fraud-alert__eyebrow {
  margin: 0 0 8px;
  color: var(--ember-dark);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.fraud-alert h2 {
  max-width: 600px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4.2vw, 2.72rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--navy);
  text-wrap: balance;
}

.fraud-alert__lead {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: -0.005em;
}

.fraud-alert__list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fraud-alert__list li {
  position: relative;
  border: 1px solid rgba(214, 106, 45, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 13px 14px 13px 42px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: -0.003em;
}

.fraud-alert__list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 6px rgba(214, 106, 45, 0.12);
}

.fraud-alert__note {
  margin: 18px 0 0;
  border-left: 3px solid var(--ember);
  padding-left: 14px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.004em;
}

.fraud-alert__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.fraud-alert .button {
  min-height: 44px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.fraud-alert__details {
  border-color: rgba(173, 72, 31, 0.26);
  background: #fff;
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid var(--focus-ring-color);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 80;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.a11y-status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-panel {
  border-bottom: 1px solid rgba(214, 106, 45, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.98), #fff);
}

.accessibility-panel__inner {
  display: grid;
  gap: 20px;
  padding: 22px 0 28px;
}

.accessibility-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.accessibility-panel__intro {
  display: grid;
  gap: 8px;
}

.accessibility-panel__eyebrow,
.accessibility-panel__title,
.accessibility-panel__note {
  margin: 0;
}

.accessibility-panel__eyebrow {
  color: var(--ember-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.accessibility-panel__title {
  font-family: var(--font-ui);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.accessibility-panel__note {
  max-width: 62ch;
  color: var(--text-soft);
}

.accessibility-panel__close,
.accessibility-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(214, 106, 45, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.accessibility-panel__close:hover,
.accessibility-option:hover,
.accessibility-panel__close:focus-visible,
.accessibility-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(214, 106, 45, 0.32);
}

.accessibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.accessibility-group {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(214, 106, 45, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
}

.accessibility-group legend {
  padding: 0 8px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
}

.accessibility-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.accessibility-option {
  min-width: 86px;
}

.accessibility-option.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--ember-dark), var(--ember));
  color: #fff;
}

@keyframes linkTextSweep {
  0% {
    transform: translateX(-140%) skewX(-20deg);
    opacity: 0;
  }

  20% {
    opacity: 0.95;
  }

  100% {
    transform: translateX(170%) skewX(-20deg);
    opacity: 0;
  }
}

.header-menu a {
  position: relative;
  isolation: isolate;
}

.header-menu a::before {
  content: "";
  position: absolute;
  top: -18%;
  left: -18%;
  width: 28%;
  height: 140%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 203, 126, 0) 18%, rgba(255, 203, 126, 0.34) 50%, rgba(255, 203, 126, 0) 82%, transparent 100%);
  transform: translateX(-140%) skewX(-20deg);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.header-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, currentColor 0%, #ffd287 50%, currentColor 100%);
  transform: scaleX(0.12);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.25s ease;
  pointer-events: none;
}

.header-menu a:hover::before,
.header-menu a:focus-visible::before {
  animation: linkTextSweep 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header-menu a:hover::after,
.header-menu a:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.95;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.site-header.is-scrolled .nav-shell {
  box-shadow: none;
}

.nav-shell {
  position: relative;
  width: min(1240px, calc(100vw - 40px));
  padding: 24px 0 16px;
  transition: box-shadow 0.25s ease;
}

.header-top {
  display: grid;
  grid-template-columns: max-content 228px max-content max-content max-content;
  justify-content: space-between;
  align-items: center;
  column-gap: 18px;
  row-gap: 12px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  color: var(--navy);
  white-space: nowrap;
}

.header-brand__mark {
  width: 64px;
  height: 64px;
}

.header-brand__mark,
.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: url("assets/logo-opts-transparent.png") center / contain no-repeat;
}

.header-brand__mark svg,
.brand__mark svg {
  display: none;
}

.header-brand__mark img,
.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-request-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(190, 91, 37, 0.22);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(92, 55, 31, 0.08);
}

.site-request-form h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.site-request-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.site-request-form label {
  display: grid;
  gap: 8px;
}

.site-request-form label > span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-request-form input,
.site-request-form select,
.site-request-form textarea {
  width: 100%;
  border: 1px solid rgba(190, 91, 37, 0.22);
  border-radius: 16px;
  background: #fffaf6;
  color: var(--navy);
  padding: 13px 14px;
  font: inherit;
}

.site-request-form textarea {
  resize: vertical;
}

.site-request-form__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.site-request-form__status {
  margin: 0;
  color: var(--ember);
  font-weight: 800;
}

.site-request-form__status[data-status="error"] {
  color: #b42318;
}

@media (max-width: 720px) {
  .site-request-form__grid {
    grid-template-columns: 1fr;
  }
}

.header-brand__text {
  display: grid;
  gap: 3px;
}

.header-brand__text strong {
  font-family: var(--font-ui);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-brand__text span {
  font-size: 0.98rem;
  color: var(--navy-soft);
}

.header-search {
  position: relative;
  min-width: 0;
  width: 228px;
}

.header-search input {
  width: 100%;
  height: 42px;
  padding: 0 46px 0 18px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  outline: none;
}

.header-search button {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #94a3b8;
}

.header-search svg {
  width: 22px;
  height: 22px;
}

.vision-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid rgba(75, 46, 32, 0.82);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.vision-link svg {
  width: 25px;
  height: 25px;
}

.cabinet-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  gap: 10px;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 500;
  white-space: nowrap;
}

.cabinet-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #70462f 0%, #522f22 100%);
  color: #fff;
}

.cabinet-link__icon svg {
  width: 23px;
  height: 23px;
}

.header-phone {
  display: grid;
  justify-self: end;
  justify-items: end;
  gap: 8px;
  color: var(--ember-dark);
  white-space: nowrap;
  text-align: right;
}

.header-phone__item {
  display: grid;
  gap: 2px;
  justify-items: end;
  color: inherit;
}

.header-phone strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-phone span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-soft);
}

.header-phone__secondary {
  display: none;
}

.nav-panel {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.header-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  color: var(--navy-soft);
  min-width: 0;
  width: 100%;
}

.header-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  min-width: 0;
}

.header-menu--primary {
  justify-content: flex-start;
  flex: 0 0 auto;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid rgba(226, 232, 240, 0.9);
}

.header-menu--secondary {
  justify-content: flex-start;
  flex: 0 0 auto;
  min-width: 0;
}

.header-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.header-menu--secondary a {
  font-weight: 500;
  color: var(--ember-dark);
}

.header-divider {
  display: none;
}

.header-social {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(226, 232, 240, 0.9);
  min-height: 32px;
}

.header-social__label {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
  white-space: nowrap;
}

.header-max-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: fit-content;
  height: 32px;
}

.header-max-logo {
  display: block;
  width: auto;
  height: 28px;
  border-radius: 7px;
  object-fit: contain;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
}

.brand__text {
  display: grid;
  gap: 4px;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.brand__text span {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #70462f 0%, #522f22 100%);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 0;
  color: #fff;
  background: #111821;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: var(--hero-min-height);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide__image,
.hero-slide__shade {
  position: absolute;
  inset: 0;
}

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

.hero-slide__shade {
  background:
    linear-gradient(90deg, rgba(12, 19, 29, 0.58) 0%, rgba(12, 19, 29, 0.14) 44%, rgba(12, 19, 29, 0.42) 100%),
    linear-gradient(180deg, rgba(7, 12, 20, 0.04) 0%, rgba(7, 12, 20, 0.34) 100%);
}

.hero-slide__frame {
  position: relative;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 122px;
}

.hero-slide__copy {
  max-width: 940px;
  padding-right: 190px;
  transform: translateY(14px);
}

.hero-slide__copy h1 {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 3.05vw, 3.28rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.018em;
  text-shadow: 0 10px 28px rgba(6, 11, 18, 0.34);
  text-wrap: balance;
}

.hero-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--container);
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-warning {
  position: absolute;
  top: 24px;
  right: 86px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  pointer-events: auto;
  text-shadow: 0 8px 24px rgba(6, 11, 18, 0.3);
}

.hero-warning__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.hero-dots {
  position: absolute;
  top: 50%;
  right: -2px;
  left: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
  transform: translateY(-50%);
  pointer-events: auto;
  z-index: 2;
}

.hero-dots::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-dots button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 38px;
  width: auto;
  height: auto;
  padding: 0 0 0 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transform: none;
  position: relative;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.hero-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
  transition: width 0.24s ease, background-color 0.24s ease;
}

.hero-dots button:hover,
.hero-dots button:focus-visible {
  color: rgba(255, 255, 255, 0.82);
  outline: none;
}

.hero-dots button.is-active {
  background: transparent;
  border-color: transparent;
  color: #fff;
  transform: none;
}

.hero-dots button.is-active::before {
  width: 12px;
  background: rgba(255, 255, 255, 0.88);
}

.slider-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.slider-dots button.is-active {
  background: var(--gold);
  border-color: transparent;
  transform: scale(1.08);
}

.slider-dots--light button {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.04);
}

.slider-dots--light button.is-active {
  background: var(--ember);
}

.section {
  padding: var(--section-padding-y) 0;
  background: #fff;
}

.section--lifted {
  position: relative;
  margin-top: 18px;
  z-index: 2;
}

.section--muted {
  background: #fff;
}

.section--dark {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 204, 118, 0.08), transparent 18%),
    linear-gradient(180deg, #41281c 0%, #23150f 100%);
  color: #fff;
}

.section--form {
  padding-top: 80px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.section-heading p:last-child {
  margin: 0;
  max-width: 64ch;
  color: var(--text-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(214, 106, 45, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.95)),
    radial-gradient(circle at 50% 0%, rgba(214, 106, 45, 0.14), transparent 42%);
  box-shadow: 0 28px 58px rgba(83, 45, 24, 0.16);
}

.service-card {
  --service-heat: rgba(214, 106, 45, 0.84);
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 318px;
  padding: 20px 16px 18px;
  border-radius: 22px;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(32, 43, 52, 0.2) 0%, rgba(45, 44, 39, 0.34) 38%, rgba(61, 33, 20, 0.92) 100%),
    var(--service-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 208, 151, 0.38), transparent 26%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 32%),
    linear-gradient(0deg, rgba(42, 22, 14, 0.16), transparent 42%);
  opacity: 0.78;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--service-heat), rgba(255, 215, 162, 0.16));
  opacity: 0.76;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 224, 185, 0.58);
  box-shadow: 0 24px 38px rgba(83, 45, 24, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-card__icon {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(35, 20, 13, 0.32);
}

.service-card p:last-of-type {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.86rem;
  line-height: 1.48;
  text-shadow: 0 2px 12px rgba(35, 20, 13, 0.26);
}

.service-card__buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: auto;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  backdrop-filter: blur(6px);
}

.quick-services {
  position: relative;
  z-index: 4;
  margin-top: -46px;
  background: #fff;
  padding-top: 0;
  padding-bottom: 54px;
}

.outages-preview {
  padding-top: 8px;
  padding-bottom: 72px;
}

.outages-preview__layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.outages-preview__intro,
.outage-sidecard {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow);
}

.outages-preview__intro h2,
.outage-sidecard h2,
.outage-card h3,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.outages-preview__intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.outages-preview__intro p,
.outage-sidecard p,
.page-hero p,
.outage-card p {
  margin: 0;
  color: var(--text-soft);
}

.outages-feed,
.outage-board__main {
  display: grid;
  gap: 16px;
}

.outage-card {
  display: grid;
  gap: 16px;
  padding: 24px 26px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow);
}

.outage-card[hidden] {
  display: none !important;
}

.outage-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.outage-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.outage-card__published {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill--active {
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
}

.status-pill--planned {
  color: var(--ember-dark);
  background: rgba(214, 106, 45, 0.12);
}

.status-pill--alert {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.12);
}

.outage-card h3 {
  font-size: clamp(1.55rem, 2vw, 1.95rem);
}

.outage-card__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  margin: 0;
}

.outage-card__detail {
  margin: 0;
  display: grid;
  gap: 5px;
}

.outage-card__detail dt {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outage-card__detail dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.outage-card__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ember-dark);
  font-weight: 800;
}

.outage-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.print-action-row,
.career-vacancy__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.print-action-row {
  justify-content: flex-start;
}

.print-action {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.88rem;
}

.outage-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(214, 106, 45, 0.22);
  background: rgba(214, 106, 45, 0.08);
  color: var(--ember-dark);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.outage-card__toggle:hover {
  background: rgba(214, 106, 45, 0.14);
  border-color: rgba(214, 106, 45, 0.38);
}

.outage-card__toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(214, 106, 45, 0.16);
}

.outage-card__toggle-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.outage-card.is-expanded {
  border-color: rgba(214, 106, 45, 0.2);
}

.outage-card.is-expanded .outage-card__toggle-icon {
  transform: rotate(180deg);
}

.outage-card__expand {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.outage-card__expand[hidden] {
  display: none;
}

.outage-card__expand-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.9fr);
  gap: 16px;
  align-items: start;
}

.outage-card__expand-block {
  display: grid;
  align-content: start;
  align-self: start;
  gap: 12px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(214, 106, 45, 0.12);
}

.outage-card__expand-block h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.outage-card__address-list,
.outage-card__detail-list {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.outage-card__address-list li::marker,
.outage-card__detail-list li::marker {
  color: var(--ember-dark);
}

.outage-card__expand-note {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.page-hero {
  padding: 20px 0 18px;
  background: #fff;
}

.page-hero__band {
  position: relative;
  overflow: hidden;
  width: min(1224px, calc(100vw - 24px));
  margin: 0 auto;
  border-radius: var(--page-hero-radius);
  background: linear-gradient(90deg, #b85c2b 0%, #cf6e31 34%, #de8540 67%, #efa155 100%);
}

.page-hero__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.16) 60%, transparent 73%);
  pointer-events: none;
}

.page-hero__overlay,
.page-hero__canvas {
  position: absolute;
  inset: 0;
}

.page-hero__overlay {
  z-index: 1;
  left: -40px;
  width: min(56%, 760px);
  background: linear-gradient(90deg, #8f451f 0%, rgba(143, 69, 31, 0.12) 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.page-hero__canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-hero__band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding-top: 20px;
  padding-bottom: 22px;
  color: #fff;
}

.page-hero__band-inner > * {
  color: inherit;
}

.page-hero__wrap {
  display: grid;
  gap: 18px;
  padding-top: 22px;
}

.page-hero__eyebrow {
  position: relative;
  z-index: 2;
  margin: 0 0 2px;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  opacity: 1;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: var(--font-ui);
  font-size: clamp(3rem, 5.4vw, 4.1rem);
  font-weight: 500;
  line-height: 1.02;
  text-shadow: none;
}

.page-hero__content {
  display: grid;
  gap: 14px;
}

.page-hero__content p {
  max-width: 72ch;
}

.page-hero__meta,
.outage-board__toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.outage-board__toolbar {
  align-items: center;
  width: 100%;
  margin-bottom: 6px;
}

.page-chip,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
}

.page-chip--link {
  color: var(--ember-dark);
}

.filter-chip.is-active {
  color: var(--ember-dark);
  border-color: rgba(214, 106, 45, 0.18);
  background: rgba(214, 106, 45, 0.08);
}

.outage-search {
  display: grid;
  gap: 12px;
  width: 100%;
}

.outage-search__label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.outage-search__field {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(214, 106, 45, 0.16);
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.98), #fff);
  color: #a5572d;
  box-shadow: 0 16px 28px rgba(214, 106, 45, 0.08);
}

.outage-search__field:focus-within {
  border-color: rgba(214, 106, 45, 0.4);
  box-shadow: 0 0 0 4px rgba(214, 106, 45, 0.1);
}

.outage-search__field svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.outage-search__field input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

.outage-search__field input::placeholder {
  color: #9f7d67;
}

.outage-board-section {
  padding-top: 24px;
  padding-bottom: 84px;
}

.outage-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 340px);
  gap: 24px;
  align-items: start;
}

.outage-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.outage-pagination[hidden] {
  display: none;
}

.outage-pagination__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 106, 45, 0.18);
  background: #fff;
  color: var(--ember-dark);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.outage-pagination__button:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 106, 45, 0.32);
  background: rgba(214, 106, 45, 0.08);
}

.outage-pagination__button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #c6632c 0%, #de8646 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(198, 99, 44, 0.22);
}

.outage-pagination__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(214, 106, 45, 0.16);
}

.outage-empty-state {
  margin: 0;
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(214, 106, 45, 0.12);
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.96), rgba(255, 255, 255, 0.98));
  color: var(--text-soft);
}

.outage-sidecard__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.outage-sidecard__contacts {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.outage-sidecard__contacts a {
  color: var(--text);
  font-weight: 800;
}

.enterprise-section {
  padding-top: 24px;
  padding-bottom: 84px;
}

.enterprise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  gap: 24px;
  align-items: start;
}

.enterprise-card,
.enterprise-sidecard,
.enterprise-stat {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: var(--shadow);
}

.enterprise-card,
.enterprise-sidecard {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.enterprise-card--lead {
  min-height: 100%;
}

.enterprise-card h2,
.enterprise-card h3,
.enterprise-sidecard h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.enterprise-card h2,
.enterprise-sidecard h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.enterprise-card h3 {
  font-size: clamp(1.55rem, 2vw, 1.95rem);
}

.enterprise-card p,
.enterprise-sidecard p {
  margin: 0;
  color: var(--text-soft);
}

.enterprise-contacts {
  display: grid;
  gap: 10px;
}

.enterprise-contacts a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(214, 106, 45, 0.12);
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.96), #fff);
}

.enterprise-contacts span {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-contacts strong {
  color: var(--text);
  font-size: 1rem;
}

.enterprise-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.enterprise-stat {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.enterprise-stat strong {
  color: var(--ember-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.enterprise-stat span {
  color: var(--text-soft);
  font-weight: 700;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.enterprise-tabs {
  display: grid;
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.enterprise-tabs__nav,
.enterprise-tabs__content {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: var(--shadow);
}

.enterprise-tabs__nav {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 22px;
  padding: 28px 24px;
  border-color: rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: 0 24px 54px rgba(71, 42, 28, 0.12);
  overflow: hidden;
}

.enterprise-tabs__nav::before {
  display: none;
}

.enterprise-tabs__nav > * {
  position: relative;
  z-index: 1;
}

.enterprise-tabs__buttons {
  display: grid;
  gap: 6px;
  padding-left: 0;
}

.enterprise-tabs__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 50px;
  padding: 10px 14px 10px 28px;
  border-radius: 16px;
  border: 0;
  background: #fff;
  color: #5b4638;
  text-align: left;
  font-size: 0.96rem;
  font-weight: 700;
  overflow: visible;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.enterprise-tabs__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  border: 0;
  background: rgba(179, 111, 68, 0.42);
  transform: translateY(-50%);
}

.enterprise-tabs__button:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(50% + 8px);
  bottom: -16px;
  left: 14px;
  width: 1px;
  background: rgba(179, 111, 68, 0.2);
}

.enterprise-tabs__button span {
  min-width: 0;
}

.enterprise-tabs__button::after {
  display: none;
}

.enterprise-tabs__button:hover,
.enterprise-tabs__button:focus-visible {
  transform: translateX(3px);
  color: #7c3519;
  background: #fff;
}

.enterprise-tabs__button.is-active {
  background: #fff;
  color: #7c3519;
  box-shadow: inset 0 0 0 1px rgba(179, 111, 68, 0.18), 0 14px 28px rgba(94, 57, 38, 0.09);
}

.enterprise-tabs__content {
  background: #fff;
}

.enterprise-tabs__button.is-active::before {
  background: #7c3519;
  box-shadow: 0 0 0 4px rgba(179, 111, 68, 0.13);
}

.enterprise-tabs__content {
  min-height: 420px;
  padding: 34px;
}

.enterprise-text-panel {
  display: grid;
  gap: 16px;
}

.enterprise-text-panel[hidden] {
  display: none;
}

.enterprise-text-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.enterprise-text-placeholder {
  display: grid;
  gap: 14px;
  max-width: 76ch;
  color: var(--text-soft);
}

.enterprise-text-placeholder p {
  margin: 0;
}

.enterprise-text-placeholder a {
  color: var(--ember-dark);
  font-weight: 800;
}

.enterprise-about-layout {
  gap: 22px;
}

.enterprise-about-intro {
  display: grid;
  gap: 14px;
  max-width: 76ch;
}

.enterprise-about-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.enterprise-about-fact {
  display: grid;
  gap: 6px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(214, 106, 45, 0.12);
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.92), #fff);
}

.enterprise-about-fact strong {
  color: var(--ember-dark);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.enterprise-about-fact span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.enterprise-about-sections {
  display: grid;
  gap: 14px;
}

.enterprise-about-section {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, rgba(255, 253, 251, 0.96), #fff);
}

.enterprise-about-section h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.enterprise-about-section p {
  margin: 0;
}

.enterprise-about-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.enterprise-about-list li::marker {
  color: var(--ember-dark);
}

.enterprise-about-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.enterprise-about-contact {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 100%;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(214, 106, 45, 0.12);
  background: #fff;
}

.enterprise-about-contact span {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.enterprise-about-contact strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

.enterprise-map {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(71, 42, 28, 0.08);
}

.enterprise-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.subscribers-tabs .enterprise-tabs__content {
  min-height: 560px;
}

.subscriber-feature-grid,
.subscriber-payment-grid,
.subscriber-schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.subscriber-feature-card,
.subscriber-info-card,
.subscriber-schedule div,
.subscriber-action-panel {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(214, 106, 45, 0.12);
  background: #fff;
}

.subscriber-feature-card {
  color: var(--text);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.subscriber-feature-card:hover,
.subscriber-feature-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(179, 111, 68, 0.28);
  box-shadow: 0 16px 30px rgba(71, 42, 28, 0.08);
}

.subscriber-feature-card span,
.subscriber-info-card span,
.subscriber-schedule span,
.subscriber-action-panel span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subscriber-feature-card strong,
.subscriber-info-card strong,
.subscriber-schedule strong,
.subscriber-action-panel strong {
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.35;
}

.subscriber-feature-card p,
.subscriber-info-card p,
.subscriber-note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.subscriber-note {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
}

.subscriber-action-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.subscriber-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.65;
}

.subscriber-checklist li::marker {
  color: var(--ember-dark);
  font-weight: 800;
}

.subscriber-meter-page {
  display: grid;
  gap: 36px;
}

.subscriber-meter-layout {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.42);
}

.subscriber-meter-copy {
  display: grid;
  gap: 14px;
}

.subscriber-meter-copy p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.subscriber-meter-gauge {
  position: relative;
  display: block;
  width: 138px;
  aspect-ratio: 1;
  border: 7px solid var(--ember);
  border-radius: 50%;
  color: var(--ember);
}

.subscriber-meter-gauge::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 5px solid transparent;
  border-top-color: currentColor;
  border-left-color: currentColor;
  border-radius: 50%;
  transform: rotate(45deg);
}

.subscriber-meter-gauge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 44px;
  height: 22px;
  border: 5px solid currentColor;
  border-radius: 5px;
  transform: translateX(-50%);
  box-shadow:
    0 -37px 0 -16px currentColor,
    0 -59px 0 -19px currentColor;
}

.subscriber-meter-methods-title {
  margin: 0;
  color: var(--ember);
  font-family: var(--font-ui);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.subscriber-meter-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.subscriber-meter-method {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 170px;
  padding: 16px 12px 18px;
  border-radius: 20px;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  outline: none;
}

.subscriber-meter-icon {
  position: relative;
  display: block;
  width: 86px;
  height: 86px;
  color: var(--ember);
  transition: color 0.2s ease, transform 0.2s ease;
}

.subscriber-meter-method:hover .subscriber-meter-icon,
.subscriber-meter-method:focus-visible .subscriber-meter-icon {
  color: var(--ember-dark);
  transform: translateY(-3px);
}

.subscriber-meter-icon::before,
.subscriber-meter-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.subscriber-meter-icon--phone {
  background: currentColor;
  -webkit-mask: url("assets/icons/meter-phone.svg") center / contain no-repeat;
  mask: url("assets/icons/meter-phone.svg") center / contain no-repeat;
}

.subscriber-meter-icon--phone::before,
.subscriber-meter-icon--phone::after {
  content: none;
}

.subscriber-meter-icon--phone::before {
  inset: 10px 14px 20px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 30px 30px 8px 8px;
}

.subscriber-meter-icon--phone::after {
  left: 50%;
  bottom: 9px;
  width: 50px;
  height: 36px;
  border: 4px solid currentColor;
  border-radius: 26px 26px 10px 10px;
  transform: translateX(-50%);
  box-shadow:
    -20px -18px 0 -17px currentColor,
    20px -18px 0 -17px currentColor,
    0 -40px 0 -38px currentColor;
}

.subscriber-meter-icon--office::before {
  left: 20px;
  top: 9px;
  width: 46px;
  height: 66px;
  border: 4px solid currentColor;
  border-radius: 4px;
  background:
    linear-gradient(currentColor 0 0) 9px 12px / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 28px 12px / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 9px 30px / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 28px 30px / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 9px 48px / 9px 9px no-repeat;
}

.subscriber-meter-icon--office::after {
  left: 15px;
  top: 3px;
  width: 56px;
  height: 13px;
  border: 4px solid currentColor;
  border-bottom: 0;
  transform: skewX(-14deg);
}

.subscriber-meter-icon--city::before {
  inset: 8px;
  border: 4px solid currentColor;
  border-radius: 18px;
  background:
    radial-gradient(circle, currentColor 0 3px, transparent 4px) 13px 12px / 18px 18px repeat,
    linear-gradient(currentColor 0 0) 16px 48px / 12px 23px no-repeat,
    linear-gradient(currentColor 0 0) 44px 48px / 12px 23px no-repeat;
}

.subscriber-meter-icon--city::after {
  left: 28px;
  top: 46px;
  width: 30px;
  height: 24px;
  border: 4px solid #fff;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.subscriber-meter-icon--city {
  background: url("assets/icons/system-gorod.svg") center / contain no-repeat;
}

.subscriber-meter-icon--city::before,
.subscriber-meter-icon--city::after {
  content: none;
}

.subscriber-meter-icon--gauge::before {
  inset: 7px;
  border: 5px solid currentColor;
  border-radius: 50%;
  background:
    radial-gradient(circle, currentColor 0 5px, transparent 6px) 50% 50% / 100% 100% no-repeat,
    linear-gradient(currentColor 0 0) 50% 18px / 5px 25px no-repeat,
    linear-gradient(currentColor 0 0) 50% 64px / 36px 12px no-repeat;
}

.subscriber-meter-icon--gauge::after {
  inset: 18px;
  border-radius: 50%;
  background:
    linear-gradient(currentColor 0 0) 50% 0 / 4px 10px no-repeat,
    linear-gradient(currentColor 0 0) 50% 100% / 4px 10px no-repeat,
    linear-gradient(60deg, transparent 0 46%, currentColor 47% 53%, transparent 54%) 0 11px / 100% 10px no-repeat,
    linear-gradient(-60deg, transparent 0 46%, currentColor 47% 53%, transparent 54%) 0 11px / 100% 10px no-repeat;
}

.subscriber-meter-method strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.subscriber-meter-tip {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 50%;
  width: min(230px, calc(100vw - 48px));
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--ember-dark);
  color: #fff;
  box-shadow: 0 18px 38px rgba(71, 42, 28, 0.2);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.subscriber-meter-tip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
}

.subscriber-meter-method:hover .subscriber-meter-tip,
.subscriber-meter-method:focus-visible .subscriber-meter-tip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.subscribers-outage-list {
  display: grid;
  gap: 16px;
}

.enterprise-company-card__intro {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(214, 106, 45, 0.12);
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.94), #fff);
}

.enterprise-company-card__intro p,
.enterprise-company-card__intro strong {
  margin: 0;
}

.enterprise-company-card__intro strong {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.45;
}

.enterprise-company-card {
  display: grid;
  gap: 14px;
}

.enterprise-company-card__section {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
}

.enterprise-company-card__section h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.enterprise-requisites {
  display: grid;
  gap: 10px;
  margin: 0;
}

.enterprise-requisites--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enterprise-requisites div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(214, 106, 45, 0.1);
  background: linear-gradient(180deg, rgba(255, 253, 251, 0.98), #fff);
}

.enterprise-requisites dt {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enterprise-requisites dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.enterprise-requisites a {
  color: var(--ember-dark);
  font-weight: 800;
}

.enterprise-docs {
  display: grid;
  gap: 12px;
}

.enterprise-docs__item {
  padding: 0;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  background: #fff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  overflow: hidden;
}

.enterprise-docs__item:hover,
.enterprise-docs__item[open] {
  transform: translateY(-1px);
  border-color: rgba(179, 111, 68, 0.28);
  box-shadow: 0 14px 28px rgba(71, 42, 28, 0.08);
}

.enterprise-docs__item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.enterprise-docs__item summary > * {
  min-width: 0;
}

.enterprise-docs__item summary::-webkit-details-marker,
.enterprise-docs__subitem summary::-webkit-details-marker {
  display: none;
}

.enterprise-docs__item summary::after {
  content: "";
  grid-column: 3;
  grid-row: 1;
  width: 10px;
  height: 10px;
  justify-self: end;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--ember-dark);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.enterprise-docs__item[open] > summary::after {
  transform: rotate(225deg);
}

.enterprise-docs__item summary:focus-visible,
.enterprise-docs__subitem summary:focus-visible,
.enterprise-file-link:focus-visible {
  outline: 3px solid rgba(214, 106, 45, 0.24);
  outline-offset: 3px;
}

.enterprise-docs__summary-text {
  display: grid;
  gap: 6px;
}

.enterprise-docs__item h3,
.enterprise-docs__title {
  margin: 0 0 6px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.enterprise-docs__title {
  display: block;
  margin-bottom: 0;
}

.enterprise-docs__item p,
.enterprise-docs__note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.enterprise-docs__note {
  display: block;
}

.enterprise-docs__dropdown {
  display: grid;
  gap: 8px;
  padding: 0 20px 18px;
}

.enterprise-file-link,
.enterprise-docs__subitem {
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
}

.enterprise-file-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.enterprise-file-link:hover {
  border-color: rgba(179, 111, 68, 0.28);
  background: rgba(214, 106, 45, 0.06);
  color: var(--ember-dark);
}

.enterprise-file-link::after {
  content: "Скачать";
  margin-left: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(214, 106, 45, 0.08);
  color: var(--ember-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.enterprise-docs__subitem {
  padding: 0;
}

.enterprise-docs__subitem summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  cursor: pointer;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  list-style: none;
}

.enterprise-docs__subitem summary::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--ember-dark);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.enterprise-docs__subitem[open] summary::after {
  transform: rotate(225deg);
}

.enterprise-docs__sublist {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.enterprise-docs__sublist .enterprise-file-link {
  min-height: 42px;
  background: rgba(248, 250, 252, 0.72);
}

.enterprise-docs__empty {
  margin: 0;
  padding: 6px 2px 2px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.enterprise-docs__nested {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.enterprise-docs__nested-label {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-docs__sublist--nested {
  padding: 0;
}

.enterprise-docs__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(214, 106, 45, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.96), #fff);
}

.enterprise-docs__intro p {
  margin: 0;
  color: var(--text-soft);
}

.enterprise-docs__stats,
.enterprise-docs__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.enterprise-docs__stats span,
.enterprise-docs__meta span,
.enterprise-docs__subitem-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(214, 106, 45, 0.08);
  color: var(--ember-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.enterprise-docs__item summary {
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(255, 253, 251, 0.98), #fff);
}

.enterprise-docs__item > summary > span:first-child {
  grid-column: 1;
  grid-row: 1;
}

.enterprise-docs__meta {
  grid-column: 2;
  grid-row: 1;
}

.enterprise-docs__body,
.enterprise-docs__dropdown {
  display: grid;
  gap: 12px;
  padding: 0 22px 22px;
}

.enterprise-files,
.enterprise-docs__sublist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.enterprise-docs__subitem {
  overflow: hidden;
  background: linear-gradient(180deg, #fff, rgba(248, 250, 252, 0.68));
}

.enterprise-docs__subitem summary {
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
}

.enterprise-docs__subitem summary span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.enterprise-docs__subitem-count {
  margin-left: auto;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-soft);
}

.enterprise-files {
  padding: 0 14px 14px;
}

.enterprise-file-link--catalog {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  line-height: 1.35;
}

.enterprise-file-link--catalog::after {
  display: none;
}

.enterprise-file-link__type {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(214, 106, 45, 0.1);
  color: var(--ember-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.enterprise-file-link[data-file-type="pdf"] .enterprise-file-link__type {
  background: rgba(185, 28, 28, 0.08);
  color: #991b1b;
}

.enterprise-file-link[data-file-type^="xls"] .enterprise-file-link__type,
.enterprise-file-link[data-file-type="csv"] .enterprise-file-link__type {
  background: rgba(22, 101, 52, 0.08);
  color: #166534;
}

.enterprise-file-link[data-file-type^="doc"] .enterprise-file-link__type,
.enterprise-file-link[data-file-type="rtf"] .enterprise-file-link__type {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.enterprise-file-link__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.enterprise-file-link__label {
  color: var(--text);
  overflow-wrap: anywhere;
}

.enterprise-file-link__meta {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.enterprise-file-link__action {
  justify-self: end;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(214, 106, 45, 0.08);
  color: var(--ember-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.career-section .enterprise-tabs__content {
  min-height: 520px;
}

.career-lead {
  max-width: 76ch;
  color: var(--text-soft);
}

.career-lead p {
  margin: 0;
}

.career-vacancies {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.career-pagination {
  justify-content: center;
  margin-top: 24px;
}

.career-vacancy {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(71, 42, 28, 0.07);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.career-vacancy[hidden] {
  display: none !important;
}

.career-vacancy::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--ember), var(--gold));
}

.career-vacancy:hover {
  transform: translateY(-2px);
  border-color: rgba(179, 111, 68, 0.3);
  box-shadow: 0 24px 54px rgba(71, 42, 28, 0.1);
}

.career-vacancy.is-expanded {
  border-color: rgba(179, 111, 68, 0.34);
  box-shadow: 0 26px 56px rgba(71, 42, 28, 0.12);
}

.career-vacancy__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.career-vacancy__label {
  margin: 0 0 6px;
  color: var(--ember-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.career-vacancy h3,
.career-note h3,
.career-benefits h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.18;
}

.career-vacancy h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
}

.career-vacancy__salary {
  flex: 0 0 auto;
  max-width: 210px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(214, 106, 45, 0.08);
  color: var(--ember-dark);
  text-align: right;
  font-size: 0.9rem;
  line-height: 1.25;
}

.career-vacancy__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.career-vacancy__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #674e3e;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.career-vacancy__details {
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(248, 250, 252, 0.68);
}

.career-vacancy__details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

.career-vacancy__details summary::-webkit-details-marker {
  display: none;
}

.career-vacancy__details summary::after {
  content: "+";
  color: var(--ember-dark);
  font-size: 1.15rem;
  line-height: 1;
}

.career-vacancy__details[open] summary::after {
  content: "−";
}

.career-vacancy__details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 18px 18px 34px;
  color: var(--text-soft);
}

.career-vacancy__details li::marker {
  color: var(--ember);
}

.career-vacancy__button {
  justify-self: start;
  position: relative;
  z-index: 1;
}

.career-vacancy.is-search-target {
  border-color: rgba(214, 106, 45, 0.34);
  box-shadow: 0 0 0 3px rgba(214, 106, 45, 0.12);
}

.career-response-drawer {
  display: grid;
  gap: 18px;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  opacity: 0;
  transform: translateY(-12px) scaleY(0.96);
  transform-origin: top center;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.career-response-drawer[hidden] {
  display: none;
}

.career-response-drawer.is-open {
  opacity: 1;
  transform: translateY(0);
}

.career-response-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.career-response-drawer__head h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  font-weight: 600;
  line-height: 1.04;
}

.career-response-drawer__close {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.career-response-drawer__close:hover,
.career-response-drawer__close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(179, 111, 68, 0.3);
  color: var(--ember-dark);
}

.career-response-layout {
  display: block;
  width: 100%;
  max-width: 100%;
}

.career-form,
.career-note,
.career-benefits article {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(71, 42, 28, 0.07);
}

.career-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  width: 100%;
  max-width: 100%;
}

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

.career-form__field {
  display: grid;
  gap: 8px;
}

.career-form__field--wide {
  grid-column: 1 / -1;
}

.career-form__field span {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.career-form input,
.career-form select,
.career-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.career-form input,
.career-form select {
  min-height: 52px;
  padding: 0 15px;
}

.career-form textarea {
  resize: vertical;
  padding: 14px 15px;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
  border-color: rgba(214, 106, 45, 0.42);
  box-shadow: 0 0 0 4px rgba(214, 106, 45, 0.1);
}

.career-upload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border: 1px dashed rgba(179, 111, 68, 0.36);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.92), #fff);
  cursor: pointer;
}

.career-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.career-upload__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(214, 106, 45, 0.1);
  color: var(--ember-dark);
}

.career-upload__icon svg {
  width: 28px;
  height: 28px;
}

.career-upload strong,
.career-upload small {
  display: block;
}

.career-upload strong {
  color: var(--text);
}

.career-upload small {
  color: var(--text-soft);
}

.career-form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.career-form__consent-link {
  color: var(--ember-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.career-form__consent-link:hover,
.career-form__consent-link:focus-visible {
  color: var(--navy);
}

.career-form__consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--ember-dark);
}

.career-form__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.career-form__status {
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

.career-form__status[data-status="error"] {
  color: #b42318;
}

.career-note {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.career-note a {
  color: var(--ember-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.career-note span,
.career-note p {
  color: var(--text-soft);
}

.career-note p {
  margin: 8px 0 0;
}

.page-hero--press .page-hero__band {
  background: linear-gradient(90deg, #a64b23 0%, #c86531 42%, #e08c49 100%);
}

.press-section {
  padding-top: 24px;
  padding-bottom: 84px;
}

.press-layout {
  align-items: start;
}

.press-sidebar {
  gap: 20px;
}

.press-subscribe {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(214, 106, 45, 0.16);
  background: linear-gradient(180deg, rgba(255, 249, 245, 0.96), #fff);
}

.press-subscribe label {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 900;
}

.press-subscribe p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.press-subscribe__field {
  display: flex;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: #fff;
}

.press-subscribe__field:focus-within {
  border-color: rgba(214, 106, 45, 0.38);
  box-shadow: 0 0 0 4px rgba(214, 106, 45, 0.08);
}

.press-subscribe__field input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 0 0 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

.press-subscribe__field button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  align-self: stretch;
  border: 0;
  background: transparent;
  color: var(--ember-dark);
  cursor: pointer;
}

.press-subscribe__field svg {
  width: 24px;
  height: 12px;
}

.press-content {
  min-height: 620px;
}

.press-panel {
  display: grid;
  gap: 24px;
}

.press-panel[hidden] {
  display: none;
}

.press-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.press-panel__head h2,
.press-panel h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.press-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.press-news-list {
  display: grid;
  gap: 24px;
}

.press-news-list[hidden] {
  display: none;
}

.press-news-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 280px;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 24px 52px rgba(57, 34, 22, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.press-news-card--feature {
  grid-column: 1 / -1;
  min-height: 390px;
  padding: 34px;
}

.press-news-card:hover,
.press-news-card:focus-visible {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 32px 68px rgba(57, 34, 22, 0.22);
}

.press-news-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.press-news-card:hover img,
.press-news-card:focus-visible img {
  transform: scale(1.07);
}

.press-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 13, 22, 0.12) 0%, rgba(8, 13, 22, 0.82) 100%),
    linear-gradient(90deg, rgba(80, 40, 20, 0.62), rgba(80, 40, 20, 0.08));
}

.press-news-card__date {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.press-news-card h3 {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.press-news-card:not(.press-news-card--feature) h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.58rem);
}

.press-news-card p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.press-news-card__summary {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
}

.press-news-card__summary a {
  color: #fff;
}

.press-news-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #fff;
  font-weight: 900;
}

.press-news-card__arrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.press-news-card:hover .press-news-card__arrow::after,
.press-news-card:focus-visible .press-news-card__arrow::after {
  width: 46px;
}

.press-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-top: 4px;
}

.press-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  color: var(--text-soft);
  font-weight: 900;
}

.press-pagination__item.is-active {
  border-color: transparent;
  background: var(--ember);
  color: #fff;
}

.press-news-detail {
  display: grid;
  gap: 18px;
}

.press-news-detail[hidden],
.press-news-article[hidden] {
  display: none;
}

.press-news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: #fff;
  color: var(--ember-dark);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.press-news-detail__back:hover,
.press-news-detail__back:focus-visible {
  transform: translateX(-3px);
  border-color: rgba(214, 106, 45, 0.34);
  box-shadow: 0 14px 28px rgba(71, 42, 28, 0.08);
}

.press-news-detail__back svg {
  width: 24px;
  height: 12px;
}

.press-news-article {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: 0 24px 54px rgba(71, 42, 28, 0.1);
}

.press-news-article__image {
  width: 100%;
  max-height: 390px;
  object-fit: cover;
  background: #f8fafc;
}

.press-news-article__body {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.press-news-article__date {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 106, 45, 0.08);
  color: var(--ember-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-news-article h2 {
  max-width: 880px;
  text-wrap: balance;
}

.press-news-article p {
  max-width: 78ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.74;
}

.press-list {
  display: grid;
  gap: 16px;
}

.press-list-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: 0 18px 42px rgba(71, 42, 28, 0.07);
}

.press-list-card span {
  color: var(--ember-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.press-list-card h3,
.press-list-card p {
  margin: 0;
}

.press-list-card h3 {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.2;
}

.press-list-card p {
  color: var(--text-soft);
}

.press-list-card a {
  width: fit-content;
  color: var(--ember-dark);
  font-weight: 900;
}

.press-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.press-gallery figure {
  display: grid;
  gap: 10px;
  margin: 0;
}

.press-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(71, 42, 28, 0.08);
}

.press-gallery figcaption {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
}

.notice-slider,
.ops-card,
.process-card,
.feedback-form {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.notice-slider {
  position: relative;
  min-height: 360px;
  padding: 28px 28px 88px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.notice-slide {
  position: absolute;
  inset: 28px 28px 88px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.notice-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.notice-slide__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notice-slide h3 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.notice-slide p {
  margin: 18px 0 0;
  max-width: 56ch;
  color: var(--text-soft);
}

.notice-slide .button {
  margin-top: 22px;
}

.carousel-nav {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.carousel-nav > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  color: var(--navy);
}

.ops-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.ops-card__header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.ops-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ops-list li {
  display: grid;
  gap: 6px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.ops-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.ops-list strong {
  font-size: 1rem;
}

.ops-list span {
  color: var(--text-soft);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 340px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow);
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(140deg, rgba(15, 23, 42, 0.018), transparent 32%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.014), transparent 44%);
  pointer-events: none;
}

.news-card__date {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.news-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.18;
}

.news-card p,
.news-card a {
  position: relative;
  z-index: 1;
}

.news-card p {
  margin: 0;
  color: var(--text-soft);
}

.news-card a {
  margin-top: auto;
  font-weight: 700;
  color: var(--ember-dark);
}

.section-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}

.company-copy p:last-of-type {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.76);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat-tile {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-tile strong {
  font-size: 2.05rem;
  line-height: 1;
  color: var(--gold);
}

.stat-tile span {
  color: rgba(255, 255, 255, 0.78);
}

.process-card {
  padding: 28px;
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.process-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 58px;
}

.process-list li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ember), #f0a75c);
  color: #fff;
  font-weight: 700;
}

.process-list span {
  color: var(--text-soft);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow);
}

.resource-card--accent {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.95), var(--shadow);
}

.resource-card h3 {
  margin: 0 0 16px;
  font-size: 1.3rem;
}

.resource-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.feedback-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.feedback-copy p:last-of-type {
  color: var(--text-soft);
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-stack a,
.contact-stack span {
  font-weight: 700;
}

.feedback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.feedback-form label {
  display: grid;
  gap: 8px;
}

.feedback-form span {
  font-weight: 700;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  border-color: rgba(212, 91, 44, 0.4);
  box-shadow: 0 0 0 4px rgba(212, 91, 44, 0.1);
}

.feedback-form textarea {
  resize: vertical;
  min-height: 150px;
}

.feedback-form__full {
  grid-column: 1 / -1;
}

.feedback-form__footer {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-note {
  margin: 0;
  color: var(--text-soft);
}

.form-note.is-success {
  color: var(--success);
  font-weight: 700;
}

.site-footer {
  padding: 74px 0 26px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, #3a2318 0%, #1c120d 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text span {
  color: #fff;
}

.footer-brand p {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.68);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--gold);
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
}

html.a11y-enabled {
  --a11y-bg: #ffffff;
  --a11y-surface: #ffffff;
  --a11y-surface-alt: #f5f5f5;
  --a11y-text: #111111;
  --a11y-muted: #1f1f1f;
  --a11y-border: #111111;
  --a11y-accent: #7a2f11;
  --a11y-focus: #005fcc;
  color-scheme: light;
}

html.a11y-enabled[data-a11y-theme="dark"] {
  --a11y-bg: #111111;
  --a11y-surface: #111111;
  --a11y-surface-alt: #1a1a1a;
  --a11y-text: #ffffff;
  --a11y-muted: #f3f4f6;
  --a11y-border: #ffffff;
  --a11y-accent: #f6c65b;
  --a11y-focus: #7dd3fc;
  color-scheme: dark;
}

html.a11y-enabled[data-a11y-theme="contrast"] {
  --a11y-bg: #000000;
  --a11y-surface: #000000;
  --a11y-surface-alt: #000000;
  --a11y-text: #ffe44d;
  --a11y-muted: #ffe44d;
  --a11y-border: #ffe44d;
  --a11y-accent: #ffe44d;
  --a11y-focus: #00e5ff;
  color-scheme: dark;
}

html.a11y-enabled[data-a11y-font-size="normal"] {
  font-size: 100%;
}

html.a11y-enabled[data-a11y-font-size="large"] {
  font-size: 112.5%;
}

html.a11y-enabled[data-a11y-font-size="xlarge"] {
  font-size: 125%;
}

html.a11y-enabled[data-a11y-spacing="wide"] body {
  letter-spacing: 0.03em;
  word-spacing: 0.12em;
  line-height: 1.85;
}

html.a11y-enabled[data-a11y-spacing="wide"] h1,
html.a11y-enabled[data-a11y-spacing="wide"] h2,
html.a11y-enabled[data-a11y-spacing="wide"] h3,
html.a11y-enabled[data-a11y-spacing="wide"] h4,
html.a11y-enabled[data-a11y-spacing="wide"] .header-menu a {
  letter-spacing: 0.01em;
  line-height: 1.25;
}

html.a11y-enabled body,
html.a11y-enabled .page-shell,
html.a11y-enabled main,
html.a11y-enabled .section,
html.a11y-enabled .hero,
html.a11y-enabled .quick-services,
html.a11y-enabled .outages-preview,
html.a11y-enabled .site-header,
html.a11y-enabled .nav-panel,
html.a11y-enabled .site-footer,
html.a11y-enabled .outage-card,
html.a11y-enabled .outages-preview__intro,
html.a11y-enabled .outage-sidecard,
html.a11y-enabled .enterprise-card,
html.a11y-enabled .enterprise-sidecard,
html.a11y-enabled .enterprise-stat,
html.a11y-enabled .enterprise-contacts a,
html.a11y-enabled .enterprise-about-section,
html.a11y-enabled .enterprise-about-contact,
html.a11y-enabled .enterprise-map,
html.a11y-enabled .subscriber-feature-card,
html.a11y-enabled .subscriber-info-card,
html.a11y-enabled .subscriber-schedule div,
html.a11y-enabled .subscriber-action-panel,
html.a11y-enabled .subscriber-meter-method,
html.a11y-enabled .subscriber-meter-tip,
html.a11y-enabled .subscriber-note,
html.a11y-enabled .enterprise-tabs__nav,
html.a11y-enabled .enterprise-tabs__content,
html.a11y-enabled .enterprise-tabs__button,
html.a11y-enabled .enterprise-docs__intro,
html.a11y-enabled .enterprise-docs__item,
html.a11y-enabled .enterprise-docs__body,
html.a11y-enabled .enterprise-docs__dropdown,
html.a11y-enabled .enterprise-docs__subitem,
html.a11y-enabled .enterprise-docs__sublist,
html.a11y-enabled .enterprise-files,
html.a11y-enabled .enterprise-file-link,
html.a11y-enabled .enterprise-file-link__type,
html.a11y-enabled .enterprise-file-link__action,
html.a11y-enabled .enterprise-docs__stats span,
html.a11y-enabled .enterprise-docs__meta span,
html.a11y-enabled .enterprise-docs__subitem-count,
html.a11y-enabled .enterprise-docs__item a,
html.a11y-enabled .career-vacancy,
html.a11y-enabled .career-vacancy__details,
html.a11y-enabled .career-vacancy__meta span,
html.a11y-enabled .career-form,
html.a11y-enabled .career-form input,
html.a11y-enabled .career-form select,
html.a11y-enabled .career-form textarea,
html.a11y-enabled .career-upload,
html.a11y-enabled .career-response-drawer,
html.a11y-enabled .career-response-drawer__close,
html.a11y-enabled .career-note,
html.a11y-enabled .career-benefits article,
html.a11y-enabled .press-subscribe,
html.a11y-enabled .press-subscribe__field,
html.a11y-enabled .press-news-card,
html.a11y-enabled .press-news-detail__back,
html.a11y-enabled .press-news-article,
html.a11y-enabled .press-list-card,
html.a11y-enabled .press-gallery figure,
html.a11y-enabled .press-pagination__item,
html.a11y-enabled .page-hero__band,
html.a11y-enabled .page-hero__content,
html.a11y-enabled .page-chip,
html.a11y-enabled .filter-chip,
html.a11y-enabled .outage-search__field,
html.a11y-enabled .outage-empty-state,
html.a11y-enabled .outage-card__expand-block,
html.a11y-enabled .service-card,
html.a11y-enabled .header-search input,
html.a11y-enabled .header-search button,
html.a11y-enabled .button,
html.a11y-enabled .outage-pagination__button,
html.a11y-enabled .outage-card__toggle,
html.a11y-enabled .accessibility-panel,
html.a11y-enabled .accessibility-group,
html.a11y-enabled .accessibility-option,
html.a11y-enabled .accessibility-panel__close,
html.a11y-enabled .fraud-alert,
html.a11y-enabled .fraud-alert__card,
html.a11y-enabled .fraud-alert__list li,
html.a11y-enabled .fraud-alert__close,
html.a11y-enabled .fraud-alert__details {
  background: var(--a11y-surface) !important;
  color: var(--a11y-text) !important;
  box-shadow: none !important;
  border-color: var(--a11y-border) !important;
  text-shadow: none !important;
}

html.a11y-enabled .header-menu a,
html.a11y-enabled .vision-link,
html.a11y-enabled .cabinet-link,
html.a11y-enabled .header-phone,
html.a11y-enabled .hero-warning,
html.a11y-enabled .outage-card__link,
html.a11y-enabled .footer-column a,
html.a11y-enabled .footer-column span,
html.a11y-enabled .footer-brand p,
html.a11y-enabled .header-brand,
html.a11y-enabled .header-brand__text span,
html.a11y-enabled .header-phone span,
html.a11y-enabled .page-hero p,
html.a11y-enabled .outage-card p,
html.a11y-enabled .outage-sidecard p,
html.a11y-enabled .outages-preview__intro p,
html.a11y-enabled .enterprise-card p,
html.a11y-enabled .enterprise-sidecard p,
html.a11y-enabled .enterprise-stat span,
html.a11y-enabled .enterprise-contacts span,
html.a11y-enabled .enterprise-about-contact span,
html.a11y-enabled .enterprise-about-section p,
html.a11y-enabled .enterprise-about-section li,
html.a11y-enabled .subscriber-feature-card p,
html.a11y-enabled .subscriber-info-card p,
html.a11y-enabled .subscriber-feature-card span,
html.a11y-enabled .subscriber-info-card span,
html.a11y-enabled .subscriber-schedule span,
html.a11y-enabled .subscriber-action-panel span,
html.a11y-enabled .subscriber-meter-tip,
html.a11y-enabled .subscriber-note,
html.a11y-enabled .enterprise-text-placeholder,
html.a11y-enabled .enterprise-text-placeholder a,
html.a11y-enabled .enterprise-docs__intro p,
html.a11y-enabled .enterprise-docs__item p,
html.a11y-enabled .enterprise-docs__note,
html.a11y-enabled .enterprise-docs__item a,
html.a11y-enabled .enterprise-file-link__meta,
html.a11y-enabled .career-lead,
html.a11y-enabled .career-vacancy__details ul,
html.a11y-enabled .career-note span,
html.a11y-enabled .career-note p,
html.a11y-enabled .career-upload small,
html.a11y-enabled .career-form__consent,
html.a11y-enabled .career-form__consent-link,
html.a11y-enabled .press-subscribe p,
html.a11y-enabled .press-news-card p,
html.a11y-enabled .press-news-article p,
html.a11y-enabled .press-list-card p,
html.a11y-enabled .press-gallery figcaption,
html.a11y-enabled .outage-sidecard__list,
html.a11y-enabled .outage-empty-state,
html.a11y-enabled .service-card p:last-of-type,
html.a11y-enabled .fraud-alert__lead,
html.a11y-enabled .fraud-alert__list li {
  color: var(--a11y-muted) !important;
}

html.a11y-enabled .header-brand,
html.a11y-enabled .brand,
html.a11y-enabled .header-brand__text strong,
html.a11y-enabled .brand__text strong,
html.a11y-enabled .fraud-alert h2,
html.a11y-enabled .fraud-alert__note,
html.a11y-enabled .fraud-alert__eyebrow,
html.a11y-enabled .header-phone strong,
html.a11y-enabled .outage-card__published,
html.a11y-enabled .outage-card__detail dt,
html.a11y-enabled .outage-card__detail dd,
html.a11y-enabled .outage-card__expand h4,
html.a11y-enabled .outage-card__expand-note,
html.a11y-enabled .outage-card__address-list,
html.a11y-enabled .outage-card__detail-list,
html.a11y-enabled .outage-card__address-list li::marker,
html.a11y-enabled .outage-card__detail-list li::marker,
html.a11y-enabled .enterprise-about-contact strong,
html.a11y-enabled .enterprise-about-section h3,
html.a11y-enabled .subscriber-feature-card strong,
html.a11y-enabled .subscriber-info-card strong,
html.a11y-enabled .subscriber-schedule strong,
html.a11y-enabled .subscriber-action-panel strong,
html.a11y-enabled .subscriber-meter-method strong,
html.a11y-enabled .subscriber-checklist,
html.a11y-enabled .subscriber-checklist li::marker,
html.a11y-enabled .page-hero__eyebrow,
html.a11y-enabled .outage-search__label,
html.a11y-enabled .accessibility-panel__eyebrow,
html.a11y-enabled .accessibility-panel__title,
html.a11y-enabled .accessibility-panel__note,
html.a11y-enabled .accessibility-group legend,
html.a11y-enabled .footer-bottom span,
html.a11y-enabled .page-chip,
html.a11y-enabled .filter-chip,
html.a11y-enabled .press-news-card__date,
html.a11y-enabled .press-news-article__date,
html.a11y-enabled .press-news-detail__back,
html.a11y-enabled .press-news-card h3,
html.a11y-enabled .press-news-card__arrow,
html.a11y-enabled .press-subscribe label,
html.a11y-enabled .press-subscribe__field input,
html.a11y-enabled .press-list-card span,
html.a11y-enabled .hero-dots button {
  color: var(--a11y-text) !important;
  -webkit-text-fill-color: currentColor !important;
}

html.a11y-enabled .button--primary,
html.a11y-enabled .outage-pagination__button.is-active,
html.a11y-enabled .press-pagination__item.is-active,
html.a11y-enabled .accessibility-option.is-active {
  background: var(--a11y-accent) !important;
  color: var(--a11y-bg) !important;
}

html.a11y-enabled .cabinet-link__icon,
html.a11y-enabled .hero-warning__icon,
html.a11y-enabled .brand__mark,
html.a11y-enabled .header-brand__mark {
  background: transparent !important;
  color: var(--a11y-text) !important;
}

html.a11y-enabled .brand__mark,
html.a11y-enabled .header-brand__mark {
  background: url("assets/logo-opts-transparent.png") center / contain no-repeat !important;
}

html.a11y-enabled .page-shell svg,
html.a11y-enabled .page-shell svg * {
  color: inherit !important;
}

html.a11y-enabled .page-shell svg [fill]:not([fill="none"]) {
  fill: currentColor !important;
}

html.a11y-enabled .page-shell svg [stroke]:not([stroke="none"]) {
  stroke: currentColor !important;
}

html.a11y-enabled .header-max-logo {
  filter: grayscale(1) contrast(1.4);
}

html.a11y-enabled[data-a11y-theme="dark"] .header-max-logo,
html.a11y-enabled[data-a11y-theme="contrast"] .header-max-logo {
  filter: grayscale(1) contrast(1.4) invert(1);
}

html.a11y-enabled .header-menu a::before,
html.a11y-enabled .header-menu a::after,
html.a11y-enabled .service-card::before,
html.a11y-enabled .service-card::after,
html.a11y-enabled .press-news-card::before,
html.a11y-enabled .hero-slide__shade,
html.a11y-enabled .page-hero__overlay {
  display: none !important;
}

html.a11y-enabled .hero-slider {
  min-height: auto;
}

html.a11y-enabled .hero-slide {
  position: static;
  display: none;
  opacity: 1;
  transform: none;
}

html.a11y-enabled .hero-slide.is-active {
  display: block;
}

html.a11y-enabled .hero-slide__image,
html.a11y-enabled .page-hero__canvas,
html.a11y-enabled[data-a11y-images="hide"] .press-news-card img,
html.a11y-enabled[data-a11y-images="hide"] .press-gallery img {
  display: none !important;
}

html.a11y-enabled .hero-slide__frame {
  min-height: auto;
  padding-top: 44px;
  padding-bottom: 28px;
}

html.a11y-enabled .hero-slide__copy {
  max-width: none;
  padding-right: 0;
}

html.a11y-enabled .hero-slide__copy h1,
html.a11y-enabled .page-hero h1,
html.a11y-enabled .outages-preview__intro h2,
html.a11y-enabled .outage-card h3,
html.a11y-enabled .outage-sidecard h2,
html.a11y-enabled .enterprise-card h2,
html.a11y-enabled .enterprise-card h3,
html.a11y-enabled .enterprise-sidecard h2,
html.a11y-enabled .enterprise-text-panel h2,
html.a11y-enabled .enterprise-tabs__button,
html.a11y-enabled .enterprise-docs__item h3,
html.a11y-enabled .enterprise-docs__title,
html.a11y-enabled .enterprise-docs__subitem summary,
html.a11y-enabled .enterprise-file-link,
html.a11y-enabled .career-vacancy h3,
html.a11y-enabled .career-vacancy__label,
html.a11y-enabled .career-vacancy__salary,
html.a11y-enabled .career-vacancy__details summary,
html.a11y-enabled .career-response-drawer__head h3,
html.a11y-enabled .career-response-drawer__close,
html.a11y-enabled .career-note h3,
html.a11y-enabled .career-note a,
html.a11y-enabled .career-form__field span,
html.a11y-enabled .career-form__consent-link,
html.a11y-enabled .career-upload strong,
html.a11y-enabled .career-form__status,
html.a11y-enabled .enterprise-stat strong,
html.a11y-enabled .enterprise-contacts strong {
  max-width: none;
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--a11y-text) !important;
}

html.a11y-enabled .enterprise-tabs__button.is-active {
  background: var(--a11y-accent) !important;
  color: var(--a11y-bg) !important;
}

html.a11y-enabled .enterprise-file-link::after,
html.a11y-enabled .enterprise-docs__subitem summary::after,
html.a11y-enabled .career-vacancy__details summary::after,
html.a11y-enabled .career-upload__icon {
  background: var(--a11y-accent) !important;
  color: var(--a11y-bg) !important;
}

html.a11y-enabled .hero-overlay {
  position: static;
  left: auto;
  bottom: auto;
  width: auto;
  height: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 28px;
  pointer-events: auto;
}

html.a11y-enabled .hero-warning {
  position: static;
  right: auto;
  top: auto;
}

html.a11y-enabled .hero-dots {
  position: static;
  right: auto;
  top: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
  transform: none;
}

html.a11y-enabled .hero-dots::before,
html.a11y-enabled .hero-dots button::before {
  display: none;
}

html.a11y-enabled .hero-dots button {
  min-width: 46px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--a11y-border);
  border-radius: 999px;
  color: var(--a11y-text);
}

html.a11y-enabled .service-card {
  min-height: auto;
  gap: 12px;
  background-image: none !important;
}

html.a11y-enabled .service-card h3,
html.a11y-enabled .service-card a,
html.a11y-enabled .hero-warning,
html.a11y-enabled .page-chip--link,
html.a11y-enabled .outage-sidecard__contacts a {
  color: var(--a11y-text) !important;
}

html.a11y-enabled .service-card a,
html.a11y-enabled .vision-link,
html.a11y-enabled .outage-card__link,
html.a11y-enabled .header-search input,
html.a11y-enabled .header-search button {
  border: 1px solid var(--a11y-border) !important;
}

html.a11y-enabled .menu-toggle {
  background: var(--a11y-surface) !important;
  color: var(--a11y-text) !important;
  border: 1px solid var(--a11y-border) !important;
}

html.a11y-enabled .menu-toggle span {
  background: currentColor !important;
}

html.a11y-enabled .page-hero__band {
  max-width: none;
}

html.a11y-enabled .footer-bottom,
html.a11y-enabled .site-footer {
  border-top-color: var(--a11y-border) !important;
  color: var(--a11y-muted) !important;
}

html.a11y-enabled .header-divider {
  color: var(--a11y-text);
}

html.a11y-enabled :focus-visible {
  outline-color: var(--a11y-focus);
  box-shadow: none !important;
}

html.a11y-enabled[data-a11y-images="hide"] .hero-slide__image,
html.a11y-enabled[data-a11y-images="hide"] .page-hero__canvas,
html.a11y-enabled[data-a11y-images="hide"] .service-card__icon,
html.a11y-enabled[data-a11y-images="hide"] .press-news-article__image,
html.a11y-enabled[data-a11y-images="hide"] .header-max-link,
html.a11y-enabled[data-a11y-images="hide"] .header-brand__mark,
html.a11y-enabled[data-a11y-images="hide"] .brand__mark,
html.a11y-enabled[data-a11y-images="hide"] .cabinet-link__icon,
html.a11y-enabled[data-a11y-images="hide"] .hero-warning__icon {
  display: none !important;
}

html.a11y-enabled[data-a11y-images="hide"] .service-card,
html.a11y-enabled[data-a11y-images="hide"] .hero,
html.a11y-enabled[data-a11y-images="hide"] .page-hero__band {
  background-image: none !important;
}

html.a11y-enabled .outage-search__field input::placeholder {
  color: var(--a11y-muted) !important;
  opacity: 1;
}

html.a11y-enabled[data-a11y-motion="reduce"],
html.a11y-enabled[data-a11y-motion="reduce"] body {
  scroll-behavior: auto;
}

html.a11y-enabled[data-a11y-motion="reduce"] *,
html.a11y-enabled[data-a11y-motion="reduce"] *::before,
html.a11y-enabled[data-a11y-motion="reduce"] *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

html.a11y-enabled[data-a11y-motion="reduce"] .reveal {
  opacity: 1 !important;
  transform: none !important;
}

@media print {
  @page {
    margin: 14mm;
  }

  body {
    background: #fff !important;
    color: #111 !important;
  }

  .site-header,
  .site-footer,
  .page-hero,
  .enterprise-tabs__nav,
  .outage-tools,
  .outage-sidecard,
  .outage-pagination,
  .career-response-drawer,
  .print-action,
  .no-print {
    display: none !important;
  }

  body.is-printing-selection * {
    visibility: hidden !important;
  }

  body.is-printing-selection [data-print-target],
  body.is-printing-selection [data-print-target] * {
    visibility: visible !important;
  }

  body.is-printing-selection [data-print-target] {
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    padding: 0 !important;
    transform: none !important;
  }

  [data-print-target] .outage-card__expand,
  [data-print-target] .enterprise-text-placeholder,
  [data-print-target] .enterprise-company-card,
  [data-print-target] .career-vacancy__details {
    display: block !important;
  }

  [data-print-target] a {
    color: #111 !important;
    text-decoration: none !important;
  }

  [data-print-target] h2,
  [data-print-target] h3,
  [data-print-target] h4 {
    break-after: avoid;
    color: #111 !important;
  }

  [data-print-target] .outage-card__expand-block,
  [data-print-target] .enterprise-company-card__section,
  [data-print-target] .enterprise-about-contact,
  [data-print-target].career-vacancy {
    break-inside: avoid;
    border-color: #d7d7d7 !important;
    background: #fff !important;
    box-shadow: none !important;
  }
}

@media (max-width: 1120px) {
  .company-layout,
  .split-layout,
  .feedback-layout,
  .footer-grid,
  .outages-preview__layout,
  .outage-board,
  .enterprise-layout,
  .enterprise-tabs {
    grid-template-columns: 1fr;
  }

  .enterprise-grid,
  .enterprise-stats {
    grid-template-columns: 1fr;
  }

  .enterprise-about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-about-contacts {
    grid-template-columns: 1fr;
  }

  .enterprise-requisites--compact {
    grid-template-columns: 1fr;
  }

  .subscriber-feature-grid,
  .subscriber-payment-grid,
  .subscriber-meter-methods,
  .subscriber-schedule {
    grid-template-columns: 1fr;
  }

  .subscriber-meter-layout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .subscriber-action-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .enterprise-docs__intro {
    grid-template-columns: 1fr;
  }

  .enterprise-docs__stats,
  .enterprise-docs__meta {
    justify-content: flex-start;
  }

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

  .enterprise-tabs__nav {
    position: static;
  }

  .enterprise-docs__item {
    grid-template-columns: 1fr;
  }

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

  .notice-slide h3 {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-panel {
    position: static;
    top: auto;
    right: 0;
    left: 0;
    display: grid;
    gap: 18px;
    max-height: 0;
    margin-top: 0;
    padding: 0 14px;
    border: 0 solid rgba(190, 91, 37, 0.14);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 48px rgba(75, 46, 32, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: none;
    pointer-events: none;
    transition: max-height 0.28s ease, margin-top 0.28s ease, padding 0.28s ease, border-width 0.28s ease, opacity 0.2s ease;
  }

  .menu-open .nav-panel {
    max-height: calc(100dvh - 112px);
    margin-top: 12px;
    padding: 14px;
    border-width: 1px;
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
  }

  .header-top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .header-brand {
    min-width: 0;
    white-space: normal;
  }

  .header-brand__text {
    min-width: 0;
  }

  .header-brand__text strong,
  .header-brand__text span {
    line-height: 1.18;
  }

  .header-search,
  .vision-link,
  .cabinet-link,
  .header-phone {
    grid-column: 1 / -1;
    display: none;
  }

  .menu-open .header-search {
    display: block;
    width: 100%;
  }

  .menu-open .vision-link,
  .menu-open .cabinet-link {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 14px;
    border: 1px solid rgba(190, 91, 37, 0.18);
    border-radius: 14px;
    background: #fffaf6;
  }

  .menu-open .header-phone {
    display: grid;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(190, 91, 37, 0.18);
    border-radius: 16px;
    background: #fffaf6;
    white-space: normal;
  }

  .header-phone {
    justify-items: start;
    text-align: left;
  }

  .header-phone__item {
    justify-items: start;
    text-align: left;
  }

  .header-bottom,
  .header-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .header-bottom {
    gap: 12px;
  }

  .header-menu {
    gap: 8px;
  }

  .header-menu--primary {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }

  .header-menu--secondary {
    width: 100%;
    justify-content: flex-start;
  }

  .header-menu a {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(190, 91, 37, 0.08);
  }

  .header-divider {
    display: none;
  }

  .header-social {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
    padding: 10px 14px;
    border: 1px solid rgba(190, 91, 37, 0.14);
    border-radius: 14px;
    background: rgba(190, 91, 37, 0.06);
  }

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

  .service-card {
    min-height: 292px;
  }

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

  .press-news-grid {
    grid-template-columns: 1fr;
  }

  .press-news-card--feature {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .fraud-alert {
    width: min(100vw - 18px, 560px);
    max-height: calc(100dvh - 18px);
  }

  .fraud-alert__card {
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 24px;
    padding: 18px;
  }

  .fraud-alert__badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .fraud-alert__badge span {
    width: 31px;
    height: 31px;
  }

  .fraud-alert__content {
    padding-right: 0;
  }

  .fraud-alert h2 {
    font-size: clamp(1.62rem, 8vw, 2.2rem);
  }

  .fraud-alert__lead,
  .fraud-alert__note,
  .fraud-alert__list li {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .fraud-alert__list li {
    border-radius: 15px;
    padding: 11px 12px 11px 36px;
  }

  .fraud-alert__list li::before {
    top: 17px;
    left: 16px;
  }

  .fraud-alert__actions {
    position: sticky;
    z-index: 3;
    bottom: -18px;
    margin-top: 18px;
    padding: 12px 0 18px;
    background: linear-gradient(180deg, rgba(255, 250, 246, 0), #fffaf6 28%, #fffaf6 100%);
  }

  .fraud-alert__actions,
  .fraud-alert__actions .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .accessibility-panel__head {
    flex-direction: column;
  }

  .accessibility-panel__close {
    width: 100%;
  }

  .accessibility-grid {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    position: relative;
    width: min(1240px, calc(100vw - 28px));
    padding: 18px 0 14px;
  }

  .header-top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .header-search,
  .vision-link,
  .cabinet-link,
  .header-phone {
    grid-column: 1 / -1;
  }

  .vision-link,
  .cabinet-link {
    width: 100%;
  }

  .header-phone {
    justify-items: start;
    text-align: left;
  }

  .header-phone__item {
    justify-items: start;
    text-align: left;
  }

  .hero {
    margin-top: 0;
  }

  .quick-services {
    margin-top: 12px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    border-radius: 26px;
  }

  .enterprise-about-facts {
    grid-template-columns: 1fr;
  }

  .enterprise-about-section,
  .enterprise-about-contact,
  .enterprise-company-card__intro,
  .enterprise-company-card__section,
  .enterprise-docs__intro,
  .subscriber-feature-card,
  .subscriber-info-card,
  .subscriber-schedule div,
  .subscriber-action-panel,
  .subscriber-meter-method,
  .subscriber-note {
    padding: 18px;
    border-radius: 20px;
  }

  .enterprise-map,
  .enterprise-map iframe {
    min-height: 300px;
  }

  .enterprise-docs__item summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px;
  }

  .enterprise-docs__item summary::after {
    grid-column: 2;
    grid-row: 1;
  }

  .enterprise-docs__meta {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .enterprise-docs__body,
  .enterprise-docs__dropdown {
    padding: 0 18px 18px;
  }

  .service-card {
    min-height: 268px;
  }

  .outage-card,
  .outages-preview__intro,
  .outage-sidecard {
    padding: 22px;
    border-radius: 24px;
  }

  .outage-card__grid {
    grid-template-columns: 1fr;
  }

  .outage-card__actions {
    align-items: flex-start;
  }

  .outage-card__expand-grid {
    grid-template-columns: 1fr;
  }

  .outage-pagination {
    justify-content: center;
  }

  .page-hero {
    padding-top: 18px;
    padding-bottom: 8px;
  }

  .page-hero__band-inner {
    width: calc(100% - 40px);
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .page-hero__overlay {
    width: min(74%, 620px);
  }

  .page-hero__band {
    border-radius: 22px;
  }

  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.55rem, 8vw, 3.5rem);
  }

  .news-grid,
  .resource-grid,
  .feedback-form,
  .career-form__grid,
  .press-news-grid,
  .press-gallery {
    grid-template-columns: 1fr;
  }

  .press-panel__head {
    flex-direction: column;
  }

  .press-news-card,
  .press-news-card--feature {
    min-height: 300px;
    padding: 24px;
    border-radius: 24px;
  }

  .career-vacancy__head,
  .career-form__actions,
  .career-response-drawer__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .career-response-drawer__close {
    width: 100%;
  }

  .career-vacancy__salary {
    max-width: none;
    text-align: left;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider,
  .hero-slide__frame {
    min-height: 440px;
  }

  .hero-slide__frame {
    align-items: flex-end;
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .hero-slide__copy {
    max-width: 620px;
    padding-right: 84px;
  }

  .hero-slide__copy h1 {
    font-size: clamp(2.1rem, 5.5vw, 3rem);
    line-height: 1.14;
  }

  .hero-warning {
    top: 18px;
    right: 22px;
    font-size: 0.88rem;
  }

  .section {
    padding: 78px 0;
  }

  .page-hero + .section {
    padding-top: 22px;
  }

  .section--lifted {
    margin-top: 14px;
  }

  .carousel-nav {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
}

@media (max-width: 560px) {
  .subscriber-meter-layout {
    gap: 22px;
  }

  .subscriber-meter-gauge {
    width: 116px;
  }

  .subscriber-meter-tip {
    position: static;
    width: 100%;
    margin-top: 2px;
    opacity: 1;
    transform: none;
  }

  .subscriber-meter-tip::before {
    display: none;
  }

  .outage-card__actions {
    flex-direction: column;
  }

  .outage-card__toggle,
  .outage-card__link {
    width: 100%;
    justify-content: center;
  }

  .outage-pagination__button {
    flex: 1 1 44px;
  }

  .header-brand__text strong {
    font-size: 0.9rem;
  }

  .header-brand__text span {
    font-size: 0.86rem;
  }

  .header-brand__mark {
    width: 52px;
    height: 52px;
  }

  .brand__text strong {
    font-size: 1.28rem;
  }

  .brand__mark {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .services-grid,
  .news-grid,
  .resource-grid,
  .feedback-form,
  .press-news-grid,
  .press-gallery {
    grid-template-columns: 1fr;
  }

  .enterprise-docs__stats span,
  .enterprise-docs__meta span,
  .enterprise-docs__subitem-count {
    font-size: 0.7rem;
  }

  .enterprise-docs__subitem summary {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 12px 14px;
  }

  .enterprise-docs__subitem-count {
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .enterprise-docs__subitem summary::after {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .enterprise-files,
  .enterprise-docs__sublist {
    grid-template-columns: 1fr;
  }

  .enterprise-file-link--catalog {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 68px;
  }

  .enterprise-file-link__type {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .enterprise-file-link__action {
    grid-column: 2;
    justify-self: start;
  }

  .press-content {
    padding: 22px;
  }

  .press-news-card,
  .press-news-card--feature {
    min-height: 270px;
    padding: 20px;
  }

  .services-grid {
    padding: 8px;
  }

  .service-card {
    min-height: 238px;
  }

  .section--lifted {
    margin-top: 12px;
  }

  .hero-slider,
  .hero-slide__frame {
    min-height: 400px;
  }

  .hero-slide__frame {
    padding-top: 86px;
    padding-bottom: 74px;
  }

  .hero-warning {
    right: 14px;
    left: 14px;
    gap: 8px;
  }

  .hero-warning__icon {
    width: 34px;
    height: 34px;
  }

  .hero-dots {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 18px;
    transform: none;
    flex-direction: row;
    gap: 8px;
    padding-left: 0;
  }

  .hero-dots::before {
    display: none;
  }

  .hero-dots button {
    min-width: 0;
    padding-left: 16px;
    font-size: 0.86rem;
  }

  .feedback-form__footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
