:root {
  --ink: #141414;
  --charcoal: #202020;
  --charcoal-2: #2b2b2b;
  --gold: #c2a15c;
  --gold-lt: #e0c98d;
  --bone: #f4f1ec;
  --paper: #fbfaf8;
  --rule: rgba(194, 161, 92, 0.32);
  --body: #4a4744;
  --display: "Gilda Display", Georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, Segoe UI, sans-serif;
  --container-max: 1320px;
  --nav-breakpoint: 1200px;
  --site-chrome-height: 92px;
  --pad: clamp(20px, 3vw, 45px);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.14;
  letter-spacing: 0.005em;
}

p {
  margin: 0 0 1.15em;
}

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

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

.container > *,
.about__grid > *,
.practice__grid > *,
.cases__grid > *,
.values__grid > *,
.contact__grid > *,
.footer__grid > *,
.contact__row > *,
.contact__line > * {
  min-width: 0;
}

/* ---------- Shared ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}

.eyebrow::after {
  content: "";
  flex: 1 1 40px;
  min-width: 0;
  height: 1px;
  background: var(--rule);
  max-width: 130px;
}

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

.eyebrow--center::before {
  content: "";
  flex: 1 1 40px;
  min-width: 0;
  height: 1px;
  background: var(--rule);
  max-width: 130px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  padding: 19px 38px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: 0.28s ease;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: #1a1a1a;
}

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

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

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

.section-head__title {
  font-size: clamp(34px, 3.1vw, 50px);
}

.section-head__title--light {
  color: #fff;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(20, 20, 20, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194, 161, 92, 0.22);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  height: 92px;
}

.header__brand {
  flex-shrink: 0;
}

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

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

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

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

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

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

.header__cta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
  padding-left: clamp(16px, 2vw, 30px);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  flex-shrink: 0;
}

.header__tel {
  font-family: var(--display);
  font-size: clamp(15px, 1.25vw, 19px);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header__cta .btn {
  font-size: clamp(12px, 1vw, 14px);
  padding: clamp(10px, 1vw, 13px) clamp(16px, 1.6vw, 26px);
  flex-shrink: 0;
}

.header__burger {
  display: none;
  position: relative;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.header__burger-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.header__burger-line:nth-child(1) {
  top: 14px;
}

.header__burger-line:nth-child(2) {
  top: 21px;
}

.header__burger-line:nth-child(3) {
  top: 28px;
}

.header.is-menu-open .header__burger-line:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

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

.header.is-menu-open .header__burger-line:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

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

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

.header__panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(360px, 88vw);
  height: 100%;
  height: 100dvh;
  background: var(--ink);
  border-left: 1px solid rgba(194, 161, 92, 0.22);
  padding: 28px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}

.header__panel.is-open {
  transform: translateX(0);
  visibility: visible;
}

.header__nav-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  margin: -8px -8px 0 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.header__panel-links {
  display: flex;
  flex-direction: column;
}

.header__panel-link {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  color: #ded9d2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

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

.header__panel-tel {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  text-align: center;
}

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

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

@media (max-width: 1200px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__inner {
    height: 76px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  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::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 15, 15, 0.96) 0%,
    rgba(17, 17, 17, 0.86) 46%,
    rgba(20, 20, 20, 0.45) 100%
  );
}

.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: 55%;
  padding: clamp(8px, 1.5vw, 20px) clamp(0px, 1vw, 12px) clamp(8px, 1.5vw, 20px) 0;
}

.hero__title {
  font-size: clamp(38px, 3.85vw, 62px);
  color: #fff;
  letter-spacing: -0.008em;
}

.hero__kicker {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  max-width: 520px;
  line-height: 1.75;
}

.hero__lede {
  font-family: var(--display);
  font-size: clamp(19px, 1.55vw, 25px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 24px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}

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

.hero__tel {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__tel-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__tel-number {
  display: block;
}

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

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 45%;
  height: 90%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0 clamp(20px, 3vw, 40px) 5%;
  pointer-events: none;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -14px clamp(6px, 2vw, 26px) calc(5% + 14px) -14px;
  border: 1px solid var(--rule);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 32%;
}

@media (max-width: 1100px) {
  .hero__visual {
    display: none;
  }

  .hero__content {
    width: 100%;
    max-width: min(100%, 720px);
  }
}

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

  .hero__actions .btn {
    font-size: 17px;
    padding: 16px 28px;
  }
}

@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(36px, 6vw, 56px) clamp(20px, 4vw, 28px) clamp(48px, 8vw, 72px);
  }

  .hero__inner {
    height: auto;
  }

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

  .hero__visual {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .hero__actions {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero__actions .btn {
    width: 100%;
    font-size: 16px;
    padding: 16px 22px;
  }

  .hero__tel {
    width: 100%;
  }
}

/* ---------- Accolades ---------- */
.accolades {
  background: var(--charcoal);
  border-top: 1px solid rgba(194, 161, 92, 0.18);
  border-bottom: 1px solid rgba(194, 161, 92, 0.18);
}

.accolades__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 0;
  padding: 34px 0;
}

.accolades__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  min-height: 96px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.accolades__item:last-child {
  border-right: 0;
}

.accolades__item svg {
  width: 100%;
  height: auto;
  max-width: 172px;
  opacity: 0.9;
  transition: 0.3s;
}

.accolades__item:hover svg {
  opacity: 1;
}

@media (max-width: 980px) {
  .accolades__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .accolades__item:nth-child(2n) {
    border-right: 0;
  }

  .accolades__item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

/* ---------- About ---------- */
.about {
  padding: 108px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 74px;
  align-items: center;
}

.about__figure {
  position: relative;
}

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

.about__figure::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 60%;
  height: 62%;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  pointer-events: none;
}

.about__title {
  font-size: clamp(34px, 3.1vw, 50px);
  margin-bottom: 26px;
}

.about__content p {
  font-size: 17px;
}

.about__pull {
  margin: 32px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--rule);
  font-family: var(--display);
  font-size: 21px;
  color: var(--ink);
  line-height: 1.5;
}

.about__actions {
  margin-top: 34px;
}

@media (max-width: 1000px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about {
    padding: 74px 0;
  }

  .about__image {
    height: 420px;
  }
}

/* ---------- Practice ---------- */
.practice {
  padding: 104px 0;
  background: var(--bone);
}

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

.practice-card {
  background: #fff;
  overflow: hidden;
  position: relative;
  transition: 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px -30px rgba(20, 20, 20, 0.5);
}

.practice-card__media {
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

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

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

.practice-card__body {
  padding: 32px 34px 36px;
}

.practice-card__title {
  font-size: 26px;
  margin-bottom: 12px;
}

.practice-card__text {
  font-size: 15.5px;
  margin-bottom: 20px;
}

.practice-card__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  gap: 9px;
  align-items: center;
  transition: gap 0.28s;
}

.practice-card__link:hover {
  gap: 15px;
}

@media (max-width: 940px) {
  .practice__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .practice {
    padding: 74px 0;
  }
}

/* ---------- Case Results ---------- */
.cases {
  position: relative;
  padding: 104px 0;
  background: var(--ink);
  color: #fff;
}

.cases::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg-cases.jpg");
  background-size: cover;
  background-position: center 30%;
  opacity: 0.5;
}

.cases__inner {
  position: relative;
  z-index: 2;
}

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

.cases__item {
  padding: 14px 34px;
  border-left: 1px solid rgba(194, 161, 92, 0.3);
}

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

.cases__figure {
  font-family: var(--display);
  font-size: clamp(34px, 3.35vw, 50px);
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -0.01em;
}

.cases__type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin: 16px 0 20px;
}

.cases__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

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

@media (max-width: 1000px) {
  .cases__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }

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

  .cases {
    padding: 74px 0;
  }
}

@media (max-width: 520px) {
  .cases__grid {
    grid-template-columns: 1fr;
  }

  .cases__item {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(194, 161, 92, 0.28);
    padding-top: 26px;
  }

  .cases__item:first-child {
    border-top: 0;
    padding-top: 0;
  }
}

/* ---------- Values ---------- */
.values {
  padding: 104px 0;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(0, 0, 0, 0.09);
}

.values__item {
  background: var(--paper);
  padding: 44px 34px 40px;
  transition: 0.35s;
}

.values__item:hover {
  background: #fff;
}

.values__num {
  font-family: var(--display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.values__title {
  font-size: 23px;
  line-height: 1.28;
  margin-bottom: 16px;
  min-height: 2.56em;
}

.values__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

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

@media (max-width: 1000px) {
  .values__grid {
    grid-template-columns: 1fr 1fr;
  }

  .values {
    padding: 74px 0;
  }

  .values__title {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .values__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--charcoal);
  color: #fff;
  padding: 104px 0;
}

.testimonials__inner {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__title {
  color: #fff;
  font-size: clamp(30px, 2.6vw, 42px);
  margin-bottom: 34px;
}

.testimonials__quote {
  font-family: var(--display);
  font-size: clamp(19px, 1.62vw, 26px);
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.9);
}

.testimonials__name {
  margin-top: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonials__stars {
  color: var(--gold);
  letter-spacing: 0.34em;
  font-size: 16px;
  margin-bottom: 26px;
}

@media (max-width: 860px) {
  .testimonials {
    padding: 74px 0;
  }
}

/* ---------- Contact ---------- */
.contact {
  padding: 104px 0;
  background: var(--bone);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 74px;
  align-items: start;
}

.contact__title {
  font-size: clamp(34px, 3.1vw, 50px);
  margin-bottom: 22px;
}

.contact__line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  align-items: flex-start;
}

.contact__line:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 96px;
  padding-top: 5px;
}

.contact__value {
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.5;
}

.contact__form {
  background: #fff;
  padding: 44px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

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

.field {
  margin-bottom: 18px;
}

.field__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8580;
  margin-bottom: 9px;
}

.field__input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
  transition: 0.24s;
}

.field__input--select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8a8580 50%),
    linear-gradient(135deg, #8a8580 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 17px,
    calc(100% - 13px) 17px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

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

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

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

.contact__disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: #918c86;
  margin: 16px 0 0;
  text-align: center;
}

@media (max-width: 620px) {
  .contact__label {
    min-width: 100%;
  }

  .contact__value {
    font-size: 18px;
  }
}

@media (max-width: 1000px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact {
    padding: 74px 0;
  }

  .contact__form {
    padding: 30px 24px;
  }
}

@media (max-width: 560px) {
  .contact__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

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

.footer__logo {
  width: 290px;
  max-width: none;
  margin-bottom: 26px;
  flex-shrink: 0;
}

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

.footer__link {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.62);
}

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

.footer__tel {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
}

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

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

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__logo {
    width: 230px;
  }
}

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

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

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

  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
