/* ==========================================================================
   OFFICIAL ARCHITECTURAL COLOR SYSTEM: Nature, Luxury & Modern Living
   - Deep Forest (#102C22), Olive Sage (#687B68), Champagne Gold (#C9A23A)
   - Warm Beige (#E8DDCC), Soft Ivory (#F8F6F0), Warm White (#FFFDF8)
   - Charcoal (#202321), Warm Gray (#6F706B), Black Green (#0B1712), Taupe (#D8D0C3)
   ========================================================================== */

:root {
  /* 1. Official Primary Palette Tokens */
  --c-deep-forest:     #102C22;   /* Primary Brand (25%): Header, Hero, Navigation, Buttons */
  --c-olive-sage:      #687B68;   /* Secondary Sections, Cards, Accents (5%) */
  --c-champagne-gold:  #C9A23A;   /* Accent, Buttons, Highlights, Icons, Dividers (3%) */
  --c-warm-beige:      #E8DDCC;   /* Section Background, Soft Areas (10%) */
  --c-soft-ivory:      #F8F6F0;   /* Main Background, Clean Layouts (45%) */
  --c-warm-white:      #FFFDF8;   /* Cards, Forms, Surfaces (7%) */
  --c-charcoal:        #202321;   /* Primary Text, Headings (5%) */
  --c-warm-gray:       #6F706B;   /* Secondary Text, Body Copy */
  --c-black-green:     #0B1712;   /* Footer, Dark Sections, Premium Look */
  --c-taupe:           #D8D0C3;   /* Borders, Lines, Dividers */

  /* Semantic Aliases */
  --deep-forest:       var(--c-deep-forest);
  --olive-sage:        var(--c-olive-sage);
  --champagne-gold:    var(--c-champagne-gold);
  --warm-beige:        var(--c-warm-beige);
  --soft-ivory:        var(--c-soft-ivory);
  --warm-white:        var(--c-warm-white);
  --charcoal:          var(--c-charcoal);
  --warm-gray:         var(--c-warm-gray);
  --black-green:       var(--c-black-green);
  --taupe:             var(--c-taupe);

  /* Functional Theme Mapping: Use Surface Color Warm White (#FFFDF8) for Background */
  --paper:             var(--c-warm-white);       /* Surface color Warm White (#FFFDF8) */
  --surface:           var(--c-warm-white);       /* Surface color Warm White (#FFFDF8) */
  --ink:               var(--c-charcoal);
  --teal:              var(--c-deep-forest);
  --gold:              var(--c-champagne-gold);
  --slate:             var(--c-warm-gray);
  --mist:              var(--c-warm-beige);
  --taupe:             var(--c-taupe);
  --clay:              var(--c-warm-gray);

  --brand-cta:         var(--c-deep-forest);
  --brand-cta-hover:   var(--c-black-green);
  --brand-cta-text:    var(--c-warm-white);
  --brand-accent:      var(--c-champagne-gold);
  --card-bg-1:         var(--c-warm-beige);
  --card-bg-2:         var(--c-warm-white);
  --card-bg-surface:   var(--c-warm-white);
  --footer-bg:         var(--c-black-green);
  --footer-text:       var(--c-soft-ivory);
  --nav-badge-bg:      var(--c-warm-white);
  --divider-line:      var(--c-taupe);
}

/* Smooth Theme Palette Transitions */
html,
body,
.nav-capsule,
.nav-capsule-cta,
.nav-logo-badge,
.footer-reveal-container,
.service-stack-card {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background-color: var(--surface, #FFFDF8);
  color: var(--ink, #202321);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overscroll-behavior-y: none;
}

/* Explicit Dark Aesthetic for All Inner Pages */
body.bg-\[\#0c0b0a\],
body.bg-\[\#0b0b0a\],
body.bg-\[\#080808\],
body[class*="bg-[#0"] {
  background-color: #0c0b0a !important;
  color: #ffffff !important;
}

body.bg-\[\#0c0b0a\] [data-scroll-container],
body.bg-\[\#0b0b0a\] [data-scroll-container],
body.bg-\[\#080808\] [data-scroll-container],
body[class*="bg-[#0"] [data-scroll-container] {
  background-color: #0c0b0a !important;
}

/* Never use stark #FFFFFF for page backgrounds on index.html - always use the Surface Color (#FFFDF8) */
body.bg-paper .bg-white,
body.bg-paper .about-us-section,
body.bg-paper .featured-showcase-section {
  background-color: var(--surface, #FFFDF8) !important;
}

/* Lenis Luxury Smooth Scrolling Engine */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Custom Luxury Gold & Charcoal Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #f8f6f0;
}

::-webkit-scrollbar-thumb {
  background: #C9A23A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b5952f;
}

html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-smooth body {
  overflow: hidden;
}

[data-scroll-container] {
  min-height: 100vh;
}

/* Header & Navigation */
.nav-link {
  position: relative;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-center-bar {
  position: relative;
}

.nav-center-bar::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hamburger 3-line icon */
.hamburger-line {
  display: block;
  height: 1.5px;
  width: 24px;
  background: #ffffff;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

[data-hamburger][aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

[data-hamburger][aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

[data-hamburger][aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.menu-overlay {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.menu-item-link {
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Dim other links on hover for luxury studio focus */
.menu-links-list:hover .menu-item-link:not(:hover) {
  opacity: 0.35;
}

.menu-preview-frame {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), 0 18px 36px -18px rgba(0, 0, 0, 0.7);
  will-change: transform;
}

/* Hero Section & Dynamic Scroll Resize Engine */
.hero-section-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--paper);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-slider-container,
[data-hero-container] {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0 !important;
  background-color: var(--ink);
  transform-origin: center center;
  will-change: transform;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* Luxury Hero Text Slides (prevents FOUC and overlapping text during initial DOM loading) */
.hero-text-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.hero-text-slide:not([data-hero-text-slide="0"]) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-text-slide[data-hero-text-slide="0"] {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

/* Full-Screen Parallax Background Slide Architecture */
.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  will-change: transform;
}

.hero-bg-slide:not([data-hero-bg-slide="0"]) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-bg-slide[data-hero-bg-slide="0"] {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.hero-bg-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  will-change: transform;
}

.hero-bg-img {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* Editorial Typography Masked Reveals */
.hero-line-mask {
  display: block;
  overflow: hidden;
  line-height: 1.12;
  padding-bottom: 0.06em;
}

.hero-line-inner {
  display: block;
  will-change: transform;
  transform: translateY(0%);
}

.hero-tagline,
.hero-subtitle {
  will-change: transform, opacity;
}

.hero-slide-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;
}

.hero-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.25) 68%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Mid HUD / Track Line */
.hud-track {
  position: relative;
  width: 100%;
  height: .7px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 9999px;
  overflow: hidden;
  transition: background 0.3s ease, height 0.2s ease;
}

.hud-track:hover {
  background: rgba(255, 255, 255, 0.45);
  height: 3px;
}

.hud-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 4px rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  pointer-events: none;
  will-change: width, opacity;
}

.hud-link {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.hud-link:hover {
  transform: translateX(5px);
}

/* Scroll Arrow Bounce */
@keyframes softBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: softBounce 2.2s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.scroll-arrow:hover {
  transform: scale(1.15) translateY(4px);
}

/* Project Cards / Horizontal Work Panels */
.featured-showcase-section {
  position: relative;
  width: 100%;
  background: var(--surface, #FFFDF8);
}

.featured-pinned-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 1.5vh !important;
  padding-bottom: 0.5vh !important;
}

.featured-mobile-header {
  position: relative;
  width: 100%;
  background: transparent;
}

@media (max-width: 768px) {
  .featured-pinned-wrapper {
    padding-top: 0 !important;
    padding-bottom: 0.65rem !important;
    justify-content: flex-start !important;
    gap: 0.35rem;
  }

  .featured-mobile-header {
    padding-top: 5.25rem !important; /* Clears fixed top nav logo & menu badges */
    padding-bottom: 0 !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .featured-horizontal-container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    min-height: 0;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .featured-cards-track {
    gap: 0.85rem !important;
    padding-left: 1.25rem !important;
    padding-right: 3rem !important;
  }

  .featured-intro-column {
    display: none !important;
  }

  .horizontal-work-card {
    width: 76vw !important;
    max-width: 310px !important;
    height: 54vh !important;
    min-height: 280px !important;
    max-height: 400px !important;
    border-radius: 8px !important;
  }

  .horizontal-work-card .card-content-floating {
    bottom: 1.25rem !important;
    left: 1.25rem !important;
    right: 1.25rem !important;
  }
}

.featured-cards-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}

.featured-intro-column {
  flex-shrink: 0;
  width: 86vw;
  max-width: 820px;
  height: 66vh;
  min-height: 380px;
  max-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 2rem;
  border-right: 1px solid rgba(239, 232, 220, 0.9);
}

@media (min-width: 768px) {
  .featured-intro-column {
    width: 44vw;
    max-width: 440px;
    height: 70vh;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .featured-intro-column {
    width: 38vw;
    max-width: 480px;
    height: 72vh;
    padding-right: 3rem;
  }
}

.horizontal-work-card {
  position: relative;
  flex-shrink: 0;
  width: 78vw;
  max-width: 520px;
  height: 66vh;
  min-height: 380px;
  max-height: 620px;
  overflow: hidden;
  border-radius: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

@media (min-width: 768px) {
  .horizontal-work-card {
    width: 44vw;
    height: 70vh;
    border-radius: 0;
  }
}

@media (min-width: 1200px) {
  .horizontal-work-card {
    width: 32vw;
    height: 72vh;
  }
}

.horizontal-work-card:hover {
  transform: translateY(-5px);
}

.horizontal-work-card img.card-media {
  position: absolute;
  top: 0;
  left: -15%;
  width: 130%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}

/* Card Bottom Gradient Overlay (06 Image Style: Deep Forest & Black Green Atmospheric Shading) */
.card-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(11, 23, 18, 0) 0%, rgba(16, 44, 34, 0.55) 48%, rgba(11, 23, 18, 0.92) 100%);
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.5s ease, background 0.5s ease;
}

.horizontal-work-card:hover .card-bottom-gradient {
  background: linear-gradient(180deg, rgba(11, 23, 18, 0) 0%, rgba(16, 44, 34, 0.70) 45%, rgba(11, 23, 18, 0.98) 100%);
}

.card-title-group {
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff !important;
}

.card-title-group h3,
.horizontal-work-card .card-title-group h3,
.work-panel .card-title-group h3 {
  color: #ffffff !important;
  font-family: "Outfit", -apple-system, sans-serif !important;
  letter-spacing: -0.02em !important;
  font-weight: 400 !important;
}

.card-title-group p,
.card-content-floating,
.horizontal-work-card .card-title-group p,
.work-panel .card-title-group p {
  color: #ffffff !important;
  font-family: "Outfit", -apple-system, sans-serif !important;
}

.horizontal-work-card:hover .card-title-group {
  transform: translate3d(0, -4px, 12px);
}

.card-plus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  border: none !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none !important;
  flex-shrink: 0;
  cursor: pointer;
}

.card-plus-btn svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.horizontal-work-card:hover .card-plus-btn {
  background: #ffffff;
  color: #0b140f !important;
  border: none !important;
  transform: scale(1.08);
}

.horizontal-work-card:hover .card-plus-btn svg {
  transform: rotate(90deg);
}

.work-panel {
  position: relative;
  width: 88vw;
  max-width: 1440px;
  margin: 0 auto 3.5rem auto;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: none !important;
}

.work-panel:hover {
  box-shadow: none !important;
}

/* ========================================================
   Projects Section: Dual-Row Staggered Card Slider (FORMED Reference Design)
   ======================================================== */
.projects-marquee-section {
  position: relative;
  width: 100%;
  background: #1a1a1a !important;
  overflow: hidden;
  z-index: 2;
  margin-top: -2px;
  border: none !important;
  outline: none !important;
}

.projects-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.projects-marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.projects-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

/* Row 1 moves Left */
.projects-marquee-row.row-left .projects-marquee-track {
  animation: marqueeLeft 44s linear infinite;
}

/* Row 2 moves Right */
.projects-marquee-row.row-right .projects-marquee-track {
  animation: marqueeRight 48s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Individual Project Slider Image Cards (Pure Imagery) */
.project-slider-image-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(280px, 24vw, 380px);
  aspect-ratio: 16 / 11;
  border-radius: 0;
  overflow: hidden;
  display: block;
  background: #1e1d1b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .project-slider-image-card {
    width: clamp(320px, 26vw, 420px);
    border-radius: 0;
  }
}

.project-slider-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.project-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  display: block;
}

.project-slider-image-card:hover .project-slider-img {
  transform: scale(1.06);
}

.project-slider-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.project-slider-image-card:hover .project-slider-sheen {
  opacity: 0.2;
}

/* Card Backside LIVCO Logo & Section Watermark */
.card-backside-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  max-width: 320px;
  height: auto;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  z-index: 1;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.horizontal-work-card:hover .card-backside-logo,
.work-panel:hover .card-backside-logo {
  opacity: 0.30;
  transform: translate(-50%, -50%) scale(1.06);
}

.section-watermark-logo {
  position: absolute;
  right: 0%;
  top: -20%;
  width: 380px;
  max-width: 45vw;
  height: auto;
  pointer-events: none;
  opacity: 0.045;
  user-select: none;
  z-index: 0;
}

/* Featured Section - Big Editorial Headline (Matching Reference Style) */
.editorial-title-container {
  position: relative;
  width: 100%;
  padding-top: 0.75rem;
}

.editorial-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 7.8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #232323;
  font-weight: 400;
}

/* Editorial Split Text 3D Letter Flip */
.editorial-char-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  perspective: 1200px;
  -webkit-perspective: 1200px;
  line-height: inherit;
}

.editorial-char {
  display: inline-block;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
}

.editorial-script-overlay {
  font-family: 'Pinyon Script', 'Alex Brush', cursive;
  position: absolute;
  bottom: -0.18em;
  left: 24%;
  font-size: 1.22em;
  font-weight: 400;
  text-transform: none;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  transform: rotate(-3.5deg);
  will-change: opacity, transform;
}

.script-ink-track {
  display: inline-block;
  color: #C9A23A;
  background: linear-gradient(135deg, #F5D77F 0%, #C9A23A 40%, #BF9420 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  will-change: clip-path, transform;
}

@media (max-width: 768px) {
  .editorial-hero-title {
    font-size: clamp(2.3rem, 10vw, 3.8rem);
    line-height: 0.92;
  }

  .editorial-script-overlay {
    left: 6%;
    bottom: -0.25em;
    font-size: 1.12em;
  }
}

@media (max-width: 768px) {
  .work-panel {
    width: 93vw;
    margin-bottom: 2rem;
    border-radius: 0 !important;
  }
}

.work-panel img {
  transform-origin: center center;
  border-radius: 0 !important;
}

.fluted-glass-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 0 !important;
  z-index: 2;
}

.work-panel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 !important;
  transform-origin: center center;
}

/* Mosaic Glass Shimmer Overlay */
.mosaic-glass-sheen {
  position: absolute;
  inset: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(135deg,
      transparent 15%,
      rgba(255, 255, 255, 0.03) 30%,
      rgba(255, 255, 255, 0.26) 50%,
      rgba(255, 255, 255, 0.05) 68%,
      transparent 85%);
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0;
  transform: translateY(40%) rotate(-25deg);
  transition: opacity 0.5s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.work-panel:hover .mosaic-glass-sheen {
  opacity: 1;
  transform: translateY(-40%) rotate(-15deg);
}

.see-work {
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.work-panel:hover .see-work {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Luxury Interactive Round Arrow Cursor */
.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #232323;
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28), 0 0 16px rgba(212, 175, 55, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.cursor-label.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cursor-label-arrow {
  width: 20px;
  height: 20px;
  stroke: #232323;
  stroke-width: 2.2;
  transition: transform 0.25s ease;
}

.cursor-label.is-visible .cursor-label-arrow {
  transform: translate(1px, -1px);
}

.cursor-label-text {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 1px;
  color: #232323;
}

.filter-btn.is-active {
  background: var(--ink);
  color: var(--paper);
}

input,
textarea,
select {
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--ink);
}

@media (max-width: 1023px) {
  .cursor-label {
    display: none;
  }

  .see-work {
    opacity: 1;
    transform: none;
  }
}

/* Header & Brand Dynamic Background Adaptation */
[data-fixed-bottom-brand] {
  z-index: 50;
  pointer-events: none;
  transform-origin: bottom left;
  will-change: transform;
}

/* Logo Badge Container (Increased Size +15%) */
.nav-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  box-shadow: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  pointer-events: auto;
  text-decoration: none;
}

.nav-logo-badge:hover {
  transform: scale(1.06);
}

.nav-logo-badge img {
  height: 45px;
  width: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo-badge:hover img {
  transform: scale(1.05);
}

/* Modern Frosted Glass Capsule Navigation (Borderless, Crisp, No Shadows) */
.nav-capsule {
  display: inline-flex;
  align-items: center;
  background: rgba(25, 25, 25, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: none !important;
  border-radius: 9999px;
  padding: 5px 5px 5px 18px;
  box-shadow: none !important;
  gap: 16px;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.nav-capsule:hover {
  border: none !important;
  background: rgba(25, 25, 25, 0.75);
  box-shadow: none !important;
}

.nav-capsule-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-capsule-menu-btn:hover {
  opacity: 0.85;
}

.nav-capsule-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 17px;
}

.nav-capsule-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, background-color 0.2s ease;
}

.nav-capsule-menu-btn:hover .nav-capsule-lines span:first-child {
  transform: translateY(-1px);
}

.nav-capsule-menu-btn:hover .nav-capsule-lines span:last-child {
  transform: translateY(1px);
}

.nav-capsule-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-cta, #102C22);
  color: var(--brand-cta-text, #ffffff) !important;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 20px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none !important;
  white-space: nowrap;
}

.nav-capsule-cta:hover {
  background: var(--brand-cta-hover, #0B1712);
  transform: translateY(-1px) scale(1.02);
  box-shadow: none !important;
}

.nav-capsule-cta:active {
  transform: translateY(0) scale(0.98);
}

/* Header Transparent Container */
[data-intro-bar] {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Progressive Blur Gradient Navigation Background */
.blur-gradient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.blur-layer {
  position: absolute;
  inset: 0;
  opacity: 1;
  border-radius: 0;
  pointer-events: none;
}

.l1 {
  z-index: 1;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 37.5%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 37.5%);
  -webkit-backdrop-filter: blur(0.375px);
  backdrop-filter: blur(0.375px);
}

.l2 {
  z-index: 2;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 0) 50%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 0) 50%);
  -webkit-backdrop-filter: blur(0.75px);
  backdrop-filter: blur(0.75px);
}

.l3 {
  z-index: 3;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 62.5%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 62.5%);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

.l4 {
  z-index: 4;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 0) 75%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 0) 75%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.l5 {
  z-index: 5;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 87.5%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 87.5%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.l6 {
  z-index: 6;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.l7 {
  z-index: 7;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 87.5%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 87.5%);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.l8 {
  z-index: 8;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 87.5%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 87.5%, rgba(0, 0, 0, 1) 100%);
  -webkit-backdrop-filter: blur(48px);
  backdrop-filter: blur(48px);
}

[data-intro-bar] a,
[data-intro-bar] button,
.nav-link {
  pointer-events: auto;
}

/* Header Middle Contact Info & Download Profile Tooltip */
[data-header-contact-info] a,
[data-header-contact-info] span {
  color: #ffffff;
  transition: color 0.3s ease, opacity 0.2s ease;
}

.download-profile-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download-profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.download-profile-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(1px);
}

.download-profile-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  pointer-events: none;
  background: #232323;
  color: #F8F3EB !important;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.download-profile-wrapper:hover .download-profile-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

[data-intro-bar].is-dark-text [data-header-contact-info] a,
[data-intro-bar].is-dark-text [data-header-contact-info] span {
  color: #202321 !important;
}

[data-intro-bar].is-dark-text .download-profile-btn {
  background: rgba(23, 22, 25, 0.08);
  border-color: rgba(23, 22, 25, 0.2);
  color: #202321 !important;
}

[data-intro-bar].is-dark-text .download-profile-btn:hover {
  background: rgba(23, 22, 25, 0.15);
}

[data-intro-bar].is-dark-text a:not(.nav-capsule-cta),
[data-intro-bar].is-dark-text button,
[data-intro-bar].is-dark-text .nav-link,
[data-fixed-bottom-brand].is-dark-text h1,
[data-fixed-bottom-brand].is-dark-text span {
  color: #202321 !important;
}

[data-intro-bar].is-dark-text .hamburger-line {
  background-color: #202321 !important;
}

/* Vision Approach Radial Spokes Section (Locked to exact Viewport Center on Desktop, Content Height on Mobile) */
#vision-approach {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: none !important;
  outline: none !important;
}

@media (max-width: 768px) {
  #vision-approach {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    padding: 0 !important;
  }

  .vision-spokes-container {
    width: 98vw !important;
    max-width: 98vw !important;
    height: 98vw !important;
    max-height: 98vw !important;
  }

  [data-vision-content-wrapper] {
    min-height: 280px !important;
    height: auto !important;
  }

  .vision-title-card {
    position: absolute !important;
  }
}

.vision-spokes-container {
  transform-origin: center center;
  will-change: transform;
}

.vision-spoke-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 0;
  transition: stroke 0.3s ease;
}

.vision-num {
  font-feature-settings: "tnum";
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
}

/* Editorial Dark Luxury Footer */
.luxury-editorial-footer {
  background: #0f1011;
  color: #e5e5e5;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer-nav-link {
  display: inline-block;
  color: #e5e5e5;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav-link:hover {
  color: #C9A23A;
  transform: translateX(3px);
}

.footer-embossed-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 13.5vw, 13.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 0.85;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  user-select: none;
  pointer-events: auto;
  color: #17181a;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.075), -1.5px -1.5px 2.5px rgba(0, 0, 0, 0.95);
  margin-top: 2.5rem;
  margin-bottom: -1rem;
  opacity: 0.95;
  cursor: default;
  transition: color 0.45s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-embossed-wordmark:hover {
  color: #C9A23A;
  text-shadow: 0 0 35px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2), 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.footer-wordmark-char {
  display: inline-block;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: color, text-shadow, transform;
}

.footer-wordmark-char:hover {
  color: #F8F3EB !important;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 50px rgba(212, 175, 55, 0.5), 1px 1px 1px rgba(0, 0, 0, 0.9) !important;
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 768px) {
  .footer-embossed-wordmark {
    font-size: clamp(2.2rem, 11.5vw, 5rem);
    letter-spacing: 0.04em;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

/* Arch CTA Showcase Section (Reference Design) */
.cta-arch-section {
  position: relative;
  width: 100%;
  background: #0d0e0f;
  overflow: hidden;
}

.cta-arch-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(55, 58, 62, 0.45) 0%, rgba(13, 14, 15, 0.95) 70%);
  pointer-events: none;
  z-index: 1;
}

.cta-arch-headline {
  font-family: "Cormorant Garamond", serif;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.85);
  letter-spacing: 0.05em;
}

.cta-arch-frame {
  border-radius: 9999px 9999px 0 0;
  box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.18);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-arch-card:hover .cta-arch-frame {
  transform: translateY(-8px);
  box-shadow: 0 -20px 65px rgba(0, 0, 0, 0.95), 0 0 50px rgba(212, 175, 55, 0.35);
}

.cta-arch-img {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-arch-card:hover .cta-arch-img {
  transform: scale(1.08);
}

/* ========================================================
   Persistent Luxury Floating Card on Hero (Reference Design)
   ======================================================== */
.hero-centerpiece-wrap {
  perspective: 1400px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  z-index: 30;
  top: 58% !important;
  left: 50% !important;
}

@media (max-width: 768px) {
  .hero-centerpiece-wrap {
    top: 60% !important;
    left: 50% !important;
  }
}

.hero-floating-card {
  perspective: 1200px;
  transform-style: preserve-3d;
  width: 250px !important;
  height: 280px !important;
  min-width: 250px !important;
  min-height: 280px !important;
  max-width: 250px !important;
  max-height: 280px !important;
  border-radius: 0px !important;
  border: none !important;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(29, 44, 35, 0.5) 40%, rgba(18, 28, 22, 0.94) 100%) !important;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  box-shadow: none !important;
  will-change: transform;
  z-index: 10 !important;
  position: relative !important;
  padding-top: 14px !important;
}

.hero-floating-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 0px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.38) 0%, rgba(212, 175, 55, 0.12) 50%, transparent 75%);
  filter: blur(32px);
  z-index: -1;
  pointer-events: none;
}

.hero-floating-card:hover {
  box-shadow: none !important;
}

.hero-card-headline-wrap {
  perspective: 1000px;
  transform-style: preserve-3d;
  text-align: right !important;
  position: relative;
}

.hero-card-slide-text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  transform-style: preserve-3d;
  text-align: right !important;
  will-change: transform, opacity;
}

.hero-card-slide-text.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

[data-card-cta-wrap] {
  margin-bottom: 14px !important;
}

.hero-card-project-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 6px 5px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none !important;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: auto;
  box-shadow: none !important;
}

.hero-card-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5DE98 0%, #C9A23A 55%, #AA7C11 100%);
  color: #0b140f;
  box-shadow: none !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card-project-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  transform: translateY(-1.5px);
  box-shadow: none !important;
}

.hero-card-project-btn:hover .hero-card-btn-icon {
  background: #ffffff;
  color: #0b140f;
  transform: translateX(2px) scale(1.05);
  box-shadow: none !important;
}

.hero-card-dash {
  flex: 1;
  height: 3.5px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-card-dash:hover {
  background: rgba(255, 255, 255, 0.38);
}

.hero-dash-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 9999px;
  transform-origin: left center;
  transform: scaleX(0);
  box-shadow: none !important;
  will-change: transform;
}

.hero-overlapping-title-wrap {
  perspective: 1400px;
  perspective-origin: 35% 50%;
  transform-style: preserve-3d;
  width: 520px !important;
  max-width: 92vw !important;
  left: -220px !important;
  top: 18% !important;
  z-index: 60 !important;
  position: absolute !important;
  pointer-events: none !important;
  transform: translateZ(55px);
  filter: none !important;
}

@media (max-width: 768px) {
  .hero-overlapping-title-wrap {
    width: 380px !important;
    left: -40px !important;
    top: 12% !important;
  }
}

@media (max-width: 480px) {
  .hero-overlapping-title-wrap {
    width: 310px !important;
    left: -15px !important;
    top: 8% !important;
  }
}

.hero-overlap-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.hero-overlap-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-editorial-title {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-align: right !important;
  width: 100% !important;
}

.hero-typo-sans-label {
  font-family: "Outfit", sans-serif !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  text-align: right !important;
  margin-left: auto !important;
  display: block !important;
}

.hero-typo-sans-bold {
  font-family: "Outfit", sans-serif !important;
  font-weight: 700 !important;
  font-size: 54px !important;
  line-height: 1.0 !important;
  letter-spacing: -0.03em !important;
  color: #ffffff !important;
  text-shadow: none !important;
  text-align: right !important;
  margin-left: auto !important;
  display: block !important;
}

@media (max-width: 768px) {
  .hero-typo-sans-label {
    font-size: 14px !important;
    letter-spacing: 0.18em !important;
  }

  .hero-typo-sans-bold {
    font-size: 38px !important;
    line-height: 1.05 !important;
  }
}

[data-fixed-bottom-brand] {
  left: 48px !important;
  bottom: 36px !important;
}

[data-fixed-bottom-brand] h1 {
  font-size: 74px !important;
  line-height: 1 !important;
}

[data-fixed-bottom-brand] span:first-child {
  font-size: 74px !important;
}

[data-fixed-bottom-brand] span:last-child {
  font-size: 64px !important;
}

.hero-text-line {
  display: block;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.hero-left-headline {
  display: none;
  opacity: 0;
}

.hero-left-headline.is-active {
  display: block;
  opacity: 1;
}

/* ========================================================
   Editorial Scroll Slider Section: Sticky 40% Left + On-Scroll Slider Right
   ======================================================== */
.editorial-scroll-slider-section {
  position: relative;
  width: 100vw;
  max-width: 100%;
  background: #161513;
  z-index: 5;
}

.editorial-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.editorial-slider-left {
  position: relative;
  width: 40%;
  height: 100%;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.editorial-slider-right-viewport {
  position: relative;
  width: 60%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.editorial-slider-track {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 300%;
  will-change: transform;
}

.editorial-slide-card {
  position: relative;
  width: 33.33333%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-slide-card:last-child {
  border-right: none;
}

.editorial-slide-card:hover .triptych-bg-img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .editorial-scroll-slider-section {
    height: auto !important;
    min-height: auto !important;
  }

  .editorial-slider-container {
    height: auto !important;
    min-height: auto !important;
    flex-direction: column !important;
  }

  .editorial-slider-left {
    width: 100% !important;
    min-height: 70vh !important;
    height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 3rem 1.5rem !important;
  }

  .editorial-slider-right-viewport {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .editorial-slider-track {
    width: 100% !important;
    flex-direction: column !important;
    transform: none !important;
    height: auto !important;
  }

  .editorial-slide-card {
    width: 100% !important;
    min-height: 75vh !important;
    height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 3rem 1.5rem !important;
  }
}

.triptych-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  z-index: 1;
}

.editorial-project-card:hover .triptych-bg-img {
  transform: scale(1.035);
}

.triptych-overlay-kitchen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0.72) 0%, rgba(16, 14, 12, 0.30) 45%, rgba(16, 14, 12, 0.88) 100%);
  z-index: 2;
  transition: opacity 0.5s ease;
}

.triptych-overlay-living {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 15, 14, 0.65) 0%, rgba(16, 15, 14, 0.25) 40%, rgba(16, 15, 14, 0.85) 100%);
  z-index: 2;
  transition: opacity 0.5s ease;
}

.triptych-tag-pill {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: fit-content;
}

.triptych-arc-geometry {
  position: absolute;
  right: -25%;
  top: 15%;
  width: 110%;
  height: auto;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

.triptych-watermark {
  position: absolute;
  bottom: -28px;
  left: 20px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(90px, 11vw, 150px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.14);
  pointer-events: none;
  line-height: 0.85;
  z-index: 1;
}

/* ========================================================
   Process: How We Work Section (Reference Design)
   ======================================================== */
.how-we-work-section {
  position: relative;
  background-color: #F5F1EB !important;
  color: var(--charcoal, #202321) !important;
  z-index: 4;
  border: none !important;
  outline: none !important;
}

.process-card {
  background-color: #FFFDF8;
  border-radius: 20px;
  border: 1px solid rgba(216, 208, 195, 0.65);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.025);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 44, 34, 0.06);
  border-color: rgba(201, 162, 58, 0.45);
}

/* Footer Container (Clean Natural Flow) */
.footer-reveal-container {
  position: relative;
  width: 100%;
  background-color: var(--black-green, #0B1712) !important;
  border-top: 1px solid var(--taupe, #D8D0C3);
}

/* Footer Continuous Scrolling Marquee (Smooth Infinite Ticker) */
.footer-marquee-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}

.footer-marquee-track {
  display: flex !important;
  width: max-content !important;
  flex-wrap: nowrap !important;
  animation: footerMarqueeInfinite 18s linear infinite !important;
  will-change: transform;
}

.footer-marquee-group {
  display: flex !important;
  flex-shrink: 0 !important;
  align-items: center;
}

.footer-marquee-text {
  font-size: 2rem !important;
  line-height: 1.1 !important;
}

@keyframes footerMarqueeInfinite {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* About Us Statement Letter-by-Letter Scrub Reveal */
.about-reveal-statement {
  font-weight: 350 !important;
  letter-spacing: -0.02em;
  line-height: 1.30 !important;
  margin-bottom: 4rem !important; /* +30% increase (from 3rem / 48px to 64px) */
}

@media (min-width: 1024px) {
  .about-reveal-statement {
    line-height: 1.32 !important;
    margin-bottom: 4.25rem !important; /* ~68px */
  }
}

@media (max-width: 640px) {
  .about-reveal-statement {
    font-size: 28px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 2.75rem !important; /* +30% increase (from 2rem / 32px to 44px) */
  }
}

.about-char {
  display: inline-block;
  color: #c8c4bc;
  transition: color 0.15s ease;
  will-change: color;
}

.about-char.is-space {
  display: inline;
}

/* Continuous Fluid Dark-Gold-to-Light-Gold Shimmering Gradient for Footer Headline */
.footer-gold-gradient-title {
  background-image: linear-gradient(
    110deg,
    #855d14 0%,
    #a0731e 14%,
    #d4a838 28%,
    #fff3b8 38%,
    #d4a838 48%,
    #855d14 58%,
    #a0731e 72%,
    #d4a838 82%,
    #fff3b8 90%,
    #d4a838 95%,
    #855d14 100%
  );
  background-size: 200% auto;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: inline-block;
  animation: goldLightFlow 8s linear infinite;
  will-change: background-position;
}

@keyframes goldLightFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* Google Map Dark Architectural Styling for Contact Page */
.contact-map-frame {
  filter: invert(90%) hue-rotate(180deg) contrast(110%) grayscale(20%);
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-map-container:hover .contact-map-frame {
  filter: invert(0%) hue-rotate(0deg) contrast(100%) grayscale(0%);
}

/* Projects Page Refined Dark Design System */
.project-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.project-filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.project-filter-btn.is-active {
  background: #C9A23A !important;
  color: #0c0b0a !important;
  border-color: #C9A23A !important;
  font-weight: 500;
}

/* Absolute Static Images on Projects Page - Zero Hover Distortion or Zoom */
.project-card img {
  transform: none !important;
  transition: none !important;
  filter: none !important;
  backface-visibility: hidden;
}

.project-card:hover img {
  transform: none !important;
  transition: none !important;
  filter: none !important;
}

/* Luxury Living Room Hero Banner Section */
.hero-banner-wrap {
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}

.hero-banner-wrap h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.015em;
}

[data-intro-bar].nav-scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* ==========================================================================
   Wrightsferry Mansion & Dynamic Theme Component Styling
   ========================================================================== */

/* 1. Footer Theme Adaptation (Wrightsferry Deep Navy / Deep Green) */
.footer-reveal-container {
  background: var(--footer-bg, #0B1712) !important;
  color: var(--footer-text, #F8F6F0) !important;
}

:root:not([data-theme="original"]) .footer-reveal-container p,
:root:not([data-theme="original"]) .footer-reveal-container span:not(.footer-marquee-text) {
  color: var(--stone-beige, #E8DDCC);
}

:root:not([data-theme="original"]) .footer-reveal-container a {
  color: var(--warm-ivory, #F8F6F0);
  transition: color 0.2s ease;
}

:root:not([data-theme="original"]) .footer-reveal-container a:hover {
  color: var(--antique-gold, #C9A23A) !important;
}

:root:not([data-theme="original"]) .footer-marquee-strip {
  background: var(--deep-forest, #102C22) !important;
}

.footer-reveal-container {
  background: var(--black-green, #0B1712) !important;
  color: var(--soft-ivory, #F8F6F0) !important;
}

.footer-reveal-container p,
.footer-reveal-container span:not(.footer-marquee-text) {
  color: var(--taupe, #D8D0C3);
}

.footer-reveal-container a {
  color: var(--soft-ivory, #F8F6F0);
  transition: color 0.25s ease;
}

.footer-reveal-container a:hover {
  color: var(--champagne-gold, #C9A23A) !important;
}

.footer-marquee-strip {
  background: var(--deep-forest, #102C22) !important;
}

.footer-marquee-text {
  color: var(--soft-ivory, #F8F6F0) !important;
}

.footer-reveal-container .rounded-full.bg-\[\#202321\] {
  background: var(--champagne-gold, #C9A23A) !important;
  color: var(--warm-white, #FFFDF8) !important;
}

.footer-reveal-container .rounded-full.bg-\[\#202321\]:hover {
  background: var(--deep-forest, #102C22) !important;
}

/* 2. Services Stacking Cards Architecture (Warm Beige & Warm White Alternating) */
.service-stack-card[data-stack-card="0"] { background: var(--warm-beige, #E8DDCC) !important; }
.service-stack-card[data-stack-card="1"] { background: var(--warm-white, #FFFDF8) !important; }
.service-stack-card[data-stack-card="2"] { background: var(--warm-beige, #E8DDCC) !important; }
.service-stack-card[data-stack-card="3"] { background: var(--warm-white, #FFFDF8) !important; }
.service-stack-card[data-stack-card="4"] { background: var(--warm-beige, #E8DDCC) !important; }
.service-stack-card[data-stack-card="5"] { background: var(--warm-white, #FFFDF8) !important; }

.service-stack-card h2,
.service-stack-card span.font-sans,
.service-stack-card span.font-serif {
  color: var(--charcoal, #202321) !important;
}

.service-stack-card p {
  color: var(--warm-gray, #6F706B);
}

.service-stack-card a {
  color: var(--deep-forest, #102C22) !important;
}

.service-stack-card a:hover {
  color: var(--champagne-gold, #C9A23A) !important;
}

/* Responsive Stacking Behavior: Natural flow on mobile/tablet, sleek stacked deck on desktop */
@media (max-width: 1023px) {
  .service-stack-card {
    position: relative !important;
    top: auto !important;
  }
}

@media (min-width: 1024px) {
  .service-stack-card {
    position: sticky !important;
    max-height: calc(100vh - 120px);
  }
}

/* ==========================================================================
   04 BUTTONS & UI ELEMENTS (SIMPLE, MODERN AND CONSISTENT)
   ========================================================================== */

/* Primary Button: Champagne Gold -> Hover Deep Forest */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--btn-primary-bg, #C9A23A);
  color: var(--btn-primary-text, #FFFDF8) !important;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 11px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(201, 162, 58, 0.25);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--btn-primary-hover-bg, #102C22) !important;
  color: var(--btn-primary-hover-text, #FFFDF8) !important;
  box-shadow: 0 6px 18px rgba(16, 44, 34, 0.3);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button: Warm White Surface with Taupe Border -> Hover Warm Beige */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--btn-secondary-bg, #FFFDF8);
  color: var(--btn-secondary-text, #202321) !important;
  border: 1px solid var(--btn-secondary-border, #D8D0C3);
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--btn-secondary-hover-bg, #E8DDCC);
  border-color: var(--btn-secondary-hover-border, #C9A23A);
  color: #102C22 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Dark Button: Deep Forest -> Hover Champagne Gold */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--btn-dark-bg, #102C22);
  color: var(--btn-dark-text, #FFFDF8) !important;
  border: 1px solid transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 44, 34, 0.25);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-dark:hover {
  background: var(--btn-dark-hover-bg, #C9A23A) !important;
  color: var(--btn-dark-hover-text, #FFFDF8) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201, 162, 58, 0.3);
}

.btn-dark:active {
  transform: translateY(0);
}

/* Text Link: Charcoal Text + Champagne Gold Solid Underline */
.text-link-gold,
.ui-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-charcoal, #202321);
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.text-link-gold::after,
.ui-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 18px);
  height: 2px;
  background: var(--c-champagne-gold, #C9A23A);
  transition: width 0.3s ease;
}

.text-link-gold:hover::after,
.ui-text-link:hover::after {
  width: 100%;
}

.text-link-gold:hover,
.ui-text-link:hover {
  color: var(--c-deep-forest, #102C22);
}

/* Form Inputs & Select Controls: Warm White Surface, Taupe Border */
.ui-input,
.ui-select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  background: var(--c-warm-white, #FFFDF8) !important;
  border: 1px solid var(--c-taupe, #D8D0C3) !important;
  color: var(--c-charcoal, #202321) !important;
  border-radius: 6px;
  padding: 11px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ui-input:focus,
.ui-select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--c-champagne-gold, #C9A23A) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 58, 0.18) !important;
}

.ui-input::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--c-warm-gray, #6F706B) !important;
}

/* ==========================================================================
   06 IMAGE STYLE (NATURAL, WARM AND INSPIRING)
   - Rounded corners (8px - 14px)
   - Deep Forest & Black Green scrim gradient overlay for legible serif titles
   ========================================================================== */

.img-card-frame {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--c-warm-beige, #E8DDCC);
  box-shadow: 0 10px 30px -10px rgba(11, 23, 18, 0.12);
}

.img-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-card-frame:hover img {
  transform: scale(1.03);
}

/* Atmospheric Bottom Dark Scrim Gradient for Image Captions */
.img-scrim-overlay,
.image-shade-bottom {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(11, 23, 18, 0.88) 0%,
    rgba(16, 44, 34, 0.55) 32%,
    rgba(16, 44, 34, 0.15) 60%,
    transparent 100%
  );
  z-index: 2;
}

.img-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
  z-index: 3;
  color: var(--c-warm-white, #FFFDF8);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   08 GRADIENTS (OPTIONAL)
   - Forest to Gold: Deep Forest (#102C22) to Champagne Gold (#C9A23A)
   - Beige to White: Warm Beige (#E8DDCC) to Warm White (#FFFDF8)
   ========================================================================== */

.gradient-forest-to-gold {
  background: linear-gradient(135deg, #102C22 0%, #2A4434 40%, #8C7532 75%, #C9A23A 100%) !important;
}

.gradient-forest-to-gold-h {
  background: linear-gradient(to right, #102C22 0%, #C9A23A 100%) !important;
}

.gradient-beige-to-white {
  background: linear-gradient(135deg, #E8DDCC 0%, #FFFDF8 100%) !important;
}

.gradient-beige-to-white-h {
  background: linear-gradient(to right, #E8DDCC 0%, #FFFDF8 100%) !important;
}

/* Text Gradient Accent */
.text-gradient-forest-gold {
  background: linear-gradient(135deg, #102C22 0%, #C9A23A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================================================
   About Page: Pinned Split Hero Banner
   ======================================================== */
.about-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background-color: #0c0b0a;
}

.about-hero-panel {
  background-color: #241F1C;
  will-change: transform;
}

/* ==========================================================================
   MODERN REELS STORY POPUP MODAL (DESKTOP & MOBILE)
   - Desktop: Sleek vertical rounded card + right-side vertical avatar rail
   - Mobile: 100% full width & full height, no frame, no right nav, top close icon
   ========================================================================== */
.reel-modal-card {
  position: relative;
  background-color: #000;
  overflow: hidden;
  user-select: none;
}

@media (min-width: 768px) {
  .reel-modal-card {
    width: 410px;
    height: 750px;
    max-height: 90vh;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.92);
  }
}

@media (max-width: 767px) {
  .reel-modal-card {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: none;
  }
}

.reel-video-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* Right-side Vertical Story Avatars on Desktop */
.story-avatar-item {
  position: relative;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.story-avatar-item:not(.is-active) {
  width: 48px;
  height: 48px;
  opacity: 0.4;
  filter: brightness(0.65) contrast(0.95);
  transform: scale(0.92);
}

.story-avatar-item:not(.is-active):hover {
  opacity: 0.85;
  filter: brightness(0.9);
  transform: scale(1.04);
}

.story-avatar-item.is-active {
  width: 60px;
  height: 60px;
  opacity: 1;
  filter: brightness(1);
  transform: scale(1.12);
}

/* Active Ring Gradient */
.story-avatar-active-ring {
  background: linear-gradient(45deg, #C9A23A 0%, #FFFDF8 50%, #A0731E 100%);
  padding: 2.5px;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(201, 162, 58, 0.6);
}

/* Animated Story Progress */
.story-progress-bar {
  transition: width 0.1s linear;
}

/* ==========================================================================
   Full-Screen Designer Spotlight & Scroll-Over Content Section
   ========================================================================== */
.designer-spotlight-section {
  position: relative;
  background-color: #121014;
  color: #fff;
  contain: paint;
}

.designer-stage {
  will-change: transform;
}

.designer-img-card {
  position: relative;
  background-color: #1a161f;
  box-shadow: 0 35px 90px -15px rgba(0, 0, 0, 0.9), 0 0 60px -10px rgba(226, 147, 171, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  will-change: transform, opacity;
}

/* Content cards that glide over the image */
.designer-content-card {
  background: rgba(18, 16, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.75);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.designer-content-card:hover {
  border-color: rgba(226, 147, 171, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 35px 80px -10px rgba(0, 0, 0, 0.85), 0 0 30px rgba(226, 147, 171, 0.08);
}

.designer-accent-text {
  color: #e293ab;
}

.designer-arc-line {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  height: 60%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: none;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  pointer-events-none;
  z-index: 15;
}

/* ==========================================================================
   Executive CEO Profile & Interior Architecture Leadership Section
   ========================================================================== */
.ceo-profile-section {
  position: relative;
  background-color: #0c0b0a;
  contain: paint;
}

/* ==========================================================================
   Footer Border Refinement (Remove harsh white borders / make ultra-subtle)
   ========================================================================== */
.footer-reveal-container {
  border-top: none !important;
}

.footer-marquee-strip {
  border-top: none !important;
  border-bottom: none !important;
}

.footer-reveal-container [class*="border-t"],
.footer-reveal-container [class*="border-b"] {
  border-color: rgba(255, 255, 255, 0.05) !important;
}



