
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

@font-face {
  font-family: "Dallas";
  src: url("/fonts/Dallas/WOFF2/Dallas-Regular.woff2") format("woff2"), url("/fonts/Dallas/TTF/Dallas-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dallas";
  src: url("/fonts/Dallas/WOFF2/Dallas-Light.woff2") format("woff2"), url("/fonts/Dallas/TTF/Dallas-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dallas";
  src: url("/fonts/Dallas/WOFF2/Dallas-Regular.woff2") format("woff2"), url("/fonts/Dallas/TTF/Dallas-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dallas";
  src: url("/fonts/Dallas/WOFF2/Dallas-Bold.woff2") format("woff2"), url("/fonts/Dallas/TTF/Dallas-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Dallas";
  src: url("/fonts/Dallas/WOFF2/Dallas-Bold.woff2") format("woff2"), url("/fonts/Dallas/TTF/Dallas-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --section-contained-width: 1170px;
  --section-contained-padding: 2rem;
  
  /* Section height variables */
  --section-viewport-height: 80vh;
  --section-min-height: 60vh;
}
/* Responsive breakpoints adjustments */
@media (max-width: 1440px) {
  :root {
    --section-contained-width: 1100px;
    --section-contained-padding: 1.75rem;
  }
}
@media (max-width: 1200px) {
  :root {
    --section-contained-width: 970px; /* ~1200px */
    --section-contained-padding: 1.5rem;
    --section-viewport-height: 80vh;
  }
}
@media (max-width: 768px) {
  :root {
    --section-contained-width: 100%;
    --section-contained-padding: 1rem;
    --section-viewport-height: 70vh;
    --section-min-height: 50vh;
  }
}
@media (max-width: 480px) {
  :root {
    --section-contained-padding: 0.75rem;
    --section-viewport-height: 60vh;
    --section-min-height: 40vh;
  }
}
/* ============================================================================
   SECTION WIDTH CLASSES
   ============================================================================ */
/**
 * Full width section - spans entire viewport width
 * Use for: Hero sections, image backgrounds, full-bleed content
 */
.section-width--full {
  width: 100%;
  box-sizing: border-box;
}
/**
 * Contained width section - constrained to max-width with responsive behavior
 * Use for: Text content, forms, standard page content
 */
.section-width--contained {
  width: 100%;
  max-width: var(--section-contained-width);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
/* ============================================================================
   SECTION HEIGHT CLASSES
   ============================================================================ */
/**
 * Flexible height section - adapts to content
 * Use for: Content-driven sections, text blocks, galleries
 */
.section-height--flexible {
  min-height: var(--section-min-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  box-sizing: border-box;
}
/**
 * Viewport-contained height section - fixed to viewport height
 * Use for: Hero sections, full-screen displays, splash screens
 */
.section-height--viewport {
  height: var(--section-viewport-height);
  min-height: var(--section-viewport-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}
/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */
@media (max-width: 768px) {
  .section-height--flexible {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .section-height--viewport {
    min-height: var(--section-viewport-height);
  }
}
@media (max-width: 480px) {
  .section-height--flexible {
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-height: var(--section-min-height);
  }
}
/* ============================================================================
   LEGACY COMPATIBILITY
   ============================================================================ */
/* Backward compatibility with existing patterns */
.section {
  /* Default fallback - can be overridden by specific width/height classes */
  width: 100%;
  position: relative;
}
.container {
  /* Legacy container pattern - maps to contained width */
  width: 100%;
  max-width: var(--section-contained-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-contained-padding);
  padding-right: var(--section-contained-padding);
  box-sizing: border-box;
}
/* ============================================================================
   INTEGRATION WITH EXISTING ANIMATION SYSTEM
   ============================================================================ */
/* Ensure standardized sections work with existing animation classes */
.section-width--full,
.section-width--contained,
.section-height--flexible,
.section-height--viewport {
  /* Enable smooth transitions for layout changes */
  transition: padding var(--luxe-duration-medium, 0.5s) var(--luxe-easing-standard, ease),
              margin var(--luxe-duration-medium, 0.5s) var(--luxe-easing-standard, ease);
}
/* Support for content animation integration */
.content-section--animate .section-width--contained,
.content-section--animate .section-height--flexible,
.content-section--animate .section-height--viewport {
  /* Animation states are handled by content.css animation system */
  transition-delay: 0ms; /* Reset delay for layout properties */
}
:root {
  /* Apple-style elegant timing and easing */
  --luxe-duration-micro: 150ms;
  --luxe-duration-short: 300ms;
  --luxe-duration-medium: 500ms;
  --luxe-duration-long: 800ms;
  
  /* Elegant easing curves */
  --luxe-easing-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
  --luxe-easing-decelerate: cubic-bezier(0.33, 1, 0.68, 1);
  --luxe-easing-accelerate: cubic-bezier(0.65, 0, 0.35, 1);
  --luxe-easing-smooth: ease-out;
  
  /* Transform and layout variables */
  --luxe-scale-container: 1;
  --luxe-translate-x-container: 0;
  --luxe-scale-circle: 1;
  --luxe-scale-logo: 1;
  --luxe-translate-y-content: 0;
  --luxe-logo-width: 1966px;
  --luxe-logo-height: 739.1px;
  
  /* Color variables */
  --luxe-bg-color: white;
  --luxe-primary-color: #785D31;
  --luxe-secondary-color: rgba(162, 155, 254, 0.8);
  --luxe-text-color: #fff;
  --luxe-drawer-bg-color: #818181;
  --luxe-content-bg-color: rgba(255, 255, 255, 0.95);
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  background-color: var(--luxe-bg-color);
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--luxe-primary-color);
  outline-offset: 2px;
}
/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}
:root {
  --luxe-duration-short: 0.3s;
  --luxe-duration-medium: 0.5s;
  --luxe-duration-long: 0.8s;
  --luxe-easing-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
  --luxe-easing-decelerate: cubic-bezier(0.0, 0.0, 0.2, 1);
  --luxe-easing-accelerate: cubic-bezier(0.4, 0.0, 1, 1);
  --luxe-scale-container: 1;
  --luxe-translate-x-container: 0;
  --luxe-scale-circle: 1;
  --luxe-scale-logo: 1;
  --luxe-translate-y-content: 0;
  --luxe-logo-width: 1966px;
  --luxe-logo-height: 739.1px;
  --luxe-bg-color: rgba(0, 0, 0, 0.5);
  --luxe-primary-color: #785D31;
  --luxe-secondary-color: rgba(162, 155, 254, 0.8);
  --luxe-text-color: #fff;
  --luxe-drawer-bg-color: #818181;
  --luxe-content-bg-color: rgba(255, 255, 255, 0.95);
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
.brand-guidelines .layered-content-v {
  background-color: #ffffff;
  position: relative;
  width: 100%;
}
.brand-guidelines .section {
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
}
.brand-guidelines .section-content-wrapper {
  max-width: 90rem;
  margin: 0 auto;
  position: relative;
}
.brand-guidelines .header-nav-section .section-content-wrapper {
  height: 36.6875rem;
}
.brand-guidelines .header-nav-section .text-wrapper {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 5.6875rem;
  font-weight: 400;
  left: 15.8125rem;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 4.9375rem;
}
.brand-guidelines .header-nav-section .rectangle-2 {
  height: 12.25rem;
  left: 1.5625rem;
  object-fit: cover;
  position: absolute;
  top: 12.875rem;
  width: 16.1875rem;
}
.brand-guidelines .header-nav-section .rectangle-3 {
  height: 12.25rem;
  left: 19.25rem;
  object-fit: cover;
  position: absolute;
  top: 12.875rem;
  width: 16.25rem;
}
.brand-guidelines .header-nav-section .rectangle-4 {
  height: 12.25rem;
  left: 37rem;
  position: absolute;
  top: 12.875rem;
  width: 16.1875rem;
}
.brand-guidelines .header-nav-section .rectangle-5 {
  height: 12.25rem;
  left: 54.5rem;
  object-fit: cover;
  position: absolute;
  top: 12.875rem;
  width: 16.25rem;
}
.brand-guidelines .header-nav-section .rectangle-6 {
  height: 12.25rem;
  left: 72.0625rem;
  object-fit: cover;
  position: absolute;
  top: 12.875rem;
  width: 16.1875rem;
}
.brand-guidelines .header-nav-section .div {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  left: 6.0625rem;
  letter-spacing: 0.10625rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 25.8125rem;
}
.brand-guidelines .header-nav-section .VISION-MISSION {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  left: 21.8125rem;
  letter-spacing: 0.10625rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 25.8125rem;
}
.brand-guidelines .header-nav-section .text-wrapper-2 {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  left: 41.125rem;
  letter-spacing: 0.10625rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 25.8125rem;
}
.brand-guidelines .header-nav-section .text-wrapper-3 {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  left: 59.75rem;
  letter-spacing: 0.10625rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 25.8125rem;
  width: 5.75rem;
}
.brand-guidelines .header-nav-section .text-wrapper-4 {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  left: 76.75rem;
  letter-spacing: 0.10625rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 25.8125rem;
}
.brand-guidelines .header-nav-section .line {
  height: 0.0625rem;
  left: 0;
  position: absolute;
  top: 31rem;
  width: 45.9375rem;
  border-top: 0.0625rem solid #000000;
}
.brand-guidelines .manifesto-section .section-content-wrapper {
  background-image: url(/images/rLSr4G8G/img/rectangle-15.png);
  background-position: 50% 50%;
  background-size: cover;
  height: 57.875rem;
  width: 45.9375rem;
  margin-left: 0;
  margin-right: auto;
}
.brand-guidelines .manifesto-section .BRAND-MANIFESTO {
  color: #ffffff;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  left: 3.25rem;
  letter-spacing: 0.4rem;
  line-height: 3.39375rem;
  position: absolute;
  top: 24.4375rem;
}
.brand-guidelines .manifesto-section .BRAND-MANIFESTO .span {
  letter-spacing: 0.25625rem;
}
.brand-guidelines .manifesto-section .BRAND-MANIFESTO .text-wrapper-5 {
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.25625rem;
}
.brand-guidelines .manifesto-alt-section .section-content-wrapper {
  background-color: #000000;
  height: 57.875rem;
  width: 44.375rem;
  margin-right: 0;
  margin-left: auto;
}
.brand-guidelines .manifesto-alt-section .women-are-doing-it-3 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 400;
  left: 9.625rem;
  letter-spacing: 0.0225rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 13.3125rem;
  width: 25.5rem;
}
.brand-guidelines .manifesto-alt-section .women-are-doing-it-3 .text-wrapper-19 {
  letter-spacing: 0.00375rem;
}
.brand-guidelines .manifesto-alt-section .women-are-doing-it-3 .text-wrapper-7 {
  font-weight: 700;
  letter-spacing: 0.00375rem;
}
.brand-guidelines .manifesto-alt-section .women-are-doing-it-3 .text-wrapper-8 {
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.00375rem;
}
.brand-guidelines .manifesto-alt-section .women-are-doing-it-3 .text-wrapper-10 {
  font-style: italic;
  letter-spacing: 0.00375rem;
}
.brand-guidelines .manifesto-alt-section .ellipse {
  border: 0.125rem solid #ffffff;
  border-radius: 20.625rem 20.625rem;
  height: 41.25rem;
  left: 1.5625rem;
  position: absolute;
  top: 8rem;
  width: 41.25rem;
}
.brand-guidelines .vision-positioning-section .section-content-wrapper {
  height: 116rem;
  width: 89.8125rem;
}
.brand-guidelines .vision-positioning-section .overlap-2 {
  height: 116rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 89.8125rem;
}
.brand-guidelines .vision-positioning-section .div-wrapper {
  background-image: url(/images/rLSr4G8G/img/rectangle-16.png);
  background-position: 50% 50%;
  background-size: cover;
  height: 58.125rem;
  left: 0;
  position: absolute;
  top: 57.875rem;
  width: 45.8125rem;
}
.brand-guidelines .vision-positioning-section .div-wrapper .text-wrapper-6 {
  color: #ffffff;
  font-family: "League Spartan", Helvetica, Arial, sans-serif;
  font-size: 3.9375rem;
  font-weight: 800;
  left: 5.1875rem;
  letter-spacing: 0.39375rem;
  line-height: 3.34375rem;
  position: absolute;
  top: 22.5rem;
  white-space: nowrap;
}
.brand-guidelines .vision-positioning-section .overlap-3 {
  height: 115.9375rem;
  left: 45.75rem;
  position: absolute;
  top: 0;
  width: 44.0625rem;
}
.brand-guidelines .vision-positioning-section .overlap-3 .rectangle {
  background-color: rgba(0, 0, 0, 0.68);
  height: 58.125rem;
  left: 0.0625rem;
  position: absolute;
  top: 57.8125rem;
  width: 44rem;
}
.brand-guidelines .vision-positioning-section .overlap-3 .img {
  height: 57.875rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 44rem;
}
.brand-guidelines .vision-positioning-section .overlap-3 .women-are-doing-it {
  color: #ffffff;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  left: 6.4375rem;
  letter-spacing: 0.0225rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 72.5625rem;
  width: 32.75rem;
}
.brand-guidelines .vision-positioning-section .overlap-4 {
  height: 7.375rem;
  left: 11.3125rem;
  position: absolute;
  top: 6.6875rem;
  width: 19.5625rem;
}
.brand-guidelines .vision-positioning-section .overlap-4 .text-wrapper-11 {
  color: rgba(0, 0, 0, 0.6);
  font-family: "League Spartan", Helvetica, Arial, sans-serif;
  font-size: 4rem;
  font-weight: 100;
  left: 16.9375rem;
  letter-spacing: 0.4rem;
  line-height: 3.39375rem;
  position: absolute;
  text-align: center;
  top: 0.5625rem;
  white-space: nowrap;
}
.brand-guidelines .vision-positioning-section .overlap-4 .p {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 4.125rem;
  font-weight: 400;
  left: 0;
  letter-spacing: 0.4125rem;
  line-height: 3.625rem;
  position: absolute;
  top: 0;
}
.brand-guidelines .vision-positioning-section .women-are-doing-it-2 {
  color: #000000;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 400;
  left: 6.25rem;
  letter-spacing: 0.025rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 15.125rem;
  width: 31.4375rem;
}
.brand-guidelines .values-section .section-content-wrapper {
  background-image: url(/images/rLSr4G8G/img/rectangle-23.png);
  background-position: 50% 50%;
  background-size: cover;
  height: 58.125rem;
  width: 89.8125rem;
}
.brand-guidelines .values-section .text-wrapper-21 {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 5.125rem;
  font-weight: 400;
  left: 13.8125rem;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 6.5rem;
}
.brand-guidelines .values-section .women-are-doing-it-4 {
  color: #000000;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  left: 8.0625rem;
  letter-spacing: 0.0225rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 13.1875rem;
  width: 32.75rem;
}
.brand-guidelines .our-voice-section .section-content-wrapper {
  height: 62.5rem;
}
.brand-guidelines .our-voice-section .rectangle-7 {
  height: 58.125rem;
  left: 0.1875rem;
  position: absolute;
  top: 0;
  width: 45.8125rem;
}
.brand-guidelines .our-voice-section .text-wrapper-22 {
  color: #070707;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 5.125rem;
  font-weight: 300;
  left: 53.4375rem;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 10.75rem;
}
.brand-guidelines .our-voice-section .women-are-doing-it-5 {
  color: #000000;
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 400;
  left: 51.75rem;
  letter-spacing: 0.0225rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 18rem;
  width: 32.875rem;
}
.brand-guidelines .footer-links-section .section-content-wrapper {
  height: 9.375rem;
}
.brand-guidelines .footer-links-section .TYPOGRAPHY-COLORS {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 300;
  left: 56.6875rem;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: right;
  top: 1.375rem;
}
.brand-guidelines .footer-links-section .overlap-6 {
  background-color: #000000;
  height: 6.1875rem;
  left: 0.375rem;
  position: absolute;
  top: 0;
  width: 45.625rem;
}
.brand-guidelines .footer-links-section .overlap-6 .text-wrapper-20 {
  color: #ffffff;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 300;
  left: 7.3125rem;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 1.75rem;
}
.brand-guidelines .footer-links-section .overlap-6 .right-arrow {
  height: 2.1875rem;
  left: 3.125rem;
  object-fit: cover;
  position: absolute;
  top: 2rem;
  width: 2.1875rem;
}
.brand-guidelines .footer-links-section .icons-right-arrow {
  height: 2.1875rem;
  left: 83.9375rem;
  object-fit: cover;
  position: absolute;
  top: 1.5625rem;
  width: 2.1875rem;
}
:root {
  --luxe-duration-short: 0.3s;
  --luxe-duration-medium: 0.5s;
  --luxe-duration-long: 0.8s;
  --luxe-easing-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
  --luxe-easing-decelerate: cubic-bezier(0.0, 0.0, 0.2, 1);
  --luxe-easing-accelerate: cubic-bezier(0.4, 0.0, 1, 1);
  --luxe-scale-container: 1;
  --luxe-translate-x-container: 0;
  --luxe-scale-circle: 1;
  --luxe-scale-logo: 1;
  --luxe-translate-y-content: 0;
  --luxe-logo-width: 1966px;
  --luxe-logo-height: 739.1px;
  --luxe-bg-color: rgba(0, 0, 0, 0.5);
  --luxe-primary-color: #785D31;
  --luxe-secondary-color: rgba(162, 155, 254, 0.8);
  --luxe-text-color: #fff;
  --luxe-drawer-bg-color: #818181;
  --luxe-content-bg-color: rgba(255, 255, 255, 0.95);
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
.social-media {
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
.social-media__header {
  width: 100%;
  padding: 4rem 2rem 2rem;
  text-align: center;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .social-media__header {
    padding: 2rem 1rem 1rem;
  }
}
.social-media__title {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.69rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 2rem 0;
}
.social-media__divider {
  width: 100%;
  max-width: 70rem;
  height: 1px;
  background-color: #000000;
  margin: 0 auto;
}
.social-media__main {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.social-media__section {
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard), 
              transform var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: opacity, transform;
}
.social-media__section--black {
  background-color: #000000;
  padding: 6rem 2rem;
}
@media (max-width: 768px) {
  .social-media__section--black {
    padding: 4rem 1rem;
  }
}
.social-media__section--image-bg {
  min-height: 70vh;
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .social-media__section--image-bg {
    min-height: 70vh;
    padding: 2rem 1rem;
  }
}
.social-media__content-wrapper {
  max-width: 46.25rem;
  text-align: center;
  z-index: 2;
  position: relative;
}
.social-media__content-grid {
  width: 100%;
  max-width: 90rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 2;
  position: relative;
}
@media (max-width: 1024px) {
  .social-media__content-grid {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .social-media__content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (min-width: 769px) {
  .social-media__section--layout-right .social-media__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .social-media__section--layout-right .social-media__content-grid .social-media__text-overlay {
    order: 2;
  }
  .social-media__section--layout-right .social-media__content-grid .social-media__image-container {
    order: 1;
  }
}
.social-media__image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.social-media__section-title {
  color: #ffffff;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 4.81rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: normal;
  margin: 0 0 2rem 0;
}
.social-media__section-text {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  margin: 0;
}
.social-media__text-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3rem 2rem;
  border-radius: 0;
  backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
  .social-media__text-overlay {
    padding: 2rem 1.5rem;
  }
}
.social-media__overlay-title {
  color: #ffffff;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  margin: 0 0 2rem 0;
}
.social-media__overlay-text {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  margin: 0;
}
.social-media__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-media__image-container--small {
  max-width: 20rem;
  margin: 0 auto;
}
.social-media__template-image {
  width: 100%;
  max-width: 23.69rem;
  height: auto;
  aspect-ratio: 379/568;
  object-fit: cover;
  border-radius: 0;
}
.social-media__content-image {
  width: 100%;
  max-width: 17.06rem;
  height: auto;
  aspect-ratio: 273/555;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 1200px) {
  .social-media__content-grid {
    gap: 2rem;
  }
  .social-media__text-overlay {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .social-media__content-grid {
    grid-template-columns: 1fr !important;
  }
  .social-media__content-grid .social-media__text-overlay {
    order: 1 !important;
  }
  .social-media__content-grid .social-media__image-container {
    order: 2 !important;
  }
  .social-media__section--image-bg {
    min-height: auto;
    padding: 3rem 1rem;
  }
}
@media (max-width: 480px) {
  .social-media__header {
    padding: 1.5rem 1rem 1rem;
  }
  .social-media__section--black {
    padding: 3rem 1rem;
  }
  .social-media__text-overlay {
    padding: 1.5rem 1rem;
  }
}
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.social-media__section {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard), 
              transform var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: opacity, transform;
}
.social-media__section--animate {
  animation: slideUpFadeIn var(--luxe-duration-long) var(--luxe-easing-standard) forwards;
}
.social-media__section:first-child {
  opacity: 1;
  transform: translateY(0);
}
.social-media__content-wrapper, .social-media__content-grid {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-decelerate) 100ms, 
              transform var(--luxe-duration-medium) var(--luxe-easing-decelerate) 100ms;
  will-change: opacity, transform;
}
.social-media__section--animate .social-media__content-wrapper, 
.social-media__section--animate .social-media__content-grid {
  opacity: 1;
  transform: translateY(0);
}
.social-media__text-overlay .social-media__overlay-title,
.social-media__text-overlay .social-media__overlay-text {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--luxe-duration-short) var(--luxe-easing-standard), 
              transform var(--luxe-duration-short) var(--luxe-easing-standard);
  will-change: opacity, transform;
}
.social-media__text-overlay .social-media__overlay-title {
  transition-delay: 150ms;
}
.social-media__text-overlay .social-media__overlay-text {
  transition-delay: 200ms;
}
.social-media__section--animate .social-media__text-overlay .social-media__overlay-title,
.social-media__section--animate .social-media__text-overlay .social-media__overlay-text {
  opacity: 1;
  transform: translateY(0);
}
.social-media__image-container {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-decelerate) 50ms, 
              transform var(--luxe-duration-medium) var(--luxe-easing-decelerate) 50ms;
  will-change: opacity, transform;
}
.social-media__section--animate .social-media__image-container {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.social-media__section--black .social-media__section-title,
.social-media__section--black .social-media__section-text {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard), 
              transform var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: opacity, transform;
}
.social-media__section--black .social-media__section-title {
  transition-delay: 100ms;
}
.social-media__section--black .social-media__section-text {
  transition-delay: 150ms;
}
.social-media__section--black.social-media__section--animate .social-media__section-title,
.social-media__section--black.social-media__section--animate .social-media__section-text {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .social-media__section, .social-media__content-wrapper, .social-media__content-grid, .social-media__text-overlay *, .social-media__image-container, .social-media__section--black * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.social-media__template-image, .social-media__content-image {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.social-media__image-background {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
:root {
  --luxe-duration-short: 0.3s;
  --luxe-duration-medium: 0.5s;
  --luxe-duration-long: 0.8s;
  --luxe-easing-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
  --luxe-easing-decelerate: cubic-bezier(0.0, 0.0, 0.2, 1);
  --luxe-easing-accelerate: cubic-bezier(0.4, 0.0, 1, 1);
  --luxe-scale-container: 1;
  --luxe-translate-x-container: 0;
  --luxe-scale-circle: 1;
  --luxe-scale-logo: 1;
  --luxe-translate-y-content: 0;
  --luxe-logo-width: 1966px;
  --luxe-logo-height: 739.1px;
  --luxe-bg-color: rgba(0, 0, 0, 0.5);
  --luxe-primary-color: #785D31;
  --luxe-secondary-color: rgba(162, 155, 254, 0.8);
  --luxe-text-color: #fff;
  --luxe-drawer-bg-color: #818181;
  --luxe-content-bg-color: rgba(255, 255, 255, 0.95);
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
.visual-styles {
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}
.visual-styles .layered-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 0 40px;
  margin: 0 auto;
}
.visual-styles .layered-content-v {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.visual-styles .header-section {
  width: 100%;
  padding: 80px 0 60px;
  text-align: center;
}
.visual-styles .main-title {
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 72px;
  text-align: center;
  letter-spacing: 8px;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .visual-styles .main-title {
    font-size: 48px;
    letter-spacing: 4px;
  }
}
.visual-styles .content-section {
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .visual-styles .content-section {
    flex-direction: column;
    gap: 40px;
  }
}
.visual-styles .brand-description {
  flex: 1;
  max-width: 400px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.3px;
  line-height: 1.6;
}
.visual-styles .brand-description p {
  margin: 0;
}
.visual-styles .brand-description strong {
  font-weight: 700;
}
.visual-styles .brand-description em {
  font-style: italic;
}
.visual-styles .styling-visuals-container {
  flex: 1.2;
  position: relative;
  height: 300px;
  background-color: #d9d9d9;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
@media (max-width: 768px) {
  .visual-styles .styling-visuals-container {
    height: 250px;
    padding: 25px;
  }
}
.visual-styles .styling-visuals {
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 48px;
  letter-spacing: 2px;
  line-height: 0.9;
  margin: 0;
}
@media (max-width: 768px) {
  .visual-styles .styling-visuals {
    font-size: 36px;
  }
}
.visual-styles .span-1 {
  grid-row: span 1;
}
.visual-styles .span-2 {
  grid-row: span 2;
}
.visual-styles .span-3 {
  grid-row: span 3;
}
.visual-styles .span-4 {
  grid-row: span 4;
}
.visual-styles .span-5 {
  grid-row: span 5;
}
.visual-styles .span-6 {
  grid-row: span 6;
}
.visual-styles .col-span-1 {
  grid-column: span 1;
}
.visual-styles .col-span-2 {
  grid-column: span 2;
}
@media (max-width: 480px) {
  .visual-styles .col-span-2 {
    grid-column: span 1;
  }
}
.visual-styles .col-span-3 {
  grid-column: span 3;
}
@media (max-width: 768px) {
  .visual-styles .col-span-3 {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .visual-styles .col-span-3 {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .visual-styles .col-span-2.span-2 {
    grid-row: span 1;
  }
}
.visual-styles .image-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 20vh;
  gap: 15px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .visual-styles .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .visual-styles .image-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}
.visual-styles .gallery-item {
  overflow: hidden;
}
.visual-styles .grid-fat-thin-fat {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .visual-styles .grid-fat-thin-fat {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .visual-styles .grid-fat-thin-fat {
    grid-template-columns: 1fr;
  }
}
.visual-styles .grid-skinny-fat {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .visual-styles .grid-skinny-fat {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .visual-styles .grid-skinny-fat {
    grid-template-columns: 1fr;
  }
}
.visual-styles .grid-3-col {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .visual-styles .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .visual-styles .grid-3-col {
    grid-template-columns: 1fr;
  }
}
.visual-styles .grid-45-15-30 {
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 1fr 2fr;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .visual-styles .grid-45-15-30 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .visual-styles .grid-45-15-30 {
    grid-template-columns: 1fr;
  }
}
.visual-styles .grid-45-15-40 {
  width: 100%;
  display: grid;
  grid-template-columns: 9fr 3fr 8fr;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .visual-styles .grid-45-15-40 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .visual-styles .grid-45-15-40 {
    grid-template-columns: 1fr;
  }
}
.visual-styles .grid-25-75 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .visual-styles .grid-25-75 {
    grid-template-columns: 1fr 2fr;
  }
}
@media (max-width: 480px) {
  .visual-styles .grid-25-75 {
    grid-template-columns: 1fr;
  }
}
.visual-styles .h-180 {
  height: 180px;
}
@media (max-width: 768px) {
  .visual-styles .h-180 {
    height: 160px;
  }
}
@media (max-width: 480px) {
  .visual-styles .h-180 {
    height: 200px;
  }
}
.visual-styles .h-200 {
  height: 200px;
}
@media (max-width: 768px) {
  .visual-styles .h-200 {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .visual-styles .h-200 {
    height: 220px;
  }
}
.visual-styles .h-250 {
  height: 250px;
}
@media (max-width: 768px) {
  .visual-styles .h-250 {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .visual-styles .h-250 {
    height: 240px;
  }
}
.visual-styles .grid-item {
  overflow: hidden;
}
.visual-styles .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-styles .gallery-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
}
.visual-styles .gallery-placeholder.dark {
  background-color: #8a8a8a;
}
.visual-styles .social-look-section {
  width: 100%;
  position: relative;
  height: 500px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .visual-styles .social-look-section {
    height: 350px;
  }
}
.visual-styles .social-look {
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 82px;
  color: #000000;
  letter-spacing: 6px;
  line-height: 1.1;
  text-align: center;
  z-index: 2;
  position: relative;
}
@media (max-width: 768px) {
  .visual-styles .social-look {
    font-size: 48px;
    letter-spacing: 3px;
  }
}
.visual-styles .social-look .social {
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.visual-styles .social-look .space {
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.visual-styles .social-look .look {
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 300;
}
.visual-styles .geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.visual-styles .shape {
  position: absolute;
}
.visual-styles .shape.rectangle-1 {
  width: 150px;
  height: 150px;
  background-color: #d9d9d9;
  transform: rotate(45deg);
  top: 15%;
  left: 8%;
  opacity: 0.7;
}
.visual-styles .shape.rectangle-2 {
  width: 120px;
  height: 120px;
  background-color: #e8e8e8;
  transform: rotate(45deg);
  top: 60%;
  right: 12%;
  opacity: 0.6;
}
.visual-styles .shape.rectangle-3 {
  width: 200px;
  height: 100px;
  background-color: #d9d9d9;
  bottom: 20%;
  left: 15%;
  opacity: 0.5;
}
.visual-styles .shape.rectangle-4 {
  width: 100px;
  height: 180px;
  background-color: #e8e8e8;
  top: 25%;
  right: 20%;
  opacity: 0.4;
}
.visual-styles .bottom-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .visual-styles .bottom-gallery {
    grid-template-columns: 1fr;
  }
}
.visual-styles .bottom-gallery-item {
  height: 250px;
  overflow: hidden;
}
.visual-styles .bottom-gallery-item.large {
  height: 350px;
}
.visual-styles .bottom-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-styles .bottom-gallery-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
}
.visual-styles .navigation-section {
  width: 100%;
  margin-top: auto;
}
.visual-styles .navigation-group {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .visual-styles .navigation-group {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
    gap: 15px;
  }
}
.visual-styles .typography-colors-wrapper {
  display: flex;
  align-items: center;
  background-color: #000000;
  height: 80px;
  padding: 0 30px;
  gap: 15px;
}
@media (max-width: 768px) {
  .visual-styles .typography-colors-wrapper {
    height: 50px;
    padding: 0 20px;
    width: 100%;
    justify-content: center;
  }
}
.visual-styles .typography-colors {
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .visual-styles .typography-colors {
    font-size: 12px;
  }
}
.visual-styles .right-arrow {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .visual-styles .right-arrow {
    width: 16px;
    height: 16px;
  }
}
.visual-styles .social-media {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .visual-styles .social-media {
    font-size: 12px;
  }
}
.visual-styles .icons-right-arrow {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .visual-styles .icons-right-arrow {
    width: 16px;
    height: 16px;
  }
}
.visual-styles .separator-line,
.visual-styles .rectangle,
.visual-styles .div,
.visual-styles .ellipse,
.visual-styles .ellipse-2,
.visual-styles .rectangle-2,
.visual-styles .rectangle-3,
.visual-styles .rectangle-4,
.visual-styles .rectangle-5,
.visual-styles .rectangle-6,
.visual-styles .rectangle-7,
.visual-styles .rectangle-8,
.visual-styles .rectangle-9,
.visual-styles .rectangle-10,
.visual-styles .rectangle-11,
.visual-styles .rectangle-12,
.visual-styles .rectangle-13,
.visual-styles .img,
.visual-styles .overlap,
.visual-styles .overlap-group,
.visual-styles .geometric-section,
.visual-styles .content-overlap {
  display: none;
}
.typography-colors-page {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.typography-colors-page .layered-content {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-height: 8200px;
  position: relative;
}
.typography-colors-page .layered-content .layered-content-v {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  min-height: inherit;
  position: relative;
}
.typography-colors-page .layered-content .close {
  height: 33px;
  object-fit: cover;
  position: absolute;
  top: 41px;
  right: 30px;
  width: 33px;
}
.typography-colors-page .layered-content .header-title {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 92px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  padding: 82px 0;
  width: 100%;
}
.typography-colors-page .layered-content .footer {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.typography-colors-page .layered-content .footer-text {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: normal;
  text-align: right;
}
.typography-colors-page .layered-content .overlap-group {
  background-color: #000000;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.typography-colors-page .layered-content .text-wrapper {
  color: #ffffff;
  font-family: "Dallas", Helvetica;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: normal;
  margin-left: 20px;
}
.typography-colors-page .layered-content .right-arrow {
  height: 35px;
  object-fit: cover;
  width: 35px;
}
.typography-colors-page .layered-content .icons-right-arrow {
  height: 35px;
  object-fit: cover;
  width: 35px;
}
.typography-colors-page .layered-content .overlap {
  position: relative;
  width: 100%;
  height: 773px;
  margin-top: 20px;
}
.typography-colors-page .layered-content .section-title {
  color: #ffffff;
  font-family: "League Spartan", Helvetica;
  font-size: 37px;
  font-weight: 400;
  left: 52px;
  letter-spacing: 3.7px;
  line-height: 31.4px;
  position: absolute;
  top: 683px;
}
.typography-colors-page .layered-content .span {
  font-weight: 500;
  letter-spacing: 1.37px;
}
.typography-colors-page .layered-content .text-wrapper-2 {
  font-size: 63px;
  font-weight: 800;
  letter-spacing: 3.97px;
  line-height: 53.5px;
}
.typography-colors-page .layered-content .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.typography-colors-page .layered-content .container {
  background-color: rgba(0, 0, 0, 0.5607843137);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.typography-colors-page .layered-content .div {
  color: #ffffff;
  font-family: "Dallas", Helvetica;
  font-size: 92px;
  font-weight: 400;
  left: 94px;
  letter-spacing: 0;
  line-height: 82px;
  position: absolute;
  top: 303px;
}
.typography-colors-page .layered-content .line {
  height: 1px;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 239px;
  width: 1113px;
}
.typography-colors-page .layered-content .section-title-2 {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 92px;
  font-weight: 400;
  left: 94px;
  letter-spacing: 0;
  line-height: 82px;
  position: absolute;
  top: 1161px;
  white-space: nowrap;
}
.typography-colors-page .layered-content .body-text {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 109px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 1344px;
  width: 335px;
}
.typography-colors-page .layered-content .p {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 995px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 1553px;
  width: 335px;
}
.typography-colors-page .layered-content .body-text-2 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 995px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 1818px;
  width: 335px;
}
.typography-colors-page .layered-content .subheading {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 121px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 2123px;
  width: 616px;
}
.typography-colors-page .layered-content .body-text-3 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 121px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 2170px;
  width: 616px;
}
.typography-colors-page .layered-content .subheading-2 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 123px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 2437px;
  width: 616px;
}
.typography-colors-page .layered-content .body-text-4 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 123px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 2484px;
  width: 616px;
}
.typography-colors-page .layered-content .subheading-3 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 700;
  left: 93px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 3069px;
  width: 616px;
}
.typography-colors-page .layered-content .body-text-5 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 93px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 3116px;
  width: 616px;
}
.typography-colors-page .layered-content .body-text-6 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 3212px;
  width: 616px;
}
.typography-colors-page .layered-content .subheading-4 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 22px;
  font-weight: 400;
  left: 109px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 1255px;
  width: 335px;
}
.typography-colors-page .layered-content .primary-logo-wrapper {
  background-color: #000000;
  height: 200px;
  left: 102px;
  position: absolute;
  top: 1538px;
  width: 581px;
}
.typography-colors-page .layered-content .primary-logo {
  height: 140px;
  left: 167px;
  object-fit: cover;
  position: absolute;
  top: 29px;
  width: 268px;
}
.typography-colors-page .layered-content .icon-wrapper {
  background-color: #000000;
  height: 200px;
  left: 719px;
  position: absolute;
  top: 1538px;
  width: 200px;
}
.typography-colors-page .layered-content .icon {
  height: 170px;
  left: 19px;
  object-fit: cover;
  position: absolute;
  top: 15px;
  width: 164px;
}
.typography-colors-page .layered-content .img-wrapper {
  background-color: #ffffff;
  border: 1px solid;
  border-color: #000000;
  height: 200px;
  left: 721px;
  position: absolute;
  top: 1771px;
  width: 200px;
}
.typography-colors-page .layered-content .img {
  height: 170px;
  left: 16px;
  object-fit: cover;
  position: absolute;
  top: 14px;
  width: 164px;
}
.typography-colors-page .layered-content .overlap-2 {
  background-color: #ffffff;
  border: 1px solid;
  border-color: #000000;
  height: 200px;
  left: 102px;
  position: absolute;
  top: 1771px;
  width: 581px;
}
.typography-colors-page .layered-content .primary-logo-2 {
  height: 150px;
  left: 156px;
  object-fit: cover;
  position: absolute;
  top: 26px;
  width: 287px;
}
.typography-colors-page .layered-content .overlap-3 {
  height: 377px;
  left: 74px;
  position: absolute;
  top: 4824px;
  width: 460px;
}
.typography-colors-page .layered-content .section-title-3 {
  color: #ffffff;
  font-family: "League Spartan", Helvetica;
  font-size: 63px;
  font-weight: 800;
  left: 0;
  letter-spacing: 6.3px;
  line-height: 53.5px;
  position: absolute;
  top: 323px;
  white-space: nowrap;
  width: 460px;
}
.typography-colors-page .layered-content .color-swatch {
  background-color: #000000;
  height: 358px;
  left: 16px;
  position: absolute;
  top: 0;
  width: 358px;
}
.typography-colors-page .layered-content .icon-2 {
  height: 320px;
  left: 40px;
  object-fit: cover;
  position: absolute;
  top: 18px;
  width: 308px;
}
.typography-colors-page .layered-content .section-title-4 {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 92px;
  font-weight: 400;
  left: 86px;
  letter-spacing: 0;
  line-height: 82px;
  position: absolute;
  top: 4433px;
  white-space: nowrap;
}
.typography-colors-page .layered-content .overlap-4 {
  height: 776px;
  left: 0;
  position: absolute;
  top: 3577px;
  width: 1383px;
}
.typography-colors-page .layered-content .overlap-5 {
  height: 105px;
  left: 1003px;
  position: absolute;
  top: 106px;
  width: 380px;
}
.typography-colors-page .layered-content .section-title-5 {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 68px;
  font-weight: 400;
  left: 0;
  letter-spacing: 0;
  line-height: 82px;
  position: absolute;
  text-align: right;
  top: 0;
  white-space: nowrap;
}
.typography-colors-page .layered-content .subheading-5 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 22px;
  font-weight: 400;
  left: 40px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: right;
  top: 76px;
  width: 335px;
}
.typography-colors-page .layered-content .overlap-6 {
  height: 776px;
  left: 0;
  position: absolute;
  top: 0;
  width: 1378px;
}
.typography-colors-page .layered-content .image-2 {
  height: 776px;
  left: 466px;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 480px;
}
.typography-colors-page .layered-content .image-3 {
  height: 776px;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 472px;
}
.typography-colors-page .layered-content .brand {
  height: 370px;
  left: 736px;
  object-fit: cover;
  position: absolute;
  top: 369px;
  width: 417px;
}
.typography-colors-page .layered-content .body-text-7 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 1043px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: right;
  top: 271px;
  width: 335px;
}
.typography-colors-page .layered-content .section-title-6 {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 92px;
  font-weight: 400;
  left: 89px;
  letter-spacing: 0;
  line-height: 82px;
  position: absolute;
  top: 2780px;
  white-space: nowrap;
}
.typography-colors-page .layered-content .body-text-8 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 4678px;
  width: 589px;
}
.typography-colors-page .layered-content .subheading-6 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 22px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 4527px;
  width: 335px;
}
.typography-colors-page .layered-content .subheading-7 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 22px;
  font-weight: 400;
  left: 1024px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: right;
  top: 5416px;
  width: 335px;
}
.typography-colors-page .layered-content .subheading-8 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 22px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 4610px;
  width: 335px;
}
.typography-colors-page .layered-content .line-2 {
  height: 1px;
  left: 90px;
  position: absolute;
  top: 4660px;
  width: 295px;
}
.typography-colors-page .layered-content .overlap-7 {
  background-color: #9e0d09;
  height: 358px;
  left: 540px;
  position: absolute;
  top: 4824px;
  width: 358px;
}
.typography-colors-page .layered-content .icon-3 {
  height: 320px;
  left: 24px;
  object-fit: cover;
  position: absolute;
  top: 18px;
  width: 308px;
}
.typography-colors-page .layered-content .overlap-8 {
  background-color: #868d90;
  height: 358px;
  left: 990px;
  position: absolute;
  top: 4824px;
  width: 357px;
}
.typography-colors-page .layered-content .icon-4 {
  height: 320px;
  left: 25px;
  object-fit: cover;
  position: absolute;
  top: 18px;
  width: 308px;
}
.typography-colors-page .layered-content .subheading-9 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 22px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 2871px;
  width: 335px;
}
.typography-colors-page .layered-content .line-3 {
  height: 1px;
  left: 435px;
  position: absolute;
  top: 4482px;
  width: 924px;
}
.typography-colors-page .layered-content .section-title-7 {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 92px;
  font-weight: 400;
  left: 966px;
  letter-spacing: 0;
  line-height: 82px;
  position: absolute;
  text-align: right;
  top: 5319px;
  white-space: nowrap;
}
.typography-colors-page .layered-content .line-4 {
  height: 1px;
  left: 86px;
  position: absolute;
  top: 5366px;
  width: 825px;
}
.typography-colors-page .layered-content .line-5 {
  height: 1px;
  left: 525px;
  position: absolute;
  top: 2822px;
  width: 837px;
}
.typography-colors-page .layered-content .wordmark-component {
  height: 230px;
  left: 824px;
  object-fit: cover;
  position: absolute;
  top: 2407px;
  width: 506px;
}
.typography-colors-page .layered-content .wordmark-no-text {
  height: 230px;
  left: 824px;
  object-fit: cover;
  position: absolute;
  top: 2095px;
  width: 506px;
}
.typography-colors-page .layered-content .color-info-wrapper {
  background-color: #9e0d09;
  height: 119px;
  left: 760px;
  position: absolute;
  top: 2954px;
  width: 340px;
}
.typography-colors-page .layered-content .color-info {
  height: 45px;
  left: 31px;
  position: relative;
  top: 36px;
  width: 299px;
}
.typography-colors-page .layered-content .color-label {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 0;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 0;
  width: 72px;
}
.typography-colors-page .layered-content .color-label-2 {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 99px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 0;
  width: 72px;
}
.typography-colors-page .layered-content .color-label-3 {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 200px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 0;
  width: 72px;
}
.typography-colors-page .layered-content .color-value {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 0;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 24px;
  width: 72px;
}
.typography-colors-page .layered-content .color-value-2 {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 99px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 24px;
  width: 72px;
}
.typography-colors-page .layered-content .color-value-3 {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 200px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 24px;
  width: 87px;
}
.typography-colors-page .layered-content .div-wrapper {
  background-color: #4d331b;
  height: 119px;
  left: 1100px;
  position: absolute;
  top: 2954px;
  width: 340px;
}
.typography-colors-page .layered-content .color-info-2 {
  height: 45px;
  left: 28px;
  position: relative;
  top: 36px;
  width: 299px;
}
.typography-colors-page .layered-content .overlap-9 {
  background-color: #9c9d74;
  height: 119px;
  left: 760px;
  position: absolute;
  top: 3073px;
  width: 340px;
}
.typography-colors-page .layered-content .overlap-10 {
  background-color: #777166;
  height: 119px;
  left: 1100px;
  position: absolute;
  top: 3073px;
  width: 340px;
}
.typography-colors-page .layered-content .color-info-3 {
  height: 45px;
  left: 28px;
  position: relative;
  top: 34px;
  width: 299px;
}
.typography-colors-page .layered-content .overlap-11 {
  background-color: #868d90;
  height: 119px;
  left: 760px;
  position: absolute;
  top: 3192px;
  width: 340px;
}
.typography-colors-page .layered-content .overlap-12 {
  background-color: #a3adb2;
  height: 119px;
  left: 1100px;
  position: absolute;
  top: 3192px;
  width: 340px;
}
.typography-colors-page .layered-content .color-label-4 {
  color: #3b3b3b;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 0;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 0;
  width: 72px;
}
.typography-colors-page .layered-content .color-label-5 {
  color: #3b3b3b;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 99px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 0;
  width: 72px;
}
.typography-colors-page .layered-content .color-label-6 {
  color: #3b3b3b;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 200px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 0;
  width: 72px;
}
.typography-colors-page .layered-content .color-value-4 {
  color: #3b3b3b;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 0;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 24px;
  width: 72px;
}
.typography-colors-page .layered-content .color-value-5 {
  color: #3b3b3b;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 99px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 24px;
  width: 72px;
}
.typography-colors-page .layered-content .color-value-6 {
  color: #3b3b3b;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 200px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 24px;
  width: 87px;
}
.typography-colors-page .layered-content .overlap-13 {
  background-color: #eee9e6;
  height: 119px;
  left: 760px;
  position: absolute;
  top: 3311px;
  width: 340px;
}
.typography-colors-page .layered-content .color-info-4 {
  height: 45px;
  left: 31px;
  position: relative;
  top: 38px;
  width: 299px;
}
.typography-colors-page .layered-content .overlap-14 {
  background-color: #f0e7dc;
  height: 119px;
  left: 1100px;
  position: absolute;
  top: 3311px;
  width: 340px;
}
.typography-colors-page .layered-content .color-info-5 {
  height: 45px;
  left: 28px;
  position: relative;
  top: 36px;
  width: 309px;
}
.typography-colors-page .layered-content .color-value-7 {
  color: #3b3b3b;
  font-family: "Playfair Display", Helvetica;
  font-size: 16px;
  font-weight: 400;
  left: 200px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 24px;
  width: 97px;
}
.typography-colors-page .layered-content .subheading-10 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 700;
  left: 929px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: right;
  top: 5527px;
  width: 430px;
}
.typography-colors-page .layered-content .body-text-9 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 929px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: right;
  top: 5574px;
  width: 430px;
}
.typography-colors-page .layered-content .v-luxe-brand {
  height: 262px;
  left: 86px;
  object-fit: cover;
  position: absolute;
  top: 5446px;
  width: 251px;
}
.typography-colors-page .layered-content .tagline-wrapper {
  background-color: #000000;
  height: 156px;
  left: 90px;
  position: absolute;
  top: 5747px;
  width: 1098px;
}
.typography-colors-page .layered-content .tagline {
  color: #ffffff;
  font-family: "Dallas", Helvetica;
  font-size: 35px;
  font-weight: 400;
  left: 225px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 54px;
}
.typography-colors-page .layered-content .tagline-round-white-wrapper {
  background-color: #000000;
  height: 156px;
  left: 1203px;
  position: absolute;
  top: 5747px;
  width: 156px;
}
.typography-colors-page .layered-content .tagline-round-white {
  height: 129px;
  left: 16px;
  object-fit: cover;
  position: absolute;
  top: 13px;
  width: 130px;
}
.typography-colors-page .layered-content .tagline-round-black-wrapper {
  background-color: #ffffff;
  border: 1px solid;
  border-color: #000000;
  height: 156px;
  left: 1203px;
  position: absolute;
  top: 5918px;
  width: 156px;
}
.typography-colors-page .layered-content .tagline-round-black {
  height: 142px;
  left: 5px;
  object-fit: cover;
  position: absolute;
  top: 7px;
  width: 144px;
}
.typography-colors-page .layered-content .overlap-15 {
  background-color: #9e0d09;
  height: 156px;
  left: 1203px;
  position: absolute;
  top: 6089px;
  width: 156px;
}
.typography-colors-page .layered-content .tagline-round-white-2 {
  height: 129px;
  left: 16px;
  object-fit: cover;
  position: absolute;
  top: 14px;
  width: 130px;
}
.typography-colors-page .layered-content .overlap-16 {
  background-color: #ffffff;
  border: 1px solid;
  border-color: #000000;
  height: 156px;
  left: 90px;
  position: absolute;
  top: 5918px;
  width: 1098px;
}
.typography-colors-page .layered-content .tagline-2 {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 35px;
  font-weight: 400;
  left: 224px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 53px;
}
.typography-colors-page .layered-content .overlap-17 {
  background-color: #9e0d09;
  height: 156px;
  left: 90px;
  position: absolute;
  top: 6089px;
  width: 1098px;
}
.typography-colors-page .layered-content .tagline-3 {
  color: #ffffff;
  font-family: "Dallas", Helvetica;
  font-size: 35px;
  font-weight: 400;
  left: 225px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 55px;
}
.typography-colors-page .layered-content .section-title-wrapper {
  background-image: url(https://c.animaapp.com/dzkYXShA/img/image-3.png);
  background-size: 100% 100%;
  height: 862px;
  left: 0;
  position: absolute;
  top: 6382px;
  width: 1440px;
}
.typography-colors-page .layered-content .section-title-8 {
  color: #ffffff;
  font-family: "Dallas", Helvetica;
  font-size: 92px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: 82px;
  position: absolute;
  top: 336px;
}
.typography-colors-page .layered-content .section-title-9 {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 92px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: 82px;
  position: absolute;
  top: 7312px;
  white-space: nowrap;
}
.typography-colors-page .layered-content .line-6 {
  height: 1px;
  left: 475px;
  position: absolute;
  top: 7360px;
  width: 888px;
}
.typography-colors-page .layered-content .subheading-11 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 22px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 7420px;
  width: 335px;
}
.typography-colors-page .layered-content .subheading-12 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 22px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 7851px;
  width: 335px;
}
.typography-colors-page .layered-content .subheading-13 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 64px;
  font-weight: 400;
  left: 90px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 7907px;
  width: 522px;
}
.typography-colors-page .layered-content .overlap-18 {
  height: 234px;
  left: 84px;
  position: absolute;
  top: 7548px;
  width: 758px;
}
.typography-colors-page .layered-content .subheading-14 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 22px;
  font-weight: 400;
  left: 6px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 14px;
  width: 335px;
}
.typography-colors-page .layered-content .section-title-10 {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: 180px;
  font-weight: 700;
  left: 0;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 0;
}
.typography-colors-page .layered-content .body-text-10 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 727px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: justify;
  top: 7850px;
  width: 283px;
}
.typography-colors-page .layered-content .body-text-11 {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: 19px;
  font-weight: 400;
  left: 1074px;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: justify;
  top: 7850px;
  width: 272px;
}
.typography-colors-page .layered-content .overlap-19 {
  background-image: url(https://c.animaapp.com/dzkYXShA/img/image-4.png);
  background-size: 100% 100%;
  height: 705px;
  left: 0;
  position: absolute;
  top: 8137px;
  width: 720px;
}
.typography-colors-page .layered-content .section-title-11 {
  color: #ffffff;
  font-family: "Dallas", Helvetica;
  font-size: 60px;
  font-weight: 400;
  left: 84px;
  letter-spacing: 0;
  line-height: 82px;
  position: absolute;
  top: 103px;
  white-space: nowrap;
}
.typography-colors-page .layered-content .image-4 {
  height: 705px;
  left: 720px;
  object-fit: cover;
  position: absolute;
  top: 8137px;
  width: 720px;
}
.collaborations {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}
.collaborations__header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 25vh;
  background-color: #ffffff;
  padding: 2rem;
  position: relative;
}
.collaborations__title {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: clamp(40px, 6.3vw, 91px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  margin: 0;
}
.collaborations__header-line {
  width: clamp(300px, 78.1vw, 1124px);
  height: 1px;
  object-fit: cover;
  margin-top: 2rem;
}
.collaborations__content-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard), 
              transform var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: opacity, transform;
}
.collaborations__content-section--green {
  background-color: #6c7363;
}
.collaborations__content-section--with-bg {
  background-image: url("/images/IoXmggJw/img/rectangle-64.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
}
.collaborations__content-section--brown {
  background-color: #736a63;
}
.collaborations__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  gap: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  will-change: opacity, transform;
}
.collaborations__content-wrapper--with-circle {
  align-items: flex-start;
  gap: 2rem;
}
.collaborations__main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.collaborations__text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  text-align: center;
}
.collaborations__text-content--center {
  text-align: center;
  align-items: center;
  max-width: 740px;
  margin: 0 auto;
}
.collaborations__text-content--offset {
  margin-top: 2rem;
}
.collaborations__section-title {
  color: #ffffff;
  font-family: "Dallas", Helvetica;
  font-size: clamp(35px, 5.3vw, 77px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
}
.collaborations__section-title--dark {
  color: #000000;
}
.collaborations__description {
  color: #ffffff;
  font-family: "Playfair Display", Helvetica;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
}
.collaborations__description--dark {
  color: #000000;
}
.collaborations__circle-text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 3rem 2rem;
  border-radius: 0;
  backdrop-filter: blur(2px);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  will-change: opacity, transform;
}
.collaborations__circle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 816px;
  height: 816px;
  position: relative;
}
.collaborations__circle-title {
  color: #000000;
  font-family: "Dallas", Helvetica;
  font-size: clamp(35px, 5.3vw, 77px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: normal;
  margin: 0;
  text-align: center;
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  z-index: 3;
}
.collaborations__circle {
  width: 816px;
  height: 816px;
  border: 1px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1;
}
.collaborations__circle-line {
  width: 80%;
  height: 1px;
  object-fit: cover;
}
.collaborations__circle-description {
  color: #000000;
  font-family: "Playfair Display", Helvetica;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 10%;
  box-sizing: border-box;
  z-index: 3;
}
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.collaborations__content-section {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard), 
              transform var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: opacity, transform;
}
.collaborations__content-section--animate {
  animation: slideUpFadeIn var(--luxe-duration-long) var(--luxe-easing-standard) forwards;
}
.collaborations__content-wrapper {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-decelerate) 100ms, 
              transform var(--luxe-duration-medium) var(--luxe-easing-decelerate) 100ms;
}
.collaborations__content-section--animate .collaborations__content-wrapper {
  opacity: 1;
  transform: translateY(0);
}
.collaborations__circle-text-container {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-decelerate) 100ms, 
              transform var(--luxe-duration-medium) var(--luxe-easing-decelerate) 100ms;
}
.collaborations__content-section--animate .collaborations__circle-text-container {
  opacity: 1;
  transform: translateY(0);
}
.collaborations__section-title, .collaborations__description {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--luxe-duration-short) var(--luxe-easing-standard), 
              transform var(--luxe-duration-short) var(--luxe-easing-standard);
  will-change: opacity, transform;
}
.collaborations__section-title {
  transition-delay: 150ms;
}
.collaborations__description {
  transition-delay: 200ms;
}
.collaborations__content-section--animate .collaborations__section-title,
.collaborations__content-section--animate .collaborations__description {
  opacity: 1;
  transform: translateY(0);
}
.collaborations__circle-title, .collaborations__circle-description {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--luxe-duration-short) var(--luxe-easing-standard), 
              transform var(--luxe-duration-short) var(--luxe-easing-standard);
  will-change: opacity, transform;
}
.collaborations__circle-title {
  transition-delay: 150ms;
}
.collaborations__circle-description {
  transition-delay: 200ms;
}
.collaborations__circle {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-decelerate) 50ms, 
              transform var(--luxe-duration-medium) var(--luxe-easing-decelerate) 50ms;
  will-change: opacity, transform;
}
.collaborations__content-section--animate .collaborations__circle-title,
.collaborations__content-section--animate .collaborations__circle-description,
.collaborations__content-section--animate .collaborations__circle {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .collaborations__content-section, .collaborations__content-wrapper, .collaborations__circle-text-container, .collaborations__section-title, .collaborations__description, .collaborations__circle-title, .collaborations__circle-description, .collaborations__circle {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 1024px) {
  .collaborations__content-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .collaborations__circle-text-container {
    width: 75%;
  }
  .collaborations__circle-wrapper {
    width: 600px;
    height: 600px;
  }
  .collaborations__circle {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 768px) {
  .collaborations__content-section {
    min-height: 75vh;
    padding: 1.5rem;
  }
  .collaborations__circle-text-container {
    width: 85%;
    padding: 2rem 1.5rem;
  }
  .collaborations__circle-wrapper {
    width: 400px;
    height: 400px;
  }
  .collaborations__circle {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 480px) {
  .collaborations__header-section {
    min-height: 20vh;
    padding: 1rem;
  }
  .collaborations__content-section {
    min-height: 80vh;
    padding: 1rem;
  }
  .collaborations__circle-text-container {
    width: 90%;
    padding: 1.5rem 1rem;
  }
  .collaborations__circle-wrapper {
    width: 280px;
    height: 280px;
  }
  .collaborations__circle {
    width: 280px;
    height: 280px;
  }
  .collaborations__circle-title {
    font-size: clamp(24px, 4vw, 35px);
    width: 75%;
  }
  .collaborations__circle-description {
    font-size: clamp(12px, 1vw, 14px);
    width: 75%;
  }
}
.collaborations__circle, .collaborations__circle-wrapper {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
:root {
  --luxe-duration-short: 0.3s;
  --luxe-duration-medium: 0.5s;
  --luxe-duration-long: 0.8s;
  --luxe-easing-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
  --luxe-easing-decelerate: cubic-bezier(0.0, 0.0, 0.2, 1);
  --luxe-easing-accelerate: cubic-bezier(0.4, 0.0, 1, 1);
  --luxe-scale-container: 1;
  --luxe-translate-x-container: 0;
  --luxe-scale-circle: 1;
  --luxe-scale-logo: 1;
  --luxe-translate-y-content: 0;
  --luxe-logo-width: 1966px;
  --luxe-logo-height: 739.1px;
  --luxe-bg-color: white;
  --luxe-primary-color: #785D31;
  --luxe-secondary-color: rgba(162, 155, 254, 0.8);
  --luxe-text-color: #fff;
  --luxe-drawer-bg-color: #818181;
  --luxe-content-bg-color: rgba(255, 255, 255, 0.95);
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Dallas";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62aa454a012fe78488d02fb6/fonts/dallas-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
.bio {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
.bio .bio-v {
  background-color: #ffffff;
  height: 159.9375rem;
  position: relative;
  width: 90rem;
}
.bio .overlap {
  height: 10.625rem;
  left: 4.625rem;
  position: absolute;
  top: 5.9375rem;
  width: 49.5625rem;
}
.bio .text-wrapper {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 3.9375rem;
  font-weight: 300;
  left: 0.3125rem;
  letter-spacing: 0.39375rem;
  line-height: normal;
  position: absolute;
  text-align: center;
  top: 0;
}
.bio .GINGERRESSLER {
  color: #785d31;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 5.6875rem;
  font-weight: 400;
  left: 0;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 3.25rem;
}
.bio .GINGERRESSLER .span {
  color: #000000;
  font-weight: 300;
}
.bio .GINGERRESSLER .text-wrapper-2 {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
}
.bio .group {
  height: 6.1875rem;
  left: 0;
  position: absolute;
  top: 153.75rem;
  width: 85.75rem;
}
.bio .div {
  height: 6.1875rem;
  position: relative;
  width: 86rem;
}
.bio .text-wrapper-3 {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 300;
  left: 62.375rem;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  text-align: right;
  top: 1.4375rem;
}
.bio .overlap-group {
  background-color: #000000;
  height: 6.1875rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 45.625rem;
}
.bio .text-wrapper-4 {
  color: #ffffff;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 300;
  left: 7.3125rem;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 1.9375rem;
}
.bio .right-arrow {
  height: 2.1875rem;
  left: 3.125rem;
  object-fit: cover;
  position: absolute;
  top: 2rem;
  width: 2.1875rem;
}
.bio .icons-right-arrow {
  height: 2.1875rem;
  left: 83.5625rem;
  object-fit: cover;
  position: absolute;
  top: 1.5625rem;
  width: 2.1875rem;
}
.bio .rectangle {
  height: 61.9375rem;
  left: 45.875rem;
  object-fit: cover;
  position: absolute;
  top: 17.8125rem;
  width: 43.5625rem;
}
.bio .overlap-2 {
  height: 63.125rem;
  left: 0;
  position: absolute;
  top: 87.4375rem;
  width: 35.0625rem;
}
.bio .img {
  height: 51.5rem;
  left: 0;
  position: absolute;
  top: 4.375rem;
  width: 35.0625rem;
}
.bio .line {
  height: 63.125rem;
  left: 31.25rem;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 0.0625rem;
  background-color: #000000;
}
.bio .women-are-doing-it {
  color: #000000;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 400;
  left: 4.9375rem;
  letter-spacing: 0.02rem;
  line-height: normal;
  position: absolute;
  top: 37.375rem;
  width: 32.25rem;
}
.bio .women-are-doing-it .text-wrapper-5 {
  font-weight: 700;
  letter-spacing: 0.003125rem;
}
.bio .women-are-doing-it .text-wrapper-6 {
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.003125rem;
}
.bio .women-are-doing-it .text-wrapper-7 {
  letter-spacing: 0.003125rem;
}
.bio .women-are-doing-it .text-wrapper-8 {
  font-style: italic;
  letter-spacing: 0.003125rem;
}
.bio .p {
  color: #000000;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 400;
  left: 40.625rem;
  letter-spacing: 0.02rem;
  line-height: normal;
  position: absolute;
  top: 105.375rem;
  width: 33.5rem;
}
.bio .line-2 {
  height: 0.0625rem;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 22.25rem;
  width: 38.875rem;
  background-color: #000000;
}
.bio .line-3 {
  height: 0.0625rem;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 67.875rem;
  width: 38.875rem;
  background-color: #000000;
}
.bio .text-wrapper-9 {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 4.5625rem;
  font-weight: 300;
  left: 4.9375rem;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 28.375rem;
}
.bio .text-wrapper-10 {
  color: #000000;
  font-family: "Dallas", Helvetica, Arial, sans-serif;
  font-size: 3.6875rem;
  font-weight: 300;
  left: 40.625rem;
  letter-spacing: 0;
  line-height: normal;
  position: absolute;
  top: 97.375rem;
}
.mobile-menu-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  padding: 0px 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  --slide-height: 570px;
  --slide-spacing: 20px;
  --slide-size: 324px;
}
.mobile-menu-carousel__viewport {
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
  flex: 1;
}
.mobile-menu-carousel__container {
  display: flex;
  margin-left: 0px;
  height: 100%;
}
.mobile-menu-carousel__slide {
  flex: 0 0 90vw;
  transform: translate3d(0, 0, 0);
  min-width: 0;
  padding-left: 5px;
  overflow: hidden;
}
.mobile-menu-carousel__card {
  height: clamp(520px, 80vh, 750px);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.mobile-menu-carousel__card-overlay {
  position: absolute;
  top: 36%;
  left: 0;
  right: 0;
  padding: 30px 30px;
  border-radius: 0 0 16px 16px;
}
.mobile-menu-carousel__card-title {
  color: white;
  font-size: 28px;
  font-weight: 700;
  font-family: "Dallas", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.mobile-menu-carousel__card-title-long {
  color: white;
  font-size: 28px;
  font-weight: 700;
  font-family: "Dallas", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.mobile-menu-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex: 0;
}
.mobile-menu-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--luxe-duration-short) var(--luxe-easing-standard);
  position: relative;
  will-change: transform, opacity;
}
.mobile-menu-carousel__dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}
.mobile-menu-carousel__dot--active {
  background-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}
.mobile-menu-carousel__dot--active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  /* animation: pulse 2s infinite; */
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@media (max-width: 480px) {
  .mobile-menu-carousel {
    padding: 0;
  }
  .mobile-menu-carousel__card {
    height: 100%;
    width: 96%;
    border-radius:10px;
  }
  .mobile-menu-carousel__dot {
    width: 10px;
    height: 10px;
  }
  .mobile-menu-carousel__dot--active::after {
    width: 14px;
    height: 14px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(50px);
  }
}
.luxe-app {
  position: relative;
  width: 100%;
  min-height: 107lvh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  transition: all var(--luxe-duration-medium) var(--luxe-easing-standard);
}
.luxe-app__video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 107lvh;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  animation: fadeIn var(--luxe-duration-long) var(--luxe-easing-smooth) forwards;
  animation-delay: 1s;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  filter: brightness(0.9);
}
@media (prefers-reduced-motion: reduce), (max-width: 768px) and (max-resolution: 150dpi) {
  .luxe-app__video-background {
    display: none;
  }
}
.luxe-app::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  animation: fadeIn var(--luxe-duration-long) var(--luxe-easing-smooth) forwards;
  animation-delay: 1s;
  pointer-events: none;
}
.luxe-app::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 2;
  animation: fadeOut var(--luxe-duration-long) var(--luxe-easing-smooth) forwards;
  animation-delay: 800ms;
}
.luxe-dust-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  animation: fadeOut var(--luxe-duration-medium) var(--luxe-easing-smooth) forwards;
  animation-delay: 2.8s;
}
.animated-logo {
  z-index: 1000;
}
.animated-logo--large {
  width: var(--luxe-logo-width);
  height: var(--luxe-logo-height);
}
@media (max-width: 1024px) {
  .animated-logo--large {
    display: none;
    width: calc(var(--luxe-logo-width) * 0.52);
    height: calc(var(--luxe-logo-height) * 0.31);
  }
}

/* Hide animated logo on Safari desktop and show basic logo instead */
@media (min-width: 1025px) {
  body.safari .animated-logo--large {
    display: none;
  }

  body.safari .basic-logo {
    display: flex;
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  body.safari .basic-logo img {
    width: 450px;
    height: auto;
    max-width: 80vw;
  }
}
@media (max-width: 768px) {
  .animated-logo--large {
    display: none;
    width: calc(var(--luxe-logo-width) * 0.39);
    height: calc(var(--luxe-logo-height) * 0.23);
  }
}
@media (max-width: 480px) {
  .animated-logo--large {
    display: none;
    width: calc(var(--luxe-logo-width) * 0.21);
    height: calc(var(--luxe-logo-height) * 0.12);
  }
}
.animated-logo--small {
  width: 205px;
  height: 46px;
}
@media (max-width: 1024px) {
  .animated-logo--small {
    width: 160px;
    height: 36px;
  }
}
@media (max-width: 768px) {
  .animated-logo--small {
    width: 180px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .animated-logo--small {
    width: 112px;
    height: 25px;
  }
}
.luxe-logo-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  pointer-events: auto;
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard), transform var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: opacity, transform;
}
.luxe-logo-container--center {
  width: var(--luxe-logo-width);
  height: var(--luxe-logo-height);
  top: calc(50% - var(--luxe-logo-height) / 2);
  right: calc(50% - var(--luxe-logo-width) / 2);
  opacity: 1;
}
@media (max-width: 1024px) {
  .luxe-logo-container--center {

    top: 0;
    left: 0;
    width: 50vw;
    height: auto;
    /* width: calc(var(--luxe-logo-width) / 2);
    height: calc(var(--luxe-logo-height) / 2);
    top: calc(50% - var(--luxe-logo-height) / 2);
    right: calc(50% - var(--luxe-logo-width) / 2);
    opacity: 1; */
  }
}
.basic-logo {
  display: none;
  position: absolute;
  top: 40vh;
  left: 0;
  width: 100vw;
  height: auto;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease-in-out 2s forwards;
}
.basic-logo img {
  width: 50%;
  height: auto;
}
@media (max-width: 1024px) {
  .basic-logo {
    display: flex;
  }
}
.luxe-logo-container--top-right {
  width: 10%;
  height: 60px;
  top: 2%;
  right: 0;
  z-index: 100;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top:34px;
}
@media (max-width: 1024px) {
  .luxe-logo-container--top-right {
    width: 12%;
    height: 50px;
    top: 15px;
  }
}
@media (max-width: 768px) {
  .luxe-logo-container--top-right {
    width: 100%;
    height: 60px;
    top: 10px;
    right: 0;
    z-index: 100;
  }
}
@media (max-width: 480px) {
  .luxe-logo-container--top-right {
    width: 100%;
    height: 50px;
    top: 10px;
    right: 0;
  }
}
.luxe-logo-container--top-center {
  width: 100vw;
  top: 0;
  z-index: 100;
  opacity: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  margin: auto;
  padding-top: 1rem;
}
.luxe-logo-container--fade-in {
  opacity: 1;
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard) 2s;
}
.luxe-logo-container--transitioning {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .luxe-logo-container--transitioning .basic-logo {
    animation: fadeOut 0.5s ease-out forwards;
  }
}
.luxe-logo-360 {
  position: absolute;
  width: auto;
  z-index: 4;
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: opacity;
  bottom: -20px;
  right: 8px;
  height: 31px;
}
@media (max-width: 768px) {
  .luxe-logo-360 {
    height: 24px;
    bottom: -15px;
    right: 5px;
  }
}
@media (max-width: 480px) {
  .luxe-logo-360 {
    height: 18px;
    bottom: -10px;
    right: 3px;
  }
}
.luxe-logo-360--small {
  bottom: -4px;
  right: 2px;
  height: 6px;
}
@media (max-width: 1024px) {
  .luxe-logo-360--small {
    height: 5px;
    bottom: -3px;
    right: 1px;
  }
}
@media (max-width: 768px) {
  .luxe-logo-360--small {
    height: 7px;
    bottom: -3px;
    right: 1px;
  }
}
@media (max-width: 480px) {
  .luxe-logo-360--small {
    height: 6px;
    bottom: -2px;
    right: 1px;
  }
}
.static-logo-top-right {
  width: 85%;
  height: auto;
  max-width: 150px;
  object-fit: contain;
}
.static-logo-top-center {
  width: 85%;
  height: auto;
  max-width: 120px;
  object-fit: contain;
}
.luxe-drawer {
  position: fixed;
  width: 90%;
  height: 100svh;
  top: 0;
  left: 0;
  background-color: rgba(77, 77, 77, 0.7);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard), transform var(--luxe-duration-medium) var(--luxe-easing-standard);
  transition-delay: 0s;
  z-index: 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  will-change: opacity, transform;
}
@media (max-width: 768px) {
  .luxe-drawer {
    z-index: 90;
  }
}
.luxe-drawer--open {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
  transition-delay: 150ms;
}
.luxe-drawer--open .luxe-drawer__content {
  opacity: 1 !important;
  z-index: 3 !important;
  pointer-events: auto !important;
}
.luxe-drawer--open .luxe-drawer__menu {
  opacity: 1;
}
.luxe-drawer--mobile {
  width: 100%;
}
.luxe-drawer--mobile.luxe-drawer--open {
  transition-delay: 100ms;
}
.luxe-drawer--tablet {
  width: 88%;
}
.luxe-drawer__content {
  height: 100%;
  padding: 0 26px;
  margin: 0 auto;
  opacity: 1;
  z-index: 1;
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard), z-index var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: opacity;
}
.luxe-drawer__content--hidden {
  opacity: 0;
  z-index: -100;
  pointer-events: none;
}
@media (max-width: 768px) {
  .luxe-drawer__content {
    padding: 40px 0px 40px;
  }
}
@media (max-width: 480px) {
  .luxe-drawer__content {
    padding: 100px 0px 20px;
  }
}
.luxe-drawer__close-btn {
  position: absolute;
  top: 20px;
  right: 80px;
  font-size: 24px;
  color: #fff;
  transition: transform var(--luxe-duration-micro) var(--luxe-easing-smooth);
  will-change: transform;
  z-index: 50;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.luxe-drawer__close-btn:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .luxe-drawer__close-btn {
    display: none;
  }
}
.luxe-drawer__menu {
  padding: 42px 18px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: stretch;
  gap: 30px;
  position: relative;
  max-width: 1750px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.luxe-drawer__menu::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .luxe-drawer__menu {
    gap: 20px;
    padding: 56px 10px;
  }
}
@media (max-width: 768px) {
  .luxe-drawer__menu {
    gap: 15px;
    padding: 80px 20px 20px;
  }
}
.luxe-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard);
}
@media (max-width: 1024px) {
  .luxe-drawer__overlay {
    width: 12%;
  }
}
.luxe-drawer--open ~ .luxe-drawer__overlay {
  opacity: 1;
}
.luxe-menu-item {
  flex: 1 0 calc(50% - 32px);
  min-width: 450px;
  min-height: 250px;
  position: relative;
  padding: 20px;
  margin-bottom: 10px;
  transition: all var(--luxe-duration-medium) var(--luxe-easing-standard);
  z-index: 1;
  will-change: transform, opacity;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none;
  opacity: 0;
  transform: translateX(-10px);
}
@media (max-width: 1024px) {
  .luxe-menu-item {
    min-width: calc(50% - 10px);
    flex: 1 0 calc(50% - 10px);
    min-height: 200px;
    max-height: 225px;
  }
}
@media (max-width: 768px) {
  .luxe-menu-item {
    min-width: 100%;
    flex: 1 0 100%;
    min-height: 150px;
    max-height: 180px;
    margin-bottom: 0;
  }
}
.luxe-menu-item--mobile {
  min-width: 100%;
  flex: 1 0 100%;
  min-height: 120px;
  max-height: 150px;
  padding: 15px;
}
.luxe-menu-item__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: transform;
}
.luxe-menu-item__background--hovered {
  transform: scale(1.05);
}
.luxe-menu-item:nth-child(1) .luxe-menu-item__background {
  background-image: url("/images/menu/brand-guidelines-hero.jpg");
}
.luxe-menu-item:nth-child(2) .luxe-menu-item__background {
  background-image: url("/images/menu/typography-hero.jpg");
  background-position: 20%;
}
.luxe-menu-item:nth-child(3) .luxe-menu-item__background {
  background-image: url("/images/menu/visual-style.png");
}
.luxe-menu-item:nth-child(4) .luxe-menu-item__background {
  background-image: url("/images/menu/social-media-hero.jpg");
}
.luxe-menu-item:nth-child(5) .luxe-menu-item__background {
  background-image: url("/images/menu/collaborations-hero.jpg");
}
.luxe-menu-item:nth-child(6) .luxe-menu-item__background {
  background-image: url("/images/menu/bio.png");
}
.luxe-menu-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.luxe-menu-item__title {
  font-size: 33px;
  font-weight: 700;
  font-family: "Dallas", serif;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  z-index: 3;
  transition: transform var(--luxe-duration-micro) var(--luxe-easing-smooth);
  will-change: transform;
}
.luxe-menu-item__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: white;
  transition: width var(--luxe-duration-medium) var(--luxe-easing-decelerate);
  will-change: width;
}
@media (max-width: 1024px) {
  .luxe-menu-item__title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .luxe-menu-item__title {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .luxe-menu-item__title {
    font-size: 18px;
  }
}
.luxe-menu-item:hover .luxe-menu-item__title {
  transform: translateY(-1px);
}
.luxe-menu-item:hover .luxe-menu-item__title::after {
  width: 100%;
}
.luxe-menu-item:nth-child(1) {
  transition-delay: 0s;
}
.luxe-menu-item:nth-child(2) {
  transition-delay: 0s;
}
.luxe-menu-item:nth-child(3) {
  transition-delay: 0.25s;
}
.luxe-menu-item:nth-child(4) {
  transition-delay: 0.25s;
}
.luxe-menu-item:nth-child(5) {
  transition-delay: 0.5s;
}
.luxe-menu-item:nth-child(6) {
  transition-delay: 0.5s;
}
.luxe-menu-item:nth-child(7) {
  transition-delay: 0.75s;
}
.luxe-menu-item:nth-child(8) {
  transition-delay: 0.75s;
}
.luxe-menu-item:nth-child(9) {
  transition-delay: 1s;
}
.luxe-menu-item:nth-child(10) {
  transition-delay: 1s;
}
.luxe-drawer--open .luxe-menu-item {
  opacity: 1;
  transform: translateX(0);
}
.luxe-drawer--open .luxe-menu-item:nth-child(1) {
  transition-delay: 250ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(2) {
  transition-delay: 250ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(3) {
  transition-delay: 300ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(4) {
  transition-delay: 300ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(5) {
  transition-delay: 350ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(6) {
  transition-delay: 350ms;
}
.luxe-content {
  margin-top: 20px;
  color: #785D31;
  width: 100%;
  min-height: 100lvh;
  height: auto;
  padding: 0px;
  background-color: #F0E7DC;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  transition: opacity var(--luxe-duration-medium) var(--luxe-easing-standard), 
              top var(--luxe-duration-medium) var(--luxe-easing-standard);
  will-change: opacity, top;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.luxe-content--visible {
  opacity: 1;
  top: 20px;
  pointer-events: all;
}
.luxe-content--sliding {
  opacity: 0;
  top: 100%;
  pointer-events: none;
}
.luxe-content--sliding .luxe-content__wrapper {
  animation: slideDown 0.4s var(--luxe-easing-standard) forwards;
}
.luxe-content__close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  color: #333;
  z-index: 100;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--luxe-duration-micro) var(--luxe-easing-smooth), 
              color var(--luxe-duration-micro) var(--luxe-easing-smooth),
              background-color var(--luxe-duration-micro) var(--luxe-easing-smooth);
  will-change: transform;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .luxe-content__close-btn {
    top: 20px;
    right: 5px;
    transform: scale(0.9);
  }
}
.luxe-content__close-btn:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0.05);
}
/* Add a subtle tooltip-like indicator for escape key functionality */
.luxe-content__close-btn::after {
  content: "ESC";
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 10px;
  font-family: "Dallas", serif;
  color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--luxe-duration-short) var(--luxe-easing-standard);
  pointer-events: none;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.luxe-content__close-btn:hover::after {
  opacity: 1;
}
@media (max-width: 768px) {
  .luxe-content__close-btn::after {
    display: none; /* Hide ESC indicator on mobile since escape key is not available */
  }
}
.luxe-content__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: slideUp var(--luxe-duration-medium) var(--luxe-easing-standard) forwards;
  height: auto;
}
.luxe-content__title {
  font-size: 32px;
  font-weight: bold;
  font-family: "Dallas", serif;
  margin-bottom: 20px;
  width: 100%;
  max-width: 800px;
  color: var(--luxe-primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
.luxe-content__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: var(--luxe-primary-color);
}
.luxe-content__body {
  line-height: 1.6;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  width: 100%;
  color: #333;
  text-align: justify;
  overflow-y: auto;
  height: calc(100vh - 20px);
  box-sizing: border-box;
  height: auto;
}
html {
  font-family: "Playfair Display", serif;
}
@media (max-width: 768px) {
  html {
    --luxe-duration-medium: 0.4s;
    --luxe-scale-circle: 0.8;
  }
}
@media (max-width: 480px) {
  html {
    --luxe-duration-medium: 0.3s;
    --luxe-duration-long: 0.6s;
    --luxe-scale-circle: 0.6;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Dallas", serif;
  font-weight: 600;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
}
h3 {
  font-size: 1.75rem;
  font-weight: 600;
}
h4 {
  font-size: 1.5rem;
  font-weight: 500;
}
h5 {
  font-size: 1.25rem;
  font-weight: 500;
}
h6 {
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .luxe-drawer__menu {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
  .luxe-content {
    padding: 0px;
  }
  .luxe-content__title {
    font-size: 28px;
  }
  .luxe-content__body {
    font-size: 16px;
  }
  .luxe-drawer--open {
    transform: translateX(0);
  }
}
@media (max-width: 480px) {
  .luxe-drawer__menu {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .luxe-logo-container--open {
    transform: scale(0.5);
  }
  .luxe-content__title {
    font-size: 24px;
  }
  .luxe-content__body {
    font-size: 15px;
  }
  .luxe-menu-item {
    font-size: 20px;
    padding: 15px;
    min-width: 100%;
  }
  .luxe-menu-item__title {
    font-size: 20px;
  }
}
/* Responsive animation: below 1140px, animate one at a time */
@media (max-width: 1140px) {
  .luxe-menu-item:nth-child(1) {
    transition-delay: 0s;
  }
  .luxe-menu-item:nth-child(2) {
    transition-delay: 0.25s;
  }
  .luxe-menu-item:nth-child(3) {
    transition-delay: 0.5s;
  }
  .luxe-menu-item:nth-child(4) {
    transition-delay: 0.75s;
  }
  .luxe-menu-item:nth-child(5) {
    transition-delay: 1s;
  }
  .luxe-menu-item:nth-child(6) {
    transition-delay: 1.25s;
  }
  .luxe-menu-item:nth-child(7) {
    transition-delay: 1.5s;
  }
  .luxe-menu-item:nth-child(8) {
    transition-delay: 1.75s;
  }
  .luxe-menu-item:nth-child(9) {
    transition-delay: 2s;
  }
  .luxe-menu-item:nth-child(10) {
    transition-delay: 2.25s;
  }
  
  .luxe-drawer--open .luxe-menu-item:nth-child(1) {
    transition-delay: 0.5s;
  }
  .luxe-drawer--open .luxe-menu-item:nth-child(2) {
    transition-delay: 0.75s;
  }
  .luxe-drawer--open .luxe-menu-item:nth-child(3) {
    transition-delay: 1s;
  }
  .luxe-drawer--open .luxe-menu-item:nth-child(4) {
    transition-delay: 1.25s;
  }
  .luxe-drawer--open .luxe-menu-item:nth-child(5) {
    transition-delay: 1.5s;
  }
  .luxe-drawer--open .luxe-menu-item:nth-child(6) {
    transition-delay: 1.75s;
  }
  .luxe-drawer--open .luxe-menu-item:nth-child(7) {
    transition-delay: 2s;
  }
  .luxe-drawer--open .luxe-menu-item:nth-child(8) {
    transition-delay: 2.25s;
  }
  .luxe-drawer--open .luxe-menu-item:nth-child(9) {
    transition-delay: 2.5s;
  }
  .luxe-drawer--open .luxe-menu-item:nth-child(10) {
    transition-delay: 2.75s;
  }
}
@media (max-width: 768px) {
  .luxe-drawer__menu {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
  .luxe-content {
    padding: 0px;
  }
  .luxe-content__title {
    font-size: 28px;
  }
  .luxe-content__body {
    font-size: 16px;
  }
  .luxe-drawer--open {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  :root {
    /* Faster animations on mobile for better performance */
    --luxe-duration-short: 250ms;
    --luxe-duration-medium: 400ms;
    --luxe-duration-long: 600ms;
  }

  .luxe-drawer__menu {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
  .luxe-content {
    padding: 0px;
  }
  .luxe-content__title {
    font-size: 28px;
  }
  .luxe-content__body {
    font-size: 16px;
  }
  .luxe-drawer--open {
    transform: translateX(0);
  }
}
@media (max-width: 480px) {
  :root {
    /* Even faster animations on small screens */
    --luxe-duration-micro: 100ms;
    --luxe-duration-short: 200ms;
    --luxe-duration-medium: 300ms;
    --luxe-duration-long: 500ms;
  }

  .luxe-drawer__menu {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .luxe-logo-container--open {
    transform: scale(0.5);
  }
  .luxe-content__title {
    font-size: 24px;
  }
  .luxe-content__body {
    font-size: 15px;
  }
  .luxe-menu-item {
    font-size: 20px;
    padding: 15px;
    min-width: 100%;
  }
  .luxe-menu-item__title {
    font-size: 20px;
  }
}
/* Menu item animation timing - slide in 2 at a time */
.luxe-menu-item:nth-child(1) {
  transition-delay: 0s;
}
.luxe-menu-item:nth-child(2) {
  transition-delay: 0s;
}
.luxe-menu-item:nth-child(3) {
  transition-delay: 0.15s;
}
.luxe-menu-item:nth-child(4) {
  transition-delay: 0.15s;
}
.luxe-menu-item:nth-child(5) {
  transition-delay: 0.3s;
}
.luxe-menu-item:nth-child(6) {
  transition-delay: 0.3s;
}
.luxe-menu-item:nth-child(7) {
  transition-delay: 0.45s;
}
.luxe-menu-item:nth-child(8) {
  transition-delay: 0.45s;
}
.luxe-menu-item:nth-child(9) {
  transition-delay: 0.6s;
}
.luxe-menu-item:nth-child(10) {
  transition-delay: 0.6s;
}
/* When drawer opens - slide in 2 at a time with better timing */
.luxe-drawer--open .luxe-menu-item {
  opacity: 1;
  transform: translateX(0);
}
.luxe-drawer--open .luxe-menu-item:nth-child(1) {
  transition-delay: 500ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(2) {
  transition-delay: 500ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(3) {
  transition-delay: 750ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(4) {
  transition-delay: 750ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(5) {
  transition-delay: 900ms;
}
.luxe-drawer--open .luxe-menu-item:nth-child(6) {
  transition-delay: 900ms;
}