@charset "UTF-8";
/*
 * THEME SCSS - Fresh Start
 * 
 * AUTHOR:     Dion Wong / Living Online
 * VERSION:    2.0 - Fresh Start
 * MODIFIED:   December 2024
 * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* FONTS
-------------------------------------------- */
/* Poppins Font Family - Primary Font */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Viva Beautiful Font Family - Styled Headings */
@font-face {
  font-family: "Viva Beautiful";
  src: url("../fonts/VivaBeautiful.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Viva Beautiful Pro Font Family - Styled Headings Medium */
@font-face {
  font-family: "Viva Beautiful Pro";
  src: url("../fonts/VivaBeautifulPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Inter Font Family - self-hosted, used for the page-hero watermark to match WP */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Font Fallbacks */
.font-poppins {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.font-inter {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.font-viva-beautiful {
  font-family: "Viva Beautiful", Georgia, "Times New Roman", serif;
}

.font-viva-beautiful-pro {
  font-family: "Viva Beautiful Pro", Georgia, "Times New Roman", serif;
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  line-height: 0;
  margin: 0;
  padding: 0;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

[hidden] {
  display: none !important;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* SHARED ENTRANCE ANIMATIONS — FOUC guard
--------------------------------------------
   Scroll reveals are driven by GSAP in library/js/animations.js (the
   [data-animate] system + ported section timelines). This file only hides
   animated elements before the bundle boots so they don't flash in at their
   final position, then GSAP fades them in via autoAlpha.

   No-JS users (no `.js` class) see everything immediately. */
.js [data-animate] {
  opacity: 0;
  visibility: hidden;
}

/* Reduced motion: skip animation entirely — content visible immediately.
   (animations.js also bails out of all motion under this query.) */
@media (prefers-reduced-motion: reduce) {
  .js [data-animate] {
    opacity: 1;
    visibility: visible;
  }
}
/*	BUTTONS - Fresh Start
-------------------------------------------- */
.btn {
  display: inline-block;
  padding: 16px 24px;
  border: none;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn--primary {
  background-color: #68c8cb;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #37c3b8;
  color: #ffffff;
  transform: translateY(-1px);
}
.btn--secondary {
  background-color: transparent;
  color: #68c8cb;
  border: 2px solid #68c8cb;
}
.btn--secondary:hover {
  background-color: #68c8cb;
  color: #ffffff;
}
.btn--dark {
  background-color: #1e1f1a;
  color: #ffffff;
}
.btn--dark:hover {
  background-color: #222222;
  color: #ffffff;
}
.btn--small {
  padding: 8px 16px;
  font-size: 14px;
}
.btn--large {
  padding: 32px 48px;
  font-size: 18px;
}
.btn:disabled, .btn[disabled] {
  background-color: #bbbbbb;
  color: #777777;
  cursor: not-allowed;
}
.btn:disabled:hover, .btn[disabled]:hover {
  transform: none;
}

/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* BUTTON ARROW
-------------------------------------------- */
.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px 0 22px;
  height: 46px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: border-color 0.3s cubic-bezier(0.44, 0, 0.56, 1), background-color 0.3s cubic-bezier(0.44, 0, 0.56, 1), box-shadow 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  width: auto;
  min-width: 180px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  --btn-text-color: #ffffff;
  --btn-border-color: rgba(255, 255, 255, 0.3);
  --btn-hover-border: #222222;
  --btn-icon-bg: #222222;
  --btn-arrow-color: #ffffff;
  --btn-hover-icon-bg: #1e1f1a;
  border-color: var(--btn-border-color);
}
.btn-arrow .btn-arrow__text {
  color: var(--btn-text-color);
}
.btn-arrow .btn-arrow__icon {
  background-color: var(--btn-icon-bg);
}
.btn-arrow .arrow-line,
.btn-arrow .arrow-head {
  background-color: var(--btn-arrow-color);
}
.btn-arrow:hover {
  border-color: var(--btn-hover-border);
}
.btn-arrow:hover .btn-arrow__text {
  color: #222222;
}
.btn-arrow:hover .btn-arrow__icon {
  background-color: var(--btn-hover-icon-bg);
}
.btn-arrow--dark {
  --btn-text-color: #222222;
  --btn-border-color: rgba(0, 0, 0, 0.3);
  --btn-hover-border: #222222;
  --btn-icon-bg: #222222;
  --btn-arrow-color: #ffffff;
  --btn-hover-icon-bg: #1e1f1a;
  border-color: var(--btn-border-color);
}
.btn-arrow--dark .btn-arrow__text {
  color: var(--btn-text-color);
}
.btn-arrow--dark .btn-arrow__icon {
  background-color: var(--btn-icon-bg);
}
.btn-arrow--dark .arrow-line,
.btn-arrow--dark .arrow-head {
  background-color: var(--btn-arrow-color);
}
.btn-arrow--dark:hover {
  border-color: var(--btn-hover-border);
}
.btn-arrow--dark:hover .btn-arrow__text {
  color: #222222;
}
.btn-arrow--dark:hover .btn-arrow__icon {
  background-color: var(--btn-hover-icon-bg);
}
.btn-arrow--teal {
  --btn-text-color: #ffffff;
  --btn-border-color: #68c8cb;
  --btn-hover-border: #37c3b8;
  --btn-icon-bg: #68c8cb;
  --btn-arrow-color: #ffffff;
  --btn-hover-icon-bg: #37c3b8;
  background-color: #68c8cb;
  border-color: #68c8cb;
}
.btn-arrow--teal .btn-arrow__text {
  color: #ffffff;
}
.btn-arrow--teal .btn-arrow__icon {
  background-color: #ffffff;
}
.btn-arrow--teal .arrow-line,
.btn-arrow--teal .arrow-head {
  background-color: #68c8cb;
}
.btn-arrow--teal:hover {
  background-color: #37c3b8;
  border-color: #37c3b8;
}
.btn-arrow--teal:hover .btn-arrow__icon {
  background-color: #ffffff;
}

.btn-arrow__text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 0;
  transition: padding 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}

.btn-arrow__text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--btn-text-color);
  opacity: 1;
  white-space: nowrap;
}

.btn-arrow__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: var(--btn-icon-bg);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}

.btn-arrow__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}

.arrow-line {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 7.5px);
  width: 15px;
  height: 2px;
  background-color: var(--btn-arrow-color);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  z-index: 1;
}

.arrow-head {
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: var(--btn-arrow-color);
  transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  z-index: 1;
}
.arrow-head--top {
  right: 2px;
  top: 6px;
  border-radius: 10px 10px 2px 10px;
  transform: rotate(45deg);
}
.arrow-head--bottom {
  right: 2px;
  bottom: 6px;
  border-radius: 10px 2px 10px 10px;
  transform: rotate(-45deg);
}

/*	FORMS
-------------------------------------------- */
/* Form Typography */
.form__label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #1e1f1a;
}
.form__input {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #1e1f1a;
}
.form__input::-moz-placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #777777;
}
.form__input::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #777777;
}

/* Navigation Labels */
.nav-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #222222;
}

/* Label Variations */
.label {
  font-family: "Poppins", sans-serif;
  color: #222222;
}
.label--base {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.label--medium {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.label--large {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* HEADER
-------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}
.site-header .header-logo,
.site-header .header-cta,
.site-header .header-menu-toggle {
  pointer-events: auto;
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.menu-open .site-header {
  transform: translateY(0) !important;
}
.menu-open .site-header .header-logo,
.menu-open .site-header .header-menu-toggle {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.header-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 42px;
}
@media (max-width: 1199px) {
  .header-container {
    padding: 0 30px;
  }
}
@media (max-width: 809px) {
  .header-container {
    padding: 0 20px;
  }
}

.header-content {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 12px 0;
  background-color: transparent;
  border-radius: 16px;
  transition: background-color 0.3s ease, padding 0.3s ease;
}
@media (max-width: 1199px) {
  .header-content {
    gap: 30px;
  }
}
@media (max-width: 809px) {
  .header-content {
    gap: 15px;
  }
}
.site-header.header-scrolled .header-content {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 12px 24px;
}
@media (max-width: 1199px) {
  .site-header.header-scrolled .header-content {
    padding: 12px 20px;
  }
}
@media (max-width: 809px) {
  .site-header.header-scrolled .header-content {
    padding: 12px 16px;
  }
}

/* Logo */
.header-logo {
  flex: 1 0 0;
  min-width: 160px;
  transition: transform 0.5s cubic-bezier(0.44, 0, 0.56, 1), opacity 0.4s cubic-bezier(0.44, 0, 0.56, 1);
  position: relative;
  transform-origin: left center;
}
.header-logo a {
  display: block;
  line-height: 0;
}
.header-logo img {
  height: 24px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  transition: height 0.5s cubic-bezier(0.44, 0, 0.56, 1);
  filter: brightness(0) invert(1);
}
@media (max-width: 809px) {
  .header-logo img {
    height: 20px;
  }
}
.header-logo .site-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  transition: font-size 0.5s cubic-bezier(0.44, 0, 0.56, 1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 809px) {
  .header-logo .site-title {
    font-size: 20px;
  }
}

body.menu-open .header-logo {
  transform: scale(1.2);
}
@media (max-width: 809px) {
  body.menu-open .header-logo {
    transform: scale(1.1);
  }
}

/* Address */
.header-address {
  display: none;
  transition: opacity 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

/* Contact */
.header-contact {
  display: none;
  transition: opacity 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

/* Header Actions */
.header-actions {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
@media (max-width: 809px) {
  .header-actions {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

/* CTA Button */
.header-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px 0 22px;
  height: 46px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1), opacity 0.4s cubic-bezier(0.44, 0, 0.56, 1);
  width: auto;
  min-width: 180px;
  cursor: pointer;
}
.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.header-cta:hover .header-cta__icon {
  background-color: #fff;
}
.header-cta:hover .header-cta__text-wrapper {
  padding: 0 12px 0 2px;
}
.header-cta:hover .arrow-line {
  left: -6px;
  width: 23px;
}
.header-cta:hover .arrow-head--top {
  right: 2px;
  top: 7px;
  width: 7px;
  height: 2px;
}
.header-cta:hover .arrow-head--bottom {
  right: 2px;
  bottom: 7px;
  width: 7px;
  height: 2px;
}
@media (max-width: 809px) {
  .header-cta {
    display: none;
  }
}
.header-cta__text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 0;
  transition: padding 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}
.header-cta__text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 1;
  white-space: nowrap;
}
.header-cta__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: rgb(241, 223, 194);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}
.header-cta__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
.header-cta .arrow-line {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 7.5px);
  width: 15px;
  height: 2px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  z-index: 1;
}
.header-cta .arrow-head {
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  z-index: 1;
}
.header-cta .arrow-head--top {
  right: 2px;
  top: 6px;
  border-radius: 10px 10px 2px 10px;
  transform: rotate(45deg);
}
.header-cta .arrow-head--bottom {
  right: 2px;
  bottom: 6px;
  border-radius: 10px 2px 10px 10px;
  transform: rotate(-45deg);
}

/* Menu Toggle */
.header-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}
.header-menu-toggle:hover .menu-toggle__line {
  background-color: rgba(255, 255, 255, 0.7);
}
.header-menu-toggle[aria-expanded=true] .menu-toggle__line:nth-child(1) {
  transform: rotate(45deg) translateY(0);
}
.header-menu-toggle[aria-expanded=true] .menu-toggle__line:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.header-menu-toggle[aria-expanded=true] .menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translateY(0);
}

.menu-toggle__line {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: rgb(255, 255, 255);
  border-radius: 1px;
  transition: all 0.4s cubic-bezier(0.44, 0, 0.56, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.menu-toggle__line:nth-child(1) {
  transform: translateY(-8px);
}
.menu-toggle__line:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
}
.menu-toggle__line:nth-child(3) {
  transform: translateY(8px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.44, 0, 0.56, 1), visibility 0.5s cubic-bezier(0.44, 0, 0.56, 1);
}
.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  width: 100%;
  max-width: 600px;
  padding: 0 40px;
  text-align: center;
}
@media (max-width: 809px) {
  .mobile-menu__content {
    padding: 0 30px;
  }
}

.mobile-menu__nav {
  margin: 0;
  padding: 0;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__item {
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.44, 0, 0.56, 1), transform 0.6s cubic-bezier(0.44, 0, 0.56, 1);
}
.mobile-menu.is-active .mobile-menu__item {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__item:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu__item:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu__item:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu__item:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu__item:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-menu__item:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu__link {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.mobile-menu__link:hover {
  color: rgb(241, 223, 194);
  transform: translateX(10px);
}
.mobile-menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 2px;
  background-color: rgb(241, 223, 194);
  transition: transform 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}
.mobile-menu__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
@media (max-width: 809px) {
  .mobile-menu__link {
    padding: 15px 0;
  }
}

body.menu-open {
  overflow: hidden;
}

/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* FOOTER
-------------------------------------------- */
.site-footer {
  position: relative;
  width: 100%;
  color: #fff;
  pointer-events: auto;
  font-family: "Poppins", "Poppins", sans-serif;
}

/* ============================================================================
   FOOTER - Minimalist with Large Typography
   ============================================================================ */
.footer-style-2 {
  background: #0f0f0f;
  overflow: hidden;
  min-height: 800px;
}
@media (max-width: 768px) {
  .footer-style-2 {
    min-height: auto;
  }
}

.footer-bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 217, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.footer-container-2 {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 60px 60px;
}
@media (max-width: 992px) {
  .footer-container-2 {
    padding: 100px 40px 50px;
  }
}
@media (max-width: 768px) {
  .footer-container-2 {
    padding: 80px 24px 40px;
  }
}

.footer-hero-2 {
  text-align: center;
  margin-bottom: 120px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .footer-hero-2 {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .footer-hero-2 {
    margin-bottom: 70px;
  }
}

.footer-hero-logo-2 {
  margin-bottom: 40px;
}
.footer-hero-logo-2 img {
  height: 100px;
  filter: brightness(0) invert(1);
}
@media (max-width: 992px) {
  .footer-hero-logo-2 img {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .footer-hero-logo-2 img {
    height: 50px;
  }
}

.footer-hero-text-2 {
  font-size: 90px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (max-width: 992px) {
  .footer-hero-text-2 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .footer-hero-text-2 {
    font-size: 40px;
  }
}

.footer-hero-tagline-2 {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer-hero-tagline-2 {
    font-size: 17px;
  }
}

.footer-content-2 {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .footer-info-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .footer-info-2 {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .footer-info-item-2 {
    text-align: left;
  }
}

.footer-label-2 {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer-label-2 {
    font-size: 10px;
  }
}

.footer-link-2,
.footer-text-2 {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-link-2,
  .footer-text-2 {
    font-size: 17px;
  }
}

.footer-link-2:hover {
  color: rgb(241, 223, 194);
}

.footer-text-2 {
  margin: 0;
}

.footer-social-2 {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer-social-2 {
    justify-content: flex-start;
  }
}

.footer-social-link-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}
.footer-social-link-2:hover {
  background-color: rgb(241, 223, 194);
  border-color: rgb(241, 223, 194);
  color: #000;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .footer-social-link-2 {
    width: 48px;
    height: 48px;
    font-size: 10px;
  }
}

.footer-line-2 {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent 100%);
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .footer-line-2 {
    margin-bottom: 40px;
  }
}

.footer-bottom-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-bottom-2 {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

.footer-copy-2 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer-copy-2 {
    font-size: 13px;
  }
}

.footer-legal-2 {
  display: flex;
  gap: 36px;
}
@media (max-width: 768px) {
  .footer-legal-2 {
    gap: 28px;
  }
}
.footer-legal-2 a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}
.footer-legal-2 a:hover {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .footer-legal-2 a {
    font-size: 13px;
  }
}

/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* FLOATING WHATSAPP BUTTON
-------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
}
.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  display: block;
  pointer-events: none;
}
@media (max-width: 767px) {
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}
.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp:active {
  transform: translateY(-2px) scale(1.02);
}
.floating-whatsapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* GLOBAL CTA (Image variant) */
.global-cta {
  padding: 80px 0 60px;
  /* Use Inter to match header/button + most sections */
  font-family: "Poppins", "Poppins", sans-serif;
}

.global-cta--image {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.global-cta--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% -200px, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

.global-cta__bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.global-cta__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.global-cta__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 42px;
  position: relative;
  z-index: 1;
}

.global-cta__content {
  text-align: left;
  max-width: 960px;
  padding: 48px clamp(20px, 5vw, 56px);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.55);
}

.global-cta__title {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.global-cta__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 32px;
}

/* Button overrides on dark */
/* Button overrides on dark */
.global-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.global-cta .header-cta {
  display: inline-flex;
  width: auto;
  border: 1.5px solid #fff !important;
}

.global-cta .header-cta__text {
  color: #fff !important;
}

/* Secondary Button (Ghost/Link style) */
.global-cta .header-cta--secondary {
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.global-cta .header-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff !important;
}
.global-cta .header-cta--secondary .header-cta__text {
  color: #fff !important;
}
.global-cta .header-cta--secondary .header-cta__icon {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
  .global-cta__title {
    font-size: clamp(24px, 8vw, 32px);
  }
  .global-cta__text {
    font-size: 16px;
  }
  .global-cta .header-cta__text {
    font-size: 12px;
  }
}
/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* PROJECT ARCHIVE
-------------------------------------------- */
.project-archive {
  background-color: rgb(241, 241, 241);
  min-height: 100vh;
  font-family: "Poppins", "Poppins", sans-serif;
  padding: 0 0 100px;
}
@media (max-width: 992px) {
  .project-archive {
    padding: 0 0 80px;
  }
}
@media (max-width: 768px) {
  .project-archive {
    padding: 0 0 60px;
  }
}

.project-archive__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 42px;
  padding-top: 100px;
}
@media (max-width: 992px) {
  .project-archive__container {
    padding: 0 32px;
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .project-archive__container {
    padding: 0 32px;
    padding-top: 60px;
  }
}

/* Filter Tabs */
.project-archive__filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .project-archive__filters {
    margin-bottom: 48px;
    padding-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .project-archive__filters {
    margin-bottom: 40px;
    gap: 8px;
  }
}

.project-filter__tab {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 32px;
  padding: 12px 24px;
  font-family: "Poppins", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: rgb(40, 40, 40);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}
.project-filter__tab:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.25);
}
.project-filter__tab.active {
  background: #000;
  color: #fff;
  border-color: #000;
}
@media (max-width: 768px) {
  .project-filter__tab {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Header Section */
.project-archive__header {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .project-archive__header {
    margin-bottom: 40px;
  }
}

.project-archive__header-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.project-archive__title {
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: #000;
  margin: 0;
}
.project-archive__title span {
  display: inline-block;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Categories */
.project-archive__categories {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .project-archive__categories {
    gap: 16px;
  }
}

.project-category {
  background: none;
  border: none;
  font-family: "Poppins", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: rgb(130, 132, 135);
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}
.project-category:hover {
  color: #000;
}
.project-category.active {
  color: #000;
}
@media (max-width: 768px) {
  .project-category {
    font-size: 20px;
  }
}

/* Decorative Elements */
.project-archive__decor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .project-archive__decor {
    margin-top: 16px;
  }
}

.project-archive__decor-line {
  width: 100%;
  height: 1px;
  background-color: rgb(214, 219, 220);
}

.project-archive__decor-arrow {
  width: 23px;
  height: 9px;
  flex-shrink: 0;
  fill: rgb(214, 219, 220);
  transform: rotate(90deg);
}

/* Projects Grid */
.project-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .project-archive__grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .project-archive__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Project Card */
.project-card.hidden {
  display: none;
}

.project-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.project-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.44, 0, 0.56, 1);
}
@media (max-width: 768px) {
  .project-card__image {
    margin-bottom: 16px;
  }
}

.project-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  pointer-events: none;
}

.project-card__logo {
  display: none;
}

.project-card__link:hover .project-card__image img {
  transform: scale(1.05);
}

/* Card Content */
.project-card__content {
  display: flex;
  flex-direction: column;
}

.project-card__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
}
@media (max-width: 728px) {
  .project-card__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 728px) {
  .project-card__row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "left right" "center right";
  }
}

.project-card__left {
  display: flex;
  align-items: center;
  min-width: 100px;
}
@media (max-width: 728px) {
  .project-card__left {
    grid-area: left;
  }
}
@media (max-width: 768px) {
  .project-card__left {
    min-width: auto;
  }
}

.project-card__date {
  font-size: 14px;
  line-height: 1.5;
  color: rgb(130, 132, 135);
  font-weight: 400;
}
@media (max-width: 768px) {
  .project-card__date {
    font-size: 13px;
  }
}

.project-card__center {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 728px) {
  .project-card__center {
    grid-area: center;
  }
}

.project-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  margin: 0;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .project-card__title {
    font-size: 20px;
  }
}

.project-card__location {
  font-size: 14px;
  line-height: 1.5;
  color: rgb(130, 132, 135);
  margin: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .project-card__location {
    font-size: 13px;
  }
}

.project-card__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 728px) {
  .project-card__right {
    grid-area: right;
    justify-self: end;
  }
}

/* Client Info */
.project-card__client {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .project-card__client {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.project-card__client-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgb(130, 132, 135);
  font-weight: 400;
}
@media (max-width: 768px) {
  .project-card__client-label {
    font-size: 13px;
  }
}

.project-card__client-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-card__client-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.project-card__client-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.project-card__client-name {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  font-weight: 400;
}
@media (max-width: 768px) {
  .project-card__client-name {
    font-size: 13px;
  }
}

/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* PAGE REFERRAL
-------------------------------------------- */
.page-referral {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

/* HERO SECTION
-------------------------------------------- */
.referral-hero {
  background: linear-gradient(135deg, #0d1018 0%, #1a1d2e 100%);
  padding: 120px 42px 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .referral-hero {
    padding: 80px 24px 60px;
  }
}
.referral-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(241, 223, 194, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.referral-hero__container {
  max-width: 1400px;
  margin: 0 auto;
}
.referral-hero__content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.referral-hero__title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  .referral-hero__title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .referral-hero__title {
    font-size: 36px;
    margin: 0 0 16px;
  }
}
@media (max-width: 767px) {
  .referral-hero__title br {
    display: none;
  }
}
.referral-hero__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .referral-hero__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.referral-hero__subtitle strong {
  color: #f1dfc2;
  font-weight: 600;
}
.referral-hero__btn {
  background-color: #f1dfc2;
  color: #0d1018;
  border: none;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .referral-hero__btn {
    padding: 16px 40px;
    font-size: 15px;
  }
}
.referral-hero__btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241, 223, 194, 0.3);
}

/* PROCESS SECTION
-------------------------------------------- */
.referral-process {
  padding: 100px 42px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .referral-process {
    padding: 60px 24px;
  }
}
.referral-process__container {
  max-width: 1400px;
  margin: 0 auto;
}
.referral-process__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .referral-process__header {
    margin-bottom: 50px;
  }
}
.referral-process__title {
  font-size: 48px;
  font-weight: 600;
  color: #0d1018;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .referral-process__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.referral-process__desc {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .referral-process__desc {
    font-size: 16px;
  }
}
.referral-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .referral-process__grid {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .referral-process__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
}

/* REFERRAL STEP CARDS
-------------------------------------------- */
.referral-step {
  background-color: #fafafa;
  padding: 48px 40px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .referral-step {
    padding: 36px 28px;
  }
}
.referral-step:hover {
  border-color: #f1dfc2;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
.referral-step__number {
  font-size: 80px;
  font-weight: 700;
  color: #0d1018;
  line-height: 1;
  margin: 0 0 28px;
  opacity: 0.1;
}
@media (max-width: 767px) {
  .referral-step__number {
    font-size: 64px;
    margin-bottom: 24px;
  }
}
.referral-step__title {
  font-size: 24px;
  font-weight: 600;
  color: #0d1018;
  margin: 0 0 16px;
}
@media (max-width: 767px) {
  .referral-step__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.referral-step__text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
@media (max-width: 767px) {
  .referral-step__text {
    font-size: 15px;
  }
}
.referral-step__text strong {
  color: #0d1018;
  font-weight: 600;
}

/* REWARDS SUMMARY
-------------------------------------------- */
.referral-rewards {
  max-width: 900px;
  margin: 0 auto;
}
.referral-rewards__card {
  background: linear-gradient(135deg, #0d1018 0%, #1a1d2e 100%);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .referral-rewards__card {
    padding: 40px 28px;
  }
}
.referral-rewards__card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(241, 223, 194, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .referral-rewards__card::before {
    width: 300px;
    height: 300px;
  }
}
.referral-rewards__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .referral-rewards__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.referral-rewards__divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(241, 223, 194, 0.3), transparent);
}
@media (max-width: 767px) {
  .referral-rewards__divider {
    display: none;
  }
}
.referral-rewards__item {
  text-align: center;
}
.referral-rewards__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .referral-rewards__label {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
.referral-rewards__value {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #f1dfc2;
  line-height: 1;
}
@media (max-width: 767px) {
  .referral-rewards__value {
    font-size: 40px;
  }
}

/* MODAL
-------------------------------------------- */
.referral-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(13, 16, 24, 0.95);
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 20px;
}
.referral-modal.is-open {
  display: flex;
  animation: fadeIn 0.3s ease;
  overflow: hidden;
}
.referral-modal__content {
  background-color: #fff;
  padding: 56px;
  width: 100%;
  max-width: 580px;
  position: relative;
  color: #0d1018;
  animation: slideUp 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .referral-modal__content {
    padding: 40px 28px;
    max-height: 95vh;
  }
}
.referral-modal__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: all 0.2s ease;
  line-height: 1;
  background-color: #f5f5f5;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .referral-modal__close {
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}
.referral-modal__close:hover {
  color: #fff;
  background-color: #0d1018;
  transform: rotate(90deg);
}
.referral-modal__title {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 600;
  color: #0d1018;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .referral-modal__title {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.referral-modal__desc {
  margin: 0 0 40px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .referral-modal__desc {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

/* FORM
-------------------------------------------- */
.referral-form__group,
.referral-cf7-form__group {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .referral-form__group,
  .referral-cf7-form__group {
    margin-bottom: 20px;
  }
}
.referral-form__group label,
.referral-cf7-form__group label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #0d1018;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.referral-form__group input,
.referral-cf7-form__group input {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #e5e5e5;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background-color: #fafafa;
  border-radius: 0;
}
@media (max-width: 767px) {
  .referral-form__group input,
  .referral-cf7-form__group input {
    padding: 14px 16px;
    font-size: 15px;
  }
}
.referral-form__group input:focus,
.referral-cf7-form__group input:focus {
  outline: none;
  border-color: #f1dfc2;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(241, 223, 194, 0.15);
}
.referral-form__group input::-moz-placeholder, .referral-cf7-form__group input::-moz-placeholder {
  color: #aaa;
  font-size: 15px;
}
.referral-form__group input::placeholder,
.referral-cf7-form__group input::placeholder {
  color: #aaa;
  font-size: 15px;
}
.referral-form__divider,
.referral-cf7-form__divider {
  margin: 36px 0;
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e5e5, transparent);
  position: relative;
}
@media (max-width: 767px) {
  .referral-form__divider,
  .referral-cf7-form__divider {
    margin: 32px 0;
  }
}
.referral-form__divider::after,
.referral-cf7-form__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #f1dfc2;
  border-radius: 50%;
}
.referral-form__submit,
.referral-cf7-form__submit {
  width: 100%;
  background-color: #0d1018;
  color: #fff;
  padding: 18px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  margin-top: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}
@media (max-width: 767px) {
  .referral-form__submit,
  .referral-cf7-form__submit {
    padding: 16px;
    font-size: 13px;
  }
}
.referral-form__submit:hover,
.referral-cf7-form__submit:hover {
  background-color: #f1dfc2;
  color: #0d1018;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 16, 24, 0.25);
}
.referral-form__submit:active,
.referral-cf7-form__submit:active {
  transform: translateY(0);
}

/* CONTACT FORM 7 STYLING
-------------------------------------------- */
.referral-cf7-form .wpcf7-form-control-wrap {
  display: block;
  position: static !important;
}
.referral-cf7-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #0d1018;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .referral-cf7-form label {
    margin-bottom: 20px;
  }
}
.referral-cf7-form input[type=text],
.referral-cf7-form input[type=email],
.referral-cf7-form input[type=tel],
.referral-cf7-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #e5e5e5;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background-color: #fafafa;
  border-radius: 4px;
  margin-bottom: 0;
  display: block;
}
@media (max-width: 767px) {
  .referral-cf7-form input[type=text],
  .referral-cf7-form input[type=email],
  .referral-cf7-form input[type=tel],
  .referral-cf7-form textarea {
    padding: 14px 16px;
    font-size: 15px;
  }
}
.referral-cf7-form input[type=text]:focus,
.referral-cf7-form input[type=email]:focus,
.referral-cf7-form input[type=tel]:focus,
.referral-cf7-form textarea:focus {
  outline: none;
  border-color: #f1dfc2;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(241, 223, 194, 0.15);
}
.referral-cf7-form textarea {
  min-height: 120px;
  resize: vertical;
}
.referral-cf7-form .wpcf7-submit {
  width: 100%;
  background-color: #0d1018;
  color: #fff;
  padding: 18px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  margin-top: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .referral-cf7-form .wpcf7-submit {
    padding: 16px;
    font-size: 13px;
  }
}
.referral-cf7-form .wpcf7-submit:hover {
  background-color: #f1dfc2;
  color: #0d1018;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 16, 24, 0.25);
}
.referral-cf7-form .wpcf7-submit:active {
  transform: translateY(0);
}
.referral-cf7-form .wpcf7-spinner {
  display: none;
}
.referral-cf7-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
}
.referral-cf7-form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 0;
  font-size: 14px;
}
.referral-cf7-form .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
  color: #856404;
}
.referral-cf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 2px solid #28a745;
  color: #155724;
}
.referral-cf7-form .wpcf7-form {
  border: none;
  padding: 0;
}

/* ANIMATIONS
-------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* LEGAL PAGES (Privacy, Terms, etc.)
-------------------------------------------- */
.legal-page {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  color: #222222;
  min-height: 100vh;
}

/* HEADER
-------------------------------------------- */
.legal-page__header {
  background: linear-gradient(135deg, #0d1018 0%, #1a1d2e 100%);
  padding: 140px 42px 80px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .legal-page__header {
    padding: 100px 24px 60px;
  }
}
.legal-page__header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(241, 223, 194, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.legal-page__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-page__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  .legal-page__title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .legal-page__title {
    font-size: 36px;
  }
}

.legal-page__updated {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
}
@media (max-width: 767px) {
  .legal-page__updated {
    font-size: 14px;
  }
}

/* CONTENT
-------------------------------------------- */
.legal-page__content {
  padding: 80px 42px 100px;
}
@media (max-width: 767px) {
  .legal-page__content {
    padding: 60px 24px 80px;
  }
}

.legal-page__body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 767px) {
  .legal-page__body {
    font-size: 15px;
  }
}
.legal-page__body h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0d1018;
  margin: 60px 0 24px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .legal-page__body h2 {
    font-size: 28px;
    margin: 48px 0 20px;
  }
}
.legal-page__body h2:first-child {
  margin-top: 0;
}
.legal-page__body h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0d1018;
  margin: 40px 0 20px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .legal-page__body h3 {
    font-size: 22px;
    margin: 32px 0 16px;
  }
}
.legal-page__body h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0d1018;
  margin: 32px 0 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .legal-page__body h4 {
    font-size: 18px;
    margin: 28px 0 14px;
  }
}
.legal-page__body p {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .legal-page__body p {
    margin: 0 0 18px;
  }
}
.legal-page__body p:last-child {
  margin-bottom: 0;
}
.legal-page__body ul,
.legal-page__body ol {
  margin: 0 0 24px;
  padding-left: 28px;
}
@media (max-width: 767px) {
  .legal-page__body ul,
  .legal-page__body ol {
    margin: 0 0 20px;
    padding-left: 24px;
  }
}
.legal-page__body ul li,
.legal-page__body ol li {
  margin-bottom: 12px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .legal-page__body ul li,
  .legal-page__body ol li {
    margin-bottom: 10px;
  }
}
.legal-page__body ul li:last-child,
.legal-page__body ol li:last-child {
  margin-bottom: 0;
}
.legal-page__body ul ul,
.legal-page__body ul ol,
.legal-page__body ol ul,
.legal-page__body ol ol {
  margin-top: 12px;
  margin-bottom: 12px;
}
.legal-page__body a {
  color: #f1dfc2;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal-page__body a:hover {
  color: #0d1018;
}
.legal-page__body strong {
  font-weight: 600;
  color: #0d1018;
}
.legal-page__body em {
  font-style: italic;
}
.legal-page__body blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid #f1dfc2;
  background-color: #fafafa;
  font-style: italic;
  color: #555;
}
@media (max-width: 767px) {
  .legal-page__body blockquote {
    margin: 24px 0;
    padding: 20px 24px;
  }
}
.legal-page__body blockquote p {
  margin-bottom: 0;
}
.legal-page__body hr {
  margin: 48px 0;
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
}
@media (max-width: 767px) {
  .legal-page__body hr {
    margin: 40px 0;
  }
}
.legal-page__body table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  font-size: 15px;
}
@media (max-width: 767px) {
  .legal-page__body table {
    font-size: 14px;
    margin: 24px 0;
  }
}
.legal-page__body table th,
.legal-page__body table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 767px) {
  .legal-page__body table th,
  .legal-page__body table td {
    padding: 10px 12px;
  }
}
.legal-page__body table th {
  background-color: #fafafa;
  font-weight: 600;
  color: #0d1018;
}
.legal-page__body table tr:last-child td {
  border-bottom: none;
}
.legal-page__body .contact-box {
  margin: 40px 0;
  padding: 32px;
  background: linear-gradient(135deg, #f8f8f8 0%, #fafafa 100%);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .legal-page__body .contact-box {
    margin: 32px 0;
    padding: 24px;
  }
}
.legal-page__body .contact-box p {
  margin-bottom: 8px;
}
.legal-page__body .contact-box p:last-child {
  margin-bottom: 0;
}
.legal-page__body .contact-box strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  color: #0d1018;
}
@media (max-width: 767px) {
  .legal-page__body .contact-box strong {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.legal-page__body .contact-box a {
  color: #0d1018;
  font-weight: 600;
  text-decoration: none;
}
.legal-page__body .contact-box a:hover {
  color: #f1dfc2;
}

/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* 404 ERROR PAGE
-------------------------------------------- */
.error-404 {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1018 0%, #1a1d2e 100%);
  position: relative;
  padding: 100px 42px;
}
@media (max-width: 767px) {
  .error-404 {
    padding: 80px 24px;
    min-height: 80vh;
  }
}
.error-404::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(241, 223, 194, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.error-404::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle at bottom left, rgba(241, 223, 194, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.error-404__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.error-404__badge {
  font-size: 180px;
  font-weight: 900;
  color: rgba(241, 223, 194, 0.15);
  line-height: 1;
  margin-bottom: -40px;
  letter-spacing: -0.05em;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (max-width: 991px) {
  .error-404__badge {
    font-size: 140px;
    margin-bottom: -30px;
  }
}
@media (max-width: 767px) {
  .error-404__badge {
    font-size: 100px;
    margin-bottom: -20px;
  }
}

.error-404__subtitle {
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .error-404__subtitle {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.error-404__title {
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (max-width: 991px) {
  .error-404__title {
    font-size: 56px;
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .error-404__title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}

.error-404__description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .error-404__description {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.error-404__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .error-404__buttons {
    flex-direction: column;
    gap: 12px;
  }
}
.error-404__buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid #f1dfc2;
  background-color: #f1dfc2;
  color: #0d1018;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 0;
}
@media (max-width: 767px) {
  .error-404__buttons .btn {
    padding: 16px 36px;
    font-size: 13px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
.error-404__buttons .btn svg {
  transition: transform 0.3s ease;
}
.error-404__buttons .btn:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.error-404__buttons .btn:hover svg {
  transform: translateX(4px);
}
.error-404__buttons .btn:active {
  transform: translateY(0);
}
.error-404__buttons .btn:nth-child(2) {
  background-color: transparent;
  color: #f1dfc2;
  border-color: #f1dfc2;
}
.error-404__buttons .btn:nth-child(2):hover {
  background-color: #f1dfc2;
  color: #0d1018;
  border-color: #f1dfc2;
}

.error-404__badge {
  animation: fadeInScale 0.8s ease-out;
}

.error-404__subtitle {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.error-404__title {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.error-404__description {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.error-404__buttons {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*	BUTTONS - Fresh Start
-------------------------------------------- */
.hero-simple {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-simple::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-simple .hero-slogan {
  position: absolute;
  left: 6vw;
  bottom: 10vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vh, 16px);
  width: 88vw;
  margin-bottom: 100px;
  transition: opacity 0.1s ease, transform 0.1s ease;
}
@media (max-height: 600px) {
  .hero-simple .hero-slogan {
    bottom: 5vh;
    margin-bottom: 100px;
  }
}
@media (max-height: 400px) {
  .hero-simple .hero-slogan {
    bottom: 2vh;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .hero-simple .hero-slogan {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .hero-simple .hero-slogan {
    margin-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .hero-simple .hero-slogan {
    margin-bottom: 100px;
  }
}
.hero-simple .hero-slogan__top {
  font-family: "Poppins", "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.8;
  color: #fff;
  font-size: clamp(36px, 10vw, 200px);
}
.hero-simple .hero-slogan__bottom {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.3em;
  font-family: "Poppins", "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.8;
  color: #fff;
  margin-top: 10px;
  margin-left: 100px;
  white-space: nowrap;
  font-size: clamp(36px, 10vw, 200px);
}
@media (max-width: 991px) {
  .hero-simple .hero-slogan__bottom {
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  .hero-simple .hero-slogan__bottom {
    margin-left: 25px;
  }
}
@media (max-width: 575px) {
  .hero-simple .hero-slogan__bottom {
    margin-left: 25px;
  }
}
.hero-simple .hero-slogan__mood {
  color: rgb(241, 223, 194) !important;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-size: inherit;
  white-space: nowrap;
}
.hero-simple .hero-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  transition: opacity 0.1s ease, transform 0.1s ease;
}
@media (max-width: 991px) {
  .hero-simple .hero-info {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 95vw;
  }
  .hero-simple .hero-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: -320px;
    width: 1px;
    height: 467px;
    background: rgba(255, 255, 255, 0.23);
    z-index: 1;
  }
  .hero-simple .hero-info::after {
    content: "";
    position: absolute;
    left: -3px;
    top: 140px;
    width: 7px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 7 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline opacity='0.23' x1='3.5' y1='0' x2='3.5' y2='20' stroke='white'/%3E%3Cpath opacity='0.23' fill-rule='evenodd' clip-rule='evenodd' d='M0.5 5L3.06795 18.9983L3.068 12.866L1.57573 5H0.5ZM5.53235 5L4.0746 12.866V19L6.6021 5H5.53235Z' fill='white'/%3E%3C/svg%3E");
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .hero-simple .hero-info {
    gap: 30px;
  }
}
.hero-simple .hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 250px;
  height: 300px;
  flex-shrink: 0;
}
.hero-simple .hero-left__line {
  position: absolute;
  left: 0;
  top: -200px;
  width: 1px;
  height: 400px;
  background: rgba(255, 255, 255, 0.23);
  z-index: 1;
}
@media (max-width: 991px) {
  .hero-simple .hero-left__line {
    display: none;
  }
}
.hero-simple .hero-left__arrow {
  position: absolute;
  left: -3px;
  top: 180px;
  width: 7px;
  height: 20px;
}
.hero-simple .hero-left__arrow svg {
  width: 7px;
  height: 20px;
}
@media (max-width: 991px) {
  .hero-simple .hero-left__arrow {
    display: none;
  }
}
.hero-simple .hero-award {
  display: none;
  position: absolute;
  top: 130px;
  left: 20px;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero-simple .hero-award {
    top: 0;
    left: 10px;
  }
}
.hero-simple .hero-award__year {
  position: absolute;
  top: -10px;
  right: -15px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.95;
}
.hero-simple .hero-award__logo img {
  width: 200px;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .hero-simple .hero-award__logo img {
    width: 150px;
  }
}
.hero-simple .hero-about {
  position: absolute;
  top: 210px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  z-index: 2;
  width: 250px;
}
@media (max-width: 991px) {
  .hero-simple .hero-about {
    top: 40px;
    left: 10px;
  }
}
.hero-simple .hero-about__title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.hero-simple .hero-about__subtitle {
  color: rgb(241, 223, 194);
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.hero-simple .hero-services {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  height: 250px;
  width: 200px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .hero-simple .hero-services {
    display: none;
  }
}
.hero-simple .hero-services__line {
  position: absolute;
  left: 50%;
  top: -250px;
  transform: translateX(-50%);
  width: 1px;
  height: 370px;
  background: rgba(255, 255, 255, 0.23);
  z-index: 1;
}
.hero-simple .hero-services__arrow {
  position: absolute;
  top: 115px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-simple .hero-services__arrow svg {
  width: 7px;
  height: 20px;
}
.hero-simple .hero-services__items {
  position: absolute;
  top: 145px;
  left: calc(50% - 3px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.hero-simple .hero-services__item {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  opacity: 0.9;
  white-space: nowrap;
}
.hero-simple .hero-services-mobile {
  display: none;
}
@media (max-width: 991px) {
  .hero-simple .hero-services-mobile {
    display: block;
    position: absolute;
    top: 170px;
    left: 0;
    z-index: 2;
  }
}
.hero-simple .hero-services-mobile__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}
.hero-simple .hero-services-mobile__item {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  opacity: 0.9;
  white-space: nowrap;
  text-align: left;
}

/*	BUTTONS - Fresh Start
-------------------------------------------- */
/* INTERIOR ABOUT INTRO
-------------------------------------------- */
.about-intro-section {
  position: relative;
  z-index: 2;
  background-color: #f1f1f1;
  padding: 80px 0 60px 0;
  margin-top: -1px;
}
@media (max-width: 992px) {
  .about-intro-section {
    padding: 60px 0 40px 0;
  }
}
.about-intro-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 42px;
  width: 100%;
}
@media (max-width: 1024px) {
  .about-intro-section .container {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .about-intro-section .container {
    padding: 0 24px;
  }
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-intro-image {
  position: relative;
}
.js .about-intro-image {
  opacity: 0;
}
.about-intro-image img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-intro-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  letter-spacing: -0.05em;
  line-height: 80px;
  text-transform: none;
}
@media (max-width: 1200px) {
  .about-intro-content h2 {
    font-size: 60px;
    line-height: 66px;
  }
}
@media (max-width: 991px) {
  .about-intro-content h2 {
    font-size: 48px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .about-intro-content h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
.about-intro-content .intro-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #777777;
  margin-bottom: 40px;
}
.js .about-intro-content .intro-text {
  opacity: 0;
}
.about-intro-content .intro-text p {
  margin-bottom: 20px;
}
.js .about-intro-content h2 {
  opacity: 0;
}

.awards-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(34, 34, 34, 0.1);
}
.js .awards-row {
  opacity: 0;
}
.awards-row .award-item {
  width: auto;
  max-width: 200px;
}
.awards-row .award-item img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 180px;
  display: block;
  filter: invert(1) brightness(0);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.awards-row .award-item img:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.about-intro-content .btn-arrow {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  --btn-icon-bg: #f1dfc2;
  --btn-arrow-color: #000;
  --btn-hover-icon-bg: #fff;
  --btn-hover-border: #000;
}
.js .about-intro-content .btn-arrow {
  opacity: 0;
}
.about-intro-content .btn-arrow .arrow-line,
.about-intro-content .btn-arrow .arrow-head {
  background-color: var(--btn-arrow-color);
}
.about-intro-content .btn-arrow:hover {
  border-color: var(--btn-hover-border);
}
.about-intro-content .btn-arrow:hover .btn-arrow__icon {
  background-color: var(--btn-hover-icon-bg);
}
.about-intro-content .btn-arrow:hover .arrow-line {
  left: -6px;
  width: 23px;
}
.about-intro-content .btn-arrow:hover .arrow-head--top {
  right: 2px;
  top: 7px;
  width: 7px;
  height: 2px;
}
.about-intro-content .btn-arrow:hover .arrow-head--bottom {
  right: 2px;
  bottom: 7px;
  width: 7px;
  height: 2px;
}