:root {
  --ink: #232323;
  /* Deep Charcoal */
  --paper: #FFFFFF;
  /* Pure White */
  --teal: #0D5C63;
  /* Royal Teal */
  --gold: #D4AF37;
  /* Antique Gold */
  --slate: #5C6770;
  /* Slate Grey */
  --charcoal: #232323;
  /* Deep Charcoal */
  --mist: #EFE8DC;
  /* Cream Mist */
  --taupe: #D4AF37;
  /* Antique Gold Accents */
  --clay: #5C6770;
  /* Slate Grey */
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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;
}

.menu-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

/* 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;
}

.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: #FFFFFF;
}

.featured-pinned-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20vh;
  padding-bottom: 2vh;
}

.featured-cards-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  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: 66vw;
    height: 70vh;
    padding-right: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .featured-intro-column {
    width: 54vw;
    height: 72vh;
    padding-right: 4.5rem;
  }
}

.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;
  }
}

@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 (Reduced to 50% Height) */
.card-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.52) 50%, rgba(0, 0, 0, 0.90) 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(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.60) 48%, rgba(0, 0, 0, 0.95) 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: #f7f5f1;
  overflow: hidden;
  z-index: 2;
}

.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: #D4AF37;
  background: linear-gradient(135deg, #F5D77F 0%, #D4AF37 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: #FF3B00;
  color: #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: #FF4D19;
  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;
}

[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: #171619 !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: #171619 !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: #171619 !important;
}

[data-intro-bar].is-dark-text .hamburger-line {
  background-color: #171619 !important;
}

/* Vision Approach Radial Spokes Section (Locked to exact Viewport Center) */
#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;
}

.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: #D4AF37;
  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: #D4AF37;
  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: 65% !important;
  left: 68% !important;
}

@media (max-width: 768px) {
  .hero-centerpiece-wrap {
    top: 62% !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%, #D4AF37 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: 375px !important;
  max-width: 375px !important;
  left: -175px !important;
  top: 20% !important;
  z-index: 60 !important;
  position: absolute !important;
  pointer-events: none !important;
  transform: translateZ(55px);
  filter: none !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: 58px !important;
  line-height: 1.04 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  text-shadow: none !important;
  text-align: right !important;
  margin-left: auto !important;
  display: block !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: 1023px) {
  .editorial-slider-container {
    height: auto !important;
    flex-direction: column !important;
  }
  .editorial-slider-left {
    width: 100% !important;
    min-height: 80vh !important;
    height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !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;
  }
  .editorial-slide-card {
    width: 100% !important;
    min-height: 85vh !important;
    height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !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 (Checkerboard Matrix)
   ======================================================== */
.how-we-work-section {
  position: relative;
  background-color: #0d0d0d;
  color: #ffffff;
  z-index: 4;
}

.process-cell {
  position: relative;
  background-color: #0d0d0d;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.process-cell:hover {
  background-color: rgba(255, 255, 255, 0.025);
}

.process-cell svg {
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.03));
}