/* Luxury Fonts loaded via preconnect in HTML layout head */

/* ============================================================
   LUXURY COLOR VARIABLES
   ============================================================ */
:root {
  --color-primary-dark: #221e1a;
  --color-ivory: #faf8f5;
  --color-gold: #c5a880;
  --color-gold-glow: rgba(197, 168, 128, 0.4);
  --color-gold-border: rgba(197, 168, 128, 0.2);
  --color-taupe: #807567;
  --font-serif: 'Roboto', sans-serif;
  --font-sans: 'Roboto', sans-serif;
}

/* ============================================================
   GLOBAL BOX-SIZING
   ============================================================ */
.premium-home-override,
.premium-home-override * {
  box-sizing: border-box;
}

/* Global Paragraph Styling */
p,
.canva-about-desc,
.elementor-widget-text-editor p,
.gallery-desc-text,
.contact-address-col p {
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
}

@keyframes smoothFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: smoothFloat 4s ease-in-out infinite;
}

@keyframes entranceFadeRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-entrance-right {
  animation: entranceFadeRight 1s ease-out forwards;
}

/* ============================================================
   GLOBAL ANIMATED PAGE BACKGROUND
   ============================================================ */
/* ============================================================
   GLOBAL SCROLL & PAINT PERFORMANCE
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* Force GPU compositing on animated elements */
.global-ambient-bg,
.premium-bird-companion,
.bird-speech-bubble-container,
.ambient-gradient-1,
.ambient-gradient-2 {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ============================================================
   GLOBAL BASE
   ============================================================ */
.premium-home-override {
  background-color: #ecebe6;
  position: relative;
  overflow-x: clip;
}

.global-ambient-bg {
  position: fixed;
  inset: -100px;
  /* Oversized to prevent clipping during parallax */
  pointer-events: none;
  z-index: 0;
  overflow: hidden;

  /* Toggle this to show/hide the animated background */
  display: none !important;
}

/* Breathing Gradients */
.ambient-gradient-1 {
  position: absolute;
  width: 150vw;
  height: 150vh;
  top: -25vh;
  left: -25vw;
  background: radial-gradient(circle at center, rgba(197, 168, 128, 0.08) 0%, transparent 60%);
  animation: breatheGlow1 15s ease-in-out infinite alternate;
}

.ambient-gradient-2 {
  position: absolute;
  width: 100vw;
  height: 100vh;
  bottom: -20vh;
  right: -20vw;
  background: radial-gradient(circle at center, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
  animation: breatheGlow2 20s ease-in-out infinite alternate;
}

@keyframes breatheGlow1 {
  0% {
    transform: scale(0.8) translate(5%, 5%);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.1) translate(-5%, -5%);
    opacity: 1;
  }
}

@keyframes breatheGlow2 {
  0% {
    transform: scale(1.2) translate(-10%, 10%);
    opacity: 0.8;
  }

  100% {
    transform: scale(0.9) translate(10%, -10%);
    opacity: 0.4;
  }
}

/* Subtle Noise Overlay */
.ambient-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  mix-blend-mode: overlay;
  z-index: 1;
}

/* Premium Woven Threads Parallax System */
.woven-parallax-bg {
  background-color: #faf8f5;
}

.thread-layer {
  position: absolute;
  /* Make the layers much larger than the screen to allow for endless panning */
  inset: -100vw -100vh;
  pointer-events: none;
  z-index: 1;
}

.thread-layer-horizontal {
  /* Finer SVG repeating pattern of horizontal woven threads */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 4h8' stroke='%23c5a880' stroke-width='1.5' stroke-dasharray='2 1' opacity='0.10'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  animation: parallaxThreadH 40s linear infinite;
  mix-blend-mode: multiply;
}

.thread-layer-vertical {
  /* Finer SVG repeating pattern of vertical woven threads */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M4 0v8' stroke='%23c5a880' stroke-width='1.5' stroke-dasharray='2 1' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  animation: parallaxThreadV 50s linear infinite;
  mix-blend-mode: multiply;
}

.thread-layer-diagonal {
  /* Very subtle diagonal sheen */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M0 0l16 16M16 0L0 16' stroke='%23ffffff' stroke-width='1.5' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 32px 32px;
  animation: parallaxThreadDiag 60s linear infinite;
  mix-blend-mode: overlay;
}

@keyframes parallaxThreadH {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-200px, 100px);
  }
}

@keyframes parallaxThreadV {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100px, -200px);
  }
}

@keyframes parallaxThreadDiag {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(150px, 150px);
  }
}

/* Loose Floating Threads (Flying in the air) */
.floating-thread {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.8;
}

.floating-thread-1 {
  /* Elegant looping curly thread (like unspooled yarn) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M20,180 C80,190 120,50 80,40 C40,30 30,130 100,140 C170,150 160,30 180,20' stroke='%23c5a880' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 600px 600px;
  animation: flyAir1 40s ease-in-out infinite alternate;
}

.floating-thread-2 {
  /* Dashed Tailoring Stitch Line floating beautifully */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M-20,100 C 50,150 150,30 220,100' stroke='%23c5a880' stroke-width='2.5' stroke-dasharray='8 8' fill='none' stroke-linecap='round' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 800px 800px;
  animation: flyAir2 50s ease-in-out infinite alternate-reverse;
}

.floating-thread-3 {
  /* Two intertwined fine threads (like spinning yarn) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 300'%3E%3Cpath d='M0,75 C100,150 200,0 300,75' stroke='%23c5a880' stroke-width='1' fill='none' opacity='0.2'/%3E%3Cpath d='M0,85 C100,10 200,160 300,85' stroke='%23c5a880' stroke-width='0.75' fill='none' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 1000px 500px;
  animation: flyAir3 60s ease-in-out infinite alternate;
}

@keyframes flyAir1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(150px, -200px) rotate(20deg);
  }
}

@keyframes flyAir2 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    transform: translate(-200px, -150px) rotate(-25deg) scale(1.1);
  }
}

@keyframes flyAir3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(250px, 150px) rotate(30deg);
  }
}

/* ============================================================
   INTERACTIVE CLICK BURST THREADS
   ============================================================ */
.click-burst-thread {
  position: absolute;
  /* positioned absolute to the mouse-parallax-wrapper */
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 9999;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  /* animation is applied dynamically via JS (threadDrift) */
}

.burst-style-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M20,180 C80,190 120,50 80,40 C40,30 30,130 100,140 C170,150 160,30 180,20' stroke='%23c5a880' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.5'/%3E%3C/svg%3E");
}

.burst-style-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M-20,100 C 50,150 150,30 220,100' stroke='%23c5a880' stroke-width='2.5' stroke-dasharray='8 8' fill='none' stroke-linecap='round' opacity='0.4'/%3E%3C/svg%3E");
}

.burst-style-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 150'%3E%3Cpath d='M0,75 C100,150 200,0 300,75' stroke='%23c5a880' stroke-width='1' fill='none' opacity='0.35'/%3E%3Cpath d='M0,85 C100,10 200,160 300,85' stroke='%23c5a880' stroke-width='0.75' fill='none' opacity='0.35'/%3E%3C/svg%3E");
}

@keyframes threadDrift {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) rotate(var(--rot));
  }
}

/* ============================================================
   ULTRA-PREMIUM SCROLL-REVEAL PHYSICS (INTERSECTION OBSERVER)
   ============================================================ */
.sr-hidden {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sr-scale {
  transform: translateY(40px) scale(0.95) !important;
}

.sr-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.sr-delay-1 {
  transition-delay: 0.1s !important;
}

.sr-delay-2 {
  transition-delay: 0.3s !important;
}

.sr-delay-3 {
  transition-delay: 0.5s !important;
}


/* Global floating orbs — 5 large ambient gold glows across the page */
.premium-home-override::before {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 10% 15%, rgba(197, 168, 128, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 90% 35%, rgba(197, 168, 128, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 50% 60%, rgba(197, 168, 128, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 45% 30% at 5% 80%, rgba(197, 168, 128, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 95% 90%, rgba(197, 168, 128, 0.07) 0%, transparent 55%);
  animation: globalOrbShift 20s ease-in-out infinite alternate;
}

@keyframes globalOrbShift {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0px);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05) translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: scale(0.97) translateY(10px);
  }
}

/* Subtle grain texture overlay across the entire page */
.premium-home-override::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  animation: grainShift 8s steps(10) infinite;
}

@keyframes grainShift {
  0% {
    background-position: 0 0;
  }

  10% {
    background-position: -5% -10%;
  }

  20% {
    background-position: -15% 5%;
  }

  30% {
    background-position: 7% -25%;
  }

  40% {
    background-position: -5% 25%;
  }

  50% {
    background-position: -15% 10%;
  }

  60% {
    background-position: 15% 0;
  }

  70% {
    background-position: 0 15%;
  }

  80% {
    background-position: 3% 35%;
  }

  90% {
    background-position: -18% 10%;
  }

  100% {
    background-position: 0 0;
  }
}

/* All content must sit above background layers */
.premium-home-override>*:not(.global-ambient-bg) {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS (fade up on scroll)
   Applied via JS IntersectionObserver
   ============================================================ */
.sr-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-hidden.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-hidden.sr-delay-1 {
  transition-delay: 0.1s;
}

.sr-hidden.sr-delay-2 {
  transition-delay: 0.2s;
}

.sr-hidden.sr-delay-3 {
  transition-delay: 0.3s;
}

.sr-hidden.sr-delay-4 {
  transition-delay: 0.45s;
}

.sr-hidden.sr-delay-5 {
  transition-delay: 0.6s;
}

/* Fade-in variant (no transform) */
.sr-fade {
  opacity: 0;
  transition: opacity 1s ease;
}

.sr-fade.sr-visible {
  opacity: 1;
}

/* Scale-up variant for cards */
.sr-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-scale.sr-visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   FLOATING ANIMATED SHAPES — global page decorators
   ============================================================ */
/* Thin diagonal rule lines that appear between sections */
.page-divider {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 168, 128, 0.3) 30%, rgba(197, 168, 128, 0.5) 50%, rgba(197, 168, 128, 0.3) 70%, transparent 100%);
  overflow: visible;
  z-index: 2;
}

.page-divider::before {
  content: '◆';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  color: var(--color-gold);
  background: var(--color-ivory);
  padding: 0 12px;
  letter-spacing: 6px;
}


/* ============================================================
   LIGHT SECTIONS — headings dark on ivory/white
   ============================================================ */
.premium-home-override .elementor-element-39bb3ac0 h1,
.premium-home-override .elementor-element-39bb3ac0 h2,
.premium-home-override .premium-features-section h2,
.premium-home-override .premium-about-section h2,
.premium-home-override .premium-gallery-section h2,
.premium-home-override .premium-features-section .elementor-heading-title,
.premium-home-override .premium-about-section .elementor-heading-title,
.premium-home-override .premium-gallery-section .elementor-heading-title {
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
  color: var(--color-primary-dark) !important;
  letter-spacing: -0.01em !important;
}

/* ============================================================
   DARK SECTIONS — headings white on dark backgrounds
   ============================================================ */
.premium-home-override .premium-services-section h2,
.premium-home-override .premium-services-section .elementor-heading-title,
.premium-home-override .premium-footer-section h2,
.premium-home-override .premium-footer-section .elementor-heading-title,
.elementor-887 h2,
.elementor-887 .elementor-heading-title {
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
  color: #ffffff !important;
}

/* ============================================================
   FONT-FAMILY GLOBAL (no color override, each section handles it)
   ============================================================ */
.premium-home-override p,
.premium-home-override span:not(.gold-text):not(.gallery-caption-title):not(.hero-top-eyebrow),
.premium-home-override li,
.premium-home-override a {
  font-family: var(--font-sans) !important;
}

/* ============================================================
   GOLD GRADIENT TEXT ACCENT
   ============================================================ */
.gold-text,
.services-editorial-headline span,
.gallery-editorial-headline span,
.about-editorial-headline span {
  background: linear-gradient(135deg, #d3b88e 0%, #b29366 50%, #90734a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-style: italic;
  font-weight: 400 !important;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
/* ============================================================
   ADVANCED TEXT & LAYOUT ANIMATIONS (V2 REDESIGN)
   ============================================================ */
.text-reveal-wrapper {
  overflow: hidden;
  display: inline-flex;
  vertical-align: bottom;
  padding-bottom: 0.5em;
  margin-bottom: -0.5em;
  padding-right: 0.5em;
  margin-right: -0.5em;
}

.text-reveal-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding-bottom: 0.8em;
  margin-bottom: -0.8em;
  padding-right: 0.5em;
  margin-right: -0.5em;
  line-height: 1.5;
}

.sr-visible .text-reveal-word {
  transform: translateY(0);
  opacity: 1;
}

/* Delay modifiers */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.sweep-gradient-text {
  background: linear-gradient(135deg, #221e1a 0%, #c5a880 50%, #221e1a 100%);
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sweepGradient 3s linear infinite;
  will-change: background-position;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  padding-bottom: 0.8em;
  margin-bottom: -0.8em;
  padding-right: 0.5em;
  margin-right: -0.5em;
}

@keyframes sweepGradient {
  to {
    background-position: 200% center;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.25;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.45;
  }
}

@keyframes spinSlow {
  100% {
    transform: rotate(360deg);
  }
}

/* ============================================================
   HEADER / NAV  — PREMIUM FIXED
   ============================================================ */

/* ─── NAV WRAPPER ─── */
.elementor-541 {
  background: transparent !important;
  /* Matches whatever section is below it */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 9999 !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  transition: background-color 0.5s ease,
    backdrop-filter 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease !important;
}

/* ─── SCROLLED: frosted glass ─── */
.elementor-541.nav-scrolled {
  background-color: rgba(250, 248, 245, 0.65) !important;
  backdrop-filter: blur(28px) saturate(200%) brightness(1.05) !important;
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.05) !important;
  border-bottom: 1px solid rgba(197, 168, 128, 0.3) !important;
  box-shadow: 0 8px 40px rgba(34, 30, 26, 0.10) !important;
}

/* ─── KILL THE -85px NEGATIVE MARGIN (root cause of bleed-through) ─── */
.elementor-541 .elementor-element.elementor-element-e171d60 {
  margin: 0 !important;
  padding: 4px 40px !important;
  /* Reduced vertical padding */
}

@media (max-width: 1200px) {
  .elementor-541 .elementor-element.elementor-element-e171d60 {
    padding: 4px 30px !important;
  }
}

@media (max-width: 767px) {
  .elementor-541 .elementor-element.elementor-element-e171d60 {
    padding: 4px 16px !important;
  }
}


/* ─── VERTICAL CENTERING ─── */
.elementor-541 .elementor-container {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
}

.elementor-541 .elementor-widget-wrap {
  display: flex !important;
  align-items: center !important;
  align-content: center !important;
}

/* ─── LOGO ─── */
.elementor-541 .elementor-element.elementor-element-260ec24 img.logo-main-img {
  margin: 0 !important;
  /* Kills the -23px from Elementor that pushed it up */
  max-height: 44px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  transition: max-height 0.4s ease, opacity 0.3s ease !important;
}

.logo-main-img:hover {
  opacity: 0.8 !important;
}

.elementor-541.nav-scrolled .elementor-element.elementor-element-260ec24 img.logo-main-img {
  max-height: 36px !important;
}

/* ─── NAV CONTAINER ─── */
.elementor-541 .elementor-element.elementor-element-0330bf2 .elementor-widget-wrap,
.elementor-541 .elementor-element.elementor-element-2e9286a,
.elementor-541 .elementor-element.elementor-element-2e9286a .elementor-widget-container,
.elementor-541 .elementor-element.elementor-element-2e9286a .hfe-nav-menu-layout,
.elementor-541 .elementor-element.elementor-element-2e9286a nav.hfe-nav-menu__layout-horizontal,
.elementor-541 .elementor-element.elementor-element-2e9286a ul.hfe-nav-menu {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  justify-content: flex-end !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

/* ─── NAV LINKS ─── */
.hfe-nav-menu .menu-item a,
.hfe-nav-menu .menu-item a.hfe-menu-item {
  color: #221e1a !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  text-decoration: none !important;
  position: relative !important;
  display: inline-block !important;
  padding: 6px 0 !important;
  margin: 0 8px !important;
  white-space: nowrap !important;
  transition: color 0.3s ease !important;
}

/* Sliding gold underline */
.hfe-nav-menu .menu-item a::after {
  content: '' !important;
  position: absolute !important;
  bottom: -1px !important;
  left: 0 !important;
  width: 0 !important;
  height: 1.5px !important;
  background: linear-gradient(90deg, #c5a880 0%, #e0cda9 100%) !important;
  border-radius: 2px !important;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hfe-nav-menu .menu-item:hover>a,
.hfe-nav-menu .current-menu-item>a {
  color: #c5a880 !important;
}

.hfe-nav-menu .menu-item:hover>a::after,
.hfe-nav-menu .current-menu-item>a::after {
  width: 100% !important;
}

/* ─── MOBILE HAMBURGER ─── */
.hfe-nav-menu__toggle {
  color: #221e1a !important;
  font-size: 22px !important;
}

.hfe-nav-menu__toggle i {
  color: #221e1a !important;
}

/* ─── DROPDOWN MENUS ─── */
.hfe-nav-menu .sub-menu,
.elementor-541 nav.hfe-dropdown,
.elementor-541 nav.hfe-dropdown-expandible {
  background: rgba(250, 248, 245, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  border-radius: 10px !important;
  border: 1px solid rgba(197, 168, 128, 0.2) !important;
  box-shadow: 0 16px 48px rgba(34, 30, 26, 0.14) !important;
  overflow: hidden !important;
  margin-top: 6px !important;
}

/* ─── MOBILE DROPDOWN PANEL ─── */
@media (max-width: 1024px) {
  .hfe-nav-menu__layout-horizontal {
    background: rgba(250, 248, 245, 0.98) !important;
    backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(197, 168, 128, 0.2) !important;
    box-shadow: 0 24px 56px rgba(34, 30, 26, 0.14) !important;
    padding: 20px 24px !important;
    border-radius: 0 0 14px 14px !important;
    margin-top: 0 !important;
  }

  .hfe-nav-menu .menu-item a {
    display: block !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 14px 0 !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.12) !important;
  }

  .hfe-nav-menu .menu-item:last-child a {
    border-bottom: none !important;
  }
}


/* ============================================================
   CANVA-STYLE PREMIUM HERO SECTION
   ============================================================ */
.premium-hero-canva {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 5% 60px;
}

/* Ambient glow blobs */
.canva-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.25) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, transparent 70%);
  bottom: -10%;
  left: -10%;
}

.canva-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 1;
  align-items: start;
}

/* Left Typography Column */
.canva-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.canva-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.canva-headline {
  font-family: var(--font-serif) !important;
  font-size: clamp(48px, 6vw, 84px) !important;
  line-height: 1.05 !important;
  font-weight: 300 !important;
  color: var(--color-primary-dark) !important;
  margin: 0 0 32px 0 !important;
}

.canva-gold-text {
  color: var(--color-gold);
  font-style: italic;
}

.canva-description {
  font-family: var(--font-sans) !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  color: #5a5045 !important;
  max-width: 500px !important;
  margin: 0 0 48px 0 !important;
}

/* ── PREMIUM BUTTONS ── */
.canva-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Primary Button with Sweep & Arrow Animation */
.canva-primary-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-primary-dark) !important;
  color: #ffffff !important;
  padding: 16px 36px !important;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 10px 30px rgba(34, 30, 26, 0.15) !important;
}

/* Sweeping gold background effect */
.canva-primary-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.canva-primary-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.canva-primary-btn .btn-text,
.canva-primary-btn .btn-icon {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.canva-primary-btn:hover {
  color: var(--color-primary-dark) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 40px rgba(197, 168, 128, 0.3) !important;
}

/* Arrow Animation */
.canva-primary-btn .btn-icon {
  display: flex;
  align-items: center;
  transform: translateX(0);
}

.canva-primary-btn:hover .btn-icon {
  transform: translateX(6px);
}

/* Play Button with Pulsing Ripple */
.canva-play-btn {
  background: transparent !important;
  border: none !important;
  color: var(--color-primary-dark) !important;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  cursor: pointer;
  padding: 0 !important;
  transition: all 0.3s ease !important;
}

.play-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-primary-dark);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.canva-play-btn i {
  font-size: 16px;
  margin-left: 3px;
  /* visual center for play icon */
  position: relative;
  z-index: 2;
}

/* Infinite Ripple Animation */
.play-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  z-index: 0;
  animation: playRippleAnim 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes playRippleAnim {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.canva-play-btn:hover .play-icon-wrapper {
  transform: scale(1.1);
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

.canva-play-btn:hover .btn-text {
  color: var(--color-gold) !important;
}

/* Right Image Column */
.canva-hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.canva-image-backdrop {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 85%;
  height: 90%;
  background: var(--color-primary-dark);
  border-radius: 24px;
  transform: rotate(4deg);
  z-index: 0;
  opacity: 0.05;
}

.canva-hero-model {
  position: relative;
  z-index: 1;
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(34, 30, 26, 0.15);
  animation: float 8s ease-in-out infinite;
}

.canva-floating-badge {
  position: absolute;
  bottom: 15%;
  left: -5%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(34, 30, 26, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.canva-floating-badge .badge-number {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--color-gold);
  line-height: 1;
}

.canva-floating-badge .badge-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary-dark);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .canva-hero-container {
    grid-template-columns: 1fr;
    text-align: start;
    gap: 80px;
  }

  .canva-hero-content {
    padding-right: 0;
    align-items: center;
  }

  .canva-actions {
    justify-content: center;
  }

  .canva-floating-badge {
    left: 5%;
    bottom: 5%;
  }
}

@media (max-width: 768px) {
  .canva-headline {
    font-size: 40px;
  }

  .canva-actions {
    flex-direction: column;
    width: 100%;
  }

  .canva-primary-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   FEATURES SECTION — white cards on near-white background
   ============================================================ */
/* ============================================================
   CANVA-STYLE FEATURES SECTION 2.0 (ULTRA-PREMIUM LIGHT)
   ============================================================ */
.premium-features-canva {
  padding: 80px 5%;
  background: transparent;
  /* Changed from #faf8f5 to allow global bg */
  position: relative;
  overflow: hidden;
}

/* Ambient Glowing Orbs */
.premium-features-canva::before,
.premium-features-canva::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.6;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

.premium-features-canva::before {
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.4) 0%, rgba(197, 168, 128, 0) 70%);
}

.premium-features-canva::after {
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  animation-delay: -5s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.canva-features-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Glassmorphic Cards (Light) */
.canva-feature-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 28px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

/* Card highlight edge */
.canva-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(197, 168, 128, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.canva-feature-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(197, 168, 128, 0.15);
}

.canva-feature-card:hover::before {
  opacity: 1;
}

.canva-feature-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(197, 168, 128, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 35px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(197, 168, 128, 0.1);
}

.canva-feature-card:hover .canva-feature-icon-wrapper {
  background: var(--color-gold);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.3);
}

.canva-feature-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-primary-dark);
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.canva-feature-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: #5a5045;
  margin: 0 0 35px 0;
  flex-grow: 1;
  font-weight: 300;
}

.canva-feature-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.canva-feature-link i {
  transition: transform 0.3s ease;
}

.canva-feature-card:hover .canva-feature-link {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.canva-feature-card:hover .canva-feature-link i {
  transform: translateX(8px);
}

@media (max-width: 1024px) {
  .canva-features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .canva-features-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .canva-feature-title {
    font-size: 28px;
  }
}

/* ============================================================
   CANVA-STYLE ABOUT SECTION 2.0 (ULTRA-PREMIUM)
   ============================================================ */
.premium-about-canva {
  padding: 80px 5%;
  background: transparent;
  /* Changed from #fdfdfc to allow global bg */
  position: relative;
  overflow: hidden;
}

/* Background editorial typographic watermark */
.premium-about-canva::before {
  content: 'YAS';
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 40vw;
  font-weight: 700;
  color: rgba(197, 168, 128, 0.03);
  z-index: 0;
  pointer-events: none;
}

.canva-about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 120px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.canva-about-content {
  display: flex;
  flex-direction: column;
}

.canva-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.canva-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}

.canva-section-title {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-primary-dark);
  margin: 0 0 40px 0;
  letter-spacing: -1px;
}

.canva-gold-text {
  color: var(--color-gold);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.canva-gold-text::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(197, 168, 128, 0.2);
  z-index: -1;
}

.canva-about-desc {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.8;
  color: #5a5045;
  margin-bottom: 60px;
  font-weight: 300;
  max-width: 90%;
}

.canva-about-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.canva-about-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 0;
  background: transparent;
  border: none;
  border-left: 2px solid rgba(197, 168, 128, 0.2);
  padding-left: 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.canva-about-card:hover {
  border-left-color: var(--color-gold);
  transform: translateX(10px) translateY(-5px);
}

.canva-about-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.canva-about-card:hover .canva-about-icon {
  background: var(--color-gold);
  color: #fff;
  transform: rotateY(180deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(197, 168, 128, 0.3);
}

.canva-about-card-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-primary-dark);
  margin: 0 0 12px 0;
  font-weight: 400;
}

.canva-about-card-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: #6b6055;
  margin: 0;
  font-weight: 300;
}

.canva-about-media {
  position: relative;
  width: 100%;
}

.canva-about-image-wrapper {
  position: relative;
  border-radius: 4px;
  padding-left: 0;
  padding-bottom: 0;
}

.canva-image-backdrop-secondary {
  position: absolute;
  top: -30px;
  right: -40px;
  bottom: 30px;
  left: 40px;
  /* background: #f5f0e8; */
  /* border-radius: 4px; */
  z-index: 0;
  /* border: 1px solid rgba(197, 168, 128, 0.2); */
}

.canva-about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(34, 30, 26, 0.15);
  display: block;
}

.canva-experience-badge {
  position: absolute;
  bottom: -40px;
  left: -60px;
  z-index: 2;
  background: #ffffff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 4px solid var(--color-gold);
}

.badge-ring {
  display: none;
  /* removed for cleaner editorial look */
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.exp-number {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.exp-text {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #8c8074;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .canva-about-container {
    grid-template-columns: 1fr;
    gap: 100px;
  }

  .canva-section-title {
    font-size: 52px;
  }

  .canva-about-image-wrapper {
    max-width: 600px;
    margin: 0 auto 40px auto;
  }
}

@media (max-width: 768px) {
  .canva-section-title {
    font-size: 42px;
  }

  .canva-about-card {
    border-left: none;
    border-top: 2px solid rgba(197, 168, 128, 0.2);
    padding-left: 0;
    padding-top: 32px;
    flex-direction: column;
  }

  .canva-experience-badge {
    bottom: -30px;
    left: 20px;
    right: 20px;
    padding: 30px;
  }
}

/* ============================================================
   SERVICES SECTION — dark charcoal background
   ============================================================ */
.premium-services-section {
  padding: 130px 0 !important;
  position: relative;
}

.premium-services-section .elementor-background-overlay {
  background-color: transparent !important;
}

/* Section label "Our Services" — dark */
.premium-services-section .elementor-element-76ea51b8 .elementor-heading-title {
  color: #5a5045 !important;
  font-family: var(--font-sans) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 4px !important;
}

/* Big headline "Great fabrics, amazing products" — charcoal on light */
.services-editorial-headline {
  font-family: var(--font-serif) !important;
  font-size: 56px !important;
  line-height: 1.15 !important;
  font-weight: 300 !important;
  color: var(--color-primary-dark) !important;
  margin-top: 12px !important;
  text-align: left;
}

@media (max-width: 768px) {
  .services-editorial-headline {
    font-size: 36px !important;
  }
}

/* Body copy in services — dark grey */
.premium-services-section p {
  color: #5a5045 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

/* "Learn More" outline button */
.services-main-btn-widget .elementor-button {
  background-color: transparent !important;
  color: var(--color-primary-dark) !important;
  border: 1px solid var(--color-primary-dark) !important;
  padding: 16px 36px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  transition: all 0.4s ease !important;
}

.services-main-btn-widget .elementor-button:hover {
  background-color: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
}

/* Service cards — bright, premium, light theme */
.premium-service-card {
  position: relative !important;
  background: #ffffff !important;
  border: 1px solid rgba(197, 168, 128, 0.15) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.8) !important;
  /* glassmorphism light edge */
  border-radius: 16px !important;
  padding: 45px 35px !important;
  margin-top: 40px !important;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 8px 30px rgba(34, 30, 26, 0.06) !important;
  overflow: hidden !important;
}

/* Shimmer sweep effect on hover */
.premium-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.premium-service-card:hover::after {
  left: 150%;
}

.premium-service-card:hover {
  background: #ffffff !important;
  border-color: rgba(197, 168, 128, 0.45) !important;
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 30px 60px rgba(197, 168, 128, 0.15), 0 10px 20px rgba(34, 30, 26, 0.05) !important;
}

.premium-service-card img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
  filter: none !important;
  transition: all 0.4s ease !important;
  margin-bottom: 28px !important;
  display: block !important;
}

.premium-service-card:hover img {
  transform: scale(1.08) !important;
}

/* Card heading — deep charcoal */
.premium-service-card .elementor-heading-title,
.premium-service-card h2 {
  font-family: var(--font-serif) !important;
  color: var(--color-primary-dark) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

/* Card body text — warm dark grey, fully readable */
.premium-service-card p {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #5a5045 !important;
  text-align: left !important;
  margin: 0 !important;
}

/* ============================================================
   CERTIFICATION LOGOS (ULTRA-PREMIUM HERO UI)
   ============================================================ */
.canva-certifications {
  display: flex;
  gap: 15px;
  /* Reduced gap slightly to help them fit */
  margin-top: 40px;
  flex-wrap: nowrap !important;
  /* Force single line */
  align-items: center;
  justify-content: center;
  opacity: 1;
  width: 100%;
}

.cert-img-badge {
  height: 80px !important;
  max-width: 200px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.cert-img-badge:hover {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 5px 10px rgba(197, 168, 128, 0.2));
}

/* ============================================================
   ULTRA-PREMIUM SERVICES SECTION
   ============================================================ */
.up-services-section {
  position: relative;
  padding: 140px 6%;
  /* Removed solid linear gradient to let woven background show through */
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(197, 168, 128, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(197, 168, 128, 0.08) 0%, transparent 55%);
  overflow: hidden;
  isolation: isolate;
}

/* Subtle noise/grain texture via pseudo-element */
.up-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ── Top gold gradient bar ── */
.up-bg-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(197, 168, 128, 0.4) 20%,
      rgba(197, 168, 128, 0.8) 50%,
      rgba(197, 168, 128, 0.4) 80%,
      transparent 100%);
  z-index: 2;
}

/* ── Large faded watermark letter ── */
.up-bg-watermark {
  position: absolute;
  top: -80px;
  right: -40px;
  font-family: var(--font-serif);
  font-size: clamp(300px, 35vw, 520px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(197, 168, 128, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -20px;
}

/* ── Geometric SVG ring ── */
.up-bg-ring {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  animation: upRingRotate 40s linear infinite;
}

@keyframes upRingRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ── Diagonal grid SVG ── */
.up-bg-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Floating gold dot grid ── */
.up-bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 0;
  padding: 60px;
}

.up-bg-dot {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.25);
  align-self: center;
  justify-self: center;
}

.up-bg-dot:nth-child(3n) {
  opacity: 0.5;
}

.up-bg-dot:nth-child(5n) {
  opacity: 0.15;
  transform: scale(1.5);
}

.up-bg-dot:nth-child(7n) {
  opacity: 0.4;
  width: 2px;
  height: 2px;
}

/* ── Radial ambient glows ── */
.up-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.up-bg-glow--tr {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle,
      rgba(197, 168, 128, 0.12) 0%,
      rgba(197, 168, 128, 0.05) 40%,
      transparent 70%);
}

.up-bg-glow--bl {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle,
      rgba(197, 168, 128, 0.08) 0%,
      transparent 65%);
}

/* All children above background layers */
.up-services-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

/* ---- HEADER ---- */
.up-services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.up-services-header-right {
  align-self: center;
}

.up-services-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.up-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.up-services-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-primary-dark);
  margin: 0;
  letter-spacing: -1px;
}

.up-gold-italic {
  font-style: italic;
  background: linear-gradient(135deg, #d3b88e 0%, #b29366 50%, #90734a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.up-services-subtitle {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.85;
  color: #6b6055;
  margin: 0 0 40px 0;
  font-weight: 300;
}

.up-services-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary-dark);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--color-primary-dark);
  transition: all 0.35s ease;
}

.up-cta-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}

.up-services-cta:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.up-services-cta:hover .up-cta-arrow {
  transform: translateX(6px);
}

/* ---- CARDS GRID ---- */
.up-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.up-service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 15px 35px rgba(34, 30, 26, 0.06),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.up-service-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 28px 60px rgba(34, 30, 26, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border-color: rgba(197, 168, 128, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

/* Gold bar slides in from left on hover */
.up-card-hover-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d3b88e, #90734a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.up-service-card:hover .up-card-hover-bar {
  transform: scaleX(1);
}

/* Featured card — dark glass effect */
.up-service-card--featured {
  background: rgba(34, 30, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(197, 168, 128, 0.25);
  box-shadow:
    0 4px 24px rgba(34, 30, 26, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.up-service-card--featured:hover {
  background: rgba(34, 30, 26, 0.97);
  box-shadow: 0 28px 60px rgba(34, 30, 26, 0.35);
}

.up-service-card--featured .up-card-number {
  color: rgba(255, 255, 255, 0.2);
}

.up-service-card--featured .up-card-divider {
  background: rgba(255, 255, 255, 0.08);
}

.up-service-card--featured .up-card-title {
  color: #ffffff;
}

.up-service-card--featured .up-card-desc {
  color: rgba(255, 255, 255, 0.6);
}

.up-service-card--featured .up-card-link {
  color: var(--color-gold);
  border-bottom-color: rgba(197, 168, 128, 0.35);
}

.up-service-card--featured .up-card-link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.up-service-card--featured .up-card-hover-bar {
  background: linear-gradient(90deg, rgba(197, 168, 128, 0.8), rgba(255, 255, 255, 0.5));
}

.up-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.up-card-number {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(90, 80, 69, 0.25);
}

.up-card-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.12), rgba(197, 168, 128, 0.04));
  border-radius: 14px;
  border: 1px solid rgba(197, 168, 128, 0.15);
  transition: all 0.4s ease;
}

.up-service-card:hover .up-card-icon-wrap {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.2), rgba(197, 168, 128, 0.08));
  transform: scale(1.06) rotate(-2deg);
  border-color: rgba(197, 168, 128, 0.35);
}

.up-service-card--featured .up-card-icon-wrap {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.1);
}

.up-service-card--featured:hover .up-card-icon-wrap {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.25), rgba(197, 168, 128, 0.1));
  border-color: rgba(197, 168, 128, 0.35);
}

.up-card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.up-service-card--featured .up-card-icon {
  filter: brightness(0) invert(1) opacity(0.85);
}

.up-card-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 168, 128, 0.3), transparent);
  margin-bottom: 28px;
}

.up-card-body {
  flex-grow: 1;
}

.up-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-primary-dark);
  margin: 0 0 14px 0;
  letter-spacing: -0.3px;
}

.up-card-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: #6b6055;
  margin: 0 0 32px 0;
  font-weight: 300;
}

.up-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary-dark);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(34, 30, 26, 0.18);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.up-card-link:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.up-link-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.up-card-link:hover .up-link-arrow {
  transform: translateX(5px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .up-services-header {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .up-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .up-services-section {
    padding: 100px 5%;
  }

  .up-services-grid {
    grid-template-columns: 1fr;
  }
}



/* ---- HEADER ---- */
.up-services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.up-services-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.up-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.up-services-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-primary-dark);
  margin: 0;
  letter-spacing: -1px;
}

.up-gold-italic {
  font-style: italic;
  background: linear-gradient(135deg, #d3b88e 0%, #b29366 50%, #90734a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.up-services-subtitle {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.85;
  color: #6b6055;
  margin: 0 0 40px 0;
  font-weight: 300;
}

.up-services-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary-dark);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--color-primary-dark);
  transition: all 0.35s ease;
}

.up-cta-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}

.up-services-cta:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.up-services-cta:hover .up-cta-arrow {
  transform: translateX(6px);
}

/* ---- CARDS GRID ---- */
.up-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.up-service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(197, 168, 128, 0.15);
  border-radius: 4px;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(34, 30, 26, 0.05);
}

.up-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(34, 30, 26, 0.12);
  border-color: rgba(197, 168, 128, 0.35);
}

/* Gold bar that slides up on hover from the bottom */
.up-card-hover-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d3b88e, #90734a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.up-service-card:hover .up-card-hover-bar {
  transform: scaleX(1);
}

/* Featured card — slightly elevated */
.up-service-card--featured {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.up-service-card--featured .up-card-number {
  color: rgba(255, 255, 255, 0.25);
}

.up-service-card--featured .up-card-divider {
  background: rgba(255, 255, 255, 0.1);
}

.up-service-card--featured .up-card-title {
  color: #ffffff;
}

.up-service-card--featured .up-card-desc {
  color: rgba(255, 255, 255, 0.65);
}

.up-service-card--featured .up-card-link {
  color: var(--color-gold);
  border-bottom-color: rgba(197, 168, 128, 0.4);
}

.up-service-card--featured .up-card-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.up-service-card--featured .up-card-hover-bar {
  background: linear-gradient(90deg, #d3b88e, rgba(255, 255, 255, 0.8));
}

.up-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.up-card-number {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(90, 80, 69, 0.3);
}

.up-card-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 168, 128, 0.08);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.up-service-card:hover .up-card-icon-wrap {
  background: rgba(197, 168, 128, 0.15);
  transform: scale(1.05);
}

.up-service-card--featured .up-card-icon-wrap {
  background: rgba(255, 255, 255, 0.08);
}

.up-service-card--featured:hover .up-card-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
}

.up-card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.up-service-card--featured .up-card-icon {
  filter: brightness(0) invert(1) opacity(0.9);
}

.up-card-divider {
  height: 1px;
  background: rgba(197, 168, 128, 0.18);
  margin-bottom: 28px;
}

.up-card-body {
  flex-grow: 1;
}

.up-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-primary-dark);
  margin: 0 0 14px 0;
  letter-spacing: -0.3px;
}

.up-card-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: #6b6055;
  margin: 0 0 32px 0;
  font-weight: 300;
}

.up-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary-dark);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(34, 30, 26, 0.2);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.up-card-link:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.up-link-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.up-card-link:hover .up-link-arrow {
  transform: translateX(5px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .up-services-header {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .up-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .up-services-section {
    padding: 100px 5%;
  }

  .up-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GALLERY SECTION — warm ivory background
   ============================================================ */
.premium-gallery-section {
  padding: 120px 0 !important;
  background-color: #faf8f5 !important;
}

/* Gallery headline */
.gallery-editorial-headline {
  font-family: var(--font-serif) !important;
  font-size: 56px !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  font-weight: 300 !important;
  color: var(--color-primary-dark) !important;
}

@media (max-width: 768px) {
  .gallery-editorial-headline {
    font-size: 36px !important;
  }
}

.gallery-desc-text {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #6b6055 !important;
  /* readable warm grey */
  max-width: 680px;
  margin: 0 auto 60px auto !important;
}

/* Expanding flex gallery */
.ekit-image-accordion {
  display: flex !important;
  width: 100% !important;
  height: 480px !important;
  gap: 12px !important;
}

@media (max-width: 768px) {
  .ekit-image-accordion {
    flex-direction: column !important;
    height: auto !important;
  }
}

.ekit-image-accordion-item {
  flex: 1 !important;
  height: 100% !important;
  border: 1px solid rgba(197, 168, 128, 0.15) !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative !important;
  cursor: pointer !important;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .ekit-image-accordion-item {
    height: 260px !important;
    width: 100% !important;
  }
}

/* Dark gradient overlay on images */
.ekit-image-accordion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.08) 0%, rgba(20, 16, 12, 0.82) 100%);
  transition: opacity 0.5s ease;
  z-index: 1;
}

.ekit-image-accordion-item:hover {
  flex: 2.5 !important;
  border-color: var(--color-gold) !important;
}

/* Caption inside gallery items — always white */
.elementskit-accordion-content {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  padding: 30px !important;
  z-index: 2 !important;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-caption-title {
  font-family: var(--font-serif) !important;
  color: #ffffff !important;
  /* white text on dark overlay */
  font-size: 26px !important;
  font-weight: 300 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  display: block;
}

.ekit-image-accordion-item:hover .elementskit-accordion-content {
  transform: translateY(0);
}

/* ============================================================
   FOOTER — deep dark background
   ============================================================ */
.premium-footer-section {
  background: #110f0d !important;
  padding: 100px 0 50px 0 !important;
}

/* Footer headings — white on dark */
.premium-footer-section h2,
.premium-footer-section .elementor-heading-title {
  font-family: var(--font-serif) !important;
  color: #ffffff !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  margin-bottom: 25px !important;
  position: relative;
}

.premium-footer-section h2::after,
.premium-footer-section .elementor-heading-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--color-gold);
}

/* Footer body copy */
.premium-footer-section p {
  color: rgba(255, 255, 255, 0.60) !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

/* Footer links */
.premium-footer-section a,
.premium-footer-section .elementor-icon-list-text {
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
  font-size: 14px !important;
}

.premium-footer-section a:hover,
.premium-footer-section .elementor-icon-list-item:hover .elementor-icon-list-text {
  color: var(--color-gold) !important;
}

.premium-footer-section ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.premium-footer-section li {
  margin-bottom: 12px !important;
}

/* Social icons */
.premium-footer-section .elementor-social-icon {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255, 255, 255, 0.85) !important;
  margin-right: 10px !important;
  transition: all 0.3s ease !important;
}

.premium-footer-section .elementor-social-icon i {
  color: inherit !important;
  font-size: 15px !important;
}

.premium-footer-section .elementor-social-icon:hover {
  background-color: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  color: var(--color-primary-dark) !important;
  transform: translateY(-3px);
}

/* Copyright */
.classname-e693818 p {
  font-size: 13px !important;
  text-align: center !important;
  color: rgba(255, 255, 255, 0.42) !important;
  margin-top: 40px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
  padding-top: 30px !important;
}

.classname-e693818 p a {
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: underline !important;
}

.classname-e693818 p a:hover {
  color: var(--color-gold) !important;
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-to-top {
  background-color: var(--color-gold) !important;
  color: var(--color-primary-dark) !important;
  border: 1px solid var(--color-gold) !important;
  transition: all 0.3s ease !important;
}

.scroll-to-top:hover {
  background-color: var(--color-primary-dark) !important;
  color: #ffffff !important;
  border-color: var(--color-primary-dark) !important;
  transform: translateY(-2px);
}


.filter-tabs {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-tab-item {
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  background-color: #EEE;
  color: #555;
  transition: all 0.3s ease;
  border: 1px solid #DDD;
}

.filter-tab-item:hover {
  background-color: #E2DBE7;
  color: #3d372c;
}

.filter-tab-item.active {
  background-color: #3d372c;
  color: #FFF;
  border-color: #3d372c;
  box-shadow: 0 4px 10px rgba(105, 80, 121, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grid-item-animate {
  animation: fadeIn 0.4s ease forwards;
}

/* --- Ultra Premium Product Dashboard Styles --- */
.container-products {
  background-color: transparent !important;
  margin-top: 40px;
  position: relative;
}



.card-product {
  border-radius: 24px;
  overflow: hidden;
  background: transparent !important;
  border: none;
  box-shadow: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  transform-style: preserve-3d;
}

.card-product::after {
  display: none;
}

.card-product:hover {
  transform: translateY(-8px) scale(1.02);
}

.shirt-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  border-radius: 24px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  filter: brightness(0.98) contrast(1.04);
}

.card-product:hover .shirt-img {
  transform: scale(1.05);
  filter: brightness(1.02) contrast(1.08);
}

.filter-tabs {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-tab-item {
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  background-color: #EEE;
  color: #555;
  transition: all 0.3s ease;
  border: 1px solid #DDD;
}

.filter-tab-item:hover {
  background-color: #E2DBE7;
  color: #3d372c;
}

.filter-tab-item.active {
  background-color: #3d372c;
  color: #FFF;
  border-color: #3d372c;
  box-shadow: 0 4px 10px rgba(105, 80, 121, 0.3);
}

/* ============================================================
   WORLD BEST CINEMATIC SCROLL REVEAL ANIMATIONS
   ============================================================ */

/* 1. Cinematic Scroll Animate for Text */
.premium-scroll-animate {
  opacity: 0;
  transform: translateY(60px) scale(0.95) rotateX(-15deg);
  filter: blur(15px);
  transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1.2s cubic-bezier(0.19, 1, 0.22, 1) !important;
  will-change: opacity, transform, filter;
}

.premium-scroll-animate.premium-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
  filter: blur(0px);
}

/* 2. Cinematic Scale Animate for Cards/Images */
.premium-scale-animate {
  opacity: 0;
  transform: translateY(80px) scale(0.85);
  filter: blur(20px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform, filter;
}

.premium-scale-animate.premium-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* Enhancing delays for cascade effect */
.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.25s !important;
}

.delay-3 {
  transition-delay: 0.4s !important;
}

.delay-4 {
  transition-delay: 0.55s !important;
}

.delay-5 {
  transition-delay: 0.7s !important;
}

/* 3. Fluid Blob/Orb animations */
@keyframes fluidBlob {
  0% {
    transform: scale(1) translate(0, 0);
  }

  33% {
    transform: scale(1.1) translate(20px, -20px);
  }

  66% {
    transform: scale(0.9) translate(-20px, 20px);
  }

  100% {
    transform: scale(1) translate(0, 0);
  }
}

.canva-hero-blob {
  animation: fluidBlob 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* 4. Magnetic button hover style */
.canva-primary-btn,
.canva-play-btn {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}

.canva-primary-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 30px rgba(197, 168, 128, 0.4) !important;
}

.canva-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Enhanced Word Reveal (Cinematic Split Text) */
.text-reveal-word {
  transform: translateY(120%) rotateZ(5deg);
  opacity: 0;
  filter: blur(10px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sr-visible .text-reveal-word {
  transform: translateY(0) rotateZ(0deg);
  opacity: 1;
  filter: blur(0px);
}

/* ============================================================
   ROADMAP TIMELINE (3-Column Grid)
   ============================================================ */
.roadmap-timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 0;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  position: relative;
}

.roadmap-item {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

/* Map Node above each item */
.roadmap-node-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

/* Connecting dashed line across the row */
.roadmap-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 40px);
  height: 2px;
  background: transparent;
  border-top: 2px dashed rgba(197, 168, 128, 0.4);
  z-index: 1;
}

/* Hide the line on the last item of each row */
.roadmap-item:nth-child(3n) .roadmap-line {
  display: none;
}

.roadmap-node {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary-dark, #221e1a);
  border: 2px solid var(--color-gold, #c5a880);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
  transition: all 0.4s ease;
}

.roadmap-node .node-number {
  color: var(--color-gold, #c5a880);
  font-family: var(--font-sans, sans-serif);
  font-weight: bold;
  font-size: 13px;
  transition: all 0.4s ease;
}

.roadmap-item:hover .roadmap-node {
  transform: scale(1.15);
  background: var(--color-gold, #c5a880);
  box-shadow: 0 0 25px rgba(197, 168, 128, 0.5);
}

.roadmap-item:hover .node-number {
  color: var(--color-primary-dark, #221e1a);
}

.roadmap-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.roadmap-content .card-product {
  width: 100%;
  margin: 0 auto;
}

/* Floating info badge */
.product-details-badge {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.product-category {
  font-family: var(--font-sans, sans-serif);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-gold, #c5a880);
  letter-spacing: 2px;
}

.product-label {
  font-family: var(--font-serif, serif);
  font-size: 16px;
  font-style: italic;
  color: var(--color-taupe, #807567);
}

/* Responsive adjustment */
@media (max-width: 992px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-item:nth-child(3n) .roadmap-line {
    display: block;
  }

  .roadmap-item:nth-child(2n) .roadmap-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-line {
    display: none !important;
  }
}

/* ============================================================
   PREMIUM FLYING BIRD COMPANION
   ============================================================ */
.premium-bird-companion {
  position: absolute;
  /* Document relative */
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  color: var(--color-gold, #c5a880);
  margin-top: -30px;
  margin-left: -30px;
  will-change: transform;
}

.bird-wrapper {
  transform-origin: center center;
}

/* Flying State */
.premium-bird-companion.flying .bird-wrapper {
  animation: birdHover 2s ease-in-out infinite alternate;
}

.premium-bird-companion.flying .bird-wing-anim {
  animation: flapWing 0.25s linear infinite;
  transform-origin: 10px 10px;
}

/* Sitting State */
.premium-bird-companion.sitting .bird-wrapper {
  animation: birdSit 4s ease-in-out infinite alternate;
  transform: translateY(0);
}

.premium-bird-companion.sitting .bird-wing-anim {
  transform: rotateZ(-20deg) scaleY(0.5);
  transform-origin: 10px 10px;
  transition: transform 0.5s ease;
}

@keyframes birdHover {
  0% {
    transform: translateY(-10px) rotate(-5deg);
  }

  100% {
    transform: translateY(10px) rotate(5deg);
  }
}

@keyframes birdSit {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-2px) rotate(2deg);
  }

  100% {
    transform: translateY(0) rotate(-1deg);
  }
}

.bird-gif {
  width: 60px;
  height: auto;
  pointer-events: none;
  mix-blend-mode: multiply;
  /* Removes white background from GIF perfectly */
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* ============================================================
   PRODUCT OVERLAY SCREEN MODAL
   ============================================================ */
.premium-product-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #faf8f5;
  overflow-y: auto;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-product-overlay.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.overlay-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 20px 40px;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.overlay-close-btn {
  background: none;
  border: none;
  color: var(--color-gold, #c5a880);
  font-family: var(--font-sans, sans-serif);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.overlay-close-btn:hover {
  color: var(--color-primary-dark, #221e1a);
  transform: translateX(-4px);
}

.overlay-content-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 40px;
}

.overlay-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.overlay-image-wrapper {
  position: sticky;
  top: 100px;
}

.overlay-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  position: relative;
}

.overlay-img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  background-color: #faf8f5;
  display: block;
}

.overlay-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(34, 30, 26, 0.85);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.overlay-image-badge span {
  color: var(--color-gold, #c5a880);
  font-family: var(--font-sans, sans-serif);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.overlay-info-wrapper {
  display: flex;
  flex-direction: column;
}

.overlay-eyebrow-tag {
  font-family: var(--font-sans, sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gold, #c5a880);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.overlay-product-title {
  font-family: var(--font-serif), serif !important;
  font-weight: 300 !important;
  font-size: 42px !important;
  color: var(--color-primary-dark, #221e1a) !important;
  line-height: 1.2 !important;
  margin: 0;
}

.overlay-gold-italic {
  background: linear-gradient(135deg, #d3b88e 0%, #b29366 50%, #90734a 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-style: italic;
  font-weight: 400 !important;
}

.overlay-description {
  font-family: var(--font-sans), sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.specs-table-container {
  margin-bottom: 40px;
}

.specs-section-title {
  font-family: var(--font-serif), serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: var(--color-primary-dark, #221e1a) !important;
  margin-bottom: 15px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  font-family: var(--font-sans), sans-serif;
  font-size: 15px;
  color: #555;
}

.specs-table td:first-child {
  width: 35%;
  color: var(--color-primary-dark, #221e1a);
}

.overlay-action-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-enquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 40px;
  font-family: var(--font-sans), sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-email {
  background-color: var(--color-primary-dark, #221e1a);
  color: var(--color-gold, #c5a880) !important;
  border: 1px solid var(--color-gold, #c5a880);
  box-shadow: 0 10px 25px rgba(34, 30, 26, 0.15);
}

.btn-email:hover {
  transform: translateY(-3px) scale(1.03);
  background-color: var(--color-gold, #c5a880);
  color: var(--color-primary-dark, #221e1a) !important;
  box-shadow: 0 15px 30px rgba(197, 168, 128, 0.3);
}

@media (max-width: 992px) {
  .overlay-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overlay-image-wrapper {
    position: static;
  }

  .overlay-content-container {
    padding: 0 20px;
    margin: 30px auto;
  }

  .overlay-product-title {
    font-size: 34px !important;
  }
}

.premium-contact-link:hover {
  color: var(--color-gold, #c5a880) !important;
}

.contact-addresses-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto 40px auto;
  gap: 30px;
}

.contact-address-col {
  flex: 0 0 340px;
  min-width: 280px;
}

.contact-address-col h4,
.contact-address-col p {
  text-align: left;
}

@media (max-width: 768px) {
  .contact-addresses-row {
    justify-content: center;
    gap: 25px;
  }

  .contact-address-col {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  .contact-address-col h4,
  .contact-address-col p {
    text-align: center;
  }
}

/* ============================================================
   ULTRA-PREMIUM MOBILE NAVIGATION RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 767px) {

  /* Force masthead container to break out of boxed layouts and expand 100vw */
  .ehf-header #masthead {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    z-index: 99999 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }

  .elementor-541 {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    background-color: rgba(250, 248, 245, 0.96) !important;
    /* Premium light ivory glass */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04) !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15) !important;
    border-radius: 0 0 16px 16px !important;
    /* Curved bottom corners */
    z-index: 99999 !important;
    transition: all 0.4s ease !important;
  }

  .elementor-541.nav-scrolled {
    background-color: rgba(250, 248, 245, 0.98) !important;
    box-shadow: 0 8px 30px rgba(34, 30, 26, 0.08) !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2) !important;
  }

  /* Force the top section to be full width */
  .elementor-541 .elementor-element.elementor-element-e171d60 {
    margin: 0 !important;
    padding: 10px 15px !important;
    /* Restored premium padding height */
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
  }

  /* Force row flex direction and space-between */
  .elementor-541 .elementor-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Specific column adjustments to align logo left and menu button right */
  .elementor-541 .elementor-element.elementor-element-e8bedb8.elementor-column {
    width: 60% !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .elementor-541 .elementor-element.elementor-element-0330bf2.elementor-column {
    width: 40% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Ensure widget populated wrapper does not stretch column width */
  .elementor-541 .elementor-element.elementor-element-e8bedb8.elementor-column .elementor-widget-wrap,
  .elementor-541 .elementor-element.elementor-element-e8bedb8>.elementor-element-populated,
  .elementor-541 .elementor-element.elementor-element-e8bedb8.elementor-column.elementor-element[data-element_type="column"]>.elementor-widget-wrap.elementor-element-populated {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .elementor-541 .elementor-element.elementor-element-0330bf2.elementor-column .elementor-widget-wrap,
  .elementor-541 .elementor-element.elementor-element-0330bf2>.elementor-element-populated,
  .elementor-541 .elementor-element.elementor-element-0330bf2.elementor-column.elementor-element[data-element_type="column"]>.elementor-widget-wrap.elementor-element-populated {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Remove default margins/padding on Elementor widgets to prevent vertical bloating */
  .elementor-541 .elementor-widget {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Hide search bar on mobile */
  .elementor-541 .elementor-element.elementor-element-4e2982c {
    display: none !important;
  }

  /* Override image/logo sizes and restrict max-heights */
  .elementor-541 .elementor-element.elementor-element-260ec24 img.logo-main-img,
  .elementor-541.nav-scrolled .elementor-element.elementor-element-260ec24 img.logo-main-img {
    height: 38px !important;
    /* Restored size */
    max-height: 38px !important;
    width: auto !important;
    min-width: 110px !important;
    /* Make logo visible and premium */
    margin: 0 !important;
    display: block !important;
    object-fit: contain !important;
  }

  /* Toggle button clean layout - added fixed sizes to prevent collapse */
  .elementor-541 .elementor-element.elementor-element-2e9286a .hfe-nav-menu__toggle {
    margin: 0 0 0 auto !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    /* Restored size */
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .elementor-541 .hfe-nav-menu-icon,
  .elementor-541 .hfe-nav-menu-icon i {
    font-size: 24px !important;
    /* Restored size */
    color: #221e1a !important;
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
    text-align: center !important;
  }

  /* Premium Floating Dropdown Menu Card */
  .elementor-541 nav.hfe-nav-menu__layout-horizontal {
    position: fixed !important;
    top: 76px !important;
    /* Sits just below the rounded navbar */
    left: 15px !important;
    right: 15px !important;
    width: calc(100vw - 30px) !important;
    background: rgba(253, 251, 247, 0.98) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(197, 168, 128, 0.25) !important;
    box-shadow: 0 20px 50px rgba(34, 30, 26, 0.15) !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    z-index: 99998 !important;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: block !important;
  }

  /* Active state with slide-fade transition */
  .elementor-541 nav.hfe-nav-menu__layout-horizontal.hfe-active-menu {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }

  .elementor-541 nav.hfe-nav-menu__layout-horizontal ul.hfe-nav-menu {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .elementor-541 nav.hfe-nav-menu__layout-horizontal .menu-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 2px 0 !important;
  }

  .elementor-541 nav.hfe-nav-menu__layout-horizontal .menu-item a.hfe-menu-item {
    display: block !important;
    text-align: center !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    color: #221e1a !important;
    padding: 14px 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.08) !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
  }

  .elementor-541 nav.hfe-nav-menu__layout-horizontal .menu-item:last-child a.hfe-menu-item {
    border-bottom: none !important;
  }

  /* Premium Hover / Active Highlighting */
  .elementor-541 nav.hfe-nav-menu__layout-horizontal .menu-item a.hfe-menu-item:hover,
  .elementor-541 nav.hfe-nav-menu__layout-horizontal .current-menu-item a.hfe-menu-item {
    color: #c5a880 !important;
    background-color: rgba(197, 168, 128, 0.06) !important;
    border-bottom-color: transparent !important;
  }

  /* Fix huge paddings and min-heights on mobile sections */
  .premium-hero-canva {
    min-height: auto !important;
    padding: 100px 5% 50px 5% !important;
  }

  .premium-features-canva {
    padding: 50px 5% !important;
  }

  .premium-about-canva {
    padding: 50px 5% !important;
  }

  .premium-services-section {
    padding: 50px 0 !important;
  }

  .up-services-section {
    padding: 50px 5% !important;
  }

  /* Override inline style paddings on mobile */
  .elementor-section.elementor-top-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* Specifically target the product gallery section */
  .elementor-section.elementor-element-7110b86c {
    padding: 50px 0 !important;
  }

  /* Specifically target the contact-us section outer padding */
  #contact-us {
    padding: 50px 15px !important;
  }

  /* Fix inner section padding on mobile (like the Embellishments section) */
  .elementor-section.elementor-inner-section {
    padding: 25px 15px !important;
  }

  /* Center the floating badge on mobile so it aligns with the centered hero image */
  .canva-floating-badge {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: -20px !important;
    padding: 15px 25px !important;
    width: max-content !important;
  }

  /* Center the about section image on mobile */
  .canva-about-image-wrapper {
    justify-content: center !important;
    margin-top: 30px !important;
  }

  /* Prevent cutting off the hexagon hero image */
  .premium-hero-canva {
    overflow: visible !important;
  }

  .canva-hero-image-wrapper {
    overflow: visible !important;
  }

  .canva-hero-model {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    width: 90% !important;
    height: auto !important;
  }

  /* Force masked images in the profile/intro section to remain square so their hexagon masks don't clip */
  .elementor-260 .elementor-element.elementor-widget-image .elementor-widget-container img {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Disable Elementor desktop negative margin on mobile to prevent overlapping */
  .elementor-260 .elementor-element.elementor-element-a2118aa {
    margin-top: 0px !important;
    padding: 20px !important;
  }
}

/* ============================================================
   BIRD COMPANION SPEECH BUBBLE INTERACTION SYSTEM
   ============================================================ */
.bird-speech-bubble-container {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99998;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.bird-speech-bubble {
  position: relative;
  background: rgba(253, 251, 247, 0.98);
  border: 1.5px solid rgba(197, 168, 128, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 12px 18px;
  max-width: 280px;
  min-width: 140px;
  box-shadow: 0 10px 30px rgba(197, 168, 128, 0.2), 0 1px 3px rgba(0, 0, 0, 0.05);
  transform: scale(0.9) translateY(10px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  transform-origin: bottom center;
}

.bird-speech-bubble.active {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.bird-speech-bubble-inner {
  font-family: var(--font-sans, "Outfit", sans-serif);
  font-size: 13px;
  line-height: 1.45;
  color: #3d372c;
  font-weight: 500;
  text-shadow: none;
  text-align: center;
  position: relative;
  z-index: 2;
}

.bird-speech-bubble-arrow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid rgba(197, 168, 128, 0.4);
  z-index: 2;
}

.bird-speech-bubble-arrow::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid rgba(253, 251, 247, 0.98);
}

/* Ultra Premium About Us Cards */
.canva-about-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.canva-about-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.canva-about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #c5a059 0%, #0f172a 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.canva-about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.canva-about-card:hover::before {
  opacity: 1;
}

.canva-about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  color: #c5a059;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.canva-about-card:hover .canva-about-icon {
  background: #0f172a;
  color: #ffffff;
  transform: scale(1.05);
}

.canva-about-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  margin-top: 0;
}

.canva-about-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #5D7184;
  margin: 0;
}

/* Interactive Bird Companion */
.premium-bird-companion {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  will-change: transform;
}

.premium-bird-companion .bird-wrapper {
  width: 55px;
  height: 55px;
  position: relative;
}

.premium-bird-companion .bird-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bird-speech-bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999999;
  will-change: transform;
  display: flex;
  justify-content: center;
}

.bird-speech-bubble {
  background: white;
  border-radius: 15px;
  padding: 10px 15px;
  max-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  text-align: center;
}

.bird-speech-bubble.active {
  opacity: 1;
  transform: translateY(0);
}

.bird-speech-bubble-arrow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
}