/* =========================================================
   Bherson.com — main stylesheet
   Ready to replace: /assets/css/style.css
   ========================================================= */

:root {
  --yellow: #ffd21a;
  --orange: #ff8418;
  --orange-dark: #e86e05;
  --ink: #151515;
  --muted: #656565;
  --paper: #ffffff;
  --line: #dedede;
  --bg: #f5f5f3;
  --radius: 16px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

/* ---------- Reset / base ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.container {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

/* ---------- Advertising disclosure ---------- */

.ad-disclosure {
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f4f4f4;
  color: #383838;
  border-bottom: 1px solid rgba(0, 0, 0, .14);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ad-disclosure span {
  color: #d99000;
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 176px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: .9;
  transition: color .2s ease, opacity .2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.mobile-nav {
  position: absolute;
  top: 111px;
  left: 0;
  right: 0;
  background: #171717;
  padding: 22px 20px;
  display: grid;
  gap: 15px;
  border-top: 1px solid #333;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  font-weight: 700;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 14px 20px;
  font-weight: 800;
  transition:
    transform .2s ease,
    background-color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
  line-height: 1.1;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(255, 210, 26, .55);
  outline-offset: 3px;
}

.btn-small {
  padding: 11px 16px;
  background: var(--yellow);
  color: #111;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: #d96300;
  box-shadow: 0 6px 20px rgba(255, 132, 24, .22);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-large {
  padding: 17px 24px;
  text-transform: uppercase;
}

.btn-block {
  width: 100%;
}

.btn-ghost {
  background: #fff;
  color: #222;
  border-color: #cfcfcf;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  background:
    url('../img/hero-solar.jpg')
    center center / cover
    no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 154px 0 90px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .78) 0%,
      rgba(0, 0, 0, .60) 48%,
      rgba(0, 0, 0, .34) 100%
    );
  pointer-events: none;
}

.hero-content,
.hero-trust {
  position: relative;
  z-index: 2;
}

/*
  Desktop:
  left = copy
  right = hero-side.png
*/
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  align-items: center;
  gap: 50px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  font-size: .86rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--yellow);
  margin: 0 0 14px;
}

.eyebrow.dark {
  color: #765d00;
}

.hero h1 {
  font-size: clamp(3rem, 5.1vw, 5.55rem);
  line-height: .98;
  margin: 0 0 24px;
  max-width: 930px;
  letter-spacing: -.045em;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-lead {
  font-size: 1.14rem;
  max-width: 780px;
  color: #f3f3f3;
  margin: 0 0 25px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
  max-width: 830px;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  font-size: 1.01rem;
  line-height: 1.55;
}

.benefit-check {
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
}

.benefit-text {
  display: block;
  min-width: 0;
}

.benefit-text strong {
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.microcopy {
  font-size: .88rem;
  color: #d6d6d6;
}

/* Right-side hero image */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero-image img {
  display: block;
  width: 100%;
  max-width: 620px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  object-position: center right;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .28));
}

/* Hero bottom trust row */
.hero-trust {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .35);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust strong {
  color: var(--yellow);
  font-size: 1rem;
}

.hero-trust span {
  font-size: .86rem;
  color: #ddd;
}

/* ---------- Main sections ---------- */

.section {
  padding: 82px 0;
}

.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.photo-card,
.promise-card {
  min-height: 470px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #202020;
}

.photo-card {
  position: relative;
  background:
    url('../img/about-solar.svg')
    center center / cover
    no-repeat;
  color: #fff;
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(30, 8, 0, .42),
      rgba(0, 0, 0, .88)
    );
}

.photo-card-content {
  position: relative;
  padding: 42px 48px;
  z-index: 1;
  max-width: 700px;
}

.photo-card h2,
.promise-card h2 {
  font-size: 2.1rem;
  margin: 0 0 22px;
  padding-left: 18px;
  border-left: 8px solid var(--yellow);
}

.photo-card p {
  font-size: 1rem;
  font-weight: 600;
  color: #f7f7f7;
}

.promise-card {
  padding: 28px 48px;
  background: #fafafa;
}

.promise-item {
  padding: 16px 0;
  border-bottom: 1px solid #bbb;
}

.promise-item:last-child {
  border-bottom: 0;
}

.promise-item h3 {
  margin: 0 0 10px;
  font-size: 1.13rem;
}

.promise-item p {
  margin: 0;
  font-size: 1rem;
}

/* ---------- Process ---------- */

.process-section {
  background: var(--bg);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-heading span {
  color: #8a6c00;
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 8px 0 12px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-grid article {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.process-grid b {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  margin-bottom: 20px;
}

.process-grid h3 {
  font-size: 1.22rem;
  margin: 0 0 10px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--yellow);
  padding: 64px 0;
}

.cta-inner {
  background: #f8f8f8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.cta-inner > div:first-child {
  padding: 46px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cta-inner h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.12;
  margin: 5px 0 14px;
  color: #313947;
}

.cta-inner p {
  font-size: 1.04rem;
  color: #424242;
  margin: 0 0 25px;
}

.solar-illustration {
  min-height: 350px;
}

.solar-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #252525;
  color: #fff;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr .8fr;
  gap: 44px;
  align-items: start;
}

.footer-logo {
  width: 145px;
}

.footer-brand-block p {
  max-width: 470px;
  margin: 10px 0 0;
  color: #cfcfcf;
  font-size: .82rem;
  line-height: 1.55;
}

.footer-disclosure {
  color: #ffd21a !important;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-contact strong {
  display: block;
  margin-bottom: 10px;
}

.footer-contact address {
  font-style: normal;
  color: #d7d7d7;
  font-size: .88rem;
  line-height: 1.8;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--yellow);
}

.site-footer .footer-links {
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: start;
  font-size: .9rem;
}

.footer-bottom {
  border-top: 1px solid #3c3c3c;
  margin-top: 28px;
  padding-top: 20px;
  color: #a9a9a9;
  font-size: .78rem;
}

/* ---------- Form modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, .68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(850px, calc(100vh - 44px));
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 34px 38px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  background: #f1f1f1;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  color: #333;
}

.modal-header {
  padding-right: 46px;
}

.form-kicker {
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: #8f6f00;
}

.modal-header h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 7px 0;
}

.modal-header p {
  margin: 0;
  color: #666;
}

/* ---------- Form progress ---------- */

.progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin: 28px 0 30px;
}

.progress-step {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #888;
}

.progress-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #ccc;
  background: #fff;
  font-weight: 900;
}

.progress-step small {
  font-size: .72rem;
  font-weight: 800;
}

.progress-step.active {
  color: #111;
}

.progress-step.active span {
  background: var(--yellow);
  border-color: #111;
}

.progress-step.done span {
  background: #202020;
  color: #fff;
  border-color: #202020;
}

.progress-line {
  height: 3px;
  background: #ddd;
  margin: 0 12px 22px;
}

.progress-line i {
  display: block;
  width: 0;
  height: 100%;
  background: #222;
  transition: width .25s ease;
}

.progress[data-stage="2"] .progress-line i {
  width: 100%;
}

/* ---------- Form fields ---------- */

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: stepIn .22s ease;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 17px;
}

.field label,
.field legend {
  display: block;
  font-weight: 800;
  margin-bottom: 7px;
}

.field em,
.consent em {
  font-style: normal;
  color: #cc3d11;
  font-size: .72rem;
  margin-left: 3px;
}

.optional {
  font-size: .75rem;
  color: #777;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  outline: none;
  transition:
    border-color .15s ease,
    box-shadow .15s ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(255, 210, 26, .25);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea,
.radio-field.invalid .choice {
  border-color: #cf3a1f;
}

.error-text {
  display: none;
  color: #b82f18;
  font-size: .78rem;
  margin-top: 5px;
}

.invalid > .error-text,
.consent.invalid + .consent-error {
  display: block;
}

.radio-field {
  border: 0;
  padding: 0;
  margin: 4px 0 22px;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice {
  display: flex !important;
  align-items: center;
  gap: 10px;
  border: 1px solid #c9c9c9;
  border-radius: 9px;
  padding: 13px 14px;
  margin: 0 !important;
  font-weight: 700 !important;
}

.choice input {
  width: auto;
  margin: 0;
}

.choice:has(input:checked) {
  border-color: #1e1e1e;
  background: #fff9d7;
}

.form-note {
  font-size: .76rem;
  color: #777;
  text-align: center;
  margin: 12px 0 0;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  margin: 2px 0 4px;
}

.consent input {
  margin-top: 4px;
}

.consent.invalid {
  color: #b82f18;
}

.consent-error {
  margin-bottom: 14px;
}

.consent a {
  color: #7b5d00;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.form-success {
  text-align: center;
  padding: 30px 12px 18px;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #daf5e2;
  color: #17783a;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.form-success p {
  color: #666;
  max-width: 560px;
  margin: 0 auto 24px;
}

.partner-disclosure {
  font-size: .74rem !important;
  line-height: 1.45 !important;
  color: #686868 !important;
  margin: 18px 0 0 !important;
  max-width: 650px;
}

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ---------- Legal / informational pages ---------- */

.legal-page {
  background: #f5f5f3;
  min-height: 100vh;
}

.legal-page .site-header {
  position: relative;
  background: #1d1d1d;
}

.legal-page .header-inner {
  height: 76px;
}

.legal-page .mobile-nav {
  display: none !important;
}

.legal-page .desktop-nav a {
  font-size: .9rem;
}

.legal-main {
  padding: 64px 0 84px;
}

.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 14px;
  padding: 48px 54px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.legal-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7e6500;
  margin-bottom: 8px;
}

.legal-shell h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.02;
  margin: 0 0 10px;
  letter-spacing: -.035em;
}

.legal-updated {
  color: #777;
  margin: 0 0 32px;
}

.legal-shell h2 {
  font-size: 1.35rem;
  margin: 34px 0 10px;
}

.legal-shell h3 {
  font-size: 1.05rem;
  margin: 24px 0 7px;
}

.legal-shell p,
.legal-shell li {
  color: #3f3f3f;
}

.legal-shell ul {
  padding-left: 22px;
}

.legal-shell a {
  color: #6f5200;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-note {
  background: #fff8d9;
  border-left: 5px solid var(--yellow);
  padding: 16px 18px;
  margin: 24px 0;
  border-radius: 4px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.contact-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background: #fafafa;
}

.contact-card strong {
  display: block;
  margin-bottom: 7px;
}

.contact-card p {
  margin: 0;
  font-size: .92rem;
}

.partner-box {
  background: #202020;
  color: #fff;
  border-radius: 14px;
  padding: 26px 28px;
  margin-top: 28px;
}

.partner-box p {
  color: #ddd;
  margin: 7px 0 18px;
}

.partner-box a {
  color: #111;
  text-decoration: none;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 34px;
  }

  .hero-image img {
    max-width: 520px;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 142px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  /* Hide right-side illustration only on tablet/mobile */
  .hero-image {
    display: none;
  }

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

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col-cards,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

  .solar-illustration {
    min-height: 280px;
  }

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

  .site-footer .footer-links {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .ad-disclosure {
    height: 27px;
    font-size: 9px;
    letter-spacing: .11em;
  }

  .header-inner,
  .site-header .header-inner {
    height: 70px;
  }

  .mobile-nav {
    top: 97px;
  }

  .brand img {
    width: 145px;
  }

  .hero {
    padding: 126px 0 56px;
    background-position: 61% center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, .68);
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

    .benefit-list {
    gap: 13px;
    margin-bottom: 26px;
  }

  .benefit-list li {
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 10px;
    font-size: .94rem;
    line-height: 1.45;
  }

  .benefit-check {
    font-size: 1.15rem;
  }

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

  .microcopy {
    width: 100%;
    text-align: center;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 38px;
  }

  .hero-trust span {
    font-size: .76rem;
  }

  .section {
    padding: 54px 0;
  }

  .two-col-cards {
    gap: 16px;
  }

  .photo-card,
  .promise-card {
    min-height: 0;
  }

  .photo-card-content,
  .promise-card {
    padding: 30px 24px;
  }

  .photo-card h2,
  .promise-card h2 {
    font-size: 1.7rem;
  }

  .cta-band {
    padding: 24px 0;
  }

  .cta-inner > div:first-child {
    padding: 34px 24px;
  }

  .solar-illustration {
    min-height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-links {
    grid-column: auto;
    display: grid;
    gap: 10px;
  }

  .modal {
    padding: 10px;
  }

  .modal-dialog {
    padding: 26px 18px 22px;
    max-height: calc(100vh - 20px);
    border-radius: 14px;
  }

  .modal-header h2 {
    font-size: 1.55rem;
  }

  .modal-close {
    right: 12px;
    top: 10px;
  }

  .form-grid.two,
  .choice-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions .btn {
    width: 100%;
  }

  .legal-main {
    padding: 28px 0 50px;
  }

  .legal-shell {
    width: min(100% - 24px, 920px);
    padding: 30px 22px;
    border-radius: 10px;
  }

  .legal-page .header-inner {
    height: 68px;
  }

  .legal-page .desktop-nav {
    display: flex;
  }

  .legal-page .desktop-nav a:not(.legal-home-link) {
    display: none;
  }
}
