/* ============================================================
   LEGAL ONE LAW GROUP, APC — homepage
   Prepared by Leaders Marketing · Ricky design system
   Palette derived from the firm's own logo mark
   ============================================================ */

:root {
  --navy: #16204c;
  --navy-deep: #0c1230;
  --navy-mid: #1d2a5e;
  --gold: #bfa273;
  --gold-lt: #d6ba8e;
  --gold-dk: #a2844f;
  --cream: #f7f4ef;
  --cream-2: #efeae1;
  --ink: #1c2333;
  --muted: #5f667a;
  --line: rgba(22, 32, 76, 0.14);
  --pad: 45px;
  --container-max: 1680px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 148px;
  --ff-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

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

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

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

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

button {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

p {
  margin: 0 0 1.15em;
}

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

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

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}

.eyebrow::after {
  content: "";
  flex: 0 0 46px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

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

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

.eyebrow--center::before {
  content: "";
  flex: 0 0 46px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 58px;
}

.section-head h2 {
  font-size: clamp(31px, 2.9vw, 46px);
  color: var(--navy);
}

.section-head p {
  color: var(--muted);
  font-size: 16.5px;
  font-weight: 300;
  margin-top: 18px;
}

.section-head--dark h2 {
  color: #fff;
}

.section-head--dark p {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  padding: 19px 40px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  max-width: 100%;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: #151d40;
  border-color: var(--gold);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(191, 162, 115, 0.32);
}

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

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-2px);
}

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

.btn--navy:hover,
.btn--navy:focus-visible {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 32, 76, 0.28);
}

.btn--sm {
  font-size: clamp(13px, 0.95vw, 16px);
  padding: 15px 30px;
}

/* ============================ UTILITY BAR ============================ */
.utility {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

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

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

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

.utility__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.utility__lang {
  color: var(--gold-lt);
}

/* ============================ HEADER ============================ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.6vw, 32px);
  min-height: 104px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex-shrink: 0;
}

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

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 34px);
}

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

.header__nav-link {
  display: block;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.015em;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s var(--ease);
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.38s var(--ease);
}

.header__nav-link:hover,
.header__nav-link[aria-current="page"] {
  color: var(--gold-dk);
}

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

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
  flex-shrink: 0;
  margin-left: clamp(12px, 1.4vw, 24px);
}

.header__phone {
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__phone span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

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

.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}

.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);
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) 0 0;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  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 38%;
  opacity: 0.3;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--navy-deep) 0%,
    rgba(12, 18, 48, 0.94) 34%,
    rgba(22, 32, 76, 0.72) 58%,
    rgba(22, 32, 76, 0.38) 100%
  );
}

.hero__arc {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 660px;
  height: 660px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.hero__arc svg {
  width: 100%;
  height: 100%;
}

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

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(640px, calc(48vw - var(--pad)));
  width: 100%;
  padding: 0 clamp(8px, 2vw, 24px) 0 0;
}

.hero__title {
  font-size: clamp(40px, 4.3vw, 66px);
  line-height: 1.07;
  color: #fff;
  letter-spacing: 0.004em;
}

.hero__title-accent {
  display: block;
  color: var(--gold-lt);
  font-style: italic;
  font-weight: 500;
}

.hero__lead {
  font-size: 17.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 24px 0 0;
  font-weight: 300;
}

.hero__divider {
  width: 96px;
  height: 1px;
  background: var(--gold);
  margin: 26px 0 24px;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  margin-top: 28px;
  transition: color 0.3s var(--ease);
}

.hero__phone svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex: none;
}

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

.hero__phone small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 3px;
}

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

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(52%, 780px);
  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;
  align-self: flex-end;
}

.hero__floor {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 78%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(8, 12, 32, 0.6) 0%, rgba(8, 12, 32, 0) 70%);
  pointer-events: none;
}

/* ============================ ACCOLADES ============================ */
.accolades {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

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

.accolades__head {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 26px;
}

.accolades__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(46px, 6.6vw, 124px);
  flex-wrap: wrap;
}

.accolade {
  flex: 0 0 auto;
  opacity: 0.82;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.accolade:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.accolade img {
  height: auto;
  width: auto;
}

.accolade--seal img {
  height: 86px;
}

.accolade--ntl img {
  height: 74px;
}

.accolade--sl img {
  height: 40px;
}

.accolade--aaj img {
  height: 56px;
}

/* ============================ ABOUT ============================ */
.about {
  background: #fff;
}

.about__inner {
  padding-top: 104px;
  padding-bottom: 104px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 76px;
  align-items: center;
}

.about__media {
  position: relative;
}

.about__image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.about__media::before {
  content: "";
  position: absolute;
  left: -26px;
  top: -26px;
  width: 190px;
  height: 190px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.55;
}

.about__badge {
  position: absolute;
  right: -30px;
  bottom: 38px;
  z-index: 3;
  background: var(--navy);
  color: #fff;
  padding: 26px 32px;
  text-align: center;
  box-shadow: 0 22px 44px rgba(12, 18, 48, 0.24);
}

.about__badge b {
  display: block;
  font-family: var(--ff-display);
  font-size: 46px;
  line-height: 1;
  color: var(--gold-lt);
  font-weight: 600;
}

.about__badge span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.about h2 {
  font-size: clamp(31px, 2.8vw, 44px);
  color: var(--navy);
}

.about h3 {
  font-size: 19px;
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--gold-dk);
  letter-spacing: 0.01em;
  margin: 16px 0 26px;
  line-height: 1.5;
}

.about__body p {
  color: var(--muted);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.85;
}

.about__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ============================ PRACTICE AREAS ============================ */
.practice {
  background: var(--cream);
}

.practice__inner {
  padding-top: 100px;
  padding-bottom: 104px;
}

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

.practice-card {
  background: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 76, 0.09);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(12, 18, 48, 0.14);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 76 / 52;
  overflow: hidden;
}

.practice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 48, 0) 42%, rgba(12, 18, 48, 0.62) 100%);
}

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

.practice-card__body h3 {
  font-size: 23px;
  color: var(--navy);
  line-height: 1.22;
}

.practice-card__body p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 14px;
}

.practice-card__link {
  margin-top: auto;
  padding-top: 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice-card__link i {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.practice-card:hover .practice-card__link i {
  width: 34px;
}

/* ============================ CASE RESULTS ============================ */
.results {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}

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

.results__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 48, 0.92), rgba(12, 18, 48, 0.86));
}

.results__inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.results__item {
  padding: 44px 30px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.results__item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.results__amount {
  font-family: var(--ff-display);
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1;
}

.results__type {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 16px 0 12px;
}

.results__note {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.results__foot {
  text-align: center;
  margin-top: 40px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* ============================ VALUES ============================ */
.values {
  background: #fff;
}

.values__inner {
  padding-top: 100px;
  padding-bottom: 104px;
}

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

.value {
  padding-top: 30px;
  border-top: 2px solid var(--navy);
}

.value:nth-child(even) {
  border-top-color: var(--gold);
}

.value__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
}

.value__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold-dk);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value h3 {
  font-size: 22px;
  color: var(--navy);
  line-height: 1.28;
}

.value p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  margin-top: 14px;
}

/* ============================ TESTIMONIAL ============================ */
.testimonial {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonial__inner {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
}

.testimonial__arc {
  position: absolute;
  left: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.16;
  pointer-events: none;
}

.testimonial__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__title {
  font-size: clamp(28px, 2.6vw, 42px);
  color: #fff;
  margin-bottom: 34px;
}

.testimonial__mark {
  font-family: var(--ff-display);
  font-size: 104px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.6;
  height: 56px;
}

.testimonial__quote {
  font-family: var(--ff-display);
  font-size: clamp(23px, 2.3vw, 33px);
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin: 26px 0 30px;
}

.testimonial__name {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

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

.testimonial__stars svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
}

/* ============================ CONTACT ============================ */
.contact {
  background: var(--cream);
}

.contact__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.contact__media {
  position: relative;
  min-height: 560px;
}

.contact__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  background: var(--navy);
  color: #fff;
  padding: 30px 30px 28px;
  box-shadow: 0 20px 44px rgba(12, 18, 48, 0.28);
}

.contact-card__title {
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}

.contact-card__row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-card__row:last-child {
  margin-bottom: 0;
}

.contact-card__row svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
  flex: none;
  margin-top: 4px;
}

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

.form-panel {
  background: #fff;
  padding: 52px 50px 50px;
  border: 1px solid rgba(22, 32, 76, 0.09);
}

.form-panel__title {
  font-size: clamp(28px, 2.5vw, 38px);
  color: var(--navy);
}

.form-panel__lead {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  margin: 16px 0 30px;
}

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

.field {
  display: flex;
  flex-direction: column;
}

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

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

.field input,
.field select,
.field textarea {
  font-family: var(--ff-body);
  font-size: 15.5px;
  color: var(--ink);
  border: 1px solid rgba(22, 32, 76, 0.2);
  background: #fff;
  border-radius: 2px;
  padding: 0 15px;
  height: 40px;
  width: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

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

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

.form-panel__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.form-panel__note {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 330px;
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.66);
}

.footer__inner {
  padding-top: 74px;
  padding-bottom: 34px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr) minmax(0, 0.95fr);
  gap: 60px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__logo {
  width: 230px;
  max-width: 100%;
  margin-bottom: 24px;
}

.footer__about {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 400px;
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 22px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 15px;
  font-weight: 300;
  transition: color 0.3s var(--ease);
}

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

.footer__row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__row svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex: none;
  margin-top: 5px;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding-top: 26px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.44);
}

.footer__credit {
  color: rgba(255, 255, 255, 0.34);
}

.footer__disclaimer {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 980px;
  margin-top: 22px;
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1440px) {
  .hero__arc {
    width: 560px;
    height: 560px;
    right: 0;
  }

  .about__grid {
    gap: 56px;
  }

  .header__cta .btn--sm {
    padding: 13px 22px;
  }
}

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

  .header__overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(12, 18, 48, 0.55);
  }

  .header.is-open .header__overlay {
    display: block;
  }

  .header__overlay[hidden] {
    display: none;
  }

  .header__inner {
    min-height: 92px;
    z-index: 2;
  }

  .header__cta {
    display: none;
  }

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

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

  .header.is-open .header__toggle-bar {
    background: #fff;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin: 0;
    padding: 84px 28px 40px;
    background: var(--navy-deep);
    z-index: 2;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease), visibility 0.35s var(--ease);
    overflow-y: auto;
  }

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

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

  .header__nav-link {
    display: block;
    font-family: var(--ff-display);
    font-size: 29px;
    color: #fff;
    padding: 14px 0;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .header__nav-link:hover,
  .header__nav-link[aria-current="page"] {
    color: var(--gold-lt);
  }

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

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

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

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

  .results__item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .about__image {
    height: 520px;
  }

  .form-panel {
    padding: 42px 36px;
  }

  .contact__grid {
    gap: 44px;
  }
}

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

@media (max-width: 1024px) {
  .utility__inner {
    justify-content: center;
  }

  .utility__left {
    display: none;
  }

  .hero__arc {
    opacity: 0.28;
    right: -120px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about__image {
    height: 440px;
  }

  .about__badge {
    right: 24px;
  }

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

  .contact__media {
    min-height: 380px;
  }

  .accolades__row {
    justify-content: center;
    gap: 34px 40px;
  }

  .accolade--seal img {
    height: 76px;
  }

  .accolade--ntl img {
    height: 66px;
  }

  .accolade--sl img {
    height: 36px;
  }

  .accolade--aaj img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  :root {
    --pad: 22px;
  }

  body {
    font-size: 16px;
  }

  .utility {
    font-size: 12.5px;
  }

  .utility__right {
    gap: 16px;
  }

  .utility__right > span:first-child,
  .utility__right .utility__dot {
    display: none;
  }

  .eyebrow::after,
  .eyebrow--center::before {
    display: none;
  }

  .header__inner {
    min-height: 78px;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: clamp(32px, 6vw, 44px) 0 0;
  }

  .hero__inner {
    height: auto;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-bottom: 8px;
  }

  .hero__title {
    font-size: clamp(32px, 8.4vw, 44px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 26px;
  }

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

  .hero__image {
    height: auto;
    width: 112%;
    max-width: 112%;
    max-height: 380px;
    margin-left: -6%;
    object-position: bottom center;
  }

  .about__inner,
  .practice__inner,
  .results__inner,
  .values__inner,
  .testimonial__inner,
  .contact__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about__image {
    height: 340px;
  }

  .about__media::before {
    display: none;
  }

  .about__badge {
    right: 16px;
    bottom: 16px;
    padding: 18px 22px;
  }

  .about__badge b {
    font-size: 36px;
  }

  .practice__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .results__item,
  .results__item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .accolades__row {
    justify-content: center;
    gap: 30px 34px;
  }

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

  .accolade--ntl img {
    height: 60px;
  }

  .accolade--sl img {
    height: 33px;
  }

  .accolade--aaj img {
    height: 46px;
  }

  .form-panel__grid {
    grid-template-columns: 1fr;
  }

  .form-panel {
    padding: 32px 22px;
  }

  .form-panel__actions .btn {
    width: 100%;
  }

  .form-panel__note {
    max-width: none;
  }

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

  .footer__bottom {
    justify-content: flex-start;
  }

  .section-head {
    margin-bottom: 38px;
  }
}

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

  .about__actions .btn {
    width: 100%;
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.no-anim .reveal {
  opacity: 1;
  transform: none;
}
