@font-face {
  font-family: 'Alegreya';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('../assets/fonts/alegreya-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Alegreya';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('../assets/fonts/alegreya-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Alegreya';
  font-style: italic;
  font-weight: 500;
  font-display: block;
  src: url('../assets/fonts/alegreya-500-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Jakarta';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../assets/fonts/jakarta-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Jakarta';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('../assets/fonts/jakarta-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Jakarta';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('../assets/fonts/jakarta-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Jakarta';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('../assets/fonts/jakarta-700-normal.woff2') format('woff2');
}

:root {
  --ink: #14171b;
  --charcoal: #363638;
  --slate: #20252c;
  --steel: #3b4451;
  --accent: #3eb0f1;
  --accent-deep: #1a7cb8;
  --bone: #f4f6f7;
  --paper: #fff;
  --body: #4a5560;
  --hairline: rgba(255, 255, 255, 0.14);
  --wrap: 95%;
  --pad: 45px;
  --container-max: 1680px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 140px;
  --serif: 'Alegreya', Georgia, serif;
  --sans: 'Jakarta', 'Helvetica Neue', Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  color: var(--charcoal);
  margin: 0;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 1.15em;
}

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

.container {
  width: var(--wrap);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- utility bar ---------- */
.utility {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  border-bottom: 1px solid var(--hairline);
}

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
}

.utility__cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #fff;
}

.utility__cred svg {
  flex: none;
}

.utility__right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.utility a:hover {
  color: var(--accent);
}

/* ---------- header ---------- */
.header {
  background: var(--ink);
  position: relative;
  z-index: 20;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 96px;
  position: relative;
}

.header__logo {
  flex-shrink: 0;
  display: block;
}

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

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  cursor: pointer;
  z-index: 5;
}

.header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

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

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

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

.header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.header__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s ease;
}

.header__nav-link:hover::after,
.header__nav-link[aria-current]::after {
  right: 0;
}

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 30px;
  border-left: 1px solid var(--hairline);
  flex-shrink: 0;
}

.header__tel {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.header__tel:hover {
  color: var(--accent);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 18px 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #0d1216;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  max-width: 100%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: #5cc0f7;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #0d1216;
}

.btn--sm {
  font-size: 15px;
  padding: 13px 24px;
  font-weight: 600;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.42);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost-dark {
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1.5px #c9d2d9;
}

.btn--ghost-dark:hover {
  background: rgba(0, 0, 0, 0.04);
}

.btn--dark {
  background: var(--charcoal);
  color: #fff;
}

.btn--dark:hover {
  background: #4a4a4d;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink) url('../assets/images/bg-hero.jpg') center / cover no-repeat;
  overflow: hidden;
  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::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(14, 17, 21, 0.96) 0%,
    rgba(14, 17, 21, 0.9) 38%,
    rgba(20, 25, 31, 0.62) 62%,
    rgba(20, 25, 31, 0.34) 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(56% 60% at 60% 56%, rgba(126, 157, 184, 0.3), rgba(20, 25, 31, 0) 72%);
}

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

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  max-width: 55%;
  padding: clamp(16px, 2.5vw, 38px) clamp(12px, 2vw, 28px) 0 0;
}

.hero__title {
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.015em;
}

.hero__subtitle {
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  margin-top: 16px;
}

.hero__quote {
  margin: 22px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.hero__cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

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

.hero__tel {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  font-family: var(--sans);
}

.hero__tel span {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin-top: 3px;
}

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

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--slate);
  padding: 30px 0;
  border-top: 2px solid var(--accent);
}

.accolades__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.accolades__item {
  padding: 6px 28px;
  border-left: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  min-width: 0;
}

.accolades__item:first-child {
  border-left: 0;
  padding-left: 0;
}

.accolades__img {
  width: auto;
  max-width: 100%;
  opacity: 0.9;
}

.accolades__img--tall {
  height: 76px;
}

.accolades__img--mid {
  height: 62px;
}

.accolades__img--short {
  height: 34px;
}

.accolades__img--badge {
  height: 46px;
}

/* ---------- about ---------- */
.about {
  padding: 96px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 66px;
  align-items: start;
}

.about__media {
  position: relative;
  min-width: 0;
}

.about__image {
  width: 100%;
  border-radius: 2px;
}

.about__media::after {
  content: '';
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 120px;
  height: 120px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.about__title {
  font-size: clamp(30px, 2.5vw, 40px);
}

.about__lede {
  font-size: 19px;
  color: var(--charcoal);
  margin-top: 22px;
}

.about__body {
  margin-top: 6px;
}

.about__callout {
  margin-top: 30px;
  background: var(--bone);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  font-size: 17px;
  color: var(--charcoal);
}

.about__callout strong {
  font-weight: 600;
}

.about__cta {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- practice ---------- */
.practice {
  background: var(--bone);
  padding: 92px 0;
}

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

.section-head__title {
  font-size: clamp(28px, 2.4vw, 38px);
}

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

.section-head__sub {
  margin-top: 14px;
  font-size: 17px;
}

.section-head__sub a {
  color: var(--accent-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(26, 124, 184, 0.35);
}

.section-head__sub--light {
  color: rgba(255, 255, 255, 0.62);
}

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

.practice-card {
  background: var(--paper);
  border: 1px solid #e2e7ea;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.practice-card:hover {
  box-shadow: 0 18px 40px -22px rgba(20, 23, 27, 0.45);
  transform: translateY(-3px);
}

.practice-card__img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
}

.practice-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practice-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 27, 0) 45%, rgba(20, 23, 27, 0.45) 100%);
}

.practice-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.practice-card__title {
  font-size: 23px;
}

.practice-card__text {
  font-size: 15.5px;
  line-height: 1.6;
  margin: 10px 0 0;
}

.practice-card__link {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e6eaed;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent-deep);
}

.practice-card:hover .practice-card__link {
  color: var(--charcoal);
}

/* ---------- case results ---------- */
.results {
  background: var(--slate) url('../assets/images/bg-results.jpg') center / cover no-repeat;
  padding: 92px 0;
  color: #fff;
  position: relative;
}

.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 21, 26, 0.9), rgba(18, 21, 26, 0.82));
}

.results .container {
  position: relative;
}

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

.results__item {
  padding: 8px 30px;
  border-left: 1px solid var(--hairline);
  min-width: 0;
}

.results__item:first-child {
  border-left: 0;
  padding-left: 0;
}

.results__verdict {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
}

.results__case {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16.5px;
  color: var(--accent);
  margin-top: 10px;
}

.results__link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
}

.results__link:hover {
  color: #fff;
  border-color: var(--accent);
}

/* ---------- values ---------- */
.values {
  padding: 92px 0;
}

.values__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0 60px;
  margin-top: 20px;
}

.values__item {
  display: flex;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid #e6eaed;
  min-width: 0;
}

.values__mark {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.values__title {
  font-size: 20px;
  line-height: 1.3;
}

.values__text {
  font-size: 15.5px;
  margin: 8px 0 0;
}

/* ---------- testimonial ---------- */
.testimonial {
  background: var(--charcoal);
  padding: 88px 0;
  color: #fff;
}

.testimonial__inner {
  max-width: 1100px;
}

.testimonial__eyebrow {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 35px);
  line-height: 1.32;
  color: #fff;
  margin-top: 18px;
}

.testimonial__body {
  margin-top: 22px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.74);
  max-width: 800px;
}

.testimonial__name {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

.testimonial__stars {
  display: flex;
  gap: 5px;
  margin-top: 26px;
}

/* ---------- contact ---------- */
.contact {
  padding: 92px 0 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: start;
}

.contact__title {
  font-size: clamp(28px, 2.4vw, 38px);
}

.contact__list {
  margin-top: 32px;
  display: grid;
  gap: 22px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__ico {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__label {
  font-size: 13px;
  font-weight: 600;
  color: #8b98a3;
  letter-spacing: 0.03em;
}

.contact__value {
  font-size: 17px;
  color: var(--charcoal);
  font-weight: 500;
}

.contact__value--big {
  font-size: 24px;
  font-weight: 700;
}

.contact-form {
  background: var(--bone);
  border: 1px solid #e2e7ea;
  padding: 36px;
}

.contact-form__title {
  font-size: 22px;
}

.contact-form__fine {
  font-size: 14px;
  margin: 8px 0 24px;
}

.contact-form__fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

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

label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
}

input,
select,
textarea {
  min-width: 0;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid #d3dae0;
  border-radius: 3px;
  padding: 0 14px;
  height: 40px;
  width: 100%;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8b98a3 50%),
    linear-gradient(135deg, #8b98a3 50%, transparent 50%);
  background-position: calc(100% - 19px) 17px, calc(100% - 14px) 17px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

textarea {
  height: 120px;
  padding: 11px 14px;
  resize: vertical;
  line-height: 1.55;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(62, 176, 241, 0.18);
}

.contact-form__submit {
  width: 100%;
  margin-top: 22px;
}

.contact-form__disclaimer {
  font-size: 12.5px;
  color: #8b98a3;
  margin: 16px 0 0;
  line-height: 1.55;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  margin-top: 92px;
  padding: 64px 0 0;
  font-size: 15px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--hairline);
}

.footer__logo {
  width: 290px;
  max-width: 100%;
}

.footer__text {
  margin: 20px 0 0;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.7;
}

.footer__heading {
  color: #fff;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.footer__links {
  display: grid;
  gap: 11px;
}

.footer__links a:hover,
.footer__address a:hover {
  color: var(--accent);
}

.footer__address {
  font-style: normal;
  line-height: 1.75;
}

.footer__tel {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 24px 0 34px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  flex-wrap: wrap;
}

/* ---------- progressive header scaling before hamburger ---------- */
@media (max-width: 1440px) {
  .header__inner {
    gap: 22px;
  }

  .header__nav,
  .header__nav-list {
    gap: 26px;
  }

  .header__cta {
    gap: 16px;
    padding-left: 22px;
  }

  .header__nav-link {
    font-size: clamp(14px, 1.1vw, 16px);
  }

  .header__tel {
    font-size: clamp(16px, 1.35vw, 20px);
  }

  .btn--sm {
    font-size: clamp(13px, 1.05vw, 15px);
    padding: 12px 20px;
  }
}

@media (max-width: 1320px) {
  .header__nav,
  .header__nav-list {
    gap: 18px;
  }

  .header__cta {
    gap: 12px;
    padding-left: 16px;
  }

  .header__nav-link {
    font-size: 14px;
  }

  .header__tel {
    font-size: 16px;
  }

  .btn--sm {
    font-size: 13px;
    padding: 11px 16px;
  }
}

/* ---------- nav breakpoint: hamburger ---------- */
@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 12, 16, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .header.is-open .header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header__overlay[hidden] {
    display: none !important;
  }

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

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

  .header.is-open .header__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
    background: var(--ink);
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    padding: 84px 28px 40px;
    background: var(--slate);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
  }

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

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

  .header__nav-link {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--hairline);
    font-size: 16px;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
    padding-top: 8px;
  }

  .header__cta {
    display: none;
  }

  .hero__content {
    max-width: 56%;
  }

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

  .accolades__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .results__item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 980px) {
  :root {
    --pad: 28px;
    --wrap: 100%;
  }

  .btn {
    white-space: normal;
    font-size: 17px;
    padding: 16px 28px;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
  }

  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-top: 44px;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding-bottom: 18px;
  }

  .hero__visual {
    position: relative;
    right: auto;
    width: 78%;
    max-width: 420px;
    height: auto;
    margin: 0 auto;
    justify-content: center;
  }

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

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about__media {
    max-width: 420px;
  }

  .values__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .utility__inner {
    flex-wrap: wrap;
    padding-top: 9px;
    padding-bottom: 9px;
    gap: 6px 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: clamp(28px, 5vw, 40px) 0 0;
  }

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

@media (max-width: 640px) {
  .hero__actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    width: 100%;
    font-size: 16px;
    padding: 15px 22px;
  }
}

@media (max-width: 620px) {
  .header__inner {
    gap: 14px;
    min-height: 82px;
  }

  .practice__grid,
  .accolades__grid,
  .results__grid {
    grid-template-columns: 1fr;
  }

  .accolades__item {
    border-left: 0;
    padding: 16px 0;
    min-height: 0;
    border-bottom: 1px solid var(--hairline);
  }

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

  .results__item {
    border-left: 0;
    padding: 0 0 26px;
  }

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

  .contact-form {
    padding: 26px 22px;
  }

  .utility__right {
    gap: 16px;
  }

  .utility__right span {
    display: none;
  }

  .utility__cred {
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
