:root {
  --ink: #0a0c0e;
  --brick: #ab2106;
  --brick-2: #7c1704;
  --harbor: #16202b;
  --harbor-2: #0e1720;
  --bone: #f5f3ee;
  --bone-2: #edeae3;
  --steel: #5b6670;
  --rule: #dcd7ce;
  --white: #fff;
  --blush: #d9a08c;
  --blush-2: #e8b7a5;
  --display: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --pad: 45px;
  --container-max: 1660px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 146px;
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

p {
  margin: 0 0 1.15em;
}

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

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

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

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

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

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

.eyebrow--center::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 110px;
}

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

.eyebrow--light::after,
.eyebrow--light::before {
  background: rgba(255, 255, 255, 0.22);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  border: 2px solid var(--brick);
  background: var(--brick);
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.btn:hover {
  background: var(--brick-2);
  border-color: var(--brick-2);
  transform: translateY(-2px);
}

.btn--ink {
  background: var(--ink);
  border-color: var(--ink);
}

.btn--ink:hover {
  background: var(--brick);
  border-color: var(--brick);
}

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

.more-link {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.more-link svg {
  width: 15px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.25s ease;
}

.more-link--light {
  color: var(--blush-2);
}

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

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

.section-head--flush {
  margin-bottom: 0;
}

.section-head h2 {
  font-size: clamp(32px, 2.9vw, 50px);
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 18px;
  color: var(--steel);
  font-size: 17.5px;
}

/* ---------- Utility bar ---------- */
.utility {
  background: var(--harbor);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 46px;
  padding-top: 8px;
  padding-bottom: 8px;
}

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

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

.utility__item svg {
  width: 14px;
  height: 14px;
  flex: none;
  fill: #c9765c;
}

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

.utility__est {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
}

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

.header__overlay {
  display: none;
}

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

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

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

.header__toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  cursor: pointer;
  z-index: 4;
}

.header__toggle-bar {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

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

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

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

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

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

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

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

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

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

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

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--brick);
  transition: right 0.28s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.header__nav-link:hover {
  color: var(--brick);
}

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

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  flex: none;
  flex-shrink: 0;
  margin-left: 26px;
}

.header__cta .btn {
  font-size: clamp(13px, 0.95vw, 16px);
  padding: clamp(12px, 1vw, 15px) clamp(16px, 1.6vw, 30px);
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

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

.header__phone-number {
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 700;
  font-family: var(--body);
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s;
  white-space: nowrap;
}

.header__phone:hover .header__phone-number {
  color: var(--brick);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--harbor-2);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 4vw, 56px) 0 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center 42%;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 14, 19, 0.94) 0%,
    rgba(12, 18, 25, 0.88) 38%,
    rgba(14, 22, 31, 0.52) 66%,
    rgba(14, 22, 31, 0.3) 100%
  );
}

.hero__rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brick);
  z-index: 3;
}

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

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

.hero__content h1 {
  font-size: clamp(38px, 3.5vw, 60px);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin-bottom: 24px;
}

.hero__em {
  font-style: italic;
  color: var(--blush-2);
}

.hero__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18.5px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 34px;
}

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

.hero__phone {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hero__phone-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 5px;
}

.hero__phone-number {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.hero__phone:hover .hero__phone-number {
  color: var(--blush-2);
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  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;
}

/* ---------- Accolades ---------- */
.accolades {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
}

.accolades__inner {
  padding-top: 38px;
  padding-bottom: 38px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.accolades__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  flex: none;
}

.accolades__items {
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
  justify-content: center;
}

.accolades__badge {
  width: auto;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.accolades__badge:hover {
  opacity: 1;
}

.accolades__badge--forum {
  height: 86px;
}

.accolades__badge--ntl {
  height: 68px;
}

.accolades__badge--super {
  height: 40px;
}

.accolades__badge--aaj {
  height: 56px;
}

/* ---------- Intro ---------- */
.intro {
  background: #fff;
}

.intro__inner {
  padding-top: 110px;
  padding-bottom: 110px;
}

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

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

.intro__media {
  position: relative;
}

.intro__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.intro__media::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 112px;
  height: 112px;
  border-left: 4px solid var(--brick);
  border-top: 4px solid var(--brick);
}

.intro__stat {
  position: absolute;
  right: -34px;
  bottom: -28px;
  background: var(--harbor);
  color: #fff;
  padding: 28px 32px;
  width: 290px;
}

.intro__stat-value {
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
}

.intro__stat-label {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  line-height: 1.5;
}

.intro h2 {
  font-size: clamp(32px, 2.9vw, 50px);
  margin-bottom: 26px;
  letter-spacing: -0.02em;
}

.intro p {
  color: #39424b;
  font-size: 17.5px;
}

.intro__callout {
  margin-top: 32px;
  padding: 26px 30px;
  background: var(--bone);
  border-left: 4px solid var(--brick);
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.65;
}

.intro__callout a {
  color: var(--brick);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Practice areas ---------- */
.practice {
  background: var(--bone);
}

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

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

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

.practice-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.practice-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 46px rgba(10, 12, 14, 0.14);
}

.practice-card__thumb {
  position: relative;
  overflow: hidden;
  height: 236px;
  flex: none;
}

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

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

.practice-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 14, 0) 46%, rgba(10, 12, 14, 0.55) 100%);
}

.practice-card__num {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: var(--brick);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  padding: 8px 13px;
}

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

.practice-card__body h3 {
  font-size: 23px;
  line-height: 1.22;
  margin-bottom: 14px;
}

.practice-card__body p {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--steel);
  margin-bottom: 22px;
}

.practice-card:hover .more-link svg {
  transform: translateX(5px);
}

/* ---------- Case results ---------- */
.results {
  background: #fff;
}

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

.results__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 18px;
}

.results__row {
  display: grid;
  grid-template-columns: 88px minmax(0, 300px) minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px 6px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.28s ease, padding 0.28s ease;
}

.results__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 0;
  background: var(--brick);
  transition: width 0.3s ease;
}

.results__row:hover {
  background: var(--bone);
  padding-left: 24px;
  padding-right: 24px;
}

.results__row:hover::before {
  width: 4px;
}

.results__idx {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--steel);
  font-weight: 600;
}

.results__amount {
  font-family: var(--display);
  font-size: clamp(32px, 2.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}

.results__desc {
  font-size: 17px;
  color: #39424b;
  line-height: 1.6;
}

.results__more {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.results__more svg {
  width: 15px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.25s;
}

.results__row:hover .results__more svg {
  transform: translateX(5px);
}

.results__note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--steel);
  line-height: 1.6;
  max-width: 900px;
}

/* ---------- Values ---------- */
.values {
  position: relative;
  background: var(--harbor-2);
  color: #fff;
  overflow: hidden;
}

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

.values__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 22, 0.9), rgba(10, 16, 22, 0.82));
}

.values__inner {
  position: relative;
  z-index: 2;
  padding-top: 104px;
  padding-bottom: 104px;
}

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

.values .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.values__item {
  padding: 44px 34px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.values__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.values__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  stroke: var(--blush);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.values__item h3 {
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 14px;
}

.values__item p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
}

.values__item .more-link {
  margin-top: auto;
}

.values__item:hover .more-link svg {
  transform: translateX(5px);
}

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

.testimonial__inner {
  padding-top: 104px;
  padding-bottom: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial__mark {
  font-family: var(--display);
  font-size: 110px;
  line-height: 0.6;
  color: var(--brick);
  opacity: 0.28;
  display: block;
  margin-bottom: 22px;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.72vw, 29px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.testimonial__name {
  margin-top: 32px;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}

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

.testimonial__stars svg {
  width: 19px;
  height: 19px;
  fill: var(--brick);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--harbor);
  color: #fff;
}

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

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

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

.contact h2 {
  font-size: clamp(32px, 2.9vw, 48px);
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.contact__copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17.5px;
  max-width: 520px;
}

.contact__info {
  margin-top: 44px;
  display: grid;
  gap: 26px;
}

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

.contact__item svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 5px;
  stroke: var(--blush);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__key {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.contact__value {
  font-size: 17px;
  color: #fff;
  line-height: 1.55;
  white-space: pre-line;
}

.contact__value a:hover {
  color: var(--blush-2);
}

.form-card {
  background: #fff;
  padding: 44px;
  color: var(--ink);
}

.form-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.form-card__sub {
  font-size: 14.5px;
  color: var(--steel);
  margin-bottom: 28px;
}

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

.form-card__field {
  margin-bottom: 18px;
}

.form-card__field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 8px;
}

.form-card__field input,
.form-card__field select,
.form-card__field textarea {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 3px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-card__field textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.55;
}

.form-card__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%235B6670' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  padding-right: 36px;
}

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

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

.form-card__disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--steel);
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--harbor-2);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.footer__brand img {
  width: 340px;
  height: auto;
  margin-bottom: 24px;
}

.footer__brand p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.66);
  max-width: 420px;
  line-height: 1.75;
}

.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  font-family: var(--body);
  font-weight: 700;
  margin-bottom: 22px;
}

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

.footer__col a {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

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

.footer__address {
  font-size: 15.5px;
  line-height: 1.7;
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.72);
}

.footer__list--spaced {
  margin-top: 18px;
}

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

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

/* ---------- Nav breakpoint: hamburger below 1200px ---------- */
@media (max-width: 1200px) {
  :root {
    --pad: 32px;
  }

  .header__overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 12, 14, 0.55);
  }

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

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

  .header__toggle {
    display: inline-flex;
  }

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

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin-left: 0;
    padding: 84px 28px 40px;
    z-index: 2;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    visibility: hidden;
  }

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

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

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

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

  .header__cta {
    display: none;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }

  .header__nav-extras .header__phone {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid var(--ink);
    border-radius: 999px;
  }

  .header__nav-extras .header__phone-label {
    margin-bottom: 0;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

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

  .header__nav-extras .btn {
    width: 100%;
    font-size: 16px;
    padding: 15px 20px;
    white-space: normal;
  }

  .intro__grid {
    gap: 48px;
  }

  .intro__media img {
    height: 500px;
  }

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

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

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

  .contact__grid {
    gap: 48px;
  }
}

@media (max-width: 1000px) {
  .hero__content {
    width: min(100%, 58%);
  }

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

  .intro__media::before {
    display: none;
  }

  .intro__stat {
    right: 0;
    bottom: -20px;
  }

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

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

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

  .results__row {
    grid-template-columns: 56px minmax(0, 220px) minmax(0, 1fr);
    row-gap: 10px;
  }

  .results__more {
    grid-column: 2 / -1;
  }
}

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

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

  body {
    font-size: 16px;
  }

  .utility__inner {
    justify-content: center;
    text-align: center;
  }

  .utility__left {
    justify-content: center;
    gap: 16px;
    font-size: 12.5px;
  }

  .utility__item:first-child {
    display: none;
  }

  .utility__est {
    display: none;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
  }

  .header__inner {
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 14px;
  }

  .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, 48px) 0 0;
  }

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

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

  .hero__content h1 {
    font-size: clamp(30px, 7.6vw, 40px);
  }

  .hero__content p {
    font-size: 16.5px;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    right: auto;
    bottom: auto;
    justify-content: center;
  }

  .hero__image {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 360px;
    margin-inline: auto;
  }

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

  .accolades__items {
    gap: 30px;
  }

  .accolades__badge {
    transform: scale(0.78);
    transform-origin: center;
  }

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

  .intro__media img {
    height: 360px;
  }

  .intro__stat {
    position: static;
    max-width: none;
    margin-top: 20px;
  }

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

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

  .practice-card__thumb {
    height: 210px;
  }

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

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

  .values__item {
    padding: 32px 24px;
  }

  .results__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .results__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 26px 4px;
  }

  .results__row:hover {
    padding-left: 12px;
    padding-right: 12px;
  }

  .results__amount {
    font-size: 34px;
  }

  .results__desc {
    font-size: 16px;
  }

  .testimonial__mark {
    font-size: 76px;
  }

  .form-card {
    padding: 28px 22px;
  }

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

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

  .footer__brand img {
    width: 250px;
  }

  .footer__bottom {
    font-size: 12px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

  .intro__callout a {
    white-space: normal;
  }
}

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