:root {
  --ink: #0A1526;
  --ink-2: #12233C;
  --ink-3: #1B3050;
  --brass: #B08D4F;
  --brass-lt: #D9BE8A;
  --bone: #F4F2EC;
  --bone-2: #EAE7DF;
  --slate: #5A6675;
  --line: #DDD8CE;
  --white: #fff;
  --ff-display: "Gilda Display", Didot, "Times New Roman", serif;
  --ff-body: "Karla", "Helvetica Neue", Arial, sans-serif;
  --pad: 45px;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 112px;
}

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

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.75;
  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 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.002em;
}

p {
  margin: 0 0 1.15em;
}

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

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

/* ---------- shared ---------- */
.container {
  width: 95%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 80px;
  background: linear-gradient(90deg, var(--brass), transparent);
}

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

.eyebrow--center::before {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 80px;
  background: linear-gradient(270deg, var(--brass), transparent);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.35;
  padding: 20px 40px;
  border-radius: 999px;
  border: 1px solid var(--brass);
  background: var(--brass);
  color: #0A1526;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px -14px rgba(176, 141, 79, 0.75);
  max-width: 100%;
  text-align: center;
}

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

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brass-lt);
  color: var(--white);
}

.btn--sm {
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
}

.btn--ink {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: none;
}

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

.section--large {
  padding: 100px 0;
}

.section--alt {
  background: var(--bone-2);
}

.section--dark {
  color: rgba(255, 255, 255, 0.82);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.rule {
  border: 0;
}

.rule--brass {
  width: 64px;
  height: 2px;
  background: var(--brass);
  margin: 0 0 28px;
}

.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.is-in {
  opacity: 1;
  transform: none;
}

.reveal:nth-child(4n + 2) {
  transition-delay: 90ms;
}

.reveal:nth-child(4n + 3) {
  transition-delay: 180ms;
}

.reveal:nth-child(4n + 4) {
  transition-delay: 270ms;
}

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

  * {
    scroll-behavior: auto !important;
  }
}

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid rgba(176, 141, 79, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 112px;
  padding: 12px 0;
}

.header__brand {
  flex: 0 0 auto;
  display: block;
}

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

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

.header__nav-link {
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.87);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--brass-lt);
  transition: width 0.3s ease;
}

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

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 auto;
}

.header__tel {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.35vw, 21px);
  color: var(--white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.header__tel svg {
  width: 15px;
  height: 15px;
  fill: var(--brass-lt);
  flex: 0 0 auto;
}

.header__cta .btn--sm {
  font-size: clamp(12px, 1.05vw, 15px);
  padding: clamp(10px, 0.9vw, 13px) clamp(16px, 1.6vw, 26px);
  flex-shrink: 0;
  white-space: nowrap;
}

.header__toggle,
.header__nav-close,
.header__overlay,
.header__nav-extras {
  display: none;
}

.header__toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(176, 141, 79, 0.45);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.header__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brass-lt);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.header__nav-close {
  width: 44px;
  height: 44px;
  margin: 0 0 24px auto;
  padding: 0;
  border: 1px solid rgba(176, 141, 79, 0.45);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.header__overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(10, 21, 38, 0.55);
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  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.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: grayscale(0.4);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    var(--ink) 0%,
    rgba(10, 21, 38, 0.94) 42%,
    rgba(18, 35, 60, 0.62) 72%,
    rgba(27, 48, 80, 0.5) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, min(100%, 640px)) minmax(0, 1fr);
}

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

.hero__title {
  font-size: clamp(40px, 3.5vw, 60px);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 26px;
  letter-spacing: -0.005em;
}

.hero__amp {
  color: var(--brass-lt);
  font-style: italic;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.8);
  max-width: 52ch;
  margin: 0 0 34px;
}

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

.hero__tel {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}

.hero__tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero__tel small {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 4px;
}

.hero__tel i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(176, 141, 79, 0.55);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.hero__tel i svg {
  width: 16px;
  height: 16px;
  fill: var(--brass-lt);
}

.hero__colonnade {
  align-self: stretch;
  position: relative;
  min-width: 0;
}

.hero__colonnade::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(176, 141, 79, 0.4) 0 1px,
    transparent 1px 46px
  );
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}

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

.hero__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(430px, 90%);
  height: min(430px, 70%);
  border-radius: 50%;
  z-index: -1;
  background: radial-gradient(circle, rgba(176, 141, 79, 0.2), transparent 68%);
}

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

/* ---------- accolades ---------- */
.accolades {
  background: var(--ink-2);
  border-top: 1px solid rgba(176, 141, 79, 0.2);
  padding: 46px 0 50px;
}

.accolades__label {
  margin: 0 0 34px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(217, 190, 138, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.accolades__label::before,
.accolades__label::after {
  content: "";
  height: 1px;
  width: clamp(28px, 6vw, 92px);
  background: rgba(176, 141, 79, 0.5);
}

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

.accolades__item {
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

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

.accolades__item img {
  width: auto;
  max-width: 100%;
  opacity: 0.8;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.accolades__item:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.accolades__item--mdaf img,
.accolades__item--ntl img {
  height: 84px;
}

.accolades__item--sl img {
  height: 44px;
}

.accolades__item--aaj img {
  height: 66px;
}

/* ---------- about ---------- */
.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
}

.about__figure {
  position: relative;
  margin: 0;
}

.about__image {
  width: 100%;
  height: clamp(420px, 44vw, 620px);
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.about__figure::before {
  content: "";
  position: absolute;
  left: -14px;
  top: -16px;
  width: 132px;
  height: 112px;
  z-index: 1;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(176, 141, 79, 0.6) 0 1px,
    transparent 1px 14px
  );
}

.about__caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 52px;
  background: var(--ink);
  color: #fff;
  padding: 22px 30px;
  max-width: 70%;
  border-left: 3px solid var(--brass);
}

.about__caption b {
  display: block;
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.about__caption span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--brass-lt);
}

.about__title {
  font-size: clamp(29px, 2.5vw, 42px);
  margin: 0 0 18px;
  max-width: 22ch;
}

.about__lede {
  font-size: 19.5px;
  font-weight: 500;
  line-height: 1.62;
  color: var(--ink-3);
  margin: 0 0 26px;
  max-width: 46ch;
}

.about__body {
  color: var(--slate);
  max-width: 60ch;
}

.about__body p {
  margin-bottom: 1.3em;
}

.about__sig {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.about__sig p {
  font-size: 14.5px;
  color: var(--slate);
  max-width: 30ch;
  margin: 0;
}

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

.practice__title {
  font-size: clamp(29px, 2.5vw, 42px);
  max-width: 24ch;
}

.practice__intro {
  font-size: 15px;
  color: var(--slate);
  max-width: 34ch;
  margin: 0;
}

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

.practice__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.practice__card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 50px -26px rgba(10, 21, 38, 0.4);
  border-color: var(--brass);
}

.practice__media {
  position: relative;
  aspect-ratio: 19 / 14;
  overflow: hidden;
  background: var(--ink);
}

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

.practice__card:hover .practice__media img {
  transform: scale(1.07);
}

.practice__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 21, 38, 0.05), rgba(10, 21, 38, 0.55));
}

.practice__body {
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.practice__card-title {
  font-size: 23px;
  line-height: 1.24;
}

.practice__body p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.68;
  flex: 1;
}

.practice__more {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.practice__more::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
  transition: width 0.3s ease;
}

.practice__card:hover .practice__more::after {
  width: 38px;
}

/* ---------- results ---------- */
.results {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

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

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 21, 38, 0.92), rgba(10, 21, 38, 0.97));
}

.results__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.results__title {
  font-size: clamp(29px, 2.5vw, 42px);
  margin: 0 0 12px;
  color: #fff;
}

.results__note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 58px;
  max-width: 52ch;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(176, 141, 79, 0.28);
}

.results__item {
  background: var(--ink);
  padding: 52px 26px;
}

.results__item b {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(34px, 3.1vw, 50px);
  font-weight: 400;
  color: var(--brass-lt);
  line-height: 1;
  letter-spacing: -0.01em;
}

.results__item span {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.results__cta {
  margin-top: 56px;
}

/* ---------- values ---------- */
.values__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: center;
}

.values__figure {
  position: relative;
  margin: 0;
}

.values__image {
  width: 100%;
  height: clamp(400px, 42vw, 560px);
  object-fit: cover;
}

.values__figure::after {
  content: "";
  position: absolute;
  right: -16px;
  top: -16px;
  width: 120px;
  height: 120px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(176, 141, 79, 0.55) 0 1px,
    transparent 1px 14px
  );
}

.values__title {
  font-size: clamp(29px, 2.5vw, 42px);
  margin: 0 0 34px;
  max-width: 20ch;
}

.values__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.values__item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}

.values__item:last-child {
  border-bottom: 1px solid var(--line);
}

.values__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.values__icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.4;
}

.values__item-title {
  font-size: 21px;
  margin: 0 0 6px;
}

.values__item p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.68;
  margin: 0 0 8px;
}

.values__link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}

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

/* ---------- testimonial ---------- */
.testimonial {
  position: relative;
  background: var(--ink-2);
  overflow: hidden;
}

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

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 35, 60, 0.94), rgba(10, 21, 38, 0.96));
}

.testimonial__inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
}

.testimonial__mark {
  font-family: var(--ff-display);
  font-size: 96px;
  line-height: 0.7;
  color: var(--brass);
  display: block;
  margin: 0 0 6px;
}

.testimonial__quote {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(20px, 1.85vw, 29px);
  line-height: 1.55;
  color: #fff;
  letter-spacing: 0.002em;
}

.testimonial__by {
  margin-top: 38px;
  padding-top: 26px;
  display: inline-block;
  border-top: 1px solid rgba(176, 141, 79, 0.45);
}

.testimonial__by b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}

.testimonial__by span {
  font-size: 12px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(217, 190, 138, 0.8);
}

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

.testimonial__stars svg {
  width: 17px;
  height: 17px;
  fill: var(--brass-lt);
}

/* ---------- contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact__title {
  font-size: clamp(29px, 2.5vw, 42px);
  margin: 0 0 18px;
  max-width: 20ch;
}

.contact__lede {
  color: var(--slate);
  max-width: 44ch;
  margin: 0 0 36px;
}

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

.contact__fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact__fact:last-child {
  border-bottom: 1px solid var(--line);
}

.contact__fact i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.contact__fact i svg {
  width: 16px;
  height: 16px;
  fill: var(--brass-lt);
  stroke: none;
}

.contact__fact em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 3px;
}

.contact__fact b {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(30px, 3.4vw, 48px);
  box-shadow: 0 30px 60px -40px rgba(10, 21, 38, 0.35);
}

.form__title {
  font-size: 25px;
  margin: 0 0 8px;
}

.form__intro {
  font-size: 14.5px;
  color: var(--slate);
  margin: 0 0 30px;
}

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

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

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

.form__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink);
}

.form__input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bone);
  font-size: 15.5px;
  font-family: var(--ff-body);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form__textarea {
  height: 120px;
  padding: 12px 15px;
  resize: vertical;
  line-height: 1.6;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235A6675' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 11px;
  padding-right: 38px;
  cursor: pointer;
}

.form__input:focus {
  outline: none;
  border-color: var(--brass);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(176, 141, 79, 0.16);
}

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

.form__disclaimer {
  display: block;
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--slate);
  text-align: center;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  padding: 80px 0 0;
  font-size: 15px;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 70px);
}

.footer__logo {
  height: 96px;
  width: auto;
  max-width: none;
  margin: 0 0 26px;
}

.footer__brand p {
  max-width: 44ch;
  line-height: 1.75;
  font-size: 15px;
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin: 0 0 22px;
}

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

.footer__list a:hover,
.footer__contact a:hover {
  color: var(--brass-lt);
}

.footer__contact {
  display: grid;
  gap: 16px;
}

.footer__contact b {
  display: block;
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 400;
  color: #fff;
}

.footer__contact address {
  font-style: normal;
  line-height: 1.7;
}

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

/* ---------- progressive header scaling before hamburger ---------- */
@media (max-width: 1400px) {
  .header__nav {
    gap: 22px;
  }

  .header__cta {
    gap: 16px;
  }
}

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

  .header__nav {
    gap: 16px;
  }

  .header__cta {
    gap: 12px;
  }
}

/* ---------- nav breakpoint: hamburger below 1200px ---------- */
@media (max-width: 1200px) {
  .header__toggle {
    display: inline-flex;
  }

  .header__cta {
    display: none;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header__nav-close {
    display: inline-flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    width: min(360px, 88vw);
    height: 100%;
    margin: 0;
    padding: 28px 28px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--ink);
    border-left: 1px solid rgba(176, 141, 79, 0.3);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

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

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

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

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

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

  .hero__colonnade {
    display: none;
  }

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

  .hero__visual {
    width: 42%;
  }

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

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

/* ---------- button wrap ---------- */
@media (max-width: 980px) {
  :root {
    --pad: 34px;
  }

  .btn {
    white-space: normal;
    font-size: 17px;
    padding: 16px 28px;
  }

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

  .accolades__item {
    padding: 18px 16px;
  }

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

  .accolades__item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section--large {
    padding: 74px 0;
  }

  .about__inner,
  .values__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .about__figure,
  .values__figure {
    order: -1;
  }

  .about__image {
    height: clamp(340px, 58vw, 480px);
  }

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

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

/* ---------- mobile hero + layout ---------- */
@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) clamp(20px, 4vw, 28px) 0;
  }

  .hero__inner {
    height: auto;
    justify-items: center;
    text-align: center;
  }

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

  .eyebrow {
    justify-content: center;
  }

  .eyebrow::before {
    content: "";
    height: 1px;
    flex: 1;
    max-width: 80px;
    background: linear-gradient(270deg, var(--brass), transparent);
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
    gap: 24px;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 360px;
    margin-top: 8px;
  }

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

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

  :root {
    --pad: 26px;
  }

  .section--large {
    padding: 58px 0;
  }

  .header__inner {
    gap: 10px 16px;
    padding: 9px 0;
    min-height: 72px;
  }

  .hero__title {
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .hero__subtitle {
    font-size: 16.5px;
  }

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

  .hero__tel {
    justify-content: center;
    white-space: normal;
  }

  .accolades {
    padding: 34px 0 38px;
  }

  .accolades__label {
    margin-bottom: 24px;
    font-size: 10.5px;
    letter-spacing: 0.2em;
  }

  .accolades__item {
    min-height: 92px;
    padding: 14px 10px;
  }

  .accolades__item--mdaf img {
    height: 64px;
  }

  .accolades__item--ntl img {
    height: 58px;
  }

  .accolades__item--sl img {
    height: 32px;
  }

  .accolades__item--aaj img {
    height: 48px;
  }

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

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

  .results__item {
    padding: 38px 22px;
  }

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

  .about__caption {
    position: static;
    max-width: none;
    margin-top: -1px;
  }

  .about__figure::before,
  .values__figure::after {
    display: none;
  }

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

  .footer__logo {
    height: 74px;
  }

  .testimonial__mark {
    font-size: 70px;
  }
}

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

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