.hero {
  min-height: var(--section-min-h);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: calc(var(--header-height) + 2rem) clamp(1rem, 3.6vw, 4rem) clamp(2.5rem, 8vh, 5.5rem);
  overflow: hidden;
  background: #000;
}

.hero_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.84));
}

.hero_overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.06) calc(100% - 1px));
  background-size: 25% 100%;
  pointer-events: none;
}

.hero_content {
  position: relative;
  z-index: 2;
  width: min(var(--shell-width), 100%);
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 1.05rem;
}

.hero_content h1 {
  font-size: clamp(2rem, 5.2vw, 4.3rem);
  line-height: 0.88;
  letter-spacing: 0.045em;
  font-weight: 700;
  max-width: 11ch;
}

.hero_content p {
  width: min(52ch, 100%);
  margin: 0;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.35;
  color: var(--white-90);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.panel {
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 25% 100%;
  pointer-events: none;
}

.panel_dark {
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 244, 248, 0.08), transparent 30%),
    linear-gradient(145deg, var(--black-95), var(--black-100));
  color: var(--white-100);
  border-top: 1px solid var(--line-soft);
}

.panel_light {
  background:
    radial-gradient(circle at 18% 72%, rgba(242, 244, 248, 0.1), transparent 32%),
    linear-gradient(155deg, var(--black-90), var(--black-95));
  color: var(--white-100);
  border-top: 1px solid var(--line-soft);
}

.panel h2 {
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0.05em;
}

.panel_content > p {
  width: min(62ch, 100%);
  margin: 0;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.4;
  color: var(--white-80);
  text-transform: uppercase;
  letter-spacing: 0.028em;
}

.panel_center .panel_content > p {
  margin-left: auto;
  margin-right: auto;
}

.coverage_list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.coverage_list li {
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-90);
}

.business_intro {
  width: min(64ch, 100%);
}

.panel_contact .panel_content {
  text-align: left;
}

.contact_direct h2 {
  text-align: left;
}

.subpage_kicker {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-55);
  font-weight: 600;
}

.subpage_shell h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: 0.05em;
}

.subpage_shell > p {
  width: min(72ch, 100%);
  color: var(--white-80);
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.doc_shell h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.98;
}

.doc_shell h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.58rem);
  margin-top: 0.6rem;
}

.doc_shell p,
.doc_shell li {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--white-80);
}

.doc_shell ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.3rem;
}
