:root{
  --navy:#061d2f;
  --navy2:#03131f;
  --gold:#a77c45;
  --gold2:#79552f;
  --green:#1f9c5c;
  --green2:#15824b;
  --paper:#d8d0c4;
  --parchment:#d8d0c4;
  --line:#a98962;
  --ink:#0c1220;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Source Sans 3","Helvetica Neue",Arial,sans-serif;
  color:var(--ink);
  background: var(--paper);
}

main{
  background: var(--paper);
}

.skip-link{
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 2000;
  background: #1b2b45;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus{
  top: 10px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline: 3px solid rgba(201,162,77,.95);
  outline-offset: 2px;
}

/* TOP BAR */
.topbar{
  background: rgba(6,29,47,.98);
  border-bottom: 1px solid rgba(167,124,69,.48);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(7,29,49,.08);
  backdrop-filter: blur(8px);
}

.topbar__inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__brand{
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-weight: 700;
  letter-spacing: .04em;
  color: #f2ede5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.brand-logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(143,100,44,.42);
  background: var(--parchment);
  box-shadow: 0 4px 12px rgba(7,29,49,.14);
}

.topbar__nav{
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: #f2ede5;
}

.topbar__right{
  display: grid;
  justify-items: end;
  gap: 7px;
}

.topbar__tools{
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d6b17d;
  font-size: 12px;
  font-weight: 700;
}

.topbar__tools a:hover{
  color: #ffffff;
}

.topbar__tools .whatsapp-link{
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.topbar__tools .whatsapp-link svg{
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.topbar__socials{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar__tools .social-link{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6b17d;
}

.social-link svg{
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.topbar__nav a{ opacity: .85; }
.topbar__nav a:hover{ opacity: 1; }
.topbar__lang{
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #d6b17d;
  background: #d6b17d;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  opacity: 1;
}

.topbar__nav .topbar__lang:hover{
  background: #f2ede5;
  border-color: #f2ede5;
  color: var(--navy);
  opacity: 1;
}

/* HERO */
.hero{
  max-width: 1040px;
  margin: 24px auto;
  border-radius: 0;
  overflow: hidden;
  background: #0b1b2b;
  border: 0;
  box-shadow: none;
}

.hero__media{
  position: relative;
  height: 420px;
  background-image: url("./assets/Lawfirmplaceholder.jpg");
  background-size: 115%;
  background-position: 0% 20%;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  width: 52%;
  right: auto;
  background: linear-gradient(
    90deg,
    rgba(4,19,33,.82) 0%,
    rgba(4,19,33,.54) 62%,
    rgba(5,12,20,.18) 82%,
    rgba(5,12,20,.06) 92%,
    rgba(5,12,20,0) 100%
  );
}

.hero__content{
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 24px 26px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 560px;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  align-items: flex-start;
}

.hero__card{
  max-width: 380px;
}

.hero__ticker{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  overflow: hidden;
  background: rgba(11,26,41,.9);
  border-top: 1px solid rgba(255,255,255,.18);
}

.hero__ticker-track{
  display: inline-block;
  min-width: 100%;
  padding: 10px 0;
  white-space: nowrap;
  color: #fff;
  font-size: 13px;
  letter-spacing: .01em;
  padding-left: 100%;
  animation: hero-ticker 24s linear infinite;
}

.hero__ticker-track a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes hero-ticker{
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce){
  .hero__ticker-track{
    animation: none;
    padding-left: 0;
    white-space: normal;
    display: block;
    line-height: 1.35;
    padding: 10px 12px;
  }

  .iconCard{
    transition: none;
  }
}

.hero__brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  opacity: .95;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: #f7f1e6;
}

.hero__brand-logo{
  width: 58px;
  height: 82px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(198,173,123,.7);
  box-shadow: 0 12px 24px rgba(0,0,0,.32);
}

.hero h1{
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  margin: 0 0 10px;
}

.hero p{
  font-size: 15px;
  opacity: .95;
  margin-bottom: 18px;
}

.hero__note{
  font-weight: 700;
  margin-top: -8px;
  margin-bottom: 14px;
  font-size: 18px;
}

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

.hero__secondary-link{
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__card{
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  max-width: 420px;
  backdrop-filter: none;
}

.landing-page .topbar__right{
  gap: 0;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing:.04em;
  box-shadow: 0 5px 14px rgba(6,29,47,.14);
  border: 1px solid rgba(255,255,255,.16);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn-gold{
  background: var(--gold);
  color:#1b1206;
}

.btn-green{
  background: var(--green2);
  color:#ffffff;
}

@media (hover: hover){
  .btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(6,29,47,.18);
  }
}

.btn-outline{
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color:#fff;
}

.btn-instagram{
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 70%, #515bd4 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}

/* PANEL */
.panel{
  background: transparent;
  padding: 24px 16px 30px;
  border: 0;
  border-bottom: 1px solid rgba(143,100,44,.24);
}

.contact{
  scroll-margin-top: 92px;
}

.panel--tight{
  padding: 12px 16px;
}

.panel--authority{
  background:
    linear-gradient(135deg, rgba(7,29,49,.98) 0%, rgba(4,19,33,.96) 56%, rgba(184,138,66,.18) 100%),
    radial-gradient(circle at top right, rgba(184,138,66,.22), transparent 32%);
  color: #fff;
  border: 0;
}

.panel.panel--tight{
  border-radius: 0;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(143,100,44,.24);
}

.panel--tight + .hero{
  margin-top: 12px;
}

.quick-contact{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #1b2b45;
}

.quick-contact__item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.authority-grid{
  display: grid;
  gap: 16px;
}

.authority-card{
  border: 0;
  border-left: 2px solid rgba(198,173,123,.5);
  border-radius: 0;
  padding: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: none;
}

.authority-card__eyebrow{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.authority-card h2{
  margin: 0 0 8px;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 30px;
  line-height: 1.05;
}

.authority-card p{
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,.86);
}

.authority-card--stats{
  display: grid;
  gap: 12px;
}

.authority-stat{
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.authority-stat:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}

.authority-stat strong{
  font-size: 15px;
}

.authority-stat span{
  font-size: 13px;
  color: rgba(255,255,255,.74);
}

.panel__header{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin: 14px 0 12px;
}

.panel__header--spaced{ margin-top: 18px; }

.panel__header h1,
.panel__header h2{
  margin:0;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 18px;
  letter-spacing:.11em;
  text-transform:uppercase;
  font-weight: 700;
}

.rule{
  height:1px;
  flex:1;
  background: linear-gradient(90deg, transparent, rgba(143,100,44,.44), transparent);
}

/* ICON CARDS */
.iconCards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:8px;
  margin-bottom: 12px;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  align-items: stretch;
}

.iconCard{
  background: rgba(15,35,54,.10);
  border: 1px solid rgba(15,35,54,.16);
  border-radius: 0;
  padding: 12px 10px;
  text-align:center;
  display: block;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  min-height: 120px;
  display: grid;
  place-items: center;
  width: 100%;
}

.panel .iconCards{
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  grid-template-columns: repeat(2, minmax(160px, 240px));
  justify-content: center;
}

.panel .iconCard{
  min-height: 90px;
  padding: 10px 8px;
  border-radius: 2px;
}

.panel .iconCard__label{
  font-size: 12px;
}

.iconCard:first-child{
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.iconCard:last-child{
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.icon{
  width:34px;
  height:34px;
  margin: 0 auto 8px;
  border-radius: 10px;
  background: rgba(15,35,54,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
}

.iconCard__label{
  font-weight: 800;
  font-size: 12px;
  line-height:1.15;
}

.iconCard:hover{
  transform: translateY(-2px);
  border-color: rgba(15,35,54,.28);
  box-shadow: 0 10px 22px rgba(15,35,54,.10);
}

.is-hidden{
  display: none !important;
}

/* STEPS */
.steps{
  display:grid;
  gap: 12px;
}

.step{
  background: transparent;
  border: 0;
  border-top: 2px solid rgba(143,100,44,.42);
  border-radius: 0;
  padding: 16px 0 0;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.step__num{
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(180deg,var(--gold),var(--gold2));
  color:#1b1206;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
}

.step__title{font-weight: 900; margin-bottom: 2px;}
.step__text{opacity:.78; font-size: 13px;}

/* CHECKS */
.checks{
  margin: 6px 0 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 10px;
}

.checks li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight: 800;
}

.checks li::before{
  content:"✓";
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(201,162,77,.22);
  border: 1px solid rgba(201,162,77,.38);
  display:flex;
  align-items:center;
  justify-content:center;
  color: #7a5a12;
  flex: 0 0 auto;
}

.service-areas{
  margin-top: 18px;
  border: 0;
  border-left: 2px solid rgba(143,100,44,.42);
  border-radius: 0;
  background: transparent;
  padding: 4px 0 4px 16px;
}

.service-areas h3{
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #1b2b45;
}

.service-areas ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.expectations{
  margin-top: 18px;
}

.expectations__grid{
  display: grid;
  gap: 12px;
}

.expectation-card{
  background: transparent;
  border: 0;
  border-top: 2px solid rgba(143,100,44,.42);
  border-radius: 0;
  padding: 14px 0 0;
}

.expectation-card h3{
  margin: 0 0 6px;
  font-size: 16px;
  color: #1b2b45;
}

.expectation-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(27,43,69,.82);
}

/* LANDING PAGE */
.landing-page main{
  background: var(--paper);
}

.landing-page .panel{
  border-bottom: 0;
  padding-top: 44px;
  padding-bottom: 44px;
  color: var(--navy);
}

.landing-page .panel.panel--tight{
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 0;
}

.landing-page .hero__ticker{
  display: none;
}

.landing-page .hero{
  width: 100vw;
  max-width: none;
  margin: 0 0 18px;
  margin-left: calc(50% - 50vw);
  overflow: visible;
  background: var(--navy);
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(400px, 1.1fr);
  align-items: stretch;
}

.landing-page .hero__image{
  width: 100%;
  height: 500px;
  background-image: url("./assets/david-hero.jpg");
  background-size: cover;
  background-position: center 16%;
}

.landing-page .hero__content{
  position: static;
  max-width: none;
  padding: 0 48px;
  color: #f2ede5;
  text-shadow: none;
  background: var(--navy);
  display: flex;
  align-items: center;
}

.landing-page .hero__card{
  width: min(680px, 100%);
  max-width: none;
  margin: 0;
  padding: 38px 0;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px 28px;
  align-items: center;
}

.landing-page .hero__brand{
  grid-column: 2;
  margin: 0;
  color: #d6b17d;
}

.landing-page .hero__tagline{
  grid-column: 2;
  margin: -8px 0 2px;
  color: rgba(242,237,229,.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.landing-page .hero__seal{
  grid-column: 1;
  grid-row: 1 / span 3;
  display: block;
  width: 124px;
  height: 124px;
  padding: 0;
  border: 1px solid rgba(214,177,125,.42);
  border-radius: 999px;
  background: var(--parchment);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
  object-fit: contain;
  object-position: center;
}

.landing-page .hero h1{
  grid-column: 2;
  margin: 0;
  max-width: 600px;
  font-size: clamp(34px, 3vw, 48px);
}

.landing-page .hero__summary{
  grid-column: 2;
  padding-bottom: 3px;
}

.landing-page .hero__summary p{
  margin: 0 0 8px;
}

.landing-page .hero__summary .hero__note{
  margin: 0;
  color: #d6b17d;
  font-size: 16px;
}

.landing-page .panel__header{
  justify-content: flex-start;
  margin: 40px 0 20px;
}

.landing-page .panel__header .rule{
  display: none;
}

.landing-page .panel__header h2{
  font-size: 24px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--navy);
}

.landing-page .panel--authority{
  padding-top: 52px;
  padding-bottom: 52px;
  background: transparent;
  color: var(--navy);
}

.landing-page .authority-card{
  padding: 0;
  border-left: 0;
  background: transparent;
}

.landing-page .authority-card__eyebrow,
.landing-page .authority-card p,
.landing-page .authority-stat span{
  color: rgba(7,29,49,.88);
}

.landing-page .authority-card h2{
  font-size: 38px;
  max-width: 620px;
}

.landing-page .authority-card--stats{
  padding-left: 24px;
  border-left: 1px solid rgba(143,100,44,.3);
}

.landing-page .authority-stat{
  border-color: rgba(15,35,54,.12);
}

.landing-page .panel .iconCards{
  grid-template-columns: repeat(2, minmax(200px, 360px));
  justify-content: start;
  gap: 0 48px;
  margin: 0;
}

.landing-page .panel .iconCard{
  min-height: 0;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.landing-page .iconCard:hover{
  transform: none;
  box-shadow: none;
  color: var(--gold2);
}

.landing-page .icon{
  width: 34px;
  height: 34px;
  margin: 0;
  flex: 0 0 34px;
  display: inline-flex;
  border: 1px solid rgba(214,177,125,.42);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: #d6b17d;
}

.landing-page .icon svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-page .panel .iconCard__label{
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 22px;
  line-height: 1.15;
  color: #f2ede5;
}

.landing-page .case-selector{
  background: var(--navy);
  color: #f2ede5;
  padding-top: 38px;
  padding-bottom: 42px;
}

.landing-page .case-selector .panel__header{
  margin-top: 0;
}

.landing-page .case-selector .panel__header h2{
  color: #f2ede5;
}

.landing-page .case-selector .iconCard{
  padding: 16px 0;
  border-bottom: 1px solid rgba(167,124,69,.72);
}

.landing-page .case-selector .iconCard__label{
  color: #f2ede5;
  font-size: 25px;
}

.landing-page .case-selector .iconCard:hover .iconCard__label{
  color: #d6b17d;
}

.landing-page .process-panel{
  padding-top: 24px;
}

.landing-page .step,
.landing-page .expectation-card{
  border-top: 0;
  padding-top: 0;
}

.landing-page .step__num{
  width: auto;
  height: auto;
  background: transparent;
  color: var(--gold2);
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 36px;
  justify-content: flex-start;
}

.landing-page .step__text,
.landing-page .expectation-card p{
  color: rgba(7,29,49,.84);
  opacity: 1;
}

.landing-page .checks li::before{
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.landing-page .service-areas{
  margin-top: 34px;
  padding: 24px 0 0;
  border-left: 0;
  border-top: 1px solid rgba(143,100,44,.24);
}

.landing-page .service-areas ul{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-left: 0;
  list-style: none;
}

.landing-page .contact .panel__header{
  margin-top: 0;
}

.landing-page .contact .form{
  background: transparent;
  border-top: 0;
  padding-top: 0;
}

.landing-page .form input,
.landing-page .form textarea{
  background: rgba(255,255,255,.58);
  border-color: rgba(6,29,47,.28);
}

.landing-page .form__notice{
  color: rgba(6,29,47,.82);
}

/* FORM */
.contact .panel__header{ margin-top: 6px; }

.form{
  background: rgba(255,255,255,.34);
  border: 0;
  border-top: 2px solid rgba(143,100,44,.42);
  border-radius: 0;
  padding: 22px 0 0;
  box-shadow: none;
}

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

.form__field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: #1b2b45;
}

.form__choice{
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
}

.form__choice label{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  line-height: 1.2;
}

.form__choice input[type="radio"]{
  width: auto;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--gold2);
  box-shadow: none;
}

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

.form input,
.form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #d6dbe2;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}

.form input:focus,
.form textarea:focus{
  border-color: rgba(201,162,77,.7);
  box-shadow: 0 0 0 4px rgba(201,162,77,.18);
}

.form__actions{
  margin-top: 12px;
}

.form__notice{
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(27,43,69,.86);
}

.banner{
  border-radius: 0;
  padding: 14px 16px;
  margin: 10px 0 18px;
  border: 0;
  border-left: 3px solid rgba(15,35,54,.38);
  background: #ffffff;
}

.banner h3{
  margin: 0 0 4px;
  font-size: 16px;
}

.banner p{
  margin: 0;
  opacity: .9;
}

.banner--standard{
  border-left-color: rgba(15,35,54,.5);
  background: #f6f5f2;
}

.banner--high{
  border-left-color: rgba(167,124,69,.9);
  background: rgba(201,162,77,.12);
}

.banner--emergency{
  border-left-color: rgba(177,0,0,.72);
  background: rgba(177,0,0,.10);
}

#triageForm{
  background: transparent;
  border-top: 0;
  padding-top: 4px;
}

#triageForm .triage + .form__grid{
  padding-top: 22px;
  border-top: 1px solid rgba(6,29,47,.24);
}

.triage{
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.q{
  border: 0;
  border-bottom: 1px solid rgba(15,35,54,.16);
  border-radius: 0;
  padding: 4px 0 18px;
  background: transparent;
}

.q:last-child{
  border-bottom: 0;
}

.q__title{
  font-weight: 700;
  margin-bottom: 10px;
  color: #1b2b45;
}

.q__follow{
  margin-top: 10px;
  display: none;
}

.triage-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* ABOUT */
.about{
  max-width: 820px;
  margin: 0 auto;
  color: #243046;
  line-height: 1.6;
}

.about-visual{
  max-width: 1040px;
  margin: 18px auto 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  overflow: hidden;
  border: 1px solid rgba(121,85,47,.2);
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 16px 38px rgba(6,29,47,.13);
}

.about-page .panel__header{
  display: none;
}

.about-page .about-visual{
  margin-top: 6px;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.about-visual__photo{
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  align-self: center;
  display: block;
  object-fit: contain;
  object-position: center;
  background: var(--navy);
}

.about-visual__brand{
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f2ede5;
  text-align: center;
}

.about-visual__brand img{
  width: 150px;
  height: 150px;
  border: 1px solid rgba(214,177,125,.38);
  border-radius: 50%;
  background: var(--parchment);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.about-visual__brand h1{
  margin: 20px 0 0;
  color: #fff;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 38px;
  line-height: 1;
}

.about-visual__brand p{
  margin: 18px 0 0;
  color: #d6b17d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.about p{ margin: 0 0 12px; }

.about-page .about > p:first-child{
  margin-bottom: 20px;
  color: var(--navy);
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
}

.about__cta{
  margin-top: 16px;
  font-weight: 700;
}

.practice-mark{
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(121,85,47,.25);
  border-radius: 50%;
  background: var(--parchment);
  object-fit: contain;
}

.practice-heading{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(121,85,47,.2);
  scroll-margin-top: 92px;
}

.practice-heading:first-child{
  margin-top: 12px;
}

.practice-icon{
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(121,85,47,.28);
  border-radius: 9px;
  background: rgba(6,29,47,.06);
  color: var(--gold2);
}

.practice-icon svg{
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SERVICE LANDING PAGES */
.service-detail{
  padding-top: 0;
}

.service-detail__header{
  max-width: 1040px;
  margin: 0 auto 36px;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  background: var(--navy);
  color: #f2ede5;
}

.service-detail__header > img{
  width: 132px;
  height: 132px;
  border: 1px solid rgba(214,177,125,.42);
  border-radius: 50%;
  background: var(--parchment);
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
}

.service-detail__header h1{
  margin: 0 0 12px;
  max-width: 760px;
  color: #fff;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
}

.service-detail__lead{
  margin: 0;
  max-width: 700px;
  color: rgba(242,237,229,.82);
  font-size: 18px;
  line-height: 1.5;
}

.service-detail__body{
  max-width: 820px;
  margin: 0 auto;
  color: #243046;
  line-height: 1.65;
}

.service-detail__body h2{
  margin: 30px 0 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 30px;
}

.service-detail__body p{
  margin: 0 0 14px;
}

.service-detail__actions{
  margin: 30px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-detail__actions .btn-outline{
  border-color: rgba(6,29,47,.35);
  color: var(--navy);
}

/* TEAM */
.team{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.team__card{
  background: rgba(255,255,255,.42);
  border: 0;
  border-top: 2px solid rgba(143,100,44,.42);
  border-radius: 0;
  padding: 16px 0;
  box-shadow: none;
  text-align: left;
}

.team__photo{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(15,35,54,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1b2b45;
  margin-bottom: 10px;
}

.team__card h3{
  margin: 0 0 4px;
  font-size: 16px;
}

.team-intro{
  margin-bottom: 16px;
}

.team__role{
  margin: 0 0 10px;
  font-weight: 700;
  color: #566074;
}

.team__status{
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(201,162,77,.16);
  border: 1px solid rgba(201,162,77,.28);
  color: #6e5317;
  font-size: 12px;
  font-weight: 700;
}

.team-page__title{
  margin: 34px auto 8px;
  padding: 0 18px;
  color: var(--navy);
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.team-page .team-profile{
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(198,173,123,.28);
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 18px 44px rgba(6,29,47,.14);
  padding-top: 46px;
  padding-bottom: 52px;
}

.team-page .team-profile--associate{
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 44px;
  align-items: start;
  padding-top: 32px;
  padding-bottom: 46px;
}

.team-profile--associate .team-profile__portrait{
  grid-column: 2;
  grid-row: 1;
  width: 240px;
  justify-self: end;
}

.team-profile--associate .team-profile__content{
  grid-column: 1;
  grid-row: 1;
}

.team-profile--associate .team-profile__portrait{
  margin-top: 2px;
}

.team-page .team-profile--founder{
  display: block;
  align-items: start;
}

.team-profile--founder .team-profile__portrait{
  float: left;
  width: 320px;
  margin: 2px 42px 24px 0;
}

.team-profile--founder::after{
  content: "";
  display: block;
  clear: both;
}

.team-profile--associate .team-profile__content h1,
.team-profile--associate .team-profile__content h2{
  font-size: 42px;
}

.team-profile--associate .team-profile__content .team-profile__lead{
  font-size: 21px;
}

.team-profile__portrait{
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(214,177,125,.5);
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
}

.team-profile__portrait img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

.team-profile__eyebrow{
  margin: 0 0 10px;
  color: var(--gold2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.team-profile__content h1,
.team-profile__content h2{
  margin: 0 0 18px;
  color: #fff;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 48px;
  line-height: 1;
}

.team-profile__content > p:not(.team-profile__eyebrow),
.team-profile__bio-group > p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.62;
}

.team-profile__content .team-profile__lead{
  color: #f2ede5;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 24px;
  line-height: 1.35;
}

.team-profile__focus{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 24px 0;
  padding: 18px 0;
  list-style: none;
  border-top: 1px solid rgba(214,177,125,.34);
  border-bottom: 1px solid rgba(214,177,125,.34);
  color: #f2ede5;
  font-weight: 700;
}

.team-profile__focus li::before{
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 9px 2px 0;
  background: var(--gold2);
}

.team-profile__link{
  color: #fff;
  font-weight: 800;
  border-bottom: 1px solid var(--gold2);
}

.team-page .staff-directory{
  margin-top: 26px;
  padding-top: 36px;
  padding-bottom: 54px;
  border: 1px solid rgba(121,85,47,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.42);
}

.staff-directory__header{
  max-width: 620px;
  margin-bottom: 30px;
}

.staff-directory__header h2{
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 34px;
  line-height: 1.12;
}

.staff-directory__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.staff-member{
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(121,85,47,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 26px rgba(6,29,47,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.staff-member:last-child{
  border-bottom: 1px solid rgba(121,85,47,.16);
}

@media (hover: hover){
  .staff-member:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(6,29,47,.11);
  }
}

.staff-member__photo{
  width: 240px;
  height: 240px;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  margin: 0;
  border: 1px solid rgba(121,85,47,.22);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(6,29,47,.12);
}

.staff-member h3{
  margin: 0 0 4px;
  color: var(--navy);
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 23px;
  line-height: 1.1;
}

.staff-member .staff-member__role{
  margin: 0;
  color: rgba(6,29,47,.72);
  font-size: 14px;
  font-weight: 700;
}

.staff-member .staff-member__bio{
  margin: 12px 0 14px;
  color: rgba(6,29,47,.8);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.staff-member .staff-member__bio + .staff-member__bio{
  margin-top: 0;
}

.staff-member__bio-toggle{
  display: inline-block;
  margin-top: 14px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid var(--gold2);
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.team-profile__bio-toggle{
  display: inline-block;
  margin-top: 4px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid var(--gold2);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.staff-member.has-collapsible-bio:not(.is-bio-expanded) .staff-member__bio-preview{
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.staff-member.has-collapsible-bio:not(.is-bio-expanded) .staff-member__bio-group,
.team-profile.has-collapsible-bio:not(.is-bio-expanded) .team-profile__bio-group{
  display: none;
}

.team-page .team-support{
  max-width: 1040px;
  padding: 38px 42px 42px;
  background: var(--navy);
  color: #f2ede5;
  border-bottom: 0;
}

.team-support .team-profile__eyebrow{
  color: #d6b17d;
}

.team-support h2{
  max-width: 620px;
  margin: 0 0 12px;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-size: 34px;
  line-height: 1.12;
}

.team-support > p:last-child{
  max-width: 720px;
  margin: 0;
  color: rgba(242,237,229,.84);
  line-height: 1.6;
}

/* FOOTER */
.site-footer{
  background: var(--navy);
  border-top: 1px solid rgba(167,124,69,.4);
  padding: 18px 16px 24px;
  color: #f2ede5;
}

.site-footer__inner{
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
  text-align: center;
}

.site-footer a{ color: inherit; }

.site-footer__brand{
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-grid;
  grid-template-columns: 30px auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 1px;
}

.site-footer__brand::after{
  content: "Navigating hardship. Pursuing justice.";
  grid-column: 2;
  color: rgba(242,237,229,.7);
  font-family: "Source Sans 3","Helvetica Neue",Arial,sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.25;
}

html[lang="es"] .site-footer__brand::after{
  content: "Superando adversidades. Buscando justicia.";
}

.footer-logo{
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(143,100,44,.36);
  background: var(--parchment);
}

.site-footer__meta{
  font-size: 13px;
  opacity: .85;
}

.site-footer__links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: 13px;
}

.site-footer__disclaimer{
  font-size: 12px;
  opacity: .78;
  max-width: 860px;
  margin: 0 auto;
}

.mobile-sticky-cta{
  display: none;
}

/* CTA */
.cta{
  background: linear-gradient(180deg,var(--navy),var(--navy2));
  color:#fff;
  padding: 18px 16px 22px;
  text-align:center;
}

.cta h3{
  margin: 0 0 8px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.cta p{
  margin: 0 auto 14px;
  max-width: 420px;
  opacity:.9;
}

.cta__buttons{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
}

/* RESPONSIVE */
@media (max-width: 720px){
  body{ padding-bottom: 74px; }
  .topbar__inner{ flex-direction: column; gap: 8px; }
  .topbar__right{ justify-items: center; }
  .topbar__tools{
    display: flex;
    margin: 2px 0 4px;
  }
  .topbar__tools > a:not(.social-link){
    display: none;
  }
  .topbar__socials{
    gap: 10px;
  }
  .topbar__tools .social-link{
    box-sizing: content-box;
    width: 24px;
    height: 24px;
    padding: 8px;
  }
  .topbar__nav{ flex-wrap: wrap; justify-content: center; }

  .hero{ margin: 0 auto; border-radius: 0; max-width: none; }
  .hero__media{ height: 520px; background-position: 0% 10%; background-size: 120%; }
  .hero__overlay{
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(5,12,20,0) 0%,
      rgba(5,12,20,0) 38%,
      rgba(5,12,20,.28) 72%,
      rgba(5,12,20,.55) 100%
    );
  }
  .hero__content{ padding: 16px 14px 70px; max-width: none; justify-content: flex-end; }
  .hero__card{
    padding: 0;
    background: transparent;
    border: none;
  }
  .landing-page .hero__image{
    height: 300px;
    background-position: center 18%;
  }
  .landing-page .hero{
    display: block;
  }
  .landing-page .hero__content{
    padding: 0;
  }
  .landing-page .hero__card{
    width: calc(100% - 28px);
    padding: 24px 0 26px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .landing-page .hero__brand,
  .landing-page .hero__tagline{ grid-column: auto; }
  .landing-page .hero__seal{
    grid-column: auto;
    grid-row: auto;
    width: 116px;
    height: 116px;
    padding: 0;
  }
  .landing-page .hero h1,
  .landing-page .hero__summary{
    grid-column: auto;
  }
  .landing-page .hero h1{ font-size: 30px; }
  .hero h1{ font-size: 22px; }
  .hero p{ font-size: 13px; margin-bottom: 10px; }
  .hero__note{ font-size: 16px; }
  .panel.panel--tight{
    padding: 10px 12px;
    margin-bottom: 8px;
  }
  .authority-card h2{ font-size: 24px; }
  .panel--tight + .hero{ margin-top: 8px; }
  .panel{ padding: 16px 14px 20px; }
  .btn{ width: 100%; justify-content:center; }
  .hero__actions, .cta__buttons{ gap: 8px; }
  .iconCards,
  .panel .iconCards{ grid-template-columns: 1fr; }
  .landing-page .panel .iconCards{ grid-template-columns: 1fr; }
  .landing-page .authority-card--stats{
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(198,173,123,.34);
  }
  .landing-page .authority-card h2{ font-size: 30px; }
  .landing-page .panel{
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .landing-page .panel__header{
    margin-top: 30px;
  }
  .landing-page .service-areas ul{ grid-template-columns: 1fr 1fr; }
  .about-visual{
    grid-template-columns: 1fr;
    margin: 14px auto 24px;
  }
  .about-visual__photo{
    height: auto;
  }
  .about-visual__brand{
    padding: 20px;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 18px;
    text-align: left;
  }
  .about-visual__brand img{
    width: 90px;
    height: 90px;
    grid-row: 1 / span 2;
  }
  .about-visual__brand h1{
    margin: 0;
    align-self: end;
    font-size: 30px;
  }
  .about-visual__brand p{
    margin: 0;
    align-self: start;
    font-size: 10px;
  }
  .practice-mark{
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .service-detail__header{
    margin-bottom: 26px;
    padding: 26px 20px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
  }
  .service-detail__header > img{
    width: 82px;
    height: 82px;
  }
  .service-detail__header h1{
    font-size: 30px;
  }
  .service-detail__lead{
    font-size: 15px;
  }
  .team-page .team-profile{
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 20px;
  }
  .team-profile--founder .team-profile__portrait{
    float: none;
    width: 100%;
    margin: 0 0 28px;
  }
  .team-page .team-profile,
  .team-page .staff-directory,
  .team-page .team-support{
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .team-page .team-profile--associate{
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 20px;
  }
  .team-profile--associate .team-profile__portrait{
    grid-column: 1;
    grid-row: 1;
  }
  .team-profile--associate .team-profile__content{
    grid-column: 1;
    grid-row: 2;
  }
  .team-profile__portrait{
    aspect-ratio: 4 / 5;
  }
  .team-profile__content h1,
  .team-profile__content h2{ font-size: 38px; }
  .team-profile__focus{ grid-template-columns: 1fr; }
  .staff-directory__grid{ grid-template-columns: 1fr; gap: 14px; }
  .staff-member{
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
  }
  .staff-member__photo{
    width: 220px;
    height: 220px;
  }
  .staff-directory__header h2{ font-size: 30px; }
  .team-page .team-support{ padding: 30px 22px 34px; }
  .form__grid{ grid-template-columns: 1fr; }
  .triage-actions .btn{ width: 100%; }

  .mobile-sticky-cta{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(245,243,239,.96);
    border-top: 1px solid rgba(15,35,54,.14);
    backdrop-filter: blur(6px);
  }

  .mobile-sticky-cta .btn{
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
  }
}

@media (max-width: 420px){
  .hero__media{ height: 440px; background-position: 0% 10%; background-size: 120%; }
  .hero p{ font-size: 14px; }
  .panel__header h1,
  .panel__header h2{ font-size: 16px; }
  .step__text{ font-size: 12px; }
  .staff-member{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .staff-member__photo{
    width: 100%;
    height: auto;
  }
}

@media (min-width: 900px){
  body{
    background: var(--paper);
  }
  main{ max-width: 1080px; margin: 0 auto; padding: 10px 24px 40px; }
  body.team-page main{
    max-width: none;
    padding: 10px 0 40px;
  }
  .team-page .team-profile,
  .team-page .staff-directory,
  .team-page .team-support{
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: max(24px, calc((100vw - 1080px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1080px) / 2 + 24px));
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .hero{
    max-width: 1040px;
    margin: 28px auto 18px;
    border-radius: 0;
  }
  .hero__media{ height: 440px; background-position: 0% 24%; background-size: 115%; }
  .hero__content{ padding: 36px 34px 84px; }
  .hero h1{ font-size: clamp(32px, 3.2vw, 44px); }
  .hero p{ font-size: 16px; }
  .hero__actions .btn{ padding: 12px 18px; }

  .panel{
    max-width: 1040px;
    margin: 0 auto 18px;
    border-radius: 0;
    padding: 24px 28px 30px;
  }

  .panel.panel--tight{
    max-width: 1040px;
    margin: 0 auto 12px;
    padding: 12px 18px;
    border-radius: 0;
  }

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

  .steps{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .step{ flex-direction: column; align-items: flex-start; }

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

  .authority-grid{
    grid-template-columns: 1.15fr .85fr;
    align-items: stretch;
  }

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

  .cta{
    max-width: 1040px;
    margin: 0 auto 30px;
    border-radius: 0;
    padding: 26px 28px 32px;
  }

  body:not(.landing-page):not(.team-page) main{
    max-width: none;
    padding: 18px 0 40px;
  }

  body:not(.landing-page):not(.team-page) main > .panel{
    width: 100%;
    max-width: none;
    margin: 0 0 18px;
    padding-left: max(24px, calc((100vw - 1080px) / 2 + 24px));
    padding-right: max(24px, calc((100vw - 1080px) / 2 + 24px));
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: rgba(255,255,255,.24);
  }

  body:not(.landing-page):not(.team-page) main > .panel:nth-child(even){
    background: rgba(255,255,255,.38);
  }
}
