/* ============================ FONTS ============================ */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/barlow-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/barlow-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/barlow-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/barlow-700.woff2') format('woff2');
}

/* ============================ TOKENS ============================ */
:root {
  --navy-950: #08182C;
  --navy-900: #0B1E36;
  --navy-800: #102A48;
  --navy-700: #17395E;
  --gold: #C49A54;
  --gold-lt: #DFBE83;
  --gold-dk: #A87F3D;
  --cream: #F7F5F1;
  --cream-2: #EFEAE2;
  --line: #DDD6CB;
  --ink: #2E333B;
  --ink-soft: #4A5260;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Barlow', -apple-system, 'Segoe UI', sans-serif;
  --pad: 45px;
  --container-max: 1720px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 174px;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4,
.about__stat b,
.results__amount,
.practice-card__num,
.values__num,
.contact__row-value,
.footer__contact-phone strong,
.testimonial__blockquote {
  font-variant-numeric: lining-nums;
  -webkit-font-feature-settings: 'lnum' 1;
  font-feature-settings: 'lnum' 1;
}

p {
  margin: 0 0 1.15em;
}

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

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

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: block;
}

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

.rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0 0 26px;
}

.rule--center {
  margin-left: auto;
  margin-right: auto;
}

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

.section-head__title {
  font-size: clamp(30px, 2.5vw, 42px);
  color: #fff;
}

.section-head--light .section-head__title {
  color: var(--navy-900);
}

/* ============================ 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 40px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  color: #1A1206;
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.55);
}

.btn--primary:hover {
  background: #fff;
  color: var(--navy-900);
  transform: translateY(-2px);
}

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

.btn--navy:hover {
  background: var(--gold);
  color: #1A1206;
}

.btn--sm {
  font-size: 20px;
  padding: 15px 34px;
}

/* ============================ UTILITY BAR ============================ */
.utility {
  background: var(--navy-950);
  color: #9FB0C4;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(196, 154, 84, 0.18);
}

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

.utility__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.utility__right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
}

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

.utility__phone:hover {
  color: #fff;
}

.utility__tag {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
}

/* ============================ HEADER ============================ */
.header {
  background: var(--navy-900);
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
  z-index: 60;
}

.header__brand {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

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

.header__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.header__nav-extras {
  display: none;
}

.header__nav-link {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #E6ECF3;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
}

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

.header__nav-link:hover {
  color: #fff;
}

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

.header__cta {
  flex-shrink: 0;
}

.header__burger {
  display: none;
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 9px 11px;
  cursor: pointer;
  position: relative;
  z-index: 70;
}

.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.is-nav-open .header__burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.is-nav-open .header__burger-line:nth-child(2) {
  opacity: 0;
}

.is-nav-open .header__burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 24, 44, 0.55);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.is-nav-open .header {
  z-index: 100;
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px) 0;
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/bg-hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  z-index: 0;
}

.hero__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    var(--navy-950) 0%,
    rgba(11, 30, 54, 0.96) 32%,
    rgba(16, 42, 72, 0.72) 52%,
    rgba(23, 57, 94, 0.42) 70%,
    rgba(23, 57, 94, 0.20) 100%
  );
}

.hero__glow {
  position: absolute;
  right: -6%;
  top: -25%;
  width: 60%;
  height: 150%;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(196, 154, 84, 0.16), transparent 62%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(0px, 1vw, 8px);
  padding-right: clamp(0px, 1vw, 8px);
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: min(100%, 452px);
  width: min(100%, 55%);
  padding-right: clamp(12px, 2vw, 28px);
}

.hero__title {
  font-size: clamp(38px, 3.1vw, 52px);
  color: #fff;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(21px, 1.55vw, 26px);
  color: var(--gold-lt);
  line-height: 1.28;
  margin-bottom: 20px;
}

.hero__lede {
  font-size: 16.5px;
  color: #C4D0DE;
  line-height: 1.68;
  margin-bottom: 30px;
}

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

.hero__tel {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1;
}

.hero__tel svg {
  width: 19px;
  height: 19px;
  fill: var(--gold);
  flex-shrink: 0;
}

.hero__tel span {
  display: block;
}

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

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

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

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

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

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

.accolades__head {
  text-align: center;
  margin-bottom: 24px;
}

.accolades__head .eyebrow {
  margin-bottom: 0;
}

.accolades__row {
  display: flex;
  align-items: center;
}

.accolades__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 0 18px;
  border-left: 1px solid rgba(168, 127, 61, 0.34);
}

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

.accolades__item img {
  display: block;
  opacity: 0.93;
  transition: opacity 0.25s;
}

.accolades__item:hover img {
  opacity: 1;
}

/* ============================ ABOUT ============================ */
.about {
  background: var(--cream);
}

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

.about__media {
  position: relative;
}

.about__media::before {
  content: '';
  position: absolute;
  left: -18px;
  top: -18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  z-index: 0;
}

.about__image {
  width: 100%;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px -30px rgba(11, 30, 54, 0.45);
}

.about__stat {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 38px;
  background: var(--navy-900);
  color: #fff;
  padding: 24px 30px;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 22px 44px -20px rgba(11, 30, 54, 0.6);
}

.about__stat b {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}

.about__stat span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B9C7D6;
  margin-top: 8px;
}

.about__title {
  font-size: clamp(30px, 2.5vw, 42px);
  color: var(--navy-900);
  margin-bottom: 14px;
}

.about__subtitle {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.5vw, 25px);
  color: var(--gold-dk);
  margin-bottom: 26px;
}

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

.about__copy .btn {
  margin-top: 14px;
}

/* ============================ PRACTICE ============================ */
.practice {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}

.practice__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/bg-hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}

.practice__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--navy-950), rgba(16, 42, 72, 0.9));
}

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

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

.practice-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 14px 34px -20px rgba(0, 0, 0, 0.6);
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px -20px rgba(0, 0, 0, 0.7);
}

.practice-card__img {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.practice-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.practice-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 44, 0.05), rgba(8, 24, 44, 0.55));
}

.practice-card__body {
  display: block;
  padding: 26px 24px 28px;
  text-align: center;
}

.practice-card__title {
  font-size: 22px;
  color: var(--navy-900);
  line-height: 1.24;
  min-height: 2.48em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.practice-card__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

.practice-card:hover .practice-card__more {
  color: var(--navy-800);
}

.practice-card__num {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: var(--navy-900);
  color: var(--gold-lt);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.results__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/bg-results.webp');
  background-size: cover;
  background-position: center 28%;
  opacity: 0.30;
  z-index: 0;
}

.results__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 24, 44, 0.9), rgba(8, 24, 44, 0.82));
}

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

.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: 38px 30px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.results__item:first-child {
  padding-left: 0;
}

.results__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.results__amount {
  display: block;
  font-family: var(--serif);
  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 8px;
}

.results__label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.results__item p {
  font-size: 15.5px;
  color: #A9BACC;
  line-height: 1.66;
}

.results__note {
  margin-top: 40px;
  font-size: 13px;
  color: #7E90A4;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================ VALUES ============================ */
.values {
  background: var(--cream-2);
}

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

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

.values__item {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  padding: 38px 30px 32px;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.values__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px -24px rgba(11, 30, 54, 0.4);
}

.values__num {
  font-style: normal;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-dk);
  display: block;
  margin-bottom: 20px;
}

.values__title {
  font-size: 26px;
  color: var(--navy-900);
  line-height: 1.22;
  margin-bottom: auto;
  padding-bottom: 30px;
}

.values__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.values__link svg {
  width: 15px;
  height: 8px;
  fill: var(--gold);
  transition: transform 0.25s;
}

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

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

/* ============================ TESTIMONIAL ============================ */
.testimonial {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/bg-testimonial.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.24;
  z-index: 0;
}

.testimonial__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 30, 54, 0.93), rgba(8, 24, 44, 0.9));
}

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

.testimonial__quote {
  font-family: var(--serif);
  font-size: 140px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  display: block;
  height: 56px;
  margin-top: -6px;
}

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

.testimonial__blockquote {
  margin: 0 auto;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.5;
  color: #EAF0F6;
  font-weight: 400;
}

.testimonial__blockquote p + p {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.75;
  color: #AFC0D1;
  margin-top: 26px;
}

.testimonial__by {
  margin-top: 32px;
  font-size: 12px;
  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: 26px;
}

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

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

.contact__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 70px;
  align-items: start;
}

.contact__form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 44px 44px 46px;
  border-radius: 2px;
  box-shadow: 0 26px 54px -34px rgba(11, 30, 54, 0.4);
}

.contact__form-title {
  font-size: clamp(27px, 2.1vw, 35px);
  color: var(--navy-900);
  margin-bottom: 10px;
}

.contact__form-intro {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 30px;
}

.contact__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

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

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

.field__input {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 15px;
  height: 40px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.field__input--select {
  appearance: none;
  cursor: pointer;
  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='%23A87F3D' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 11px;
  padding-right: 38px;
}

.field__input:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 84, 0.16);
  background: #fff;
}

.contact__submit {
  width: 100%;
  margin-top: 26px;
}

.contact__fine {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #8A8F98;
  text-align: center;
}

.contact__info-title {
  font-size: clamp(27px, 2.1vw, 35px);
  color: var(--navy-900);
  margin-bottom: 22px;
}

.contact__info-text {
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
}

.contact__row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(168, 127, 61, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.contact__row-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 6px;
}

.contact__row-value {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.34;
}

.contact__row a:hover .contact__row-value {
  color: var(--gold-dk);
}

.contact__cta {
  margin-top: 34px;
  background: var(--navy-900);
  color: #fff;
  padding: 34px 34px 36px;
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}

.contact__cta-title {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}

.contact__cta p {
  font-size: 15.5px;
  color: #AEBECE;
  margin-bottom: 24px;
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--navy-950);
  color: #93A5B9;
  font-size: 15.5px;
}

.footer__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__top-inner {
  padding-top: 64px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr) minmax(0, 0.95fr);
  gap: 60px;
}

.footer__logo {
  width: 439px;
  height: 84px;
  max-width: 100%;
  height: auto;
  margin-bottom: 26px;
}

.footer__brand p {
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 520px;
}

.footer__heading {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 22px;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__links a::before {
  content: '';
  width: 10px;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s;
  flex-shrink: 0;
}

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

.footer__links a:hover::before {
  width: 18px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__contact-row,
.footer__contact-phone {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer__contact svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.footer__contact-phone strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

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

.footer__bot-inner {
  padding-top: 26px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6E8098;
}

.footer__disc {
  max-width: 900px;
  line-height: 1.65;
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1560px) {
  .header__nav {
    gap: 20px;
  }

  .header__actions {
    gap: 26px;
  }

  .header__nav-link {
    font-size: 15px;
  }

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

@media (max-width: 1400px) {
  .header__nav {
    gap: 16px;
  }

  .header__actions {
    gap: 20px;
  }

  .header__nav-link {
    font-size: 14px;
    letter-spacing: 0.03em;
  }

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

@media (max-width: 1280px) {
  .header__nav {
    gap: 14px;
  }

  .header__nav-link {
    font-size: 13px;
  }

  .btn--sm {
    font-size: 15px;
    padding: 12px 18px;
  }
}

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

  .header__burger {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .header__inner {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 86vw);
    height: 100%;
    background: var(--navy-900);
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
  }

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

  .header__nav-link {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

  .header__nav-extras .btn {
    width: 100%;
    white-space: normal;
  }

  .header__nav-phone {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold-lt);
  }

  .about__inner {
    gap: 48px;
  }

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

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

  .results__item {
    padding: 34px 26px;
  }

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

  .results__item:nth-child(1),
  .results__item:nth-child(3) {
    padding-left: 0;
  }

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

  .accolades__item {
    padding: 0 12px;
  }

  .accolades__item img {
    max-width: 100%;
    height: auto;
  }

  .about__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }

  .about__media {
    max-width: 600px;
  }

  .contact__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

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

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

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

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

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

  body {
    font-size: 16.5px;
  }

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

  .utility__right {
    gap: 16px;
    flex-wrap: wrap;
  }

  .utility__tag {
    font-size: 11px;
  }

  .header__inner {
    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));
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 5vw, 40px) clamp(16px, 4vw, 28px) 0;
  }

  .hero__inner {
    order: 1;
    height: auto;
    padding-top: 24px;
    padding-bottom: 0;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding-right: 0;
  }

  .hero .rule {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__glow {
    display: none;
  }

  .hero__tint {
    background: linear-gradient(
      180deg,
      var(--navy-950) 0%,
      rgba(11, 30, 54, 0.9) 55%,
      rgba(23, 57, 94, 0.5) 100%
    );
  }

  .hero__visual {
    position: relative;
    order: 2;
    width: 100%;
    height: auto;
    margin: 36px auto 0;
    justify-content: center;
  }

  .hero__image {
    height: auto;
    width: min(100%, 620px);
    margin: 0 auto -1px;
  }

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

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

  .accolades__row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 36px;
  }

  .accolades__item {
    flex: 0 1 auto;
    border-left: 0;
    padding: 0;
    min-height: 0;
  }

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

  .values__item {
    min-height: 0;
  }

  .values__title {
    padding-bottom: 24px;
  }

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

  .results__item {
    border-right: 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .results__item:first-child {
    border-top: 0;
  }

  .contact__form-card {
    padding: 30px 24px 32px;
  }

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

  .contact__cta {
    padding: 28px 24px 30px;
  }

  .about__media {
    padding-bottom: 24px;
  }

  .about__media::before {
    display: none;
  }

  .about__stat {
    right: auto;
    left: 0;
    bottom: 0;
    padding: 20px 24px;
  }

  .hero__actions {
    gap: 20px;
  }

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

  .footer__top-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .footer__bot-inner {
    flex-direction: column;
  }

  .footer__logo {
    max-width: 320px;
  }

  .testimonial__blockquote p + p {
    font-size: 15.5px;
  }
}

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__tel {
    justify-content: center;
  }

  .btn {
    width: 100%;
    font-size: 17px;
    padding: 15px 24px;
  }

  .contact__submit,
  .about__copy .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .accolades__row {
    gap: 24px 30px;
  }

  .accolades__item img {
    transform: scale(0.9);
    transform-origin: center;
  }
}
