:root {
  --cobblestone: #aa9f95;
  --creme: #d2cdc3;
  --ruby: #3e1f20;
  --brownie: #3e2b24;

  --bg: var(--creme);
  --text: var(--brownie);
  --accent: var(--ruby);
  --light: #f5f1eb;

  --font-main: "Inter", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-script: "Great Vibes", cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
}

body.menu-open {
  overflow: hidden;
}

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

.container {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: var(--light);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 13, 11, 0.72),
    rgba(20, 13, 11, 0)
  );
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  height: 130px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  min-width: max-content;
}

.logo span {
  font-family: var(--font-script);
  font-size: 66px;
  color: rgba(127, 55, 57, 0.95);
  font-weight: 300;
}

.logo strong {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.9;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--light);
  transition: width 0.35s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-btn {
  padding: 18px 32px;
  background: rgba(94, 38, 40, 0.92);
  color: var(--light);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.header-btn:hover {
  background: transparent;
  outline: 1px solid rgba(245, 241, 235, 0.45);
}

.burger {
  display: none;
  width: 44px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1px;
  margin-left: auto;
  background: var(--light);
  transition: 0.35s ease;
}

.burger span:nth-child(1) {
  width: 44px;
}

.burger span:nth-child(2) {
  width: 28px;
  margin-top: 10px;
}

.burger span:nth-child(3) {
  width: 36px;
  margin-top: 10px;
}

.burger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(12px);
}

.burger.active span:nth-child(3) {
  width: 44px;
  transform: translateY(-11px) rotate(-45deg);
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("./img/hero.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(20, 13, 11, 0.38),
      rgba(20, 13, 11, 0.78)
    ),
    linear-gradient(180deg, rgba(20, 13, 11, 0.62), rgba(20, 13, 11, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 220px;
  padding-bottom: 90px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  color: var(--light);
}

.hero-subtitle {
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero h1 {
  max-width: 1100px;
  font-family: var(--font-serif);
  font-size: clamp(60px, 8vw, 118px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero p {
  max-width: 620px;
  margin-bottom: 42px;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(245, 241, 235, 0.88);
}

.hero-btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 22px 104px 22px 44px;

  background: rgba(94, 38, 40, 0.92);
  color: var(--light);

  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  transition: 0.35s ease;
}

.hero-btn::after {
  content: "";

  position: absolute;
  left: calc(75% + 24px);
  top: 50%;

  width: 180px;
  height: 1px;

  background: rgba(245, 241, 235, 0.38);

  transform: translateY(-50%);
}

.hero-btn::before {
  content: "";

  position: absolute;
  right: -104px;
  top: 50%;

  width: 10px;
  height: 10px;

  border-top: 1px solid rgba(245, 241, 235, 0.7);
  border-right: 1px solid rgba(245, 241, 235, 0.7);

  transform: translateY(-50%) rotate(45deg);
}

.hero-btn:hover {
  background: transparent;
  outline: 1px solid rgba(245, 241, 235, 0.42);
}

/* ADAPTIVE */

@media (max-width: 1180px) {
  .nav {
    gap: 22px;
  }

  .header-btn {
    padding: 17px 24px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    height: 82px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;

    width: 100%;
    height: 100vh;

    padding: 120px 40px 40px;

    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;

    background: var(--ruby);
    transform: translateX(100%);
    transition: transform 0.45s ease;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    font-family: var(--font-serif);
    font-size: clamp(20px, 7vw, 40px);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: none;
  }

  .header-btn {
    margin-left: auto;
  }

  .burger {
    position: relative;
    z-index: 120;
    display: block;
  }

  .logo {
    position: relative;
    z-index: 120;
  }

  .hero h1 {
    font-size: clamp(54px, 10vw, 92px);
  }
}

@media (max-width: 720px) {
  .container {
    width: 100%;
  }
  .header-inner {
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
  }
  .logo span {
    font-size: 40px;
  }

  .logo strong {
    font-size: 30px;
  }

  .header-btn {
    display: none;
  }

  .hero {
    background-position: center top;
    max-height: 700px;
    min-height: auto;
  }

  .hero-content {
    padding-top: 330px;
    justify-content: end;
  }

  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-btn {
    width: 85%;
    max-width: 340px;
    padding: 20px 44px 20px 24px;
  }

  .hero-btn::after {
    content: "";
    position: absolute;
    left: calc(80% + 24px);
    top: 50%;
    width: 50px;
    height: 1px;
    background: rgba(245, 241, 235, 0.38);
    transform: translateY(-50%);
  }
  .hero-btn::before {
    right: -10px;
  }
}

.marquee-section {
  overflow: hidden;
  background: var(--ruby);
  color: var(--light);
}

.marquee-section.light {
  background-color: var(--light);
  color: var(--ruby);
}

.marquee {
  width: 100%;
  padding: 26px 0;
  border-top: 1px solid rgba(245, 241, 235, 0.14);
  border-bottom: 1px solid rgba(245, 241, 235, 0.14);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
}

.marquee-track span {
  position: relative;
  padding: 0 34px;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(245, 241, 235, 0.82);
}

.marquee-track span::after {
  content: "Ψ";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 22px;
  color: rgba(245, 241, 235, 0.34);
}

.marquee-section.light .marquee-track span {
  color: var(--ruby);
}

.marquee-section.light .marquee-track span::after {
  color: var(--ruby);
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  background: var(--creme);
}

.about-section::before {
  content: "Ψ";
  position: absolute;
  right: -40px;
  top: 50px;
  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 360px);
  line-height: 1;
  color: rgba(62, 31, 32, 0.055);
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  gap: 96px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  min-height: 720px;
}

.about-photo {
  position: absolute;
  inset: 24px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.about-psy {
  position: absolute;
  left: -38px;
  top: -62px;
  z-index: 3;
  font-family: var(--font-serif);
  font-size: 170px;
  line-height: 1;
  color: rgba(62, 31, 32, 0.82);
}

.about-content {
  max-width: 760px;
}

.section-kicker {
  margin-bottom: 30px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(62, 43, 36, 0.62);
}

.section-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 54px;
  line-height: 0.88;
}

.section-title span {
  font-family: var(--font-script);
  font-size: clamp(70px, 8vw, 128px);
  font-weight: 300;
  color: rgba(127, 55, 57, 0.95);
}

.section-title strong {
  font-family: var(--font-serif);
  font-size: clamp(46px, 5vw, 86px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brownie);
}

.about-text {
  display: grid;
  gap: 28px;
}

.about-text p {
  font-size: 20px;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(62, 43, 36, 0.82);
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .about-inner {
    gap: 64px;
  }

  .about-photo-wrap {
    min-height: 620px;
  }
}

@media (max-width: 900px) {
  .about-section {
    padding: 120px 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    min-height: 680px;
  }

  .about-content {
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 720px) {
  .marquee {
    padding: 20px 0;
  }

  .marquee-track span {
    padding: 0 24px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-inner {
    width: min(100% - 28px, 1440px);
    gap: 56px;
  }

  .about-photo-wrap {
    min-height: 520px;
  }

  .about-photo {
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }

  .about-psy {
    left: -18px;
    top: -44px;
    font-size: 112px;
  }

  .section-kicker {
    margin-bottom: 24px;
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .section-title {
    margin-bottom: 38px;
  }

  .section-title span {
    font-size: 70px;
  }

  .section-title strong {
    font-size: 38px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.75;
  }
}
.about-bottom {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 60px 0;
  display: flex;
  align-items: center;

  background: var(--ruby);
}

.about-bottom-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top;
}

.about-bottom-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(20, 13, 11, 0.34),
      rgba(20, 13, 11, 0.88)
    ),
    linear-gradient(
      90deg,
      rgba(20, 13, 11, 0.92) 0%,
      rgba(20, 13, 11, 0.72) 42%,
      rgba(20, 13, 11, 0.62) 100%
    );
}

.about-bottom-content {
  position: relative;
  z-index: 3;

  width: min(100% - 120px, 920px);
  margin-left: 120px;
  color: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 600px;
}

.about-bottom-content span {
  display: inline-block;

  margin-bottom: 34px;

  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;

  opacity: 0.72;
}

.about-bottom-content p {
  max-width: 820px;

  margin-bottom: 54px;

  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 400;

  color: rgba(245, 241, 235, 0.94);
}

.about-bottom-btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 22px 104px 22px 44px;

  background: rgba(94, 38, 40, 0.92);
  color: var(--light);

  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  transition: 0.35s ease;
}

.about-bottom-btn::after {
  content: "";

  position: absolute;
  left: calc(75% + 24px);
  top: 50%;

  width: 180px;
  height: 1px;

  background: rgba(245, 241, 235, 0.38);

  transform: translateY(-50%);
}

.about-bottom-btn::before {
  content: "";

  position: absolute;
  right: -104px;
  top: 50%;

  width: 10px;
  height: 10px;

  border-top: 1px solid rgba(245, 241, 235, 0.7);
  border-right: 1px solid rgba(245, 241, 235, 0.7);

  transform: translateY(-50%) rotate(45deg);
}

.about-bottom-btn:hover {
  background: transparent;
  outline: 1px solid rgba(245, 241, 235, 0.42);
}

@media (max-width: 1024px) {
  .about-bottom {
    min-height: 620px;
  }

  .about-bottom-content {
    width: min(100% - 80px, 900px);
    margin-left: 40px;
  }

  .about-bottom-content p {
    font-size: 48px;
  }
}

@media (max-width: 720px) {
  .about-bottom {
    min-height: 520px;
    padding: 60px 0 60px;
  }

  .about-bottom-content {
    width: min(100% - 40px, 900px);
    margin: 0 auto;
    height: auto;
  }

  .about-bottom-content span {
    margin-bottom: 24px;

    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .about-bottom-content p {
    margin-bottom: 42px;

    font-size: 30px;
    line-height: 1.15;
  }

  .about-bottom-btn {
    width: 85%;
    font-size: 11px;
    padding: 20px 44px 20px 24px;
  }

  .about-bottom-btn::after {
    left: calc(80% + 24px);
    width: 50px;
  }

  .about-bottom-btn::before {
    right: -10px;
  }
}
.expertise-story {
  padding: 150px 0;
  background: transparent;
}

.expertise-story-inner {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

.expertise-story-head {
  margin-bottom: 90px;
}

.expertise-story-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 54px;
  line-height: 0.9;
}

.expertise-story-title span {
  font-family: var(--font-script);
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 300;
  color: rgba(127, 55, 57, 0.95);
}

.expertise-story-title strong {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brownie);
}

.expertise-story-head p {
  max-width: 90%;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 400;
  color: var(--brownie);
}

.expertise-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.expertise-story-card {
  min-height: 560px;
  padding: 42px;
  background: rgba(245, 241, 235, 0.32);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.expertise-story-card span {
  font-family: var(--font-serif);
  font-size: clamp(80px, 8vw, 132px);
  line-height: 0.8;
  color: rgba(62, 31, 32, 0.18);
}

.expertise-story-card h3 {
  margin-top: auto;
  margin-bottom: 26px;
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;
  color: var(--ruby);
}

.expertise-story-card p {
  font-size: 19px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(62, 43, 36, 0.82);
}

.expertise-story-card p strong {
  font-weight: 500;
  color: var(--ruby);
}

.expertise-story-card-dark {
  position: relative;
  overflow: hidden;
  color: var(--light);
  background: var(--ruby);
}

.expertise-story-card-dark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-story-card-dark div {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(20, 13, 11, 0.36),
      rgba(20, 13, 11, 0.88)
    ),
    linear-gradient(180deg, rgba(20, 13, 11, 0.68), rgba(20, 13, 11, 0.88));
}

.expertise-story-card-dark span,
.expertise-story-card-dark h3,
.expertise-story-card-dark p {
  position: relative;
  z-index: 2;
}

.expertise-story-card-dark span {
  color: rgba(245, 241, 235, 0.36);
}

.expertise-story-card-dark h3 {
  color: var(--light);
}

.expertise-story-card-dark p {
  color: rgba(245, 241, 235, 0.86);
}

.expertise-story-card-dark p strong {
  color: var(--light);
}

.expertise-story-action {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .expertise-story-grid {
    grid-template-columns: 1fr;
  }

  .expertise-story-card {
    min-height: 440px;
  }
}

@media (max-width: 720px) {
  .expertise-story {
    padding: 60px 0;
  }

  .expertise-story-inner {
    width: min(100% - 28px, 1440px);
  }

  .expertise-story-head {
    margin-bottom: 30px;
  }

  .expertise-story-title {
    margin-bottom: 30px;
  }

  .expertise-story-title span {
    font-size: 76px;
  }

  .expertise-story-title strong {
    font-size: 38px;
  }

  .expertise-story-head p {
    font-size: 28px;
  }

  .expertise-story-grid {
    gap: 18px;
  }

  .expertise-story-card {
    min-height: 420px;
    padding: 30px 24px;
  }

  .expertise-story-card span {
    font-size: 74px;
  }

  .expertise-story-card h3 {
    font-size: 34px;
  }

  .expertise-story-card p {
    font-size: 16px;
    line-height: 1.75;
  }

  .expertise-story-action {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

.certificates-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0 170px;
  background:
    radial-gradient(circle at 50% 0%, rgba(127, 55, 57, 0.24), transparent 44%),
    linear-gradient(180deg, #1d1211 0%, var(--ruby) 100%);
  color: var(--light);
}

.certificates-section::before {
  content: "Ψ";
  position: absolute;
  right: -30px;
  top: 40px;
  font-family: var(--font-serif);
  font-size: clamp(190px, 24vw, 420px);
  line-height: 1;
  color: rgba(245, 241, 235, 0.045);
}

.certificates-inner {
  position: relative;
  z-index: 2;
}

.certificates-head {
  margin-bottom: 86px;
}

.certificates-kicker {
  color: rgba(245, 241, 235, 0.62);
}

.certificates-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
}

.certificates-title span {
  font-family: var(--font-script);
  font-size: clamp(84px, 9vw, 150px);
  font-weight: 300;
  color: rgba(245, 241, 235, 0.82);
}

.certificates-title strong {
  max-width: 920px;
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--light);
}

.certificates-slider {
  position: relative;
  height: 620px;
}

.certificates-track {
  position: relative;
  overflow: visible;
}

.certificate-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(58vw, 760px);
  aspect-ratio: 1240 / 868;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50%) scale(0.72);
  transition: 0.55s ease;
  pointer-events: none;
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
}

.certificate-card.active {
  z-index: 5;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
}

.certificate-card.prev-1 {
  z-index: 4;
  transform: translateX(-88%) translateY(120px) scale(0.74);
}

.certificate-card.next-1 {
  z-index: 4;
  transform: translateX(-12%) translateY(120px) scale(0.74);
}

.certificate-card.prev-2 {
  z-index: 3;
  transform: translateX(-118%) translateY(185px) scale(0.55);
}

.certificate-card.next-2 {
  z-index: 3;
  transform: translateX(18%) translateY(185px) scale(0.55);
}

.cert-btn {
  position: absolute;
  bottom: -120px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(245, 241, 235, 0.22);
  background: transparent;
  color: var(--light);
  font-size: 36px;
  cursor: pointer;
  font-weight: 200;
}

.cert-prev {
  left: 50%;
  transform: translateX(-68px);
}

.cert-next {
  left: 50%;
  transform: translateX(14px);
}

@media (max-width: 720px) {
  .certificates-slider {
    height: 420px;
  }
  .cert-btn {
    bottom: -30px;
  }

  .certificate-card {
    width: 100%;
    aspect-ratio: 1240 / 868;
  }

  .certificate-card.prev-1,
  .certificate-card.next-1,
  .certificate-card.prev-2,
  .certificate-card.next-2 {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }

  .certificate-card.active {
    transform: translateX(-50%) scale(1);
  }
}

.certificate-card {
  opacity: 1;
}

.certificate-card img {
  filter: brightness(0.38) contrast(0.9) saturate(0.7);

  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.certificate-card.active img {
  filter: brightness(1) contrast(1) saturate(1);

  transform: scale(1.08);
}

.certificate-card.active img {
  filter: brightness(1) contrast(1) saturate(1);

  transform: scale(1.08);
}

@media (max-width: 720px) {
  .certificates-section {
    padding: 70px 0 100px;
  }
  .certificate-card.active {
    box-shadow: none;
  }
  .certificates-inner {
    width: min(100% - 28px, 1440px);
  }

  .certificates-head {
    margin-bottom: 15px;
  }

  .certificates-title span {
    font-size: 74px;
  }

  .certificates-title strong {
    font-size: 36px;
  }

  .certificate-card,
  .certificate-card.active {
    height: 430px;
  }
}
.requests-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--creme);
}

.requests-section::before {
  content: "Ψ";
  position: absolute;
  right: -40px;
  top: 50px;
  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 360px);
  line-height: 1;
  color: rgba(62, 31, 32, 0.055);
}

.requests-inner {
  position: relative;
  z-index: 2;
}

.requests-head {
  margin-bottom: 90px;
}

.requests-head p {
  max-width: 90%;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 400;
  color: var(--brownie);
}

.requests-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.request-card {
  position: relative;
  min-height: 720px;
  padding: 42px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(245, 241, 235, 0.42);
}

.request-card-dark {
  background: var(--ruby);
  color: var(--light);
}

.request-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.request-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(20, 13, 11, 0.34),
      rgba(20, 13, 11, 0.9)
    ),
    linear-gradient(180deg, rgba(20, 13, 11, 0.72), rgba(20, 13, 11, 0.9));
}

.request-card-dark > *:not(.request-bg):not(.request-overlay) {
  position: relative;
  z-index: 2;
}

.request-number {
  margin-bottom: 60px;
  font-family: var(--font-serif);
  font-size: clamp(80px, 8vw, 132px);
  line-height: 0.8;
  color: rgba(62, 31, 32, 0.13);
}

.request-card-dark .request-number {
  color: rgba(245, 241, 235, 0.22);
}

.request-content {
  margin-top: auto;
}

.request-card h3 {
  margin-bottom: 34px;
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;
}

.request-card:not(.request-card-dark) h3 {
  color: var(--ruby);
}

.request-card-dark h3 {
  color: var(--light);
}

.request-text {
  display: grid;
  gap: 18px;
}

.request-text p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.request-card:not(.request-card-dark) .request-text p {
  color: rgba(62, 43, 36, 0.82);
}

.request-card-dark .request-text p {
  color: rgba(245, 241, 235, 0.86);
}

.request-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 42px;
  padding: 18px 32px;
  background: rgba(94, 38, 40, 0.92);
  color: var(--light);
  border: 1px solid rgba(245, 241, 235, 0.12);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: 0.35s ease;
  width: 100%;
}

.request-btn:hover {
  background: transparent;
  outline: 1px solid rgba(62, 31, 32, 0.24);
  color: rgba(94, 38, 40, 0.92);
}

.request-card-dark .request-btn:hover {
  outline: 1px solid rgba(245, 241, 235, 0.24);
  color: (var(--light));
}

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

  .request-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .requests-section {
    padding: 60px 0;
  }

  .requests-inner {
    width: min(100% - 28px, 1440px);
  }

  .requests-head {
    margin-bottom: 30px;
  }

  .requests-head p {
    font-size: 28px;
  }

  .requests-grid {
    gap: 18px;
  }

  .request-card {
    padding: 30px 24px;
  }

  .request-number {
    margin-bottom: 44px;
    font-size: 74px;
  }

  .request-card h3 {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .request-text p {
    font-size: 16px;
    line-height: 1.75;
  }

  .request-btn {
    width: 100%;
    margin-top: 34px;
  }
  .requests-inner .expertise-story-title span {
    font-size: 47px;
  }
}

.values-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--creme);
}

.values-section::before {
  content: "Ψ";
  position: absolute;
  left: -46px;
  top: 80px;
  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 360px);
  line-height: 1;
  color: rgba(62, 31, 32, 0.055);
}

.values-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(520px, 1.05fr);
  gap: 96px;
  align-items: center;
}

.values-visual {
  position: relative;
  min-height: 760px;
}

.values-photo-main {
  position: absolute;
  inset: 0;
  width: 82%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.values-photo-small {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 48%;
  height: 360px;
  overflow: hidden;
  background: var(--ruby);
  box-shadow: 0 36px 90px rgba(62, 31, 32, 0.22);
}

.values-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-content {
  max-width: 820px;
}

.values-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 54px;
  line-height: 0.9;
}

.values-title span {
  font-family: var(--font-script);
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 300;
  color: rgba(127, 55, 57, 0.95);
}

.values-title strong {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brownie);
}

.values-lead {
  margin-bottom: 58px;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.16;
  font-weight: 400;
  color: var(--brownie);
}

.values-list {
  display: grid;
  gap: 26px;
}

.value-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(62, 31, 32, 0.16);
}

.value-item span {
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 0.9;
  color: rgba(62, 31, 32, 0.18);
}

.value-item h3 {
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
  color: var(--ruby);
}

.value-item p {
  font-size: 19px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(62, 43, 36, 0.82);
}

@media (max-width: 1024px) {
  .values-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .values-visual {
    min-height: 680px;
  }
}

@media (max-width: 720px) {
  .values-section {
    padding: 60px 0;
  }

  .values-inner {
    width: min(100% - 28px, 1440px);
    gap: 56px;
  }

  .values-visual {
    min-height: 560px;
    margin-bottom: 10px;
  }

  .values-visual::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 28px;
    width: 76%;
    height: 420px;
    background: rgba(62, 31, 32, 0.9);
    transform: rotate(-3deg);
  }

  .values-visual::after {
    content: "Ψ";
    position: absolute;
    right: -10px;
    top: -18px;
    z-index: 4;
    font-family: var(--font-serif);
    font-size: 132px;
    line-height: 1;
    color: rgba(62, 31, 32, 0.16);
  }

  .values-photo-main {
    left: 0;
    top: 0;
    width: 82%;
    height: 430px;
    z-index: 2;
    object-position: center top;
    transform: rotate(2deg);
    box-shadow: 0 30px 70px rgba(62, 31, 32, 0.2);
  }

  .values-photo-small {
    right: 0;
    bottom: 18px;
    z-index: 3;
    width: 56%;
    height: 250px;
    border: 10px solid var(--creme);
    box-shadow: 0 28px 70px rgba(62, 31, 32, 0.28);
  }

  .values-photo-small img {
    object-position: center;
  }

  .values-title {
    margin-bottom: 38px;
  }

  .values-title span {
    font-size: 76px;
  }

  .values-title strong {
    font-size: 38px;
  }

  .values-lead {
    margin-bottom: 42px;
    font-size: 28px;
  }

  .value-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-item span {
    font-size: 46px;
  }

  .value-item h3 {
    font-size: 34px;
  }

  .value-item p {
    font-size: 16px;
    line-height: 1.75;
  }
}

.values-quote {
  position: absolute;
  left: 40px;
  bottom: -120px;
  z-index: 5;

  max-width: 520px;
}

.values-quote p {
  font-family: var(--font-script);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 400;
  color: var(--brownie);
}

.values-quote p::before {
  content: "“";
  position: absolute;
  left: -26px;
  top: -22px;

  font-family: var(--font-serif);
  font-size: 90px;
  line-height: 1;

  color: rgba(127, 55, 57, 0.22);
}

@media (max-width: 1024px) {
  .values-quote {
    position: relative;
    left: 0;
    bottom: auto;

    margin-top: 42px;
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .values-quote {
    margin-top: 15px;
  }

  .values-quote p {
    font-size: 20px;
    line-height: 1.14;
    text-align: center;
    width: 75%;
  }

  .values-quote p::before {
    left: 7px;
    top: -18px;
    font-size: 62px;
  }
}

.articles-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0 170px;
  background:
    radial-gradient(circle at 50% 0%, rgba(127, 55, 57, 0.24), transparent 44%),
    linear-gradient(180deg, #1d1211 0%, var(--ruby) 100%);
  color: var(--light);
}

.articles-section::before {
  content: "Ψ";
  position: absolute;
  right: -30px;
  top: 40px;
  font-family: var(--font-serif);
  font-size: clamp(190px, 24vw, 420px);
  line-height: 1;
  color: rgba(245, 241, 235, 0.045);
}

.articles-inner {
  position: relative;
  z-index: 2;
}

.articles-head {
  margin-bottom: 86px;
}

.articles-kicker {
  color: rgba(245, 241, 235, 0.62);
}

.articles-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 54px;
  line-height: 0.9;
}

.articles-title span {
  font-family: var(--font-script);
  font-size: clamp(84px, 9vw, 150px);
  font-weight: 300;
  color: rgba(245, 241, 235, 0.82);
}

.articles-title strong {
  max-width: 920px;
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--light);
}

.articles-head p {
  max-width: 90%;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 400;
  color: rgba(245, 241, 235, 0.88);
}

.articles-slider {
  position: relative;
}

.articles-viewport {
  overflow: hidden;
}

.articles-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s ease;
}

.article-card {
  position: relative;
  flex: 0 0 calc((100% - 56px) / 3);
  min-height: 620px;
  overflow: hidden;
  background: var(--ruby);
}

.article-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(20, 13, 11, 0.28),
      rgba(20, 13, 11, 0.88)
    ),
    linear-gradient(180deg, rgba(20, 13, 11, 0.42), rgba(20, 13, 11, 0.92));
}

.article-card-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card-content span {
  font-family: var(--font-serif);
  font-size: clamp(80px, 8vw, 132px);
  line-height: 0.8;
  color: rgba(245, 241, 235, 0.28);
}

.article-card-content h3 {
  margin-top: auto;
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;
  color: var(--light);
}

.article-card-content p {
  margin-bottom: 34px;
  font-size: 19px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(245, 241, 235, 0.86);
}

.article-more {
  width: 100%;
  padding: 18px 32px;
  background: rgba(94, 38, 40, 0.92);
  color: var(--light);
  border: 1px solid rgba(245, 241, 235, 0.14);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.35s ease;
}

.article-more:hover {
  background: transparent;
  outline: 1px solid rgba(245, 241, 235, 0.24);
}

.article-btn {
  position: absolute;
  bottom: -90px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(245, 241, 235, 0.22);
  background: transparent;
  color: var(--light);
  font-size: 36px;
  cursor: pointer;
  font-weight: 200;
}

.article-prev {
  left: 50%;
  transform: translateX(-68px);
}

.article-next {
  left: 50%;
  transform: translateX(14px);
}

/* MODAL */

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.article-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 11, 0.78);
  backdrop-filter: blur(8px);
}

.article-modal-box {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  max-height: 82vh;
  overflow-y: auto;
  padding: 58px;
  background: var(--creme);
  color: var(--brownie);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.article-modal-box span {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(62, 43, 36, 0.62);
}

.article-modal-box h3 {
  margin-bottom: 28px;
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 0.95;
  font-weight: 400;
  color: var(--ruby);
}

.article-modal-box p {
  font-size: 20px;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(62, 43, 36, 0.84);
}

.article-modal-close {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(62, 31, 32, 0.16);
  background: transparent;
  color: var(--ruby);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .article-card {
    flex-basis: calc((100% - 28px) / 2);
  }
}

@media (max-width: 720px) {
  .articles-section {
    padding: 70px 0 170px;
  }

  .articles-inner {
    width: min(100% - 28px, 1440px);
  }

  .articles-head {
    margin-bottom: 42px;
  }

  .articles-title {
    margin-bottom: 30px;
  }

  .articles-title span {
    font-size: 74px;
  }

  .articles-title strong {
    font-size: 36px;
  }

  .articles-head p {
    font-size: 28px;
    max-width: 100%;
  }

  .articles-track {
    gap: 18px;
  }

  .article-card {
    flex: 0 0 100%;
    min-height: 560px;
  }

  .article-card-content {
    min-height: 560px;
    padding: 30px 24px;
  }

  .article-card-content span {
    font-size: 74px;
  }

  .article-card-content h3 {
    font-size: 34px;
  }

  .article-card-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .article-btn {
    bottom: -72px;
  }

  .article-modal-box {
    padding: 46px 26px 34px;
  }

  .article-modal-box h3 {
    font-size: 36px;
  }

  .article-modal-box p {
    font-size: 16px;
    line-height: 1.75;
  }
}

.article-card {
  position: relative;
  flex: 0 0 calc((100% - 56px) / 3);
  min-height: 620px;
  overflow: hidden;

  background: rgba(245, 241, 235, 0.92);

  border: 1px solid rgba(62, 31, 32, 0.08);
}

/* IMAGE */

.article-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: grayscale(0.08) contrast(0.92) brightness(1.02);
}

/* LIGHT OVERLAY */

.article-card-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(245, 241, 235, 0) 0%,
    rgba(245, 241, 235, 0.1) 44%,
    rgba(245, 241, 235, 0.7) 60%,
    rgba(245, 241, 235, 1) 100%
  );
}

/* CONTENT */

.article-card-content {
  position: relative;
  z-index: 2;

  min-height: 620px;
  padding: 42px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* NUMBER */

.article-card-content span {
  position: absolute;
  top: 36px;
  left: 42px;

  font-family: var(--font-serif);
  font-size: clamp(80px, 8vw, 132px);
  line-height: 0.8;

  color: rgba(62, 31, 32, 0.7);
}

/* TITLE */

.article-card-content h3 {
  margin-bottom: 20px;

  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;

  color: var(--ruby);
}

/* TEXT */

.article-card-content p {
  margin-bottom: 34px;

  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;

  color: rgba(62, 43, 36, 0.82);
}

/* BUTTON */

.article-more {
  width: 100%;

  padding: 18px 32px;

  background: rgba(94, 38, 40, 0.92);
  color: var(--light);

  border: 1px solid rgba(245, 241, 235, 0.12);

  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  cursor: pointer;
  transition: 0.35s ease;
}

.article-more:hover {
  background: transparent;
  color: var(--ruby);

  outline: 1px solid rgba(62, 31, 32, 0.18);
}

/* MOBILE */

@media (max-width: 720px) {
  .article-card {
    flex: 0 0 100%;
    min-height: 560px;
  }

  .article-card-content {
    min-height: 560px;
    padding: 30px 24px;
  }

  .article-card-content span {
    top: 26px;
    left: 24px;
    font-size: 74px;
  }

  .article-card-content h3 {
    font-size: 34px;
  }

  .article-card-content p {
    font-size: 16px;
    line-height: 1.75;
  }
}

.article-modal-text {
  display: grid;
  gap: 24px;
}

.article-modal-text p {
  font-size: 20px;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(62, 43, 36, 0.84);
}

@media (max-width: 720px) {
  .article-modal-text {
    gap: 18px;
  }

  .article-modal-text p {
    font-size: 16px;
    line-height: 1.75;
  }
}
/* REVIEWS */

.reviews-section {
  padding: 150px 0;
  background: var(--ruby);
  overflow: hidden;
  color: var(--light);
}

.reviews-head {
  margin-bottom: 90px;
}

.reviews-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 40px;
}

.reviews-title span {
  font-family: var(--font-script);
  font-size: clamp(80px, 9vw, 150px);
  color: rgba(245, 241, 235, 0.82);
  font-weight: 300;
}

.reviews-title strong {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 96px);
  text-transform: uppercase;
  color: var(--light);
  font-weight: 400;
}

.reviews-head p {
  max-width: 760px;
  font-size: 22px;
  line-height: 1.8;
  color: rgba(245, 241, 235, 0.75);
}

.reviews-gallery {
  position: relative;
  min-height: 560px;
}

.review-shot {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transition: 0.4s ease;
}

.review-shot img {
  width: 100%;
  display: block;
}

.review-shot:hover {
  transform: scale(1.03) rotate(0deg);
}

.review-1 {
  width: 340px;
  left: 0;
  top: 40px;
  transform: rotate(-8deg);
}

.review-2 {
  width: 360px;
  left: 33%;
  top: 180px;
  transform: rotate(6deg);
}

.review-3 {
  width: 340px;
  right: 0;
  top: 60px;
  transform: rotate(-5deg);
}

.review-quote {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 820px;
  text-align: center;
}

.review-quote p {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.2;
  color: rgba(245, 241, 235, 0.92);
}

@media (max-width: 1024px) {
  .contacts-inner {
    grid-template-columns: 1fr;
  }

  .reviews-gallery {
    min-height: 1200px;
  }

  .review-1,
  .review-2,
  .review-3 {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 30px;
    left: auto;
    right: auto;
    top: auto;
  }

  .review-quote {
    position: relative;
    transform: none;
    left: auto;
    margin-top: 40px;
  }
}

@media (max-width: 720px) {
  .reviews-gallery {
    min-height: auto;
  }
  .reviews-section,
  .light-contacts {
    padding: 70px 0;
  }

  .reviews-inner,
  .contacts-inner {
    width: min(100% - 28px, 1440px);
  }

  .review-quote p {
    font-size: 28px;
  }
}

/* FOOTER */

.site-footer {
  border-top: 1px solid;
  padding: 30px 0 30px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.footer-logo span {
  font-family: var(--font-script);
  font-size: 58px;
  color: var(--ruby);
  font-weight: 300;
}

.footer-logo strong {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer p {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ruby);
}

@media (max-width: 720px) {
  .contacts-main-btn {
    width: 85%;
    padding: 20px 44px 20px 24px;
  }

  .contacts-main-btn::after {
    left: calc(80% + 24px);
    width: 50px;
  }

  .contacts-main-btn::before {
    right: -10px;
  }

  .footer-inner {
    width: min(100% - 28px, 1440px);
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-logo span {
    font-size: 46px;
  }

  .footer-logo strong {
    font-size: 28px;
  }
  .contacts-inner {
    gap: 10px;
  }
  .contacts-right {
    margin-top: 30px;
  }
  .site-footer {
    padding: 10px 0 30px;
    text-align: center;
    border: 0;
  }
  .footer-logo {
    margin: auto;
  }
  .site-footer p {
    text-align: center;
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .reviews-gallery {
    position: relative;
    min-height: 560px;
    margin-top: 80px;
    padding: 72px 64px 86px;

    display: grid;
    grid-template-columns: 0.85fr 1.08fr 0.85fr;
    gap: 34px;
    align-items: center;

    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(245, 241, 235, 0.1),
        transparent 42%
      ),
      rgba(245, 241, 235, 0.055);

    border: 1px solid rgba(245, 241, 235, 0.1);
  }

  .review-shot {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    padding: 12px;
    background: var(--light);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
    transition: 0.35s ease;
  }

  .review-shot img {
    width: 100%;
    display: block;
  }

  .review-1 {
    transform: rotate(-3.5deg) translateY(28px);
  }

  .review-2 {
    transform: rotate(1.5deg) scale(1.08);
    z-index: 3;
  }

  .review-3 {
    transform: rotate(3.5deg) translateY(28px);
  }

  .review-shot:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.04);
    z-index: 5;
  }

  .review-quote {
    position: absolute;
    left: 64px;
    right: 64px;
    bottom: 28px;
    transform: none;
    max-width: none;
    text-align: center;
  }

  .review-quote p {
    font-size: 30px;
    line-height: 1.12;
    color: rgba(245, 241, 235, 0.86);
  }
}

.contacts-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--creme);
}

.contacts-section::before {
  content: "Ψ";
  position: absolute;
  right: -40px;
  top: 40px;
  font-family: var(--font-serif);
  font-size: clamp(190px, 24vw, 420px);
  line-height: 1;
  color: rgba(62, 31, 32, 0.055);
}

.contacts-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 96px;
  align-items: center;
}

.contacts-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 54px;
  line-height: 0.9;
}

.contacts-title span {
  font-family: var(--font-script);
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 300;
  color: rgba(127, 55, 57, 0.95);
}

.contacts-title strong {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brownie);
}

.contacts-lead {
  max-width: 760px;
  margin-bottom: 70px;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 400;
  color: var(--brownie);
}

.contacts-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(62, 31, 32, 0.16);
}

.contact-line {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(62, 31, 32, 0.16);
  transition: 0.35s ease;
}

.contact-line span {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(62, 43, 36, 0.52);
}

.contact-line strong {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  color: var(--ruby);
  word-break: break-word;
}

.contact-line:hover {
  padding-left: 18px;
}

.contacts-card {
  position: relative;
  min-height: 640px;
  padding: 56px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background:
    radial-gradient(circle at 50% 0%, rgba(127, 55, 57, 0.28), transparent 48%),
    linear-gradient(180deg, #1d1211 0%, var(--ruby) 100%);
  color: var(--light);
}

.contacts-card-symbol {
  position: absolute;
  right: -24px;
  top: 16px;
  font-family: var(--font-serif);
  font-size: 260px;
  line-height: 1;
  color: rgba(245, 241, 235, 0.06);
}

.contacts-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 54px;
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.12;
  font-weight: 400;
  color: rgba(245, 241, 235, 0.92);
}

.contacts-btn {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 22px 44px;

  background: rgba(245, 241, 235, 0.94);
  color: var(--ruby);

  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  transition: 0.35s ease;
}

.contacts-btn:hover {
  background: transparent;
  color: var(--light);
  outline: 1px solid rgba(245, 241, 235, 0.42);
}

@media (max-width: 1024px) {
  .contacts-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .contacts-card {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .contacts-section {
    padding: 70px 0 30px;
  }

  .contacts-inner {
    width: min(100% - 28px, 1440px);
    gap: 42px;
  }

  .contacts-title {
    margin-bottom: 36px;
  }

  .contacts-title span {
    font-size: 76px;
  }

  .contacts-title strong {
    font-size: 38px;
  }

  .contacts-lead {
    margin-bottom: 42px;
    font-size: 28px;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .contact-line strong {
    font-size: 28px;
  }

  .contact-line:hover {
    padding-left: 0;
  }

  .contacts-card {
    min-height: 460px;
    padding: 36px 26px;
  }

  .contacts-card-symbol {
    font-size: 180px;
  }

  .contacts-card p {
    font-size: 30px;
    text-align: center;
    font-weight: 300;
  }

  .contacts-btn {
    width: 100%;
    padding: 20px 24px;
  }
}

.expertise-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--creme);
}

.expertise-section::before {
  content: "Ψ";

  position: absolute;
  right: -40px;
  top: 40px;

  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 360px);

  color: rgba(62, 31, 32, 0.05);
}

.expertise-inner {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: center;
}

.expertise-title {
  display: flex;
  flex-direction: column;

  margin-bottom: 50px;
  line-height: 0.9;
}

.expertise-title span {
  font-family: var(--font-script);
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 300;
  color: rgba(127, 55, 57, 0.95);
}

.expertise-title strong {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 96px);

  font-weight: 400;
  text-transform: uppercase;

  color: var(--brownie);
}

.expertise-lead {
  max-width: 780px;

  margin-bottom: 60px;

  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.16;

  color: var(--brownie);
}

.expertise-items {
  display: grid;
  gap: 34px;
}

.expertise-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;

  padding-top: 34px;

  border-top: 1px solid rgba(62, 31, 32, 0.12);
}

.expertise-item span {
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 1;

  color: rgba(62, 31, 32, 0.2);
}

.expertise-item h3 {
  margin-bottom: 18px;

  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;

  color: var(--ruby);
}

.expertise-item p {
  font-size: 18px;
  line-height: 1.8;

  color: rgba(62, 43, 36, 0.82);
}

.expertise-item p + p {
  margin-top: 18px;
}

.expertise-right {
  position: relative;
  min-height: 760px;
}

.expertise-photo-main {
  position: absolute;

  right: 0;
  top: 0;

  width: 82%;
  height: 100%;
}

.expertise-photo-main img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.expertise-photo-small {
  position: absolute;

  left: 0;
  bottom: 80px;

  width: 42%;
  height: 300px;

  overflow: hidden;

  background: white;

  box-shadow: 0 34px 90px rgba(62, 31, 32, 0.16);
}

.expertise-photo-small img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.expertise-symbol {
  position: absolute;

  left: -30px;
  top: -50px;

  font-family: var(--font-serif);
  font-size: 160px;

  color: rgba(62, 31, 32, 0.82);
}

@media (max-width: 1024px) {
  .expertise-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .expertise-right {
    min-height: 620px;
  }
}

@media (max-width: 720px) {
  .expertise-section {
    padding: 70px 0;
  }

  .expertise-inner {
    width: min(100% - 28px, 1440px);
    gap: 50px;
  }

  .expertise-title span {
    font-size: 72px;
  }

  .expertise-title strong {
    font-size: 38px;
  }

  .expertise-lead {
    margin-bottom: 40px;
    font-size: 28px;
  }

  .expertise-items {
    gap: 24px;
  }

  .expertise-item {
    grid-template-columns: 1fr;
    gap: 12px;

    padding-top: 24px;
  }

  .expertise-item span {
    font-size: 42px;
  }

  .expertise-item h3 {
    font-size: 28px;
  }

  .expertise-item p {
    font-size: 16px;
    line-height: 1.75;
  }

  .expertise-right {
    min-height: 500px;
  }

  .expertise-photo-main {
    width: 84%;
  }

  .expertise-photo-small {
    width: 48%;
    height: 200px;
    bottom: 40px;
  }

  .expertise-symbol {
    font-size: 110px;
    left: -10px;
    top: -30px;
  }
}

@media (max-width: 720px) {
  .expertise-right {
    position: relative;

    min-height: auto;
    margin-top: 10px;

    display: flex;
    justify-content: center;
  }

  .expertise-photo-main {
    position: relative;

    width: 82%;
    height: 420px;

    overflow: hidden;
  }

  .expertise-photo-main::before {
    content: "";

    position: absolute;
    inset: -10px;

    border: 1px solid rgba(62, 31, 32, 0.12);

    z-index: -1;
  }

  .expertise-photo-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  .expertise-symbol {
    position: absolute;

    left: 0;
    top: -30px;

    font-family: var(--font-serif);
    font-size: 110px;
    line-height: 1;

    color: rgba(62, 31, 32, 0.12);

    z-index: 2;
  }
}

.expertise-orgs {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 28px;
}

.expertise-orgs img {
  height: 50px;
  width: auto;

  filter: grayscale(1) contrast(1.04);

  transition: 0.35s ease;
}

.expertise-story-card:hover .expertise-orgs img {
  opacity: 0.9;
}

.expertise-orgs-light img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.expertise-story-card:hover .expertise-orgs-light img {
  opacity: 1;
}

@media (max-width: 720px) {
  .expertise-orgs {
    margin-top: 22px;
  }
}

.session-premium-section {
  position: relative;
  overflow: hidden;
  min-height: 950px;
  padding: 160px 0;

  display: flex;
  align-items: center;

  background: #140d0b;
}

.session-premium-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.session-premium-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 50% 0%, rgba(127, 55, 57, 0.3), transparent 42%),
    linear-gradient(
      180deg,
      rgba(29, 18, 17, 0.72) 0%,
      rgba(62, 31, 32, 0.92) 100%
    );
}

.session-premium-content {
  position: relative;
  z-index: 3;
}

.session-premium-title {
  display: flex;
  flex-direction: column;

  margin-bottom: 90px;

  line-height: 0.9;
}

.session-premium-title span {
  font-family: var(--font-script);
  font-size: clamp(78px, 8vw, 150px);
  font-weight: 300;

  color: rgba(245, 241, 235, 0.82);
}

.session-premium-title strong {
  max-width: 950px;

  font-family: var(--font-serif);
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.95;
  font-weight: 400;

  letter-spacing: 0.03em;
  text-transform: uppercase;

  color: var(--light);
}

.session-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.session-premium-card {
  position: relative;

  padding: 46px;

  backdrop-filter: blur(12px);

  background: rgba(245, 241, 235, 0.06);

  border: 1px solid rgba(245, 241, 235, 0.08);

  transition: 0.45s ease;
}

.session-premium-card:hover {
  transform: translateY(-10px);

  background: rgba(245, 241, 235, 0.09);

  border-color: rgba(245, 241, 235, 0.16);
}

.session-premium-card span {
  display: block;

  margin-bottom: 48px;

  font-family: var(--font-serif);
  font-size: clamp(74px, 7vw, 120px);
  line-height: 0.8;

  color: rgba(245, 241, 235, 0.12);
}

.session-premium-card h3 {
  margin-bottom: 28px;

  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 0.95;
  font-weight: 400;

  color: var(--light);
}

.session-premium-card p {
  font-size: 18px;
  line-height: 1.9;
  font-weight: 300;

  color: rgba(245, 241, 235, 0.78);
}

@media (max-width: 1024px) {
  .session-premium-grid {
    grid-template-columns: 1fr;
  }

  .session-premium-section {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .session-premium-section {
    padding: 80px 0;
  }

  .session-premium-content {
    width: min(100% - 28px, 1440px);
  }

  .session-premium-title {
    margin-bottom: 46px;
  }

  .session-premium-title span {
    font-size: 64px;
  }

  .session-premium-title strong {
    font-size: 28px;
  }

  .session-premium-grid {
    gap: 18px;
    margin-bottom: 40px;
  }

  .session-premium-card {
    padding: 32px 24px;
  }

  .session-premium-card span {
    margin-bottom: 28px;
    font-size: 68px;
  }

  .session-premium-card h3 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .session-premium-card p {
    font-size: 16px;
    line-height: 1.75;
  }
}
.session-premium-section .section-kicker {
  color: var(--light);
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--creme);
}

.faq-section::before {
  content: "FAQ";
  position: absolute;
  right: -40px;
  top: 40px;
  font-family: var(--font-serif);
  font-size: clamp(130px, 18vw, 280px);
  line-height: 1;
  color: rgba(62, 31, 32, 0.045);
}

.faq-inner {
  position: relative;
  z-index: 2;
}

.faq-head {
  margin-bottom: 80px;
}

.faq-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}

.faq-title span {
  font-family: var(--font-script);
  font-size: clamp(80px, 9vw, 150px);
  font-weight: 300;
  color: rgba(127, 55, 57, 0.95);
}

.faq-title strong {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brownie);
}

.faq-list {
  max-width: 1120px;
  margin-left: auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: rgba(245, 241, 235, 0.48);
  border: 1px solid rgba(62, 31, 32, 0.08);
  overflow: hidden;
  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.faq-item.active {
  background: rgba(245, 241, 235, 0.82);
  border-color: rgba(62, 31, 32, 0.14);
  box-shadow: 0 30px 80px rgba(62, 31, 32, 0.08);
}

.faq-question {
  width: 100%;
  padding: 34px 38px;
  border: 0;
  background: transparent;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  text-align: left;
}

.faq-question span {
  max-width: 820px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--ruby);
}

.faq-question i {
  position: relative;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(62, 31, 32, 0.18);
  border-radius: 50%;
  transition:
    transform 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--ruby);
  transform: translate(-50%, -50%);
  transition:
    transform 0.45s ease,
    opacity 0.35s ease,
    background 0.45s ease;
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: var(--ruby);
  border-color: var(--ruby);
}

.faq-item.active .faq-question i::before,
.faq-item.active .faq-question i::after {
  background: var(--light);
}

.faq-item.active .faq-question i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    grid-template-rows 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    transform 0.45s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 920px;
  padding: 0 38px 34px;
  font-size: 19px;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(62, 43, 36, 0.82);
}

.faq-answer p + p {
  padding-top: 0;
}

@media (max-width: 720px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-inner {
    width: min(100% - 28px, 1440px);
  }

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

  .faq-title span {
    font-size: 68px;
  }

  .faq-title strong {
    font-size: 38px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-question {
    padding: 26px 22px;
    gap: 18px;
  }

  .faq-question span {
    font-size: 28px;
  }

  .faq-question i {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .faq-answer p {
    padding: 0 22px 28px;
    font-size: 16px;
    line-height: 1.75;
  }
}
.reviews-section .section-kicker {
  color: var(--light);
}
