:root {
  --ink: #0c1b33;
  --ink-2: #132a4c;
  --ink-3: #1b3660;
  --gold: #c49a6c;
  --gold-lt: #dfc29c;
  --gold-dk: #a87e52;
  --paper: #f4efe7;
  --paper-2: #fbf8f3;
  --slate: #4b5568;
  --line: rgba(12, 27, 51, 0.13);
  --container-max: 1320px;
  --pad: 45px;
  --site-chrome-height: 80px;
  --nav-breakpoint: 1200px;
  --display: "Petrona", Georgia, serif;
  --body: "Karla", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

p {
  margin: 0;
}

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

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

.eyebrow::after {
  content: "";
  height: 1px;
  width: 54px;
  background: var(--gold);
  opacity: 0.55;
}

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 16px 34px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  line-height: 1.35;
  text-align: center;
  max-width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: #14243e;
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

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

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

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid rgba(196, 154, 108, 0.28);
  transition: box-shadow 0.3s ease;
}

.header--small {
  box-shadow: 0 12px 34px rgba(6, 14, 28, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 26px);
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding 0.3s ease;
}

.header--small .header__inner {
  padding-top: 9px;
  padding-bottom: 9px;
}

.header__brand {
  flex-shrink: 0;
}

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

.header--small .header__logo {
  height: 40px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
  margin-left: auto;
}

.header__nav-link {
  flex-shrink: 0;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  color: #ede7de;
  white-space: nowrap;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width 0.28s ease;
}

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

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

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

.header__nav-extras {
  display: none;
}

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

.header__tel {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.header__tel-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.6;
}

.header__cta-btn {
  padding: clamp(10px, 0.9vw, 12px) clamp(14px, 1.4vw, 24px);
  font-size: clamp(12px, 1vw, 15px);
  flex-shrink: 0;
  white-space: nowrap;
}

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

.header__toggle-bar {
  display: block;
  width: 20px;
  height: 1.6px;
  background: #fff;
  margin: 4px 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.header__toggle.is-active .header__toggle-bar:nth-child(1) {
  transform: translateY(5.6px) rotate(45deg);
}

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

.header__toggle.is-active .header__toggle-bar:nth-child(3) {
  transform: translateY(-5.6px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 28, 0.55);
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #fbf8f3 0%, #efe7da 62%, #e4d8c6 100%);
  height: calc(100vh - var(--site-chrome-height));
  height: calc(100dvh - var(--site-chrome-height));
  height: calc(100svh - var(--site-chrome-height));
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding: 0;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 53%;
  max-width: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(28px, 4vw, 56px);
  padding-left: max(var(--pad), calc((100vw - var(--container-max)) / 2 + var(--pad)));
  padding-right: clamp(28px, 3vw, 48px);
  background: var(--ink);
  height: 100%;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: luminosity;
}

.hero__content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 86px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(196, 154, 108, 0.34) 0 1px,
    transparent 1px 11px
  );
  opacity: 0.85;
  pointer-events: none;
}

.hero__content > * {
  position: relative;
  z-index: 2;
}

.hero__title {
  color: #fff;
  font-size: clamp(2.05rem, 3.1vw, 3.35rem);
  font-weight: 500;
  margin: 22px 0 20px;
  max-width: 15.5em;
}

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

.hero__subtitle {
  color: #cfd8e6;
  font-size: 17px;
  max-width: 30em;
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

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

.hero__actions .btn {
  font-size: 20px;
  padding: 17px 34px;
}

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

.hero__tel svg {
  flex-shrink: 0;
}

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

.hero__visual::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 66%;
  background: radial-gradient(
    60% 100% at 50% 100%,
    rgba(196, 154, 108, 0.3),
    transparent 72%
  );
}

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

.hero__stamp {
  position: absolute;
  left: 0;
  top: 8%;
  z-index: 3;
  background: var(--gold);
  color: #14243e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 16px;
  pointer-events: auto;
}

/* ---------- accolades ---------- */
.accolades {
  background: var(--ink-2);
  border-top: 1px solid rgba(196, 154, 108, 0.3);
  border-bottom: 1px solid rgba(196, 154, 108, 0.3);
}

.accolades__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.accolades__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: 9em;
  line-height: 1.55;
  flex-shrink: 0;
  border-right: 1px solid rgba(196, 154, 108, 0.3);
  padding-right: 32px;
}

.accolades__slots {
  display: flex;
  align-items: center;
  gap: 38px;
  flex: 1;
  justify-content: space-around;
  flex-wrap: wrap;
}

.accolades__slot {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accolades__slot img {
  width: auto;
  opacity: 0.94;
  transition: opacity 0.25s ease;
}

.accolades__slot img:hover {
  opacity: 1;
}

.accolades__slot--mdaf img {
  height: 84px;
}

.accolades__slot--ntl img {
  height: 76px;
}

.accolades__slot--super img {
  height: 42px;
}

.accolades__slot--aaj img {
  height: 54px;
}

/* ---------- section shell ---------- */
.section {
  padding: 96px 0;
}

.section__head {
  max-width: 44rem;
}

.section__title {
  font-size: clamp(1.95rem, 2.7vw, 2.85rem);
  margin: 20px 0 0;
}

.section__lead {
  font-family: var(--body);
  font-size: 19px;
  font-weight: 500;
  color: var(--slate);
  margin-top: 18px;
  line-height: 1.65;
}

/* ---------- about ---------- */
.about {
  background: var(--paper-2);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  gap: 0 68px;
  align-items: center;
}

.about__figure {
  position: relative;
  padding: 22px 0 22px 22px;
  margin: 0;
}

.about__figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  border: 1px solid var(--gold);
}

.about__image {
  position: relative;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about__caption {
  position: absolute;
  right: 0;
  bottom: -1px;
  background: var(--ink);
  color: #fff;
  padding: 20px 26px;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.4;
  max-width: 14em;
}

.about__caption b {
  display: block;
  font-size: 34px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.about__dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 36px;
}

.about__card {
  border-top: 2px solid var(--gold);
  padding-top: 20px;
}

.about__card-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.about__card-text {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.68;
}

.about__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.about__card-link:hover {
  gap: 14px;
  color: var(--gold-dk);
}

.about__callout {
  margin-top: 38px;
  background: var(--ink);
  color: #fff;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  border-left: 4px solid var(--gold);
}

.about__callout-text {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.4;
  flex: 1;
  min-width: 16em;
}

/* ---------- practice ---------- */
.practice {
  background: var(--paper);
}

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

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

.practice-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(12, 27, 51, 0.13);
}

.practice-card__media {
  position: relative;
  aspect-ratio: 19 / 13;
  overflow: hidden;
}

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

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

.practice-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 27, 51, 0) 40%,
    rgba(12, 27, 51, 0.62)
  );
}

.practice-card__num {
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 2;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-lt);
}

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

.practice-card__title {
  font-size: 21px;
  line-height: 1.24;
}

.practice-card__text {
  font-size: 15px;
  color: var(--slate);
  margin-top: 12px;
  line-height: 1.66;
}

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

/* ---------- case results ---------- */
.cases {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cases::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  mix-blend-mode: luminosity;
}

.cases > * {
  position: relative;
  z-index: 2;
}

.cases .section__title {
  color: #fff;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
}

.cases__item {
  padding: 0 34px;
  position: relative;
}

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

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

.cases__item + .cases__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 11px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(196, 154, 108, 0.42) 0 1px,
    transparent 1px 5px
  );
}

.cases__item b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.cases__item span {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #c4d0e2;
}

.cases__note {
  margin-top: 46px;
  font-size: 14px;
  color: #93a4be;
  max-width: 52em;
}

/* ---------- values ---------- */
.values {
  background: var(--paper-2);
}

.values__grid {
  display: grid;
  grid-template-columns: minmax(0, 34%) minmax(0, 66%);
  gap: 0 68px;
  align-items: start;
}

.values__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.value-card {
  background: var(--paper-2);
  padding: 34px 32px;
}

.value-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold-dk);
  margin-bottom: 20px;
}

.value-card__title {
  font-size: 21px;
}

.value-card__text {
  font-size: 15.5px;
  color: var(--slate);
  margin-top: 11px;
  line-height: 1.68;
}

/* ---------- testimonial ---------- */
.testimonial {
  background: var(--ink-2);
  color: #fff;
}

.testimonial__grid {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  gap: 0 66px;
  align-items: center;
}

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

.testimonial__image {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

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

.testimonial__quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  line-height: 1.36;
  margin: 24px 0 0;
  position: relative;
  padding-top: 34px;
}

.testimonial__quote::before {
  content: "\201C";
  position: absolute;
  top: -22px;
  left: -8px;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.42;
  line-height: 1;
  font-family: var(--display);
}

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

.testimonial__rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.testimonial__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial__stars {
  display: flex;
  gap: 5px;
  margin-top: 6px;
}

.testimonial__stars svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

/* ---------- contact ---------- */
.contact {
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  gap: 0 66px;
  align-items: start;
}

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px 36px 40px;
}

.contact__form-title {
  font-size: 26px;
}

.contact__form-sub {
  font-size: 15.5px;
  color: var(--slate);
  margin-top: 10px;
}

.contact__fields {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

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

.field__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 7px;
}

.field__input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

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

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

.field__input:focus {
  border-color: var(--gold);
  background: #fff;
}

.contact__submit {
  width: 100%;
  margin-top: 24px;
  font-size: 20px;
}

.contact__fine {
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 14px;
  line-height: 1.6;
}

.contact__aside-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.contact__aside-title {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  margin-top: 28px;
}

.contact__info {
  margin-top: 28px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact__info-row {
  background: var(--paper);
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact__info-row svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dk);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact__info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}

.contact__info-text {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.55;
}

.contact__langs {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.contact__lang {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-dk);
  padding: 7px 15px;
  border-radius: 999px;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: #b9c6d9;
  padding-top: 70px;
}

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

.footer__logo {
  height: 60px;
  width: auto;
  max-width: none;
  margin-bottom: 24px;
}

.footer__text {
  font-size: 15.5px;
  line-height: 1.75;
}

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

.footer__links {
  display: grid;
  gap: 12px;
}

.footer__link {
  font-size: 15.5px;
  transition: color 0.2s ease;
}

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

.footer__tel {
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer__address {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.75;
}

.footer__cta {
  margin-top: 22px;
  font-size: 15px;
  padding: 13px 26px;
}

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

.footer__flute {
  height: 9px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(196, 154, 108, 0.4) 0 1px,
    transparent 1px 9px
  );
}

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

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

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

  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .practice-card:hover {
    transform: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1400px) {
  .header__nav {
    gap: 18px;
  }

  .header__cta {
    gap: 12px;
  }
}

@media (max-width: 1280px) {
  :root {
    --pad: 34px;
  }

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

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

  .cases__item {
    padding: 0 30px;
  }

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

  .cases__item:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 48px 28px 40px;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    z-index: 70;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(196, 154, 108, 0.28);
  }

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

  .header__nav[aria-hidden="true"] {
    visibility: hidden;
  }

  .header__nav.is-open[aria-hidden="false"] {
    visibility: visible;
  }

  .header__nav-link {
    font-size: 18px;
    width: 100%;
  }

  .header__nav-extras {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(196, 154, 108, 0.28);
    width: 100%;
  }

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

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

  .header__toggle {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

  .hero__inner {
    height: auto;
    flex: 0 0 auto;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: clamp(40px, 6vw, 56px) clamp(20px, 3vw, 34px) clamp(48px, 7vw, 62px);
  }

  .hero__content::after {
    display: none;
  }

  .hero__title {
    max-width: none;
  }

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

  .about__grid,
  .values__grid,
  .testimonial__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .testimonial__figure {
    order: 2;
  }

  .testimonial__image {
    height: 340px;
  }

  .about__image {
    height: 400px;
  }
}

@media (max-width: 980px) {
  .btn {
    white-space: normal;
  }

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

  .header__cta-btn {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .accolades__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .accolades__label {
    border-right: 0;
    border-bottom: 1px solid rgba(196, 154, 108, 0.3);
    padding: 0 0 18px;
    max-width: none;
    text-align: center;
  }

  .accolades__slots {
    gap: 24px;
  }

  .accolades__slot {
    height: auto;
    min-height: 52px;
  }

  .accolades__slot--mdaf img {
    height: calc(84px * 0.78);
  }

  .accolades__slot--ntl img {
    height: calc(76px * 0.78);
  }

  .accolades__slot--super img {
    height: calc(42px * 0.78);
  }

  .accolades__slot--aaj img {
    height: calc(54px * 0.78);
  }

  .section {
    padding: 70px 0;
  }

  .practice__grid,
  .about__dual,
  .values__cards,
  .contact__row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: clamp(20px, 4vw, 32px) 0 0;
  }

  .hero__content {
    max-width: 100%;
    padding: clamp(32px, 6vw, 48px) clamp(18px, 4vw, 28px) clamp(40px, 7vw, 56px);
  }

  .hero__visual {
    position: relative;
    height: 360px;
  }
}

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

  body {
    font-size: 16px;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero__actions .btn {
    width: 100%;
    font-size: 18px;
    padding: 15px 20px;
    white-space: normal;
  }

  .hero__tel {
    font-size: 21px;
  }

  .hero__visual {
    height: 330px;
  }

  .cases__grid {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }

  .cases__item {
    padding: 0 !important;
  }

  .cases__item + .cases__item::before {
    display: none;
  }

  .cases__item + .cases__item {
    padding-top: 26px;
    border-top: 1px solid rgba(196, 154, 108, 0.22);
  }

  .about__figure {
    padding: 0;
  }

  .about__figure::before {
    display: none;
  }

  .about__caption {
    position: static;
    max-width: none;
  }

  .contact__form {
    padding: 26px 20px 30px;
  }

  .about__callout {
    padding: 22px;
  }

  .testimonial__figure::after {
    display: none;
  }

  .header__logo {
    height: 38px;
  }
}
