@charset "UTF-8";
:root {
  --main-font-family: "Inter", sans-serif;
  --main-font-family-melodrama: "Melodrama", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

[x-cloak],
.hidden {
  display: none !important;
}

@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --max-page-width: 1500px ;
}

.global-label {
  font-family: var(--main-font-family);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  margin: 0 0 32px 5px;
  display: inline-block;
  z-index: 50;
}
.global-label::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f5f0e6;
  transform: skewX(-12deg);
  z-index: -1;
  border-radius: 2px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  left: -5px;
  top: -5px;
}
.global-label.invert::before {
  background: #fff;
}

.wrapper {
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.animate-fade {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .animate-fade {
    animation: none;
  }
}
@media (max-width: 1500px) {
  .wrapper {
    padding: 0 50px;
  }
}
@media (max-width: 1024px) {
  .wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .wrapper {
    padding: 0 16px;
  }
}
.btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.btn-group a {
  min-width: 120px;
  padding: 15px;
}
.btn-group a:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group a:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 2px solid #bcd15a6b;
}

.btn-action {
  background-color: #454E17;
  min-width: 150px;
  height: 49px;
  padding: 15px 32px;
  border-radius: 32px;
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  cursor: pointer;
  text-decoration: unset;
  text-align: center;
}
.btn-action:hover {
  background-color: #22270b;
}
.btn-action.negative {
  border: 2px solid red;
  background-color: rgba(255, 0, 0, 0.1);
  font-size: 16px;
  color: red;
}
.btn-action.negative:hover {
  background-color: red;
  color: #fff;
}

.btn-transparent {
  min-width: 200px;
  height: 64px;
  padding: 20px 34px;
  border-radius: 32px;
  cursor: pointer;
  text-decoration: unset;
  color: #fff;
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  justify-content: center;
  text-align: center;
}
.btn-transparent.gray {
  background: #00000059;
}
.btn-transparent.gray:hover {
  background: rgba(0, 0, 0, 0.7);
}

.btn-bordered {
  min-width: 200px;
  height: 64px;
  padding: 20px 34px;
  border-radius: 32px;
  cursor: pointer;
  text-decoration: unset;
  color: #fff;
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  display: inline-flex;
  background-color: #454E17;
  border: 3px solid #BCD15A;
}
.btn-bordered.has-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn-bordered:hover {
  background-color: #BCD15A;
  border: 3px solid #454E17;
  color: #454E17;
}
.btn-bordered:hover.has-icon path {
  fill: #454E17;
}

.new-link {
  font-family: var(--main-font-family);
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  color: #454E17;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  text-decoration: unset;
  cursor: pointer;
}
.new-link:hover img {
  transform: rotate(90deg);
}

.btn-outline {
  color: var(--text);
  box-shadow: none;
  background-color: #fff;
  min-width: 120px;
  text-align: center;
  justify-content: center;
  border: 2px solid #171212;
}
.btn-outline.negative {
  border-color: red;
  background-color: rgba(255, 0, 0, 0.1);
  font-size: 16px;
  color: red;
}
.btn-outline.negative:hover {
  background-color: red;
  color: #fff;
}
.btn-outline:hover {
  background-color: #000;
  color: #fff;
}

.btn-link {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  color: var(--text);
}

@media (max-width: 1024px) {
  .btn-group {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }
  .btn-group a {
    min-width: 140px;
    padding: 12px 18px;
  }
  .btn-group a:first-child, .btn-group a:last-child {
    border-radius: 32px;
    border-left: 0;
  }

  .btn-action {
    min-width: 140px;
    height: 44px;
    padding: 12px 24px;
    font-size: 15px;
  }

  .btn-transparent,
.btn-bordered {
    min-width: 180px;
    height: 56px;
    padding: 16px 26px;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .btn-group {
    width: 100%;
  }
  .btn-group a {
    width: 100%;
    min-width: unset;
    text-align: center;
  }

  .btn-action {
    width: 100%;
    min-width: unset;
    height: 42px;
    padding: 12px 18px;
    font-size: 14px;
    justify-content: center;
    text-align: center;
  }

  .btn-transparent,
.btn-bordered {
    width: 100%;
    min-width: unset;
    height: 52px;
    padding: 14px 20px;
    font-size: 16px;
  }
}
header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  padding: 5px 50px;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 20;
  max-width: var(--max-page-width);
  margin: 0 auto;
  /* ---------- HAMBURGER ---------- */
}
header .header-content .brand {
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 20px;
}
header .header-content .brand img {
  display: inline-block;
  line-height: 1;
  width: 60px;
  height: auto;
}
header .header-content .brand strong {
  font-family: var(--main-font-family);
  font-weight: 600;
  font-size: clamp(26px, 3.5vw, 39.54px);
  line-height: 1;
  color: #fff;
  top: 4px;
  position: relative;
}
header .header-content .brand strong span {
  color: #BCD15A;
}
header .header-content .main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
header .header-content .main-nav a {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #E0E0E0;
  text-decoration: none;
}
header .header-content .main-nav a.active, header .header-content .main-nav a:hover {
  color: #fff;
}
header .header-content .actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
header .header-content .nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
header .header-content .nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
header .header-content .nav-toggle span:not(:last-child) {
  margin-bottom: 6px;
}
header::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 180px;
  background: radial-gradient(ellipse at top center, rgba(69, 69, 69, 0.55) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(142, 178, 63, 0.15) 60%, rgba(142, 178, 63, 0) 75%);
  border-bottom-left-radius: 60%;
  border-bottom-right-radius: 60%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.site-header--main.is-scrolled {
  background-color: #F5F5F7;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.site-header--main.is-scrolled .brand strong {
  color: #0f172a;
}
.site-header--main.is-scrolled .header-content .main-nav a {
  color: #0f172a;
}
.site-header--main.is-scrolled .header-content .nav-toggle span {
  background-color: #0f172a;
}

header.is-scrolled::before {
  opacity: 0;
}

@media (max-width: 1130px) {
  header .header-content .brand strong {
    top: 2px;
  }
}
/* =========================
   TABLET ≤ 1024px
========================= */
@media (max-width: 1024px) {
  header {
    height: 64px;
    padding: 4px 32px;
  }
  header .header-content .main-nav {
    display: none;
  }
  header .header-content .actions {
    display: none;
  }
  header .header-content .nav-toggle {
    display: block;
  }

  header .header-content .brand img {
    display: none;
  }
}
/* =========================
   MOBILE ≤ 640px
========================= */
@media (max-width: 640px) {
  header {
    height: 60px;
    padding: 4px 16px;
  }
  header .header-content .nav-toggle {
    display: block;
  }
}
/* =========================
   BODY STATE WHEN NAV OPEN
========================= */
body.nav-open {
  overflow: hidden;
}
body.nav-open header .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.nav-open header .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open header .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 70px 0 0 0;
  background-color: #171212;
  padding: 32px 24px;
  z-index: 200;
  overflow-y: auto;
  height: calc(100vh - 64px);
  top: 64px;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav nav a {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 20px);
  color: #fff;
  text-decoration: none;
}
.mobile-nav nav a.active {
  color: #BCD15A;
}
.mobile-nav nav hr {
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #FFFFFF22;
  margin: 16px 0;
}

@media (max-width: 640px) {
  .mobile-nav {
    padding: 24px 16px;
  }
}
@media (max-width: 480px) {
  .mobile-nav {
    inset: 60px 0 0 0;
  }
}
.global-hero-mini {
  width: 100%;
  height: auto;
  position: relative;
}
.global-hero-mini > img {
  height: 400px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  line-height: 1;
}
.global-hero-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 25;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.global-hero-mini-content {
  position: absolute;
  left: calc((100% - 1500px) - ((100% - 1500px) / 2));
  top: 140px;
  z-index: 100;
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.global-hero-mini-content h2 span {
  display: block;
  line-height: 1;
}
.global-hero-mini-content h2 span:first-child {
  font-family: var(--main-font-family-melodrama);
  font-weight: 700;
  font-size: 92.11px;
  color: #BCD15A;
}
.global-hero-mini-content h2 span:last-child {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 90.17px;
  color: #fff;
}
.global-hero-mini-content-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1600px) {
  .global-hero-mini-content {
    left: 50px;
  }
}
@media (max-width: 1600px) {
  .global-hero-mini-content h2 span:first-child {
    font-size: 71.11px;
  }

  .global-hero-mini-content h2 span:last-child {
    font-size: 70.17px;
  }
}
@media (max-width: 1280px) {
  .global-hero-mini-content h2 span:first-child {
    font-size: 51.11px;
  }

  .global-hero-mini-content h2 span:last-child {
    font-size: 50.17px;
  }
}
@media (max-width: 1060px) {
  .global-hero-mini-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
/* ---------- Tablet (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .global-hero-mini > img {
    height: 380px;
  }
  .global-hero-mini-content {
    left: 40px;
    top: 100px;
    width: calc(100% - 80px);
    gap: 16px;
  }
  .global-hero-mini-content h2 span:first-child {
    font-size: 64px;
  }
  .global-hero-mini-content h2 span:last-child {
    font-size: 60px;
  }
}
/* ---------- Mobile (≤ 768px) ---------- */
@media (max-width: 768px) {
  .global-hero-mini > img {
    height: 300px;
  }
  .global-hero-mini::before {
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
  }
  .global-hero-mini-content {
    left: 32px;
    top: 72px;
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
  }
  .global-hero-mini-content h2 span:first-child {
    font-size: 40px;
  }
  .global-hero-mini-content h2 span:last-child {
    font-size: 36px;
  }
  .global-hero-mini-content-actions {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .global-hero-mini-content {
    left: 16px;
    top: 62px;
    align-items: center;
  }

  .global-hero-mini-content-actions {
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
  }
}
/* ---------- Small mobile (≤ 480px) ---------- */
@media (max-width: 480px) {
  .global-hero-mini-content-actions {
    flex-wrap: wrap;
  }

  .global-hero-mini-content h2 {
    margin-bottom: 0;
  }

  .global-hero-mini-content h2 span:first-child {
    font-size: 32px;
  }
  .global-hero-mini-content h2 span:last-child {
    font-size: 28px;
  }
}
.universal-page {
  width: 100%;
  padding: 100px 50px 100px 50px;
  margin: 0 auto;
}
.universal-page-content {
  max-width: var(--max-page-width);
  margin: 0 auto;
}
.universal-page-content-heading {
  width: 100%;
}
.universal-page-content-heading h1 {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 54px;
  line-height: 58px;
  color: #171212;
  margin: 0 0 60px 0;
}
.universal-page-content-body {
  width: 100%;
  margin: 40px 0 0 0;
  margin: 20px 0;
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #171212B2;
}
.universal-page .cover-wrapper {
  position: relative;
  display: block;
}
.universal-page .cover-wrapper .cover {
  width: 100%;
  max-height: 700px;
  border-radius: 8px;
  object-fit: cover;
  position: relative;
  object-position: center top;
  display: block;
  line-height: 1;
  height: 100%;
}
.universal-page .cover-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 25;
  background: rgba(15, 23, 42, 0.05);
  height: 100%;
  width: 100%;
}

@media (max-width: 1024px) {
  .universal-page {
    padding: 60px 32px;
  }

  .universal-page-content-heading h1 {
    font-size: 44px;
    margin: 0 0 40px 0;
  }
}
@media (max-width: 640px) {
  .universal-page {
    padding: 40px 16px;
  }
}
@media (max-width: 650px) {
  .universal-page-content-heading h1 {
    font-size: 38px;
    line-height: 48px;
  }
}
footer {
  width: 100%;
  background-color: #171212;
  padding: 80px 100px;
}
footer .footer-heading {
  max-width: var(--max-page-width);
  margin: 0 auto 75px auto;
}
footer .footer-heading span {
  display: block;
  line-height: 1;
}
footer .footer-heading span:first-child {
  font-family: var(--main-font-family-melodrama);
  font-weight: 400;
  font-size: 54px;
  color: #BCD15A;
}
footer .footer-heading span:last-of-type {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 48px;
  color: #fff;
}
footer .footer-heading a {
  margin: 32px 0 0 0;
  height: 64px;
  width: max-content;
}
footer .footer-body {
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
footer .footer-body .brand-col .brand {
  text-decoration: none;
}
footer .footer-body .brand-col .brand strong {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 39.54px;
  line-height: 100%;
  color: #fff;
}
footer .footer-body .brand-col .copyright,
footer .footer-body .brand-col .muted {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF99;
  max-width: 420px;
}
footer .footer-body .footer-col strong {
  font-family: var(--main-font-family);
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  display: block;
  margin: 0 0 20px 0;
}
footer .footer-body .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-body .footer-col a {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF99;
  text-decoration: unset;
  padding: 7px 0;
  display: block;
}
footer .footer-body .footer-col a:hover {
  color: #fff;
}

/* =========================
   TABLET ≤ 1024px
========================= */
@media (max-width: 1024px) {
  footer {
    padding: 64px 48px;
  }
  footer .footer-heading {
    margin-bottom: 56px;
  }
  footer .footer-heading span:first-child {
    font-size: 44px;
  }
  footer .footer-heading span:last-of-type {
    font-size: 40px;
  }
  footer .footer-body {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }
}
/* =========================
   MOBILE ≤ 640px
========================= */
@media (max-width: 640px) {
  footer {
    padding: 48px 24px;
  }
  footer .footer-heading {
    margin-bottom: 40px;
  }
  footer .footer-heading span:first-child {
    font-size: 34px;
  }
  footer .footer-heading span:last-of-type {
    font-size: 30px;
  }
  footer .footer-heading a {
    width: 100%;
    height: 56px;
  }
  footer .footer-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  footer .footer-body .brand-col .brand strong {
    font-size: 32px;
  }
  footer .footer-body .brand-col .copyright,
footer .footer-body .brand-col .muted {
    font-size: 14px;
  }
  footer .footer-body .footer-col strong {
    font-size: 18px;
    margin-bottom: 16px;
  }
  footer .footer-body .footer-col a {
    font-size: 15px;
    padding: 6px 0;
  }
}

/*# sourceMappingURL=about.css.map */
