:root {
  --navy: #00235d;
  --navy-deep: #001736;
  --navy-mid: #0a3178;
  --lime: #c1d72e;
  --lime-dk: #a8bc1f;
  --bone: #f5f4ef;
  --bone-2: #edebe3;
  --ink: #14192b;
  --slate: #5a6478;
  --line: rgba(0, 35, 93, 0.14);
  --ff-d: "Lora", Georgia, serif;
  --ff-b: "Sora", -apple-system, "Segoe UI", sans-serif;
  --pad: 45px;
  --header-min-height: 104px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 104px;
}

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

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

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

body.body--nav-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--ff-d);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.15em;
}

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

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

.eyebrow {
  font-family: var(--ff-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime-dk);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

.eyebrow::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 70px;
  background: var(--lime);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-b);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--lime);
  color: var(--navy);
  white-space: nowrap;
  max-width: 100%;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1),
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}

.btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

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

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

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

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  border-bottom: 1px solid rgba(193, 215, 46, 0.28);
}

.header__bar {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  min-height: var(--header-min-height);
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__logo {
  width: 290px;
  flex-shrink: 0;
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin-left: auto;
}

.header__nav-link {
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__nav-close {
  display: none;
}

.header__nav-extras {
  display: none;
}

.header__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  padding-left: clamp(16px, 2vw, 30px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.header__phone-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 5px;
}

.header__phone-number {
  font-family: var(--ff-d);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header__toggle {
  display: none;
  position: relative;
  margin-left: auto;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.header__toggle-bar {
  display: block;
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition:
    transform 0.3s,
    opacity 0.3s,
    top 0.3s;
}

.header__toggle-bar:nth-child(1) {
  top: 17px;
}

.header__toggle-bar:nth-child(2) {
  top: 23px;
}

.header__toggle-bar:nth-child(3) {
  top: 29px;
}

.header--nav-open .header__toggle-bar:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

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

.header--nav-open .header__toggle-bar:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.header__overlay {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 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;
  opacity: 0.13;
  mix-blend-mode: luminosity;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--navy-deep) 0%,
    var(--navy) 42%,
    var(--navy-mid) 100%
  );
  opacity: 0.94;
  z-index: -1;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: min(100%, 640px);
  width: 50%;
  padding: clamp(12px, 2vw, 28px) clamp(8px, 1.5vw, 20px) 0 0;
}

.hero__title {
  font-size: clamp(2.6rem, 4.1vw, 4.05rem);
  color: #fff;
  letter-spacing: -0.02em;
}

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

.hero__subtitle {
  font-family: var(--ff-b);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.76);
  margin: 24px 0 0;
  max-width: 31em;
}

.hero__rule {
  width: 64px;
  height: 3px;
  background: var(--lime);
  margin: 30px 0 0;
  border-radius: 2px;
}

.hero__cta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

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

.hero__visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(112%, 900px);
  height: 78%;
  border-radius: 50% 50% 0 0 / 34% 34% 0 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(193, 215, 46, 0.2),
    rgba(193, 215, 46, 0) 68%
  );
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--navy-deep);
  border-top: 1px solid rgba(193, 215, 46, 0.22);
}

.accolades__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.accolades__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  flex: 0 0 128px;
  line-height: 1.6;
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding-right: 28px;
}

.accolades__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  flex: 1;
  min-width: 0;
}

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 18px 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  min-width: 0;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.accolades__item:hover {
  background: rgba(193, 215, 46, 0.08);
  border-color: rgba(193, 215, 46, 0.4);
}

.accolades__item img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.3s;
}

.accolades__item:hover img {
  opacity: 1;
}

.accolades__item:nth-child(1) img {
  max-height: 80px;
}

.accolades__item:nth-child(2) img {
  max-height: 70px;
}

.accolades__item:nth-child(3) img {
  max-height: 36px;
}

.accolades__item:nth-child(4) img {
  max-height: 52px;
}

/* ---------- generic section ---------- */
.section {
  padding-top: 110px;
  padding-bottom: 110px;
}

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

.section__title {
  font-size: clamp(2.05rem, 2.9vw, 2.95rem);
}

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 82px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--lime);
  border-radius: 3px;
  z-index: -1;
}

.about__content h2 {
  font-size: clamp(2.05rem, 2.9vw, 2.95rem);
  color: var(--navy);
}

.about__content h3 {
  font-family: var(--ff-b);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lime-dk);
  margin: 16px 0 26px;
}

.about__content p {
  color: var(--slate);
}

.about__note {
  margin-top: 32px;
  padding: 24px 28px;
  background: #fff;
  border-left: 3px solid var(--lime);
  font-size: 16px;
  color: var(--navy);
  font-weight: 400;
}

.about__note a {
  font-weight: 600;
  border-bottom: 1px solid var(--lime);
}

/* ---------- practice ---------- */
.practice__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 52px;
}

.practice__head h2 {
  color: var(--navy);
}

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

.card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 35, 93, 0.14);
  border-color: var(--lime);
}

.card__img {
  position: relative;
  aspect-ratio: 19 / 13;
  overflow: hidden;
  background: var(--navy);
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

.card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 23, 54, 0.62), rgba(0, 23, 54, 0) 62%);
}

.card__body {
  padding: 24px 26px 28px;
}

.card__body h3 {
  font-size: 1.32rem;
  color: var(--navy);
}

.card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lime-dk);
}

.card__more svg {
  transition: transform 0.3s;
}

.card:hover .card__more svg {
  transform: translateX(5px);
}

/* ---------- results ledger ---------- */
.results {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}

.results__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-results.jpg");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.16;
  z-index: -2;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-deep), rgba(0, 35, 93, 0.9));
  z-index: -1;
}

.results__head {
  margin-bottom: 48px;
}

.results__head h2 {
  color: #fff;
  font-size: clamp(2.05rem, 2.9vw, 2.95rem);
}

.results__head p {
  color: rgba(255, 255, 255, 0.66);
  margin: 14px 0 0;
  max-width: 44em;
  font-size: 17px;
}

.ledger {
  border-top: 1px solid rgba(193, 215, 46, 0.4);
}

.ledger__row {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.5fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background 0.3s,
    padding-left 0.3s;
}

.ledger__row:hover {
  background: rgba(193, 215, 46, 0.07);
  padding-left: 18px;
}

.ledger__amt {
  font-family: var(--ff-d);
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  font-weight: 700;
  color: var(--lime);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin: 0;
}

.ledger__type {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.ledger__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(193, 215, 46, 0.55);
}

.ledger__link:hover {
  color: var(--lime);
}

/* ---------- values ---------- */
.values__head {
  text-align: center;
  max-width: 36em;
  margin: 0 auto 58px;
}

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

.values__head .eyebrow::before {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 70px;
  background: var(--lime);
}

.values__head h2 {
  color: var(--navy);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.values__item {
  padding: 44px 34px 46px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
}

.values__item:last-child {
  border-right: 0;
}

.values__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.values__item:hover::before {
  transform: scaleX(1);
}

.values__item:hover {
  background: var(--bone);
}

.values__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--navy);
}

.values__item h3 {
  font-size: 1.24rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.values__item p {
  font-size: 15.5px;
  color: var(--slate);
  margin: 0;
}

/* ---------- testimonial ---------- */
.testimonial {
  background: var(--bone-2);
}

.testimonial__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 76px;
  align-items: center;
}

.testimonial__grid h2 {
  color: var(--navy);
  font-size: clamp(2.05rem, 2.9vw, 2.95rem);
}

.testimonial__quote {
  position: relative;
  padding-left: 48px;
}

.testimonial__quote::before {
  content: "“";
  position: absolute;
  left: -6px;
  top: -30px;
  font-family: var(--ff-d);
  font-size: 9rem;
  line-height: 1;
  color: var(--lime);
  opacity: 0.55;
}

.testimonial__quote blockquote {
  margin: 0;
  font-family: var(--ff-d);
  font-size: clamp(1.3rem, 1.85vw, 1.72rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
}

.testimonial__quote > p {
  font-size: 17px;
  color: var(--slate);
  margin: 22px 0 0;
}

.testimonial__name {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.testimonial__name::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--navy);
  opacity: 0.4;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
}

/* ---------- contact ---------- */
.contact {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  isolation: isolate;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 76px;
  align-items: start;
}

.contact__copy h2 {
  color: #fff;
  font-size: clamp(2.05rem, 2.9vw, 2.95rem);
}

.contact__copy > p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 18px;
  max-width: 34em;
}

.contact__meta {
  margin-top: 38px;
  display: grid;
  gap: 22px;
}

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

.contact__meta-item svg {
  flex: 0 0 auto;
  color: var(--lime);
  margin-top: 3px;
}

.contact__meta-item span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.62;
  white-space: pre-line;
}

.contact__meta-item a {
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.contact__meta-item a:hover {
  color: var(--lime);
}

.form {
  background: #fff;
  padding: 44px;
  border-radius: 3px;
  border-top: 4px solid var(--lime);
}

.form h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form > p {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 26px;
}

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

.form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  min-width: 120px;
}

.form__field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form__field input,
.form__field select,
.form__field textarea {
  height: 40px;
  min-width: 120px;
  width: 100%;
  padding: 0 14px;
  font-family: var(--ff-b);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition:
    border-color 0.25s,
    background 0.25s;
}

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

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

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--lime);
}

.form .btn {
  width: 100%;
  margin-top: 6px;
}

.form__fine {
  font-size: 12.5px;
  color: var(--slate);
  margin: 16px 0 0;
  line-height: 1.6;
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(193, 215, 46, 0.28);
}

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

.footer__logo {
  width: 270px;
  margin-bottom: 24px;
  max-width: none;
}

.footer p {
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

.footer h4 {
  font-family: var(--ff-b);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 20px;
}

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

.footer li a {
  font-size: 15.5px;
}

.footer li a:hover {
  color: var(--lime);
}

.footer__phone {
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 26px;
  padding-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reveal--in {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1280px) {
  :root {
    --pad: 34px;
  }

  .about {
    gap: 52px;
  }

  .testimonial__grid,
  .contact__grid {
    gap: 48px;
  }

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

@media (max-width: 1200px) {
  .header__phone {
    display: none;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 23, 54, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s,
      visibility 0.3s;
    z-index: 70;
  }

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 88px 28px 36px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--navy-deep);
    border-left: 1px solid rgba(193, 215, 46, 0.28);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
    overflow-y: auto;
  }

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

  .header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .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;
    gap: 18px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .header__nav-extras .header__phone {
    display: flex;
    padding-left: 0;
    border-left: 0;
  }

  .header__nav-extras .header__phone-number {
    font-size: 24px;
  }

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

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

  .values__item:nth-child(2n) {
    border-right: 0;
  }

  .values__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .about__media {
    order: 2;
  }

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

  .accolades__label {
    flex: none;
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding-bottom: 16px;
  }
}

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

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

  .hero__cta {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  :root {
    --pad: 20px;
    --header-min-height: 76px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: 100%;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .header__bar {
    gap: 12px;
  }

  .hero {
    height: auto;
    min-height: calc(100vh - var(--site-chrome-height));
    min-height: calc(100dvh - var(--site-chrome-height));
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 24px) 0;
  }

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

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

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

  .hero__image {
    height: 100%;
  }

  .hero__cta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .accolades__items {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .accolades__item {
    min-height: 82px;
    padding: 14px 12px;
  }

  .accolades__item:nth-child(1) img {
    max-height: 58px;
  }

  .accolades__item:nth-child(2) img {
    max-height: 50px;
  }

  .accolades__item:nth-child(3) img {
    max-height: 28px;
  }

  .accolades__item:nth-child(4) img {
    max-height: 42px;
  }

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

  .values__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .ledger__row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 2px;
  }

  .ledger__row:hover {
    padding-left: 2px;
  }

  .about__media::after {
    inset: 12px -12px -12px 12px;
  }

  .testimonial__quote {
    padding-left: 0;
  }

  .testimonial__quote::before {
    position: static;
    display: block;
    font-size: 5rem;
    height: 44px;
  }

  .form {
    padding: 28px 22px;
  }

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

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

  .footer__logo {
    width: 210px;
  }
}

@media (max-width: 640px) {
  .hero__cta .btn {
    width: 100%;
    font-size: 17px;
    padding: 16px 26px;
  }
}
