.elementor-kit-6{--e-global-color-primary:#E7E0D3;--e-global-color-secondary:#B7AA98;--e-global-color-text:#1F1F1C;--e-global-color-accent:#F5F1E8;--e-global-color-b5aeb33:#ffffff;--e-global-color-c58817e:#2a2a2a;--e-global-color-5420d44:#b56868;--e-global-color-dff8941:#000;--e-global-typography-primary-font-family:"Manrope";--e-global-typography-primary-font-weight:500;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Cormorant Garamond";--e-global-typography-accent-font-weight:500;--e-global-typography-5535e8e-font-family:"Manrope";--e-global-typography-5535e8e-font-weight:700;--e-global-typography-5535e8e-line-height:0.95em;--e-global-typography-c83476d-font-family:"Manrope";--e-global-typography-c83476d-font-size:64px;--e-global-typography-c83476d-font-weight:bold;--e-global-typography-ff8f921-font-family:"FiraSans";--e-global-typography-ff8f921-font-size:2.3rem;--e-global-typography-ff8f921-font-weight:bold;--e-global-typography-887fca2-font-family:"Inter";--e-global-typography-887fca2-font-size:18px;--e-global-typography-887fca2-font-weight:400;--e-global-typography-887fca2-line-height:1.7em;--e-global-typography-887fca2-letter-spacing:-0.2px;--e-global-typography-2142591-font-family:"Inter";--e-global-typography-2142591-font-size:18px;--e-global-typography-2142591-font-weight:700;--e-global-typography-2142591-letter-spacing:-0.2px;--e-global-typography-6e52843-font-family:"Inter Tight";--e-global-typography-6e52843-font-size:14px;--e-global-typography-6e52843-font-weight:500;--e-global-typography-6e52843-text-transform:uppercase;--e-global-typography-6e52843-letter-spacing:1.5px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}.entry-title, .wp-block-post-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-6{--e-global-typography-5535e8e-font-size:72px;--e-global-typography-5535e8e-line-height:0.95em;--e-global-typography-c83476d-font-size:48px;--e-global-typography-887fca2-font-size:18px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-5535e8e-font-size:52px;--e-global-typography-c83476d-font-size:36px;--e-global-typography-ff8f921-font-size:1.9rem;--e-global-typography-887fca2-font-size:18px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* =============================================
   FOIL STANDARD™ — Motion & Scroll CSS Layer
   Version 1.0
   ============================================= */

/* --- Progressive Opacity Transitions --- */
.foil-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.foil-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Smooth Parallax Effect --- */
.foil-parallax {
  will-change: transform;
}

/* --- Image Floating Effect --- */
.foil-float {
  animation: foilFloat 6s ease-in-out infinite;
}

@keyframes foilFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* --- Cinematic Section Transitions --- */
.foil-section-transition {
  position: relative;
}

.foil-section-transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    #B7AA98 20%,
    #B7AA98 80%,
    transparent 100%
  );
  opacity: 0.3;
}

/* --- Scroll-Triggered Motion (Keyframes) --- */
@keyframes foilScaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.foil-scale-in {
  animation: foilScaleIn 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* --- Subtle Hover Animations --- */
.foil-link {
  position: relative;
  text-decoration: none;
  color: #1F1F1C;
  transition: color 0.3s ease;
}

.foil-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1F1F1C;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.foil-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Ultra-Smooth Easing Curves --- */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* --- Reduced Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {
  .foil-fade-up,
  .foil-float,
  .foil-scale-in {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}/* End custom CSS */