:root {
  --navy: #11253c;
  --navy-deep: #0a1728;
  --navy-mid: #1b3a5c;
  --brass: #b78b4c;
  --brass-lt: #d9b879;
  --brass-dk: #8e6b34;
  --cream: #f7f3ec;
  --cream-2: #efe8dc;
  --line: rgba(183, 139, 76, 0.32);
  --ink: #12202f;
  --body: #4e5866;
  --white: #fff;
  --pad: 45px;
  --display: "Marcellus", Georgia, serif;
  --sans: "Figtree", -apple-system, "Segoe UI", sans-serif;
  --site-chrome-height: 152px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
}

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  font-weight: 400;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.005em;
}

/* -------------------------------------------------------------------------- */
/* Eyebrow                                                                    */
/* -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--brass);
  flex: none;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--brass);
  flex: none;
}

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

.eyebrow--light::before,
.eyebrow--light::after {
  background: var(--brass-lt);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  background: var(--brass);
  color: #fff;
  border: 1px solid var(--brass);
  transition: 0.28s;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
}

.btn:hover {
  background: var(--brass-dk);
  border-color: var(--brass-dk);
}

.btn--primary {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
}

.btn svg {
  flex: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 7px;
}

.text-link:hover {
  color: var(--brass);
}

.text-link--flush {
  margin-top: 0;
}

/* -------------------------------------------------------------------------- */
/* Top bar                                                                    */
/* -------------------------------------------------------------------------- */

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  gap: 24px;
}

.topbar__address {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar__phone {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
}

.topbar__phone:hover {
  color: var(--brass-lt);
}

.topbar__badge {
  color: var(--brass-lt);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.18em;
}

/* -------------------------------------------------------------------------- */
/* Header & navigation                                                        */
/* -------------------------------------------------------------------------- */

.header {
  background: var(--navy);
  border-bottom: 1px solid rgba(183, 139, 76, 0.28);
  position: relative;
  z-index: 30;
}

.header.is-open {
  z-index: 100;
}

.header__overlay,
.header__overlay[hidden] {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  gap: 34px;
  min-width: 0;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 224px;
  height: auto;
  max-width: none;
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.header.is-open .header__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header.is-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header.is-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.header__nav-item {
  flex-shrink: 0;
}

.header__nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
  flex-shrink: 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--brass);
  transition: right 0.3s;
}

.header__nav-link:hover {
  color: #fff;
}

.header__nav-link:hover::after {
  right: 0;
}

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: 16px;
  padding: 15px 28px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  padding: clamp(24px, 4vw, 56px) 0 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center 45%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    97deg,
    rgba(10, 23, 40, 0.96) 0%,
    rgba(10, 23, 40, 0.9) 38%,
    rgba(12, 29, 50, 0.6) 60%,
    rgba(14, 33, 56, 0.34) 100%
  );
}

.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass-lt) 50%, var(--brass) 100%);
  z-index: 4;
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 55%);
  max-width: 660px;
  min-width: 0;
  padding-inline: clamp(4px, 2vw, 20px);
}

.hero__title {
  color: #fff;
  font-size: 57px;
  line-height: 1.1;
  margin: 20px 0;
}

.hero__title em {
  font-style: normal;
  color: var(--brass-lt);
}

.hero__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17.5px;
  line-height: 1.72;
  max-width: 610px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 32px;
  flex-wrap: nowrap;
}

.hero__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__phone-label {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-lt);
  font-weight: 600;
}

.hero__phone-number {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.hero__phone:hover .hero__phone-number {
  color: var(--brass-lt);
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.hero__image {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* -------------------------------------------------------------------------- */
/* Accolades strip                                                            */
/* -------------------------------------------------------------------------- */

.accolades {
  background: var(--navy-deep);
  padding: 38px 0 42px;
}

.accolades__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.accolades__label {
  font-family: var(--display);
  font-size: 19px;
  color: #fff;
  line-height: 1.3;
  width: 190px;
  flex: none;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding-right: 36px;
}

.accolades__kicker {
  display: block;
  color: var(--brass-lt);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.accolades__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex: 1;
  min-width: 0;
}

.accolades__seal {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolades__seal img {
  width: auto;
  opacity: 0.92;
  transition: opacity 0.3s;
}

.accolades__seal:hover img {
  opacity: 1;
}

.accolades__seal--million img {
  height: 82px;
}

.accolades__seal--trial img {
  height: 66px;
}

.accolades__seal--super img {
  height: 40px;
}

.accolades__seal--aaj img {
  height: 58px;
}

/* -------------------------------------------------------------------------- */
/* Section shell                                                              */
/* -------------------------------------------------------------------------- */

section {
  position: relative;
}

.section--large {
  padding: 104px 0;
}

.section-head {
  max-width: 760px;
}

.section-head--center {
  margin: 0 auto;
  text-align: center;
}

.section-head__title {
  font-size: 44px;
  margin: 22px 0 0;
}

.section-head__text {
  margin-top: 20px;
  font-size: 17.5px;
}

/* -------------------------------------------------------------------------- */
/* About                                                                      */
/* -------------------------------------------------------------------------- */

.about {
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.1fr);
  gap: 82px;
  align-items: center;
}

.about__media {
  position: relative;
  padding-bottom: 78px;
  padding-right: 58px;
}

.about__photo--main {
  border: 1px solid var(--line);
}

.about__photo--main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about__photo--inset {
  position: absolute;
  right: 0;
  bottom: 130px;
  width: 60%;
  border: 9px solid var(--cream);
  box-shadow: 0 22px 44px rgba(17, 37, 60, 0.16);
}

.about__photo--inset img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about__stat {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--navy);
  color: #fff;
  padding: 26px 34px;
  border-left: 5px solid var(--brass);
  min-width: 270px;
}

.about__stat-value {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  color: var(--brass-lt);
  font-weight: 400;
}

.about__stat-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.about__title {
  font-size: 43px;
  margin: 22px 0 26px;
}

.about__content p + p {
  margin-top: 20px;
}

.about__pullquote {
  margin: 34px 0 0;
  padding: 26px 0 26px 32px;
  border-left: 3px solid var(--brass);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
}

/* -------------------------------------------------------------------------- */
/* Practice areas                                                             */
/* -------------------------------------------------------------------------- */

.practice {
  background: var(--white);
}

.practice__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 58px;
}

.card {
  background: var(--white);
  border: 1px solid var(--cream-2);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 24px 50px rgba(17, 37, 60, 0.14);
  transform: translateY(-6px);
  border-color: var(--line);
}

.card__media {
  position: relative;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  transition: 0.55s;
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 40, 0) 45%, rgba(10, 23, 40, 0.5) 100%);
}

.card__body {
  padding: 30px 30px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-size: 23px;
  margin-bottom: 13px;
}

.card__text {
  font-size: 15.5px;
  line-height: 1.7;
  flex: 1;
}

.card__more {
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 9px;
}

.practice__foot {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------------------- */
/* Results                                                                    */
/* -------------------------------------------------------------------------- */

.results {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
}

.results__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-results.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.results__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 40, 0.9), rgba(10, 23, 40, 0.94));
}

.results__inner {
  position: relative;
  z-index: 2;
}

.results .section-head__title {
  color: #fff;
}

.results .section-head__text {
  color: rgba(255, 255, 255, 0.72);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 58px;
}

.verdict {
  border: 1px solid rgba(183, 139, 76, 0.4);
  background: rgba(255, 255, 255, 0.045);
  padding: 44px 36px;
  text-align: center;
  backdrop-filter: blur(2px);
  transition: 0.3s;
}

.verdict:hover {
  background: rgba(183, 139, 76, 0.12);
  border-color: var(--brass-lt);
}

.verdict__amount {
  display: block;
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  color: var(--brass-lt);
  letter-spacing: -0.01em;
  font-weight: 400;
}

.verdict__rule {
  display: block;
  width: 46px;
  height: 1px;
  background: var(--brass);
  margin: 22px auto;
  font-style: normal;
}

.verdict__label {
  display: block;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.results__note {
  margin-top: 44px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
}

/* -------------------------------------------------------------------------- */
/* Values                                                                     */
/* -------------------------------------------------------------------------- */

.values {
  background: var(--cream);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 58px;
}

.value-item {
  background: var(--white);
  padding: 42px 32px 36px;
  border-top: 3px solid var(--brass);
  position: relative;
}

.value-item__num {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--brass);
  display: block;
  margin-bottom: 18px;
}

.value-item__title {
  font-size: 22px;
  line-height: 1.28;
  margin-bottom: 13px;
}

.value-item__text {
  font-size: 15.5px;
  line-height: 1.7;
}

.value-item__more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.value-item__more:hover {
  color: var(--brass);
}

/* -------------------------------------------------------------------------- */
/* Testimonial                                                                */
/* -------------------------------------------------------------------------- */

.testimonial {
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-testimonial.jpg");
  background-size: cover;
  background-position: center 40%;
  opacity: 0.42;
}

.testimonial__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 37, 60, 0.9), rgba(10, 23, 40, 0.92));
}

.testimonial__inner {
  position: relative;
  z-index: 2;
}

.testimonial__mark {
  font-family: var(--display);
  font-size: 88px;
  line-height: 0.6;
  color: var(--brass);
  display: block;
  margin-bottom: 26px;
}

.testimonial__title {
  color: #fff;
  font-size: 38px;
  margin-bottom: 34px;
}

.testimonial__quote {
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.6;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial__cite {
  display: block;
  margin-top: 30px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Contact                                                                    */
/* -------------------------------------------------------------------------- */

.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 0;
  border: 1px solid var(--cream-2);
}

.contact__info {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  padding: 66px 54px;
}

.contact__title {
  color: #fff;
  font-size: 35px;
  margin: 20px 0 22px;
}

.contact__row {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact__row:first-of-type {
  margin-top: 14px;
}

.contact__icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}

.contact__row-label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact__row-value {
  color: #fff;
  font-size: 16.5px;
  line-height: 1.6;
}

.contact__phone {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  display: block;
}

.contact__phone:hover {
  color: var(--brass-lt);
}

.contact__form-panel {
  padding: 66px 54px;
  background: var(--cream);
}

.contact__form-title {
  font-size: 29px;
  margin-bottom: 8px;
}

.contact__form-sub {
  font-size: 15.5px;
  margin-bottom: 30px;
}

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

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.form__input {
  height: 40px;
  border: 1px solid #d6cdbe;
  background: #fff;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  border-radius: 0;
}

.form__textarea {
  height: 120px;
  border: 1px solid #d6cdbe;
  background: #fff;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  resize: vertical;
  border-radius: 0;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(183, 139, 76, 0.14);
}

.form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.form__disclaimer {
  font-size: 12.5px;
  line-height: 1.6;
  color: #6c7684;
  flex: 1;
  min-width: 220px;
}

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

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.62);
  padding: 78px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 300px;
  max-width: none;
  margin-bottom: 26px;
}

.footer__text {
  font-size: 15.5px;
  line-height: 1.8;
}

.footer__heading {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 22px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__link {
  font-size: 15.5px;
}

.footer__link:hover,
.footer__phone:hover {
  color: var(--brass-lt);
}

.footer__phone {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-top: 6px;
}

.footer__disclaimer {
  padding-bottom: 26px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  max-width: 1100px;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 0 34px;
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.44);
}

/* -------------------------------------------------------------------------- */
/* Responsive — header scaling before hamburger                               */
/* -------------------------------------------------------------------------- */

@media (max-width: 1500px) {
  .header__inner {
    gap: 26px;
  }

  .header__nav-list {
    gap: 22px;
  }
}

@media (max-width: 1400px) {
  .header__nav-link {
    font-size: 15px;
  }

  .header__nav-list {
    gap: 18px;
  }

  .header__cta .btn {
    font-size: 15px;
    padding: 14px 24px;
  }

  .hero__title {
    font-size: 50px;
  }

  .about__grid {
    gap: 56px;
  }
}

@media (max-width: 1280px) {
  .header__nav-link {
    font-size: 14px;
    letter-spacing: 0.03em;
  }

  .header__nav-list {
    gap: 14px;
  }

  .header__cta .btn {
    font-size: 14px;
    padding: 13px 20px;
  }

  .header__inner {
    gap: 20px;
  }
}

/* Hamburger / slide-in panel */
@media (max-width: 1200px) {
  .header.is-open .header__overlay:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 23, 40, 0.62);
  }

  .header__inner {
    position: relative;
    z-index: 2;
    height: 88px;
  }

  .header__toggle {
    display: flex;
    margin-left: auto;
  }

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin-left: 0;
    padding: 84px 28px 40px;
    background: var(--navy);
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid rgba(183, 139, 76, 0.28);
  }

  .header.is-open .header__nav {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav-link {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header__nav-link::after {
    display: none;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(183, 139, 76, 0.28);
  }

  .header__nav-phone {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
  }

  .header__nav-phone:hover {
    color: var(--brass-lt);
  }

  .header__cta {
    display: none;
  }
}

@media (max-width: 1140px) {
  :root {
    --pad: 32px;
  }

  .hero__content {
    width: 58%;
  }

  .hero__visual {
    width: 48%;
  }

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

  .accolades__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .accolades__label {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0 0 18px;
    width: 100%;
  }

  .accolades__row {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .topbar__address {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .about__grid,
  .contact__grid,
  .results__grid {
    grid-template-columns: 1fr;
  }

  .about__media {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 34px;
  }

  .about__photo--inset {
    display: none;
  }

  .about__stat {
    position: relative;
    margin-top: -1px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .section--large {
    padding: 76px 0;
  }

  .section-head__title,
  .about__title {
    font-size: 34px;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
    font-size: 18px;
    padding: 16px 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: clamp(32px, 6vw, 48px) 0 0;
  }

  .hero__inner {
    height: auto;
    order: 1;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding-inline: clamp(4px, 2vw, 12px);
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    order: 2;
    width: 88%;
    height: auto;
    margin: 26px auto -1px;
    align-self: center;
  }

  .hero__image {
    height: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 20px;
  }

  .topbar__badge {
    display: none;
  }

  .topbar__meta {
    gap: 0;
  }

  .practice__grid,
  .values__grid,
  .form {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 33px;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .accolades__row {
    flex-wrap: wrap;
    gap: 26px;
  }

  .accolades__seal {
    flex: 0 0 44%;
  }

  .accolades__seal--million img {
    height: 70px;
  }

  .accolades__seal--trial img {
    height: 56px;
  }

  .accolades__seal--super img {
    height: 34px;
  }

  .accolades__seal--aaj img {
    height: 48px;
  }

  .contact__info,
  .contact__form-panel {
    padding: 44px 24px;
  }

  .testimonial__quote {
    font-size: 22px;
  }

  .testimonial__title {
    font-size: 29px;
  }

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

  .footer__logo {
    width: min(300px, 100%);
  }
}
