/* ============================================================
   Gilligan, Frisco, Trutanich & Sarris, LLP
   Vanity-stage concept — Leaders Marketing
   Palette: #00293C | Type: Noto Serif Display / Work Sans
   ============================================================ */

:root {
  --navy: #00293c;
  --navy-deep: #001621;
  --navy-mid: #0a3a52;
  --gold: #bf9b4f;
  --gold-light: #e0c88b;
  --paper: #eef3f6;
  --paper-warm: #f7f4ee;
  --ink: #1e2a30;
  --ink-soft: #4e6068;
  --line: rgba(0, 41, 60, 0.14);
  --line-gold: rgba(191, 155, 79, 0.42);

  --ff-display: "Noto Serif Display", Georgia, serif;
  --ff-body: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1860px;
  --container-pad: 45px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 148px;
}

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

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

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

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

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

figure,
blockquote,
figcaption {
  margin: 0;
}

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

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

p {
  margin: 0 0 1.15em;
}

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

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

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

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

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

.utility__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.utility__icon {
  width: 14px;
  height: 14px;
  flex: none;
  fill: var(--gold);
}

.utility__right {
  color: var(--gold-light);
  font-weight: 500;
  white-space: nowrap;
}

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

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line-gold);
}

.header__overlay {
  display: none;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 104px;
  position: relative;
  z-index: 2;
}

.header__logo {
  flex: none;
  flex-shrink: 0;
  display: block;
  width: 296px;
  max-width: none;
}

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

.header__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 11px 13px;
  cursor: pointer;
  z-index: 4;
}

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s 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: 30px;
}

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

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

.header__nav-link {
  display: inline-block;
  flex-shrink: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.005em;
  padding: 10px 0 8px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.header__nav-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.header__nav-extras {
  display: none;
}

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

.header__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
  background: var(--gold);
  padding: clamp(10px, 1vw, 13px) clamp(18px, 1.6vw, 26px);
  border-radius: 999px;
  transition: background 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
  max-width: 100%;
  line-height: 1.35;
}

.header__cta-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.header__cta-icon {
  width: 15px;
  height: 15px;
  fill: var(--navy);
}

/* ---------------------------------------------------- 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.005em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  max-width: 100%;
  line-height: 1.35;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.btn--primary {
  color: var(--navy);
  background: var(--gold);
  padding: 16px 28px;
  white-space: nowrap;
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  padding: 16px 28px;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: #fff;
}

.btn--navy {
  color: #fff;
  background: var(--navy);
  padding: 15px 34px;
}

.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--navy);
  background: transparent;
  padding: 15px 32px;
  border: 1.5px solid var(--line);
}

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

.btn--block {
  width: 100%;
}

/* ---------------------------------------------------- hero */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px);
  overflow: hidden;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
  background: linear-gradient(
    105deg,
    var(--navy-deep) 0%,
    var(--navy) 46%,
    var(--navy-mid) 100%
  );
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 8% 12%,
    rgba(191, 155, 79, 0.13),
    transparent 58%
  );
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  align-items: center;
  gap: 52px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.hero__content {
  color: #fff;
  max-width: min(100%, 660px);
  z-index: 2;
  position: relative;
  padding-inline: clamp(0px, 1vw, 8px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(2.5rem, 3.35vw, 3.5rem);
  letter-spacing: -0.018em;
  color: #fff;
}

.hero__title-line {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  margin-top: 0.1em;
}

.hero__lede {
  margin-top: 20px;
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}

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

.hero__tel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 24px;
  color: #fff;
  white-space: nowrap;
}

.hero__tel-text {
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 2px;
}

.hero__note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.66);
}

.hero__note-em {
  color: var(--gold-light);
  font-weight: 600;
}

.hero__visual {
  position: relative;
  align-self: center;
  justify-self: end;
  width: 100%;
  z-index: 1;
  min-width: 0;
}

.hero__visual::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.hero__frame {
  position: relative;
  height: min(585px, calc(100% - 24px));
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    rgba(0, 22, 33, 0.42) 0%,
    rgba(0, 22, 33, 0.05) 30%,
    transparent 62%
  );
  pointer-events: none;
}

.hero__plate {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 22, 33, 0.86);
  border-top: 1px solid var(--line-gold);
  border-right: 1px solid var(--line-gold);
  padding: 15px 30px 15px 26px;
  z-index: 3;
}

.hero__plate-title {
  display: block;
  font-family: var(--ff-display);
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.hero__plate-meta {
  display: block;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}

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

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

.accolades__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 26px;
}

.accolades__title {
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}

.accolades__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

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

.accolades__cell {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 152px;
}

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

.accolades__badge {
  width: var(--bw);
  height: var(--bh);
  max-width: 100%;
  object-fit: contain;
}

.accolades__badge--mdaf {
  --bw: 92px;
  --bh: 92px;
}

.accolades__badge--ntl {
  --bw: 128px;
  --bh: 66px;
}

.accolades__badge--super {
  --bw: 189px;
  --bh: 45px;
}

.accolades__badge--aaj {
  --bw: 158px;
  --bh: 54px;
}

.accolades__note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

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

.section--paper {
  background: var(--paper-warm);
}

.section__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

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

.section__title {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  color: var(--navy);
}

.section__sub {
  margin-top: 12px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
}

/* ---------------------------------------------------- about */
.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: 70px;
  align-items: center;
}

.about__figure {
  position: relative;
}

.about__image {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about__figure::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 120px;
  height: 120px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.about__badge {
  position: absolute;
  left: 0;
  top: 44px;
  background: var(--navy);
  color: #fff;
  padding: 20px 28px;
  border-left: 3px solid var(--gold);
}

.about__badge-value {
  display: block;
  font-family: var(--ff-display);
  font-size: 34px;
  line-height: 1;
  color: var(--gold-light);
}

.about__badge-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.8);
}

.about__body {
  max-width: 70ch;
}

.about__text {
  margin-top: 26px;
  font-size: 17.5px;
  color: var(--ink-soft);
}

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

/* ---------------------------------------------------- practice */
.practice__head {
  max-width: 62ch;
  margin-bottom: 52px;
}

.practice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.practice-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.practice-card:hover {
  box-shadow: 0 18px 44px rgba(0, 41, 60, 0.13);
  border-color: var(--line-gold);
}

.practice-card__thumb {
  position: relative;
  height: 290px;
  flex: none;
}

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 22, 33, 0) 40%,
    rgba(0, 22, 33, 0.62) 100%
  );
}

.practice-card__title {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 24px;
  z-index: 2;
  font-size: 29px;
  color: #fff;
}

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

.practice-card__body p {
  color: var(--ink-soft);
}

.practice-card__list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 9px;
}

.practice-card__list-item {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: var(--ink);
}

.practice-card__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.practice-card__more {
  margin-top: auto;
  align-self: flex-start;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

.practice-card__more:hover {
  color: var(--gold);
}

/* ---------------------------------------------------- results */
.results {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding: 100px 0;
  isolation: isolate;
}

.results__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.results__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 22, 33, 0.93), rgba(0, 41, 60, 0.9));
}

.results .section__title {
  color: #fff;
}

.results__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.results__note {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 44ch;
}

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

.results__cell {
  padding: 36px 34px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
}

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

.results__outcome {
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 1.9vw, 1.8rem);
  color: var(--gold-light);
  line-height: 1.16;
  min-height: 2.32em;
}

.results__matter {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.8);
}

.results__more {
  margin-top: auto;
  padding-top: 24px;
  align-self: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

.results__more:hover {
  color: var(--gold-light);
}

/* ---------------------------------------------------- values */
.values__head {
  max-width: 60ch;
  margin-bottom: 56px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.values__cell {
  background: var(--paper-warm);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
}

.values__mark {
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 22px;
}

.values__cell-title {
  font-size: 23px;
  color: var(--navy);
  max-width: 26ch;
}

.values__cell-text {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 52ch;
}

.values__more {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

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

/* ---------------------------------------------------- testimonial */
.testimonial {
  position: relative;
  padding: 104px 0;
  background: var(--paper);
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.testimonial__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

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

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

.testimonial__title {
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  color: var(--navy);
  margin-bottom: 34px;
}

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

.testimonial__star {
  width: 19px;
  height: 19px;
  fill: var(--gold);
}

.testimonial__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  line-height: 1.62;
  color: var(--ink);
}

.testimonial__quote p {
  margin-bottom: 1em;
}

.testimonial__rule {
  width: 52px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto 0;
}

.testimonial__name {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

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

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: 70px;
  align-items: start;
}

.contact__inner > * {
  min-width: 0;
}

.contact .section__title {
  color: #fff;
}

.contact__sub {
  margin-top: 14px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-light);
}

.contact__intro {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

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

.contact__line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact__line-icon {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex: none;
  margin-top: 5px;
}

.contact__line-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.contact__line-value {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 16.5px;
  line-height: 1.55;
}

.contact__line a:hover {
  color: var(--gold-light);
}

.contact-form {
  background: #fff;
  padding: 40px 42px 42px;
  border-top: 3px solid var(--gold);
}

.contact-form__title {
  font-size: 25px;
  color: var(--navy);
}

.contact-form__lede {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--ink-soft);
}

.contact-form__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

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

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

.field__label {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.field__input,
.field__select,
.field__textarea {
  font-family: var(--ff-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  width: 100%;
}

.field__input,
.field__select {
  height: 40px;
  padding: 0 14px;
}

.field__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 19px) 17px, calc(100% - 14px) 17px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.field__textarea {
  height: 120px;
  padding: 11px 14px;
  resize: vertical;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  border-color: var(--gold);
  background: #fff;
}

.contact-form__submit {
  margin-top: 24px;
}

.contact-form__fine {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------------------------------------------------- footer */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  gap: 56px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 280px;
  margin-bottom: 26px;
}

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

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

.footer__heading {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: 15.5px;
}

.footer a:hover {
  color: var(--gold-light);
}

.footer__contact {
  display: grid;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.6;
}

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

/* ---------------------------------------------------- concept ribbon */
.concept {
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 11px 20px;
}

/* ---------------------------------------------------- responsive */
@media (max-width: 1439px) {
  .header__inner {
    gap: 24px;
    min-height: 96px;
  }

  .header__logo {
    width: 262px;
  }

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

  .hero__inner {
    gap: 38px;
    grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  }

  .about__inner {
    gap: 48px;
  }

  .about__image {
    height: 540px;
  }
}

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

  .header__logo {
    width: 236px;
  }

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

  .hero__frame {
    height: min(520px, calc(100% - 16px));
  }

  .accolades__badge {
    width: calc(var(--bw) * 0.88);
    height: calc(var(--bh) * 0.88);
  }

  .accolades__cell {
    min-height: 138px;
  }
}

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(0, 22, 33, 0.55);
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .header__overlay[hidden] {
    display: none;
  }

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

  .header__toggle {
    display: block;
  }

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    margin: 0;
    padding: 84px 28px 40px;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    border-left: 1px solid var(--line-gold);
  }

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

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

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

  .header__nav-extras {
    display: block;
    margin-top: 28px;
    padding-top: 8px;
  }

  .header__cta {
    display: none;
  }

  .header__nav-extras .header__cta-link {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    align-content: center;
  }

  .hero__content {
    max-width: none;
  }

  .hero__visual {
    justify-self: stretch;
  }

  .hero__visual::before {
    display: none;
  }

  .hero__frame {
    height: 470px;
  }

  .hero__image {
    object-position: 50% 14%;
  }

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

  .about__image {
    height: 440px;
  }

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

  .accolades__badge {
    width: calc(var(--bw) * 0.92);
    height: calc(var(--bh) * 0.92);
  }

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

  .accolades__cell:nth-child(1),
  .accolades__cell:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .results__cell:nth-child(1),
  .results__cell:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .btn--primary,
  .btn--outline,
  .btn--navy,
  .btn--ghost {
    white-space: normal;
    font-size: 18px;
    padding: 14px 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(32px, 5vw, 48px) clamp(16px, 4vw, 28px);
  }

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

  .hero__visual {
    position: relative;
  }

  .hero__frame {
    height: 360px;
  }
}

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

  body {
    font-size: 16px;
  }

  .utility__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .utility__left {
    gap: 14px;
    font-size: 12.5px;
  }

  .header__logo {
    width: 210px;
  }

  .section,
  .results,
  .contact {
    padding: 64px 0;
  }

  .testimonial {
    padding: 70px 0;
  }

  .hero__actions {
    gap: 18px;
  }

  .hero__tel {
    font-size: 22px;
  }

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

  .practice-card__thumb {
    height: 230px;
  }

  .practice-card__title {
    font-size: 25px;
    left: 24px;
    right: 24px;
  }

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

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

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

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

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

  .results__cell {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 28px 0;
  }

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

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

  .values__cell {
    padding: 30px 26px;
  }

  .contact-form {
    padding: 30px 24px 32px;
  }

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

  .about__image {
    height: 340px;
  }

  .about__badge {
    padding: 15px 20px;
    top: 24px;
  }

  .about__badge-value {
    font-size: 27px;
  }

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

  .btn--navy,
  .btn--ghost {
    font-size: 18px;
    padding: 14px 26px;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .about__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

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