:root {
  --navy: #0a1c30;
  --navy-2: #12293f;
  --navy-3: #061423;
  --gold: #b58d2d;
  --gold-lt: #d8b45c;
  --tint: #edf1f5;
  --ink: #131a22;
  --body: #56626f;
  --line: rgba(10, 28, 48, 0.12);
  --serif: "Baskervville", Georgia, serif;
  --sans: "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pad: 45px;
  --container-max: 1824px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 140px;
}

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

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

body {
  margin: 0;
  background: #fff;
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.12;
}

h1,
h2 {
  font-family: var(--serif);
}

h3 {
  font-family: var(--sans);
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

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

/* ---------- container ---------- */
.container {
  width: 95%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- eyebrow rule ---------- */
.rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0 0 26px;
}

.rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  padding: 19px 40px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

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

.btn--gold:hover {
  background: var(--gold-lt);
  color: var(--navy);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

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

.btn--navy:hover {
  background: var(--gold);
}

.btn--sm {
  font-size: 16px;
  padding: 14px 30px;
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* ---------- utility bar ---------- */
.utility {
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.utility a:hover {
  color: #fff;
}

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

.utility__loc svg {
  flex: none;
  fill: var(--gold-lt);
}

/* ---------- header ---------- */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
}

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

.header__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  cursor: pointer;
  z-index: 4;
}

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

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

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

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

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

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

.header__nav-link {
  display: block;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  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(--gold);
  transition: right 0.22s ease;
}

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

.header__nav-extras {
  display: none;
}

.header__cta {
  flex: none;
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: clamp(13px, 1.05vw, 16px);
  padding: clamp(10px, 1vw, 14px) clamp(18px, 1.8vw, 30px);
  white-space: nowrap;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  background: var(--navy) url("../assets/images/bg-hero.jpg") center / cover no-repeat;
  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(
    100deg,
    rgba(6, 20, 35, 0.96) 0%,
    rgba(8, 24, 42, 0.88) 46%,
    rgba(10, 28, 48, 0.55) 74%,
    rgba(10, 28, 48, 0.42) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(52%, 760px);
  padding: clamp(12px, 2vw, 24px) clamp(0px, 1vw, 8px);
  min-width: 0;
}

.hero__title {
  color: #fff;
  font-size: clamp(58px, 7.4vw, 124px);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.hero__subtitle {
  color: #fff;
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 400;
  margin: 0 0 20px;
}

.hero__subtitle em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero__lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 52ch;
  margin: 0 0 30px;
}

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

.hero__tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.hero__tel small {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--gold-lt);
  text-transform: uppercase;
}

.hero__tel a:hover {
  color: var(--gold-lt);
}

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

.hero__glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 118%;
  height: 74%;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(181, 141, 45, 0.34),
    rgba(181, 141, 45, 0) 66%
  );
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--navy-2);
  border-top: 1px solid rgba(216, 180, 92, 0.28);
}

.accolades__inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 56px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.accolades__badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolades__badge img {
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.accolades__badge:hover img {
  opacity: 1;
}

.accolades__badge--seal img {
  height: 84px;
}

.accolades__badge--stack img {
  height: 66px;
}

.accolades__badge--wide img {
  height: 42px;
}

.accolades__badge--mark img {
  height: 58px;
}

/* ---------- generic section ---------- */
.section {
  padding: 104px 0;
}

.section--tint {
  background: var(--tint);
}

.section__head {
  max-width: 66ch;
  margin-bottom: 52px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__title {
  font-size: clamp(34px, 3.6vw, 52px);
}

.section__sub {
  margin-top: 18px;
  font-size: 18px;
}

/* ---------- about / two column ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 76px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 11 / 9;
}

.about__media::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 46%;
  height: 46%;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  pointer-events: none;
}

.about__title {
  font-size: clamp(34px, 3.6vw, 52px);
  margin-bottom: 26px;
}

.about__body {
  font-size: 17.5px;
  max-width: 62ch;
}

.about__actions {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- practice areas ---------- */
.practice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.practice__card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.practice__card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.practice__card img {
  width: 100%;
  height: auto;
  aspect-ratio: 385 / 344;
  object-fit: cover;
}

.practice__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.practice__body h3 {
  font-family: var(--serif);
  font-size: 25px;
  color: var(--ink);
  font-weight: 400;
}

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

.practice__more {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.practice__card:hover .practice__more {
  color: var(--navy);
}

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

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 35, 0.93), rgba(6, 20, 35, 0.88));
}

.results .container {
  position: relative;
}

.results__title {
  color: #fff;
  font-size: clamp(34px, 3.6vw, 52px);
}

.results__sub {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
  font-size: 18px;
}

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

.results__card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.results__card:hover {
  background: rgba(216, 180, 92, 0.1);
  border-color: var(--gold);
}

.results__amount {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold-lt);
  line-height: 1.05;
}

.results__amount small {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 9px;
}

.results__desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  flex: 1;
}

.results__more {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
}

.results__disclaimer {
  margin-top: 34px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 96ch;
}

/* ---------- values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.values__card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 44px 36px 38px;
}

.values__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.values__card h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 400;
}

.values__card p {
  font-size: 16px;
}

.values__more {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.testimonial__inner {
  max-width: 1100px;
  text-align: center;
}

.testimonial__title {
  color: #fff;
  font-size: clamp(32px, 3.2vw, 46px);
  margin-bottom: 34px;
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.94);
  font-style: italic;
  margin: 0 auto 30px;
  max-width: 78ch;
}

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

.testimonial__by {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 26px;
}

.stars svg {
  width: 19px;
  height: 19px;
  fill: var(--gold-lt);
}

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 76px;
  align-items: start;
}

.contact__title {
  font-size: clamp(34px, 3.6vw, 50px);
  margin-bottom: 24px;
}

.contact__side p {
  font-size: 17.5px;
  max-width: 52ch;
}

.contact__meta {
  margin-top: 34px;
  display: grid;
  gap: 20px;
}

.contact__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink);
}

.contact__row svg {
  flex: none;
  width: 22px;
  height: 22px;
  fill: var(--gold);
  margin-top: 3px;
}

.contact__row b {
  display: block;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 3px;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px;
  display: grid;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid rgba(10, 28, 48, 0.24);
  border-radius: 2px;
}

.field select {
  appearance: none;
  background-image: url("../assets/images/icon-select-chevron.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 38px;
}

.field textarea {
  height: 120px;
  padding: 12px 14px;
  line-height: 1.6;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(181, 141, 45, 0.16);
}

.form__note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--body);
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy-3);
  color: rgba(255, 255, 255, 0.66);
  padding: 74px 0 0;
  font-size: 15.5px;
}

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

.footer__logo img {
  width: 290px;
  height: auto;
  margin-bottom: 24px;
  max-width: none;
}

.footer__blurb {
  max-width: 46ch;
  font-size: 15.5px;
}

.footer h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 22px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer a:hover {
  color: #fff;
}

.footer__tel {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- responsive ---------- */
@media (max-width: 1280px) {
  .hero__visual {
    width: 44%;
  }

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

  .about,
  .contact {
    gap: 48px;
  }
}

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

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(6, 20, 35, 0.55);
  }

  .header__overlay[hidden] {
    display: none;
  }

  .header__inner {
    z-index: 2;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: block;
  }

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

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

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

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

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

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

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

  .header__nav-extras .btn {
    width: 100%;
    white-space: normal;
  }

  .header__nav-phone {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
  }

  .header__nav-phone small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }

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

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

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

  .accolades__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 56px;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
  }

  .hero__actions .btn {
    font-size: 18px;
    padding: 17px 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(36px, 6vw, 56px) clamp(20px, 4vw, 32px) 0;
  }

  .hero__inner {
    height: auto;
    display: block;
  }

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

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 320px;
    margin-top: 8px;
  }

  .hero__image {
    height: auto;
    max-height: 460px;
    margin: 0 auto;
  }

  .section,
  .results,
  .testimonial {
    padding: 70px 0;
  }

  .form {
    padding: 30px;
  }

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

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

  .container {
    width: 100%;
  }

  .utility .container {
    font-size: 12.5px;
    gap: 12px;
  }

  .utility__loc {
    display: none;
  }

  .header__logo img {
    width: 220px;
  }

  .practice,
  .results__grid,
  .form__row {
    grid-template-columns: 1fr;
  }

  .accolades__inner {
    gap: 30px 38px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .accolades__badge--seal img {
    height: 70px;
  }

  .accolades__badge--stack img {
    height: 56px;
  }

  .accolades__badge--wide img {
    height: 34px;
  }

  .accolades__badge--mark img {
    height: 48px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .hero__actions .btn {
    width: 100%;
    font-size: 18px;
    padding: 17px 28px;
  }

  .btn {
    width: 100%;
    font-size: 18px;
    padding: 17px 28px;
  }

  .about__actions .btn {
    width: auto;
  }

  .hero__tel {
    font-size: 24px;
  }
}

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