/* ============ FONTS ============ */
@font-face {
  font-family: 'Frank Ruhl Libre';
  src: url('../assets/fonts/frank-ruhl-libre-300-900-normal.woff2') format('woff2-variations'),
       url('../assets/fonts/frank-ruhl-libre-300-900-normal.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Karla';
  src: url('../assets/fonts/karla-200-800-normal.woff2') format('woff2-variations'),
       url('../assets/fonts/karla-200-800-normal.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Karla';
  src: url('../assets/fonts/karla-200-800-italic.woff2') format('woff2-variations'),
       url('../assets/fonts/karla-200-800-italic.woff2') format('woff2');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

/* ============ TOKENS ============ */
:root {
  --navy: #093753;
  --navy-deep: #04202F;
  --navy-mid: #0B2F47;
  --gold: #F0D372;
  --gold-warm: #E3C05C;
  --gold-ink: #9A7621;
  --slate: #EDF1F5;
  --slate-line: #D7E0E8;
  --ink: #15242F;
  --ink-soft: #48606F;
  --white: #FFFFFF;
  --container-max: 1320px;
  --pad: 45px;
  --site-chrome-height: 90px;
  --nav-breakpoint: 1200px;
  --ff-d: 'Frank Ruhl Libre', Georgia, 'Times New Roman', serif;
  --ff-b: 'Karla', 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

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

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

p {
  margin: 0 0 1.05em;
}

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

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

.section {
  padding: 104px 0;
}

/* ============ EYEBROW / FLUTE ============ */
.eyebrow {
  font-family: var(--ff-b);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 18px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

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

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

.flute {
  display: inline-flex;
  flex-direction: column;
  gap: 2.5px;
  flex: 0 0 auto;
  margin-top: 6px;
}

.flute i {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.flute i:nth-child(1) { width: 20px; }
.flute i:nth-child(2) { width: 15px; }
.flute i:nth-child(3) { width: 10px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-b);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding: 17px 36px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.3, 1), background-color 0.28s, color 0.28s, box-shadow 0.28s;
  white-space: nowrap;
  max-width: 100%;
  line-height: 1.35;
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 30px -12px rgba(240, 211, 114, 0.6);
}

.btn--primary:hover {
  background: #fbe392;
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(240, 211, 114, 0.5);
  color: var(--gold);
}

.btn--ghost:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

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

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-line);
  transition: box-shadow 0.3s;
  overflow-x: clip;
}

.header--stuck {
  box-shadow: 0 14px 34px -22px rgba(9, 55, 83, 0.4);
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.6vw, 28px);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: padding 0.3s;
  position: relative;
  min-width: 0;
}

.header--stuck .header__bar {
  padding-top: 9px;
  padding-bottom: 9px;
}

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

.header__logo {
  width: 248px;
  height: auto;
  max-width: none;
  flex-shrink: 0;
  transition: width 0.3s;
}

.header--stuck .header__logo {
  width: 206px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 22px);
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.header__nav-link {
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

.header__nav-extras {
  display: none;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  flex: 0 0 auto;
  flex-shrink: 0;
}

.header__cta-btn {
  font-size: clamp(12px, 0.95vw, 15px);
  padding: clamp(9px, 0.85vw, 12px) clamp(14px, 1.3vw, 22px);
  flex-shrink: 0;
}

.header__tel {
  font-family: var(--ff-d);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.header__tel span {
  display: block;
  font-family: var(--ff-b);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  line-height: 1;
}

.header__burger {
  display: none;
  width: 46px;
  height: 40px;
  border: 1px solid var(--slate-line);
  border-radius: 6px;
  background: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 70;
}

.header__burger i {
  display: block;
  width: 20px;
  height: 1.6px;
  background: var(--navy);
  transition: transform 0.28s, opacity 0.28s;
}

.header__burger--open i:nth-child(1) {
  transform: translateY(6.6px) rotate(45deg);
}

.header__burger--open i:nth-child(2) {
  opacity: 0;
}

.header__burger--open i:nth-child(3) {
  transform: translateY(-6.6px) rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 32, 47, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 55;
}

.header__overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  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__texture {
  position: absolute;
  inset: 0;
  background: url('../assets/images/bg-hero-texture.webp') center / cover no-repeat;
  opacity: 0.2;
  mix-blend-mode: luminosity;
  z-index: -3;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(115% 90% at 12% 100%, rgba(240, 211, 114, 0.15), transparent 58%),
    linear-gradient(96deg, var(--navy) 0%, var(--navy) 40%, rgba(9, 55, 83, 0.72) 72%, rgba(4, 32, 47, 0.55) 100%);
  z-index: -2;
}

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

.hero__content {
  position: relative;
  z-index: 3;
  max-width: min(100%, 640px);
  width: min(100%, 52%);
  padding: clamp(16px, 2.5vw, 36px) clamp(8px, 1.5vw, 20px) 0 0;
}

.hero__title {
  font-size: clamp(50px, 5.1vw, 84px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
}

.hero__title em {
  font-style: normal;
  display: block;
  color: var(--gold);
}

.hero__lead {
  font-size: 19.5px;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
  margin: 0 0 34px;
  font-weight: 300;
}

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

.hero__tel {
  display: block;
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.hero__tel small {
  display: block;
  font-family: var(--ff-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

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

.hero__arc {
  position: absolute;
  right: -4%;
  bottom: -20%;
  width: 66%;
  max-width: 900px;
  z-index: -1;
  pointer-events: none;
}

.hero__arc svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  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(--navy-deep);
  border-top: 1px solid rgba(240, 211, 114, 0.34);
  padding: 44px 0 48px;
}

.accolades__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  color: var(--gold);
}

.accolades__head span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.accolades__head hr {
  flex: 1;
  border: 0;
  border-top: 1px solid rgba(240, 211, 114, 0.22);
  margin: 0;
}

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

.accolades__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 136px;
  padding: 6px;
}

.accolades__slot img {
  width: 100%;
  max-width: 292px;
  height: auto;
  opacity: 0.94;
  transition: opacity 0.3s;
}

.accolades__slot:hover img {
  opacity: 1;
}

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

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

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.about__media::after {
  content: '';
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 58%;
  height: 58%;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  z-index: 0;
}

.about__title {
  font-size: clamp(32px, 3.3vw, 50px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}

.about__text {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 640px;
}

.about__pull {
  margin: 30px 0 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--ff-d);
  font-size: 21px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

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

.about__meta div b {
  display: block;
  font-family: var(--ff-d);
  font-size: 30px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.about__meta div span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

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

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

.practice__title {
  font-size: clamp(30px, 3.1vw, 46px);
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 620px;
}

.practice__intro {
  margin: 0;
  max-width: 400px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--slate-line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.34s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.34s, border-color 0.34s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(9, 55, 83, 0.5);
  border-color: rgba(240, 211, 114, 0.7);
}

.card__image {
  position: relative;
  aspect-ratio: 385 / 300;
  overflow: hidden;
  background: var(--navy);
}

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

.card:hover .card__image img {
  transform: scale(1.06);
}

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

.card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  line-height: 1.24;
}

.card__text {
  font-size: 15.5px;
  line-height: 1.66;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

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

.card__more::after {
  content: '';
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s;
}

.card:hover .card__more::after {
  width: 34px;
}

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

.results__texture {
  position: absolute;
  inset: 0;
  background: url('../assets/images/bg-hero-texture.webp') center / cover no-repeat;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  z-index: -2;
}

.results__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 32, 47, 0.86), rgba(9, 55, 83, 0.9));
  z-index: -1;
}

.results__top {
  text-align: center;
  margin-bottom: 58px;
}

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

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

.results__item {
  padding: 12px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

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

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

.results__item b {
  display: block;
  font-family: var(--ff-d);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.results__item span {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.results__item a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.results__item a::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s;
}

.results__item a:hover::after {
  width: 32px;
}

.results__note {
  margin: 56px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

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

.values__top {
  max-width: 660px;
  margin-bottom: 56px;
}

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

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

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

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

.values__item h3 {
  font-size: 19.5px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.3;
}

.values__item p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.68;
  margin: 0 0 18px;
}

.values__item a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.values__item a:hover {
  color: var(--navy);
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--slate);
}

.testimonial__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(36px, 4.6vw, 80px);
  align-items: center;
}

.testimonial__quote {
  font-family: var(--ff-d);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.62;
  color: var(--navy);
  font-weight: 400;
  margin: 0 0 30px;
  position: relative;
}

.testimonial__mark {
  font-family: var(--ff-d);
  font-size: 120px;
  line-height: 0.52;
  color: var(--gold-warm);
  display: block;
  margin: 6px 0 10px;
  margin-left: -6px;
}

.testimonial__who {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__who b {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.testimonial__who span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

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

.testimonial__media {
  position: relative;
}

.testimonial__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  max-height: 540px;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.testimonial__media::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 52%;
  height: 52%;
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  z-index: 0;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--navy);
  color: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}

.contact__title {
  font-size: clamp(30px, 3.1vw, 46px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 22px;
}

.contact__text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 460px;
}

.contact__details {
  margin-top: 38px;
  display: grid;
  gap: 22px;
}

.contact__details > div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__details svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 4px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}

.contact__details b {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact__details a,
.contact__details address {
  font-family: var(--ff-d);
  font-size: 19px;
  font-style: normal;
  color: #fff;
  line-height: 1.45;
}

.form {
  background: #fff;
  padding: clamp(28px, 3vw, 46px);
  border-radius: 2px;
  box-shadow: 0 40px 70px -40px rgba(0, 0, 0, 0.6);
}

.form__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
}

.form__sub {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 26px;
}

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

.form__field {
  margin-bottom: 16px;
}

.form__field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}

.form__field input,
.form__field select {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--slate-line);
  border-radius: 2px;
  background: #FBFCFD;
  font-size: 15.5px;
  line-height: 38px;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form__field select {
  padding-right: 34px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2348606F' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
}

.form__field textarea {
  width: 100%;
  height: 120px;
  padding: 11px 14px;
  border: 1px solid var(--slate-line);
  border-radius: 2px;
  background: #FBFCFD;
  font-size: 15.5px;
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(9, 55, 83, 0.1);
  outline: none;
}

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

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

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: clamp(34px, 4vw, 72px);
}

.footer__logo {
  width: 270px;
  margin-bottom: 24px;
}

.footer p {
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.66);
}

.footer__heading {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-family: var(--ff-b);
}

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

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

.footer__list a {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
}

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

.footer address {
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.footer__tel {
  font-family: var(--ff-d);
  font-size: 24px;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

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

.footer__bottom {
  margin-top: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom p {
  margin: 0;
  font-size: 12.5px;
  max-width: none;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

.reveal--d1 { transition-delay: 0.09s; }
.reveal--d2 { transition-delay: 0.18s; }
.reveal--d3 { transition-delay: 0.27s; }

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

  *,
  *::before,
  *::after {
    animation: none !important;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1400px) {
  .header__tel--bar {
    display: none;
  }
}

@media (max-width: 1320px) {
  :root {
    --pad: 28px;
  }
}

/* Nav hamburger breakpoint — 1200px */
@media (max-width: 1200px) {
  .header__tel--bar,
  .header__cta-btn {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__cta {
    gap: 12px;
  }

  .header__nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 88px 28px 40px;
    border-left: 1px solid var(--slate-line);
    box-shadow: -24px 0 48px -28px rgba(9, 55, 83, 0.45);
    transform: translateX(105%);
    transition: transform 0.34s cubic-bezier(0.2, 0.7, 0.3, 1);
    z-index: 65;
    overflow-y: auto;
  }

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

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

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

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 28px;
    width: 100%;
  }

  .header__nav-extras .header__tel {
    font-size: 22px;
  }

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

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

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

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

  .accolades__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 34px;
  }

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

  .about__media {
    max-width: 520px;
  }

  .testimonial__media {
    max-width: 560px;
  }

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

  .results__item {
    padding: 0 26px;
  }

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

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

  .section {
    padding: 82px 0;
  }
}

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

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

@media (max-width: 768px) {
  .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(32px, 6vw, 48px) 0 0;
  }

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

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

  .hero__lead {
    max-width: none;
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    pointer-events: auto;
  }

  .hero__image {
    height: auto;
    width: min(560px, 100%);
  }

  .hero__arc {
    width: 100%;
    right: -10%;
    bottom: -6%;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 20px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .hero__title {
    font-size: clamp(38px, 10vw, 52px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

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

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

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

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

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

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

  .about__media::after,
  .testimonial__media::after {
    display: none;
  }

  .about__meta {
    gap: 24px;
  }
}
