/* ============ TOKENS ============ */
:root {
  --onyx: #0b0b0d;
  --ink: #141417;
  --ink-2: #1d1d21;
  --gold: #b19b4d;
  --gold-lt: #d6c08a;
  --gold-dp: #8c7935;
  --ivory: #f8f6f1;
  --stone: #ede9e0;
  --body: #4a4a50;
  --hair: rgba(177, 155, 77, 0.28);
  --disp: "Gloock", Georgia, serif;
  --sans: "Epilogue", system-ui, -apple-system, "Segoe UI", sans-serif;
  --crown: url("../assets/images/icon-crown.svg");
  --container-max: 1780px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 152px;
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

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

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

p {
  margin: 0;
}

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

button {
  font-family: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: clamp(20px, 3vw, 45px);
  padding-right: clamp(20px, 3vw, 45px);
}

/* ============ EYEBROW + CROWN ============ */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 18px;
  background: var(--crown) center / contain no-repeat;
  flex: none;
}

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

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

.crown-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 26px 0 0;
}

.crown-rule::before,
.crown-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.crown-rule::after {
  background: linear-gradient(270deg, transparent, var(--gold));
}

.crown-rule__icon {
  width: 30px;
  height: 21px;
  background: var(--crown) center / contain no-repeat;
  flex: none;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  background: var(--gold);
  color: #0b0b0d;
  border: 1px solid var(--gold);
  cursor: pointer;
  max-width: 100%;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

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

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

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

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

  .btn--sm {
    font-size: 14px;
    padding: 13px 22px;
  }
}

@media (max-width: 640px) {
  .hero__actions .btn {
    width: 100%;
  }
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--onyx);
  border-bottom: 1px solid rgba(177, 155, 77, 0.16);
  font-size: 13px;
  color: rgba(248, 246, 241, 0.62);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 46px;
}

.topbar__address,
.topbar__note {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar b {
  color: var(--gold);
  font-weight: 600;
}

/* ============ HEADER ============ */
.header {
  background: var(--onyx);
  position: relative;
  z-index: 20;
}

.header__overlay {
  display: none;
}

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

.header__logo {
  flex-shrink: 0;
}

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

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

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

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

.header__nav-link {
  display: block;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: #f0ede6;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  flex-shrink: 0;
}

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

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

.header__nav-link[aria-current] {
  color: var(--gold);
}

.header__nav-extras {
  display: none;
}

.header__cta {
  flex-shrink: 0;
}

.header__cta .btn {
  font-size: clamp(13px, 1.05vw, 16px);
  padding: 14px 28px;
}

.header__toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: 1px solid var(--hair);
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

.header__toggle-bar {
  position: absolute;
  left: 50%;
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  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: 23.25px;
}

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

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

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

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

@media (max-width: 1400px) {
  .header__inner {
    gap: 24px;
  }

  .header__nav-list {
    gap: 22px;
  }

  .header__cta .btn {
    padding: 12px 22px;
  }
}

@media (max-width: 1280px) {
  .header__inner {
    gap: 16px;
  }

  .header__nav-list {
    gap: 16px;
  }

  .header__cta .btn {
    padding: 11px 18px;
  }
}

@media (max-width: 1200px) {
  .header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 13, 0.62);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
  }

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

  .header__inner {
    z-index: 2;
  }

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

  .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;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

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

  .header__nav-phone {
    font-family: var(--disp);
    font-size: 24px;
    color: #fbfaf7;
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: block;
    z-index: 3;
  }

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

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--onyx);
  overflow: hidden;
  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: url("../assets/images/bg-hero.webp") center / cover no-repeat;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 11, 13, 0.95) 0%,
    rgba(11, 11, 13, 0.82) 42%,
    rgba(11, 11, 13, 0.52) 70%,
    rgba(11, 11, 13, 0.72) 100%
  );
}

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

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

.hero__kicker {
  font-family: var(--sans);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.hero__title {
  font-size: clamp(32px, 4.1vw, 60px);
  color: #fbfaf7;
  letter-spacing: -0.015em;
  max-width: 15ch;
}

.hero__subtitle {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.72);
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

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

.hero__actions .btn {
  padding: 19px 34px;
}

.hero__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #fbfaf7;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero__phone small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.hero__visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(452px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(177, 155, 77, 0.34);
  background: radial-gradient(circle at 50% 60%, rgba(177, 155, 77, 0.2), transparent 66%);
}

.hero__visual::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

@media (max-width: 768px) {
  .topbar__address {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - var(--site-chrome-height));
    padding: clamp(28px, 5vw, 44px) 0 0;
  }

  .hero__inner {
    height: auto;
    align-items: stretch;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 0 36px;
  }

  .hero__title {
    max-width: none;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    right: auto;
    bottom: auto;
    min-height: 400px;
  }

  .hero__image {
    height: 400px;
    max-width: none;
    margin: 0 auto;
  }

  .hero__visual::before {
    width: min(310px, 70%);
  }

  .hero__actions {
    gap: 18px;
  }
}

/* ============ ACCOLADES ============ */
.accolades {
  background: var(--ink);
  border-top: 1px solid rgba(177, 155, 77, 0.2);
  border-bottom: 1px solid rgba(177, 155, 77, 0.2);
}

.accolades__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.accolades__item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-left: 1px solid rgba(177, 155, 77, 0.2);
}

.accolades__item:first-child {
  border-left: 0;
}

.accolades__image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.94;
  transition: opacity 0.3s;
}

.accolades__item:hover .accolades__image {
  opacity: 1;
}

.accolades__item--seal .accolades__image {
  height: 82px;
}

.accolades__item--tall .accolades__image {
  height: 68px;
}

.accolades__item--word .accolades__image {
  height: 34px;
}

.accolades__item--wide .accolades__image {
  height: 56px;
}

/* ============ ABOUT ============ */
.about {
  padding: 110px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 78px;
  align-items: center;
}

.about__media {
  position: relative;
}

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

.about__media::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about__title {
  font-size: clamp(28px, 2.9vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.about__kicker {
  font-family: var(--disp);
  font-size: 22px;
  color: var(--gold-dp);
  margin: 0 0 14px;
}

.about__lede {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.8;
  max-width: 60ch;
}

.about .btn {
  margin-top: 36px;
}

.about__meta {
  display: flex;
  gap: 38px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--hair);
  flex-wrap: wrap;
}

.about__stat {
  min-width: 0;
}

.about__stat-value {
  display: block;
  font-family: var(--disp);
  font-size: 30px;
  color: var(--onyx);
  font-weight: 400;
  line-height: 1;
}

.about__stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dp);
}

/* ============ PRACTICE ============ */
.practice {
  background: var(--stone);
  padding: 106px 0;
}

.practice__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.practice__title {
  font-size: clamp(30px, 3.1vw, 46px);
}

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

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

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -22px rgba(11, 11, 13, 0.45);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 700 / 520;
  overflow: hidden;
}

.practice-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.practice-card:hover .practice-card__image {
  transform: scale(1.05);
}

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 11, 13, 0.55));
}

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

.practice-card__icon {
  width: 28px;
  height: 19px;
  background: var(--crown) center / contain no-repeat;
}

.practice-card__title {
  font-size: 23px;
  line-height: 1.22;
}

.practice-card__more {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dp);
}

.practice-card__more::after {
  content: " →";
}

/* ============ RESULTS ============ */
.results {
  position: relative;
  background: var(--onyx);
  padding: 104px 0;
  overflow: hidden;
}

.results__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-results.webp") center / cover no-repeat;
  opacity: 0.55;
}

.results__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.86), rgba(11, 11, 13, 0.94));
}

.results__inner {
  position: relative;
}

.results__head {
  text-align: center;
  margin-bottom: 60px;
}

.results__title {
  font-size: clamp(30px, 3.1vw, 46px);
  color: #fbfaf7;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(177, 155, 77, 0.28);
}

.results__cell {
  background: var(--onyx);
  padding: 44px 26px;
  text-align: center;
}

.results__amount {
  display: block;
  font-family: var(--disp);
  font-size: clamp(30px, 3vw, 44px);
  color: var(--gold);
  font-weight: 400;
  line-height: 1.05;
}

.results__label {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.72);
}

.results__note {
  text-align: center;
  margin-top: 34px;
  font-size: 13px;
  color: rgba(248, 246, 241, 0.42);
  letter-spacing: 0.04em;
}

/* ============ VALUES ============ */
.values {
  padding: 104px 0;
}

.values__head {
  text-align: center;
  margin-bottom: 56px;
}

.values__title {
  font-size: clamp(30px, 3.1vw, 46px);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  padding-top: 44px;
}

.values__item {
  padding: 0 36px;
  border-left: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  min-height: 180px;
}

.values__item:first-child {
  border-left: 0;
  padding-left: 0;
}

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

.values__icon {
  width: 42px;
  height: 29px;
  background: var(--crown) center / contain no-repeat;
}

.values__heading {
  font-size: 24px;
  line-height: 1.26;
  max-width: 14ch;
}

.values__link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dp);
  border-bottom: 1px solid var(--hair);
  padding-bottom: 4px;
}

.values__link:hover {
  color: var(--onyx);
  border-color: var(--onyx);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--ink);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "“";
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--disp);
  font-size: 264px;
  color: rgba(177, 155, 77, 0.11);
  line-height: 1;
  pointer-events: none;
}

.testimonials__inner {
  position: relative;
  max-width: 1080px;
  text-align: center;
}

.testimonials__quote {
  margin: 0;
  font-family: var(--disp);
  font-size: clamp(19px, 1.85vw, 27px);
  line-height: 1.62;
  color: #f4f1ea;
  letter-spacing: -0.005em;
}

.testimonials__cite {
  display: block;
  margin-top: 30px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ CONTACT ============ */
.contact {
  padding: 104px 0 110px;
}

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

.contact__title {
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.14;
}

.contact__lede {
  margin-top: 22px;
  font-size: 17px;
  max-width: 46ch;
}

.contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-info__row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--hair);
}

.contact-info__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info__icon {
  width: 26px;
  height: 18px;
  background: var(--crown) center / contain no-repeat;
  margin-top: 7px;
  flex: none;
}

.contact-info__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dp);
}

.contact-info__value {
  display: block;
  font-family: var(--disp);
  font-size: 21px;
  color: var(--onyx);
  font-weight: 400;
  line-height: 1.4;
}

.contact-form {
  background: var(--onyx);
  padding: 46px 44px 50px;
}

.contact-form__title {
  color: #fbfaf7;
  font-size: 27px;
  margin-bottom: 6px;
}

.contact-form__intro {
  color: rgba(248, 246, 241, 0.55);
  font-size: 14px;
  margin-bottom: 28px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.field__input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(177, 155, 77, 0.32);
  color: #f8f6f1;
  font-family: var(--sans);
  font-size: 15px;
  border-radius: 0;
}

.field__input--select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field__input--select option {
  color: #111;
}

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

.field__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.field__input::placeholder {
  color: rgba(248, 246, 241, 0.32);
}

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

.contact-form__fine {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(248, 246, 241, 0.4);
  line-height: 1.6;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--onyx);
  color: rgba(248, 246, 241, 0.6);
  padding: 72px 0 0;
  border-top: 1px solid var(--hair);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}

.footer__logo {
  width: 236px;
  height: auto;
  max-width: none;
}

.footer__heading {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__tagline,
.footer__address {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 24px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

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

.footer__phone {
  font-family: var(--disp);
  font-size: 26px;
  color: #fbfaf7;
}

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

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about,
  .practice,
  .results,
  .values,
  .testimonials,
  .contact {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .about__image {
    height: 430px;
  }

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

  .accolades__item {
    padding: 0 16px;
  }

  .accolades__item--seal .accolades__image {
    height: 70px;
  }

  .accolades__item--tall .accolades__image {
    height: 58px;
  }

  .accolades__item--word .accolades__image {
    height: 29px;
  }

  .accolades__item--wide .accolades__image {
    height: 45px;
  }

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

  .values__grid {
    gap: 38px 0;
  }

  .values__item:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

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

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .header__inner {
    height: 84px;
    gap: 16px;
  }

  .hero__phone {
    font-size: 22px;
  }

  .accolades__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .accolades__item {
    padding: 0 14px;
  }

  .accolades__item:nth-child(odd) {
    border-left: 0;
  }

  .accolades__item--seal .accolades__image {
    height: 66px;
  }

  .accolades__item--tall .accolades__image {
    height: 54px;
  }

  .accolades__item--word .accolades__image {
    height: 27px;
  }

  .accolades__item--wide .accolades__image {
    height: 44px;
  }

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

  .practice__grid {
    gap: 20px;
  }

  .values__grid {
    gap: 32px;
  }

  .values__item {
    border-left: 0;
    padding: 0;
  }

  .contact-form {
    padding: 34px 24px 38px;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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