@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poiret+One&display=swap");

:root {
  --bg: #ffff;
  --bg-soft: #fffcf7;

  --gold: #c8a96b;
  --gold-light: #e6d3a7;

  --green: #3a5b21;

  --cacao: #6b4e3d;

  --text: #222121;
  --text-soft: #303030;

  --sage: #dde3d4;

  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container-width: 1240px;

  --space-sm: 15px;
  --space-md: 30px;
  --space-lg: 60px;

  --font-family: "Montserrat", sans-serif;
  --second-family: "Poiret One", sans-serif;
  --third-family: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 169, 107, 0.18);
  z-index: 1000000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1002;
}

.logo-mark {
  width: 60px;
}

.logo-text {
  font-family: var(--second-family);
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-list a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-list a:hover {
  color: var(--green);
}

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

.header-btn,
.nav-mobile-btn {
  padding: 14px 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-soft);
  background: var(--green);
  transition: 0.35s ease;
}

.header-btn:hover,
.nav-mobile-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
}

.nav-mobile-btn {
  display: none;
}

.burger {
  display: none;
  width: 42px;
  height: 28px;
  position: relative;
  z-index: 1002;
}

.burger span {
  display: block;
  height: 1px;
  background: var(--green);
  margin-left: auto;
  transition:
    transform 0.4s ease,
    opacity 0.3s ease,
    width 0.4s ease;
}

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

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

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

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

.burger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

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

@media (max-width: 980px) {
  .site-header {
    padding: 18px 0;
    z-index: 10000000;
  }

  .logo-text {
    font-size: 22px;
  }

  .header-btn {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    height: 100vh;
    background:
      radial-gradient(
        circle at top right,
        rgba(200, 169, 107, 0.2),
        transparent 35%
      ),
      radial-gradient(
        circle at bottom left,
        rgba(58, 91, 33, 0.12),
        transparent 40%
      ),
      var(--bg-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 42px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: 0.45s ease;
  }

  .nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 26px;
  }

  .nav-list a {
    font-family: var(--second-family);
    font-size: 34px;
    text-transform: none;
    letter-spacing: 0.03em;
    color: var(--green);
  }

  .nav-mobile-btn {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .nav-list a {
    font-size: 30px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(200, 169, 107, 0.15),
      transparent 35%
    ),
    var(--bg-soft);

  padding-top: 165px;
  padding-bottom: 60px;
}

.hero-container {
  min-height: calc(100vh - 120px);

  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 5;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 900;
}

.hero h1 {
  font-family: var(--second-family);
  font-size: 8vw;
  line-height: 0.88;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0;
}

.hero p {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  min-height: 54px;

  padding: 0 28px;

  border-radius: 999px;

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

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

  transition: 0.35s ease;
}

.hero-btn.primary {
  background: var(--green);
  color: var(--bg-soft);
}

.hero-btn.primary:hover {
  background: var(--gold);
  color: var(--text);
}

.hero-btn.secondary {
  border: 1px solid rgba(58, 91, 33, 0.2);
  color: var(--green);
}

.hero-btn.secondary:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 107, 0.08);
}

.hero-image {
  position: relative;

  height: 88vh;

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

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

  position: absolute;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(200, 169, 107, 0.22),
    transparent 70%
  );

  z-index: 0;

  right: -60px;
  top: 50%;

  transform: translateY(-50%);
}

.hero-image img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 90vh;

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

  border-radius: 38px 38px 0 38px;

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--bg-soft);

    display: flex;
    align-items: stretch;
  }

  .none {
    display: none;
  }

  .hero-container {
    min-height: 100svh;

    grid-template-columns: 1fr;

    position: relative;

    width: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    min-height: auto;
    max-width: 100%;
    padding: 60px 25px;
    justify-content: flex-end;
    gap: 26px;
  }

  .logo .hero-label {
    font-size: 2vw;
  }

  .hero .hero-label {
    font-size: 11px;

    letter-spacing: 0.18em;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 84px);

    line-height: 0.9;
  }

  .hero p {
    max-width: 100%;

    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;

    width: 100%;
  }

  .hero-btn {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: white;
    backdrop-filter: blur(10px);
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(52px, 16vw, 84px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }
}

.hero-bg-art {
  position: absolute;

  left: -40px;
  top: 50%;

  transform: translateY(-50%);

  width: 60vw;
  height: 120vh;

  z-index: 1;

  pointer-events: none;

  opacity: 0.72;

  overflow: hidden;

  filter: saturate(0.9) brightness(1.02);

  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    transparent 100%
  );
}

.hero-bg-art::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255, 252, 247, 0.45) 0%,
    rgba(255, 252, 247, 0.15) 45%,
    rgba(255, 252, 247, 0.42) 100%
  );

  z-index: 2;
}

.hero-bg-art img {
  width: 100%;
  height: 100%;

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

  border-radius: 40px;
}

.quote-line {
  position: relative;

  overflow: hidden;

  padding: 28px 0;

  border-top: 1px solid rgba(200, 169, 107, 0.18);
  border-bottom: 1px solid rgba(200, 169, 107, 0.18);

  background: linear-gradient(
    180deg,
    rgba(255, 252, 247, 0.92),
    rgba(247, 241, 232, 0.92)
  );

  backdrop-filter: blur(10px);
}

.quote-track {
  display: flex;

  width: max-content;

  animation: quoteMove 34s linear infinite;
}

.quote-text {
  flex-shrink: 0;

  padding-right: 90px;

  font-family: var(--second-family);

  font-size: clamp(24px, 2.4vw, 42px);
  font-weight: 400;

  letter-spacing: 0.03em;

  color: var(--green);

  opacity: 0.9;

  white-space: nowrap;
}

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

  to {
    transform: translateX(-50%);
  }
}
.about-intro-section {
  position: relative;

  min-height: 110vh;

  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 200px 0 120px;
}

.about-intro-bg {
  position: absolute;
  inset: 0;

  z-index: 1;
}

.about-intro-bg img {
  width: 100%;
  height: 100%;

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

  transform: scale(1.03);
}

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

  z-index: 2;

  background: linear-gradient(
    90deg,
    rgba(20, 20, 20, 0.72) 0%,
    rgba(20, 20, 20, 0.46) 34%,
    rgba(20, 20, 20, 0.18) 58%,
    rgba(20, 20, 20, 0.52) 100%
  );
}

.about-intro-container {
  position: relative;
  z-index: 5;
}

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

  color: white;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 30px;

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

  color: rgba(255, 255, 255, 0.72);
}

.about-intro-logo {
  width: 62px;

  opacity: 0.92;
}

.about-intro-content h2 {
  font-family: var(--second-family);

  font-size: clamp(55px, 9vw, 110px);
  line-height: 0.88;
  font-weight: 400;

  margin-bottom: 42px;

  color: white;
}

.about-intro-content p {
  max-width: 680px;

  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.6;
  font-weight: 300;

  color: rgba(255, 255, 255, 0.84);

  margin-bottom: 52px;
}

.about-intro-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-btn {
  min-height: 58px;

  padding: 0 34px;

  border-radius: 999px;

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

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

  transition: 0.35s ease;
}

.about-btn.primary {
  background: rgba(255, 255, 255, 0.94);

  color: var(--green);

  backdrop-filter: blur(10px);
}

.about-btn.primary:hover {
  background: var(--gold);
  color: var(--text);
}

.about-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);

  background: rgba(255, 255, 255, 0.06);

  color: white;

  backdrop-filter: blur(10px);
}

.about-btn.secondary:hover {
  border-color: var(--gold);

  background: rgba(200, 169, 107, 0.18);

  color: white;
}

@media (max-width: 980px) {
  .about-intro-actions {
    display: flex;
    flex-direction: column;
  }

  .about-btn {
    width: 100%;
  }
  .about-intro-section {
    padding-bottom: 30px;
    padding-top: 100px;
  }
  .hero-bg-art {
    height: 100%;
  }
}

.path-section {
  position: relative;
  padding: 150px 0 200px;
  overflow: hidden;
  background: var(--bg-soft);
}

.path-bg {
  position: absolute;
  left: -80px;
  top: 45%;
  transform: translateY(-50%);
  width: 48vw;
  height: 110%;
  opacity: 0.28;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0 44px 44px 0;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    transparent 100%
  );
}

.path-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.path-container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.path-content {
  max-width: 720px;
}

.path-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.path-content h2 {
  font-family: var(--second-family);
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.9;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 40px;
}

.path-content p {
  font-size: 20px;
  line-height: 1.85;
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .header-container {
    gap: 10px;
  }
  .path-section {
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .path-bg {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    height: 500px;
    width: 100%;
    opacity: 1;
    margin-bottom: 0;
    padding: 0 25px;
    mask-image: none;
    order: 2;
  }

  .path-bg img {
    border-radius: 30px;
  }

  .path-container {
    display: block;
  }

  .path-content h2 {
    font-size: clamp(62px, 17vw, 96px);
  }

  .path-content p {
    font-size: 17px;
    line-height: 1.75;
  }
}
.path-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;

  margin-top: 46px;
}

.path-btn {
  min-height: 58px;

  padding: 0 34px;

  border-radius: 999px;

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

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

  transition: 0.35s ease;
}

.path-btn.primary {
  background: var(--green);
  color: var(--bg-soft);
}

.path-btn.primary:hover {
  background: var(--gold);
  color: var(--text);
}

.path-btn.secondary {
  border: 1px solid rgba(58, 91, 33, 0.18);

  color: var(--green);

  background: rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(10px);
}

.path-btn.secondary:hover {
  border-color: var(--gold);

  background: rgba(200, 169, 107, 0.12);

  color: var(--green);
}
@media (max-width: 980px) {
  .path-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .path-btn {
    width: 100%;
  }
}
.deep-story-section {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(200, 169, 107, 0.2),
      transparent 32%
    ),
    radial-gradient(circle at 92% 10%, rgba(58, 91, 33, 0.12), transparent 34%),
    linear-gradient(180deg, #fffcf7 0%, #f4eadc 100%);
  margin-top: -70px;
  border-radius: 38px 38px 0 0;
}

.deep-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./img/hero2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: blur(18px) saturate(0.8);
  transform: scale(1.08);
}

.deep-story-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 247, 0.72);
}

.deep-story-container {
  position: relative;
  z-index: 3;
}

.deep-story-top {
  max-width: 980px;
  margin-bottom: 70px;
}

.deep-label {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.deep-story-top h2 {
  font-family: var(--second-family);
  font-size: clamp(50px, 8vw, 130px);
  line-height: 0.92;
  font-weight: 400;
  color: var(--green);
}

.deep-story-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  position: relative;
}

.deep-story-item {
  position: relative;

  min-height: 320px;

  padding: 110px 34px 34px;

  border-radius: 34px;

  background: rgba(255, 252, 247, 0.42);

  border: 1px solid rgba(200, 169, 107, 0.16);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow: 0 24px 80px rgba(58, 91, 33, 0.06);

  overflow: visible;
}

.deep-story-item::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background: radial-gradient(
    circle at top right,
    rgba(200, 169, 107, 0.18),
    transparent 42%
  );

  z-index: 0;
}

.deep-story-item span {
  position: absolute;

  top: -55px;
  left: 28px;

  font-family: var(--second-family);

  font-size: 120px;
  line-height: 1;

  color: rgba(200, 169, 107, 0.32);

  pointer-events: none;

  z-index: 5;
}

.deep-story-item p {
  position: relative;
  z-index: 2;

  font-size: 22px;
  line-height: 1.6;
  font-weight: 300;

  color: var(--text-soft);
}

@media (max-width: 980px) {
  .deep-story-section {
    padding: 70px 0;
    margin-top: 0;
    border-radius: 30px 30px 0 0;
  }

  .deep-story-top {
    margin-bottom: 44px;
  }

  .deep-story-list {
    grid-template-columns: 1fr;
  }

  .deep-story-item {
    min-height: auto;

    padding: 60px 25px 25px;
  }

  .deep-story-item span {
    top: -34px;
    right: 30px;
    font-size: 82px;
    text-align: right;
  }

  .deep-story-item p {
    font-size: 20px;
  }
}

.deep-story-logo {
  position: absolute;

  right: 40px;
  top: 80px;

  width: 300px;

  opacity: 0.2;

  pointer-events: none;

  z-index: 1;
}

.deep-story-logo img {
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .deep-story-logo {
    width: 120px;

    right: 20px;
    top: 20px;
    z-index: 1000;
    opacity: 0.1;
  }
}
.cacao-editorial-section {
  position: relative;

  min-height: 120vh;

  overflow: hidden;

  display: flex;
  align-items: flex-end;

  padding: 120px 0 70px;
}

.cacao-editorial-image {
  position: absolute;
  inset: 0;

  z-index: 1;
}

.cacao-editorial-image img {
  width: 100%;
  height: 100%;

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

  transform: scale(1.04);
}

.cacao-editorial-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;

  background:
    radial-gradient(
      circle at 25% 45%,
      rgba(200, 169, 107, 0.12),
      transparent 34%
    ),
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.62) 0%,
      rgba(24, 20, 18, 0.48) 50%,
      rgba(10, 10, 10, 0.52) 100%
    );
}

.cacao-editorial-container {
  position: relative;
  z-index: 5;
}

.cacao-editorial-content {
  max-width: 860px;

  color: white;
}

.cacao-editorial-content h2 {
  font-family: var(--second-family);

  font-size: clamp(62px, 8vw, 150px);
  line-height: 0.88;
  font-weight: 400;

  margin-bottom: 34px;

  color: white;
}

.cacao-editorial-content p {
  max-width: 760px;

  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1.8;
  font-weight: 300;

  color: rgba(255, 255, 255, 0.86);
}

.cacao-editorial-content p + p {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .cacao-editorial-section {
    min-height: 100svh;

    padding: 100px 0 40px;
  }

  .cacao-editorial-overlay {
    background: linear-gradient(
      180deg,
      rgba(34, 24, 18, 0.12) 0%,
      rgba(34, 24, 18, 0.82) 100%
    );
  }

  .cacao-editorial-content h2 {
    font-size: clamp(54px, 13vw, 92px);
  }

  .cacao-editorial-content p {
    font-size: 17px;
    line-height: 1.7;
  }
}
.services-section {
  position: relative;
  padding: 150px 0;
  overflow: visible;
}

.services-symbol {
  position: absolute;
  right: -80px;
  top: 90px;
  width: 340px;
  opacity: 0.08;
  pointer-events: none;
}

.services-symbol img {
  width: 100%;
}

.services-head {
  max-width: 980px;
  margin-bottom: 90px;
}

.services-head h2 {
  font-family: var(--second-family);
  font-size: clamp(58px, 8vw, 130px);
  line-height: 0.9;
  font-weight: 400;
  color: var(--green);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-list {
  display: grid;
  gap: 18px;
}

.service-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(200, 169, 107, 0.18);
  border-radius: 32px;
  background: rgba(255, 252, 247, 0.62);
  backdrop-filter: blur(16px);
}

.service-item span {
  font-family: var(--second-family);
  font-size: 54px;
  line-height: 1;
  color: rgba(200, 169, 107, 0.72);
}

.service-item h3 {
  margin-bottom: 14px;
  font-family: var(--second-family);
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
  color: var(--green);
}

.service-item p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
}

.services-stats {
  margin-top: 90px;
  padding-top: 46px;
  border-top: 1px solid rgba(200, 169, 107, 0.2);

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-stats div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-stats strong {
  font-family: var(--second-family);
  font-size: clamp(70px, 8vw, 120px);
  line-height: 0.85;
  font-weight: 400;
  color: var(--green);
}

.services-stats span {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 980px) {
  .services-section {
    padding: 70px 0;
    overflow: hidden;
  }

  .services-symbol {
    width: 160px;
    right: -30px;
    top: 30px;
  }

  .services-head {
    margin-bottom: 46px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-image {
    position: relative;
    top: 0;
    height: 60vh;
    border-radius: 30px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

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

  .service-item h3 {
    font-size: 32px;
  }

  .service-item p {
    font-size: 16px;
  }

  .services-stats {
    margin-top: 60px;
    grid-template-columns: 1fr;
    border: 0;
  }
  .services-stats div {
    align-items: center;
  }
}
.services-image {
  position: sticky;
  top: 130px;

  height: 760px;

  border-radius: 42px;

  overflow: hidden;
}

.services-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.02) 0%,
    rgba(20, 20, 20, 0.18) 100%
  );
}

.services-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.services-image-actions {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 28px;

  z-index: 5;

  display: flex;
  flex-direction: column;

  gap: 14px;
}

.services-image-btn {
  min-height: 58px;

  border-radius: 999px;

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

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

  transition: 0.35s ease;

  backdrop-filter: blur(16px);
}

.services-image-btn.primary {
  background: rgba(255, 255, 255, 0.88);

  color: var(--green);
}

.services-image-btn.primary:hover {
  background: var(--gold);

  color: white;
}

.services-image-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);

  background: rgba(255, 255, 255, 0.08);

  color: white;
}

.services-image-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}
@media (max-width: 980px) {
  .services-image-actions {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .services-image-btn {
    min-height: 54px;
  }
}

.values-section {
  position: relative;

  padding: 150px 0;

  overflow: hidden;

  background: #1d2417;
}

.values-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image: url("./img/Ira.jpg");
  background-size: cover;
  background-position: center;

  opacity: 0.34;
}

.values-noise {
  position: absolute;
  inset: 0;

  opacity: 0.04;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);

  background-size: 90px 90px;
}

.values-container {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 1fr 0.95fr;

  gap: 90px;
  align-items: center;
}

.values-left h2 {
  margin-bottom: 40px;

  font-family: var(--second-family);

  font-size: clamp(62px, 8vw, 110px);
  line-height: 0.9;
  font-weight: 400;

  color: #f8f3eb;
}

.values-list {
  display: flex;
  flex-direction: column;

  gap: 18px;
}

.value-item {
  display: grid;
  grid-template-columns: 70px 1fr;

  gap: 28px;

  padding: 30px 0;

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

.value-item span {
  font-family: var(--second-family);

  font-size: 48px;
  line-height: 1;

  color: rgba(200, 169, 107, 0.75);
}

.value-item p {
  max-width: 680px;

  font-size: 24px;
  line-height: 1.7;
  font-weight: 300;

  color: rgba(255, 255, 255, 0.86);
}
.values-right {
  position: relative;

  height: 760px;
}

.certificate-card {
  position: absolute;

  overflow: hidden;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}
.certificate-card img {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
}

.certificate-card:first-child {
  width: 100%;
  height: 360px;

  top: 0;
  left: 0;
}

.certificate-card.second {
  width: 100%;
  height: 340px;

  right: 0;
  bottom: 40px;
}

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

  .values-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .values-right {
    height: 520px;
  }

  .certificate-card:first-child {
    height: 240px;
  }

  .certificate-card.second {
    height: 240px;

    bottom: 20px;
  }
}

.events-section {
  position: relative;
  padding: 150px 0;
  background: var(--bg-soft);
  overflow: hidden;
}

.events-head {
  max-width: 980px;
  margin-bottom: 80px;
}

.events-head h2 {
  font-family: var(--second-family);
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
  font-weight: 400;
  color: var(--green);
}

.events-slider {
  position: relative;
}

.events-viewport {
  overflow: hidden;
}

.events-track {
  display: flex;
  gap: 28px;
  transition: transform 0.45s ease;
}
.event-card {
  flex: 0 0 calc((100% - 56px) / 3);

  overflow: hidden;

  border-radius: 34px;

  border: 1px solid rgba(200, 169, 107, 0.2);

  background:
    radial-gradient(
      circle at top right,
      rgba(200, 169, 107, 0.16),
      transparent 42%
    ),
    rgba(255, 252, 247, 0.76);

  display: flex;
  flex-direction: column;
}

.event-image {
  position: relative;

  height: 280px;

  overflow: hidden;
}

.event-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.02) 0%,
    rgba(20, 20, 20, 0.18) 100%
  );
}

.event-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.06);
}

.event-content {
  padding: 34px;

  display: flex;
  flex-direction: column;

  flex: 1;
}

.event-card span {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-card h3 {
  margin-top: auto;
  margin-bottom: 24px;
  font-family: var(--second-family);
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
  color: var(--green);
}

.event-card p {
  margin-bottom: 34px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
}

.event-card a {
  min-height: 56px;
  border-radius: 999px;
  background: var(--green);
  color: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.events-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg-soft);
  font-size: 34px;
  transform: translateY(-50%);
}

.events-prev {
  left: -26px;
}

.events-next {
  right: -26px;
}

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

  .events-head {
    margin-bottom: 46px;
  }

  .events-track {
    gap: 18px;
  }

  .event-card {
    flex: 0 0 100%;
    min-height: 460px;
  }

  .event-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
  }

  .events-btn {
    top: auto;
    bottom: -120px;
  }

  .events-prev {
    left: calc(50% - 62px);
  }

  .events-next {
    right: calc(50% - 62px);
  }

  .events-section {
    padding-bottom: 140px;
  }
  .event-image {
    height: 240px;
  }

  .event-content {
    padding: 26px;
  }
}

.event-image {
  position: relative;

  height: 320px;

  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.event-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0) 0%,
    rgba(20, 20, 20, 0.04) 40%,
    rgba(20, 20, 20, 0.22) 70%,
    rgba(255, 252, 247, 0.95) 100%
  );

  z-index: 2;
}

.event-card:hover .event-image img {
  transform: scale(1.06);
}

.gallery-strip-section {
  padding: 120px 0;
  background: var(--bg-soft);
  overflow: hidden;
}

.gallery-strip-head {
  margin-bottom: 56px;
}

.gallery-strip-head h2 {
  font-family: var(--second-family);
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--green);
}

.gallery-strip {
  width: 100%;
  overflow-x: auto;
  padding-left: max(15px, calc((100vw - var(--container-width)) / 2));
  padding-right: 15px;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-strip-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

.gallery-strip-item {
  flex: 0 0 320px;
  height: 430px;
  border-radius: 30px;
  overflow: hidden;
}

.gallery-strip-item.wide {
  flex-basis: 520px;
}

.gallery-strip-item.tall {
  height: 520px;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .gallery-strip-section {
    padding: 70px 0;
  }

  .gallery-strip-head {
    margin-bottom: 34px;
  }

  .gallery-strip-item,
  .gallery-strip-item.tall {
    flex-basis: 76vw;
    height: 360px;
    border-radius: 24px;
  }

  .gallery-strip-item.wide {
    flex-basis: 82vw;
  }
}
.gallery-strip-section {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(200, 169, 107, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, #fffcf7 0%, #f6efe4 100%);
}

.gallery-strip-section::before {
  content: "";

  position: absolute;

  right: -60px;
  top: 40px;

  width: 260px;
  height: 260px;

  background-image: url("./img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  opacity: 0.06;

  pointer-events: none;
}

.gallery-strip {
  cursor: grab;

  scroll-behavior: smooth;
}

.gallery-strip.dragging {
  cursor: grabbing;
}

.gallery-strip-track {
  user-select: none;
}

.gallery-strip img {
  pointer-events: none;
}
.gallery-strip {
  overflow-x: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  touch-action: pan-x;
}

.gallery-strip.dragging {
  cursor: grabbing;
}

.gallery-strip-track {
  user-select: none;
}

.gallery-strip img {
  pointer-events: none;
}
.final-cta-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(
      circle at 25% 45%,
      rgba(200, 169, 107, 0.12),
      transparent 34%
    ),
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.62) 0%,
      rgba(24, 20, 18, 0.48) 50%,
      rgba(10, 10, 10, 0.52) 100%
    );
}

.final-cta-container {
  position: relative;
  z-index: 5;
}

.final-cta-content {
  color: white;
}

.final-cta-content h2 {
  font-family: var(--second-family);
  font-size: clamp(58px, 9vw, 110px);
  line-height: 0.88;
  font-weight: 400;
  color: white;
  margin-bottom: 36px;
  max-width: 820px;
}

.final-cta-content p {
  max-width: 620px;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 46px;
}

.final-cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.final-cta-btn {
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.35s ease;
  backdrop-filter: blur(14px);
}

.final-cta-btn.primary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
}

.final-cta-btn.primary:hover {
  background: var(--gold);
  color: white;
}

.final-cta-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.final-cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 980px) {
  .final-cta-section {
    min-height: 100svh;
    padding: 70px 0 70px;
    align-items: flex-end;
  }

  .final-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(20, 20, 20, 0.08) 0%,
      rgba(20, 20, 20, 0.74) 100%
    );
  }

  .final-cta-content h2 {
    font-size: clamp(54px, 15vw, 92px);
  }

  .final-cta-content p {
    font-size: 17px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-btn {
    width: 100%;
  }
}
.request-section {
  padding: 150px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(200, 169, 107, 0.16),
      transparent 34%
    ),
    var(--bg-soft);
}

.request-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.request-content h2 {
  font-family: var(--second-family);
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 36px;
}

.request-content p {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-soft);
}

.request-form {
  padding: 46px;
  border-radius: 38px;
  border: 1px solid rgba(200, 169, 107, 0.22);
  background: rgba(255, 252, 247, 0.72);
  display: grid;
  gap: 24px;
  min-width: 500px;
}

.request-form label {
  display: grid;
  gap: 10px;
}

.request-form span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(58, 91, 33, 0.2);
  background: transparent;
  padding: 16px 0;
  font: inherit;
  font-size: 17px;
  color: var(--text);
  outline: none;
}

.request-form textarea {
  resize: vertical;
}

.request-form button {
  margin-top: 18px;
  min-height: 60px;
  border-radius: 999px;
  background: var(--green);
  color: var(--bg-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

  .request-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .request-form {
    padding: 28px;
    border-radius: 28px;
  }

  .request-content p {
    font-size: 17px;
  }
  .request-form {
    min-width: auto;
  }
}
.contacts-hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
}

.contacts-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contacts-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.contacts-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(
      circle at 25% 45%,
      rgba(200, 169, 107, 0.12),
      transparent 34%
    ),
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.62) 0%,
      rgba(24, 20, 18, 0.48) 50%,
      rgba(10, 10, 10, 0.52) 100%
    );
}

.contacts-hero-container {
  position: relative;
  z-index: 5;
}

.contacts-hero-content {
  max-width: 1200px;
  color: white;
}

.contacts-hero-content h2 {
  font-family: var(--second-family);
  font-size: clamp(64px, 9vw, 110px);
  line-height: 0.88;
  font-weight: 400;
  color: white;
  margin-bottom: 36px;
}

.contacts-hero-content p {
  max-width: 640px;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 52px;
}

.contacts-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 80%;
}

.contacts-menu a {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.contacts-menu a:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
}

@media (max-width: 980px) {
  .contacts-hero-section {
    min-height: 100svh;
    padding: 70px 0;
    align-items: flex-end;
  }
  .contacts-menu {
    max-width: 100%;
  }

  .contacts-hero-content h2 {
    font-size: clamp(56px, 15vw, 92px);
  }

  .contacts-menu {
    flex-direction: column;
  }

  .contacts-menu a {
    width: 100%;
    text-align: center;
  }
}

.site-footer {
  position: relative;

  overflow: hidden;

  padding: 90px 0 36px;

  background:
    radial-gradient(
      circle at top right,
      rgba(200, 169, 107, 0.12),
      transparent 30%
    ),
    #161b13;
}

.footer-bg-word {
  position: absolute;

  left: 50%;
  top: 40%;

  transform: translate(-50%, -50%);

  font-family: var(--second-family);

  font-size: clamp(120px, 18vw, 360px);
  line-height: 1;

  color: rgba(255, 255, 255, 0.03);

  white-space: nowrap;

  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 5;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;

  padding-bottom: 50px;

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 18px;

  color: white;
}

.footer-logo img {
  width: 70px;
}

.footer-logo span {
  font-family: var(--second-family);

  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.footer-logo small {
  display: block;

  margin-top: 6px;

  font-family: var(--font-family);

  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.56);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;

  gap: 18px;
}

.footer-menu a {
  min-height: 52px;

  padding: 0 24px;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.04);

  color: rgba(255, 255, 255, 0.84);

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

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

  backdrop-filter: blur(12px);

  transition: 0.35s ease;
}

.footer-menu a:hover {
  background: rgba(255, 255, 255, 0.92);

  color: var(--green);
}

.footer-bottom {
  padding-top: 32px;

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

.footer-bottom p {
  font-size: 13px;
  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.52);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-socials a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.72);

  transition: 0.3s ease;
}

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

@media (max-width: 980px) {
  .site-footer {
    padding: 70px 0 30px;
  }

  .footer-top {
    flex-direction: column;

    padding-bottom: 36px;
  }

  .footer-menu {
    width: 100%;

    justify-content: flex-start;
  }

  .footer-menu a {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;

    gap: 20px;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .footer-bg-word {
    font-size: 120px;

    top: 26%;
  }
}

.gallery-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.gallery-btn {
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.35s ease;
  min-width: 300px;
}

.gallery-btn.primary {
  background: var(--green);
  color: var(--bg-soft);
}

.gallery-btn.secondary {
  border: 1px solid rgba(58, 91, 33, 0.22);
  color: var(--green);
  background: rgba(255, 255, 255, 0.45);
}

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

@media (max-width: 980px) {
  .gallery-actions {
    flex-direction: column;
    padding: 0 15px;
  }

  .gallery-btn {
    width: 100%;
  }
  .gallery-strip-section {
    padding: 70px 0;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: radial-gradient(rgba(0, 0, 0, 0.35) 1px, transparent 1px);
  background-size: 3px 3px;
}

.cacao-path-section {
  position: relative;

  padding: 150px 0 200px;

  overflow: hidden;

  background: var(--bg-soft);
}

.cacao-path-bg {
  position: absolute;

  right: -80px;
  top: 45%;

  transform: translateY(-50%);

  width: 48vw;
  height: 110%;

  opacity: 0.28;

  pointer-events: none;

  overflow: hidden;

  border-radius: 44px 0 0 44px;

  mask-image: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    transparent 100%
  );
}

.cacao-path-bg img {
  width: 100%;
  height: 100%;

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

.cacao-path-container {
  position: relative;

  z-index: 3;

  display: flex;
  justify-content: flex-start;
}

.cacao-path-content {
  max-width: 720px;
}

.cacao-path-content h2 {
  font-family: var(--second-family);

  font-size: clamp(72px, 9vw, 110px);
  line-height: 0.9;
  font-weight: 400;

  color: var(--green);

  margin-bottom: 42px;
}

.cacao-path-content p {
  font-size: 20px;
  line-height: 1.85;

  color: var(--text-soft);
}

.cacao-path-content p + p {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .cacao-path-section {
    padding: 70px 0;

    display: flex;
    flex-direction: column;

    gap: 50px;
  }

  .cacao-path-bg {
    position: relative;

    right: auto;
    top: auto;

    transform: none;

    width: 100%;
    height: 60vh;

    opacity: 1;

    padding: 0 15px;

    border-radius: 0;

    mask-image: none;

    order: 2;
  }

  .cacao-path-bg img {
    border-radius: 30px;
  }

  .cacao-path-container {
    display: block;
  }

  .cacao-path-content h2 {
    font-size: clamp(62px, 17vw, 96px);
  }

  .cacao-path-content p {
    font-size: 17px;
    line-height: 1.75;
  }
}

.services-container {
  position: relative;
  z-index: 10000;
}

.reveal-text {
  opacity: 0;

  transform: translateY(80px) scale(0.96);

  filter: blur(18px);

  transition:
    opacity 1.2s ease,
    transform 1.2s ease,
    filter 1.2s ease;

  will-change: transform, opacity;
}

.reveal-text.active {
  opacity: 1;

  transform: translateY(0) scale(1);

  filter: blur(0);
}
.reveal-text {
  transition-delay: 0.1s;
}

p.reveal-text {
  transition-delay: 0.25s;
}

@media (min-width: 768px) {
  .reveal-text {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .js .reveal-text {
    opacity: 0;
    transform: translateY(40px);
    filter: none;
    transition:
      opacity 1.2s ease,
      transform 1.2s ease;
  }

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

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

/* Safari desktop fallback */
@supports (-webkit-hyphens: none) {
  @media (min-width: 768px) {
    .reveal-text {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
    }
  }
}

.gallery-strip-track {
  display: flex;
  width: max-content;
}

.gallery-strip-item {
  flex-shrink: 0;
}

.reviews-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(200, 169, 107, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, #f6efe4 0%, #fffcf7 100%);
}

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

.reviews-head h2 {
  font-family: var(--second-family);
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
  font-weight: 400;
  color: var(--green);
}

.reviews-slider {
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}

.review-card {
  position: relative;

  flex: 0 0 calc((100% - 72px) / 4);

  height: 520px;

  border-radius: 30px;

  overflow: hidden;

  background: rgba(255, 252, 247, 0.76);

  border: 1px solid rgba(200, 169, 107, 0.2);

  box-shadow: 0 24px 70px rgba(58, 91, 33, 0.08);
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-photo img {
  object-fit: contain;
  background: #fff;
}

/* VIDEO LINK */

.review-video-link a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.review-video-link::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));

  pointer-events: none;
}

.play-icon {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 3;

  transform: translate(-50%, -50%);

  width: 74px;
  height: 74px;

  border-radius: 50%;

  background: rgba(255, 252, 247, 0.92);

  color: var(--green);

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

  font-size: 30px;

  padding-left: 5px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

  transition: 0.35s ease;
}

.review-video-link:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.08);

  background: var(--gold);

  color: white;
}

/* BUTTONS */

.reviews-btn {
  position: absolute;

  top: 50%;

  z-index: 5;

  width: 54px;
  height: 54px;

  border-radius: 50%;

  background: var(--green);

  color: var(--bg-soft);

  font-size: 34px;

  transform: translateY(-50%);
}

.reviews-prev {
  left: -26px;
}

.reviews-next {
  right: -26px;
}

/* MOBILE */

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

  .reviews-section .gallery-actions {
    margin-top: 120px;
  }

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

  .reviews-track {
    gap: 18px;
  }

  .review-card {
    flex: 0 0 100%;
    height: 560px;
    border-radius: 24px;
  }

  .reviews-btn {
    top: auto;
    bottom: -110px;
  }

  .reviews-prev {
    left: calc(50% - 62px);
  }

  .reviews-next {
    right: calc(50% - 62px);
  }
}

.reviews-divider {
  position: relative;

  padding: 120px 20px;

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

  gap: 34px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(200, 169, 107, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #fffcf7 0%, #f7efe4 100%);
}

.reviews-divider::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image: url("./img/hero2.jpg");

  background-size: cover;
  background-position: center;

  opacity: 0.05;

  filter: blur(20px) saturate(0.8);

  transform: scale(1.08);
}

.reviews-divider img {
  width: 110px;

  opacity: 0.9;

  position: relative;
  z-index: 2;
}

.reviews-divider p {
  position: relative;
  z-index: 2;

  font-family: var(--second-family);

  font-size: clamp(32px, 4vw, 64px);

  line-height: 1.2;

  text-align: center;

  color: var(--green);
}

.reviews-divider-line {
  width: min(220px, 40vw);
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 169, 107, 0.8),
    transparent
  );

  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .reviews-divider {
    padding: 80px 20px;
  }

  .reviews-divider img {
    width: 72px;
  }

  .reviews-divider p {
    font-size: 34px;
  }
}

.gallery-strip {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.gallery-strip-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.gallery-strip-item {
  flex-shrink: 0;
}
.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;

  width: 74px;
  height: 74px;

  transform: translate(-50%, -50%);

  border-radius: 50%;
  background: rgba(255, 252, 247, 0.94);

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

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.play-icon::before {
  content: "";
  display: block;

  width: 0;
  height: 0;

  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--green);

  margin-left: 6px;
}

.review-video-link:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
}

.review-video-link:hover .play-icon::before {
  border-left-color: white;
}

@media (max-width: 980px) {
  .play-icon {
    width: 58px;
    height: 58px;
  }

  .play-icon::before {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
    margin-left: 5px;
  }
}

.courses-section {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background: #11150e;
}

.courses-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.courses-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(0.7);
  transform: scale(1.04);
}

.courses-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(200, 169, 107, 0.22),
      transparent 34%
    ),
    linear-gradient(90deg, rgba(10, 12, 8, 0.86), rgba(10, 12, 8, 0.58));
}

.courses-container {
  position: relative;
  z-index: 5;
}

.courses-head {
  max-width: 900px;
  margin-bottom: 80px;
}

.courses-head h2 {
  font-family: var(--second-family);
  font-size: clamp(58px, 8vw, 130px);
  line-height: 0.9;
  font-weight: 400;
  color: #f8f3eb;
}

.courses-slider {
  position: relative;
}

.courses-viewport {
  overflow: visible;
}

.courses-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  transition: transform 0.45s ease;
}

.course-card {
  min-height: 560px;
  padding: 42px 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
}

.course-card span {
  margin-bottom: 34px;
  font-family: var(--second-family);
  font-size: 82px;
  line-height: 1;
  color: rgba(200, 169, 107, 0.75);
}

.course-card h3 {
  margin-bottom: 28px;
  font-family: var(--second-family);
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
  color: #f8f3eb;
}

.course-card p {
  margin-bottom: 34px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.course-card .gold {
  color: var(--gold);
}

.course-card a {
  margin-top: auto;
  min-height: 58px;
  border-radius: 999px;
  background: #f8f3eb;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.course-card a:hover {
  background: var(--gold);
  color: white;
}

.courses-btn {
  display: none;
}

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

  .courses-head {
    margin-bottom: 46px;
  }

  .courses-viewport {
    overflow: hidden;
  }

  .courses-track {
    display: flex;
    gap: 18px;
  }

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

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

  .course-card p {
    font-size: 16px;
  }

  .courses-btn {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    font-size: 34px;
    transform: translateY(-50%);
  }

  .courses-prev {
    left: -25px;
  }

  .courses-next {
    right: -25px;
  }
}
