/* ==========================================================================
   BLOOM PHOTO DECOR - DECORATION X ARCHITECTURAL LUXURY DESIGN SYSTEM
   Solid Black Luxury Base with Rose Pink & Lemon Yellow Secondaries
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Accents */
  --rose-pink: #C9437A;
  --rose-pink-hover: #E0538D;
  --rose-pink-dark: #8C2250;
  --rose-pink-soft: rgba(201, 67, 122, 0.14);
  --lemon-yellow: #FFE278;
  --lemon-yellow-hover: #FFF1A8;
  --lemon-yellow-dark: #FFDF6D;
  --lemon-yellow-soft: rgba(255, 226, 120, 0.15);
  --petal-pink: #FBE6EE;
  --petal-pink-soft: rgba(201, 67, 122, 0.08);

  /* Solid Black Architecture */
  --bg-primary: #070707;
  --bg-surface: #0E0E10;
  --bg-surface-elevated: #151316;
  --bg-surface-border: rgba(201, 67, 122, 0.22);

  --neutral-900: #070707;
  --neutral-800: #0E0E10;
  --neutral-800-50: rgba(14, 14, 16, 0.5);
  --neutral-800-85: rgba(14, 14, 16, 0.85);
  --neutral-700: #1B181A;
  --neutral-600: #2C262A;
  --neutral-500: #786C74;
  --neutral-400: #A89FA5;
  --neutral-300: #D4CDD2;
  --neutral-200: #1E191D;
  --neutral-100: #FFFFFF;
  --accent-blue: #C9437A;
  --accent-gold: #FFE278;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container-max: 1300px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--neutral-100);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--neutral-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

/* --------------------------------------------------------------------------
   GLOBAL LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container-default {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
}

.section.no-bottom-padding {
  padding-bottom: 0;
}

.section.bg-neutral-800,
.section.bg-neutral-900,
body.bg-neutral-900,
.bg-neutral-900 {
  background-color: var(--neutral-900);
  color: var(--neutral-100);
}

.section.bg-neutral-200 {
  background-color: var(--neutral-200);
}

.inner-container-300px { max-width: 300px; }
.inner-container-400px { max-width: 400px; }
.inner-container-520px { max-width: 520px; }
.inner-container-550px { max-width: 550px; }
.inner-container-600px { max-width: 600px; }
.inner-container-700px { max-width: 700px; }
.inner-container-870px { max-width: 870px; }

.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.grid-4-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Margin helpers matching Decoration X */
.mg-bottom-0px { margin-bottom: 0 !important; }
.mg-bottom-8px { margin-bottom: 8px !important; }
.mg-bottom-16px { margin-bottom: 16px !important; }
.mg-bottom-20px { margin-bottom: 20px !important; }
.mg-bottom-24px { margin-bottom: 24px !important; }
.mg-bottom-32px { margin-bottom: 32px !important; }
.mg-bottom-40px { margin-bottom: 40px !important; }
.mg-bottom-48px { margin-bottom: 48px !important; }
.mg-bottom-64px { margin-bottom: 64px !important; }
.mg-top-40px { margin-top: 40px !important; }

.text-center { text-align: center; }
.align-center { margin-left: auto; margin-right: auto; }
.color-white { color: var(--neutral-100) !important; }
.text-uppercase { text-transform: uppercase; }

/* --------------------------------------------------------------------------
   TYPOGRAPHY & ACCENT ELEMENTS
   -------------------------------------------------------------------------- */
.subtitle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neutral-800);
  line-height: 1.2;
}

.subtitle-wrap.color-white {
  color: var(--neutral-100);
}

.underline-block {
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background-color: currentColor;
  position: relative;
  top: -1px;
}

h1, .h1-size {
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

h2, .h2-size {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

h3, .h3-size {
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
}

.color-white p, p.color-white {
  color: rgba(255, 255, 255, 0.85);
}

/* Iconic Big Outlined Stroke Numbers */
.big-number {
  font-size: clamp(72px, 8.5vw, 115px);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neutral-800);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}

.bg-neutral-800 .big-number,
.big-number.white-stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neutral-100);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rose-pink);
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--rose-pink);
  padding: 18px 36px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(201, 67, 122, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
}

.button-primary:hover {
  background-color: var(--lemon-yellow);
  color: #070707;
  border-color: var(--lemon-yellow);
  box-shadow: 0 6px 24px rgba(255, 226, 120, 0.45);
  transform: translateY(-2px);
}

.button-primary.button-white {
  background-color: var(--rose-pink) !important;
  color: #FFFFFF !important;
  border-color: var(--rose-pink) !important;
  box-shadow: 0 4px 18px rgba(201, 67, 122, 0.35) !important;
}

.button-primary.button-white:hover {
  background-color: var(--lemon-yellow) !important;
  color: #070707 !important;
  border-color: var(--lemon-yellow) !important;
  box-shadow: 0 6px 24px rgba(255, 226, 120, 0.5) !important;
  transform: translateY(-2px);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose-pink);
  color: #FFFFFF;
  background-color: rgba(201, 67, 122, 0.08);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 36px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.button-secondary:hover {
  background-color: rgba(255, 226, 120, 0.12);
  color: var(--lemon-yellow);
  border-color: var(--lemon-yellow);
  transform: translateY(-2px);
}

.button-secondary.button-dark {
  border-color: var(--rose-pink) !important;
  color: #FFFFFF !important;
  background-color: rgba(201, 67, 122, 0.08) !important;
}

.button-secondary.button-dark:hover {
  background-color: var(--lemon-yellow) !important;
  color: #070707 !important;
  border-color: var(--lemon-yellow) !important;
}

._2-button-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

._2-button-wrap.align-center {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION (Solid Black Background with Rose Pink & Lemon Yellow Secondaries)
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #070707;
  border-bottom: 1px solid rgba(201, 67, 122, 0.22);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.header.is-scrolled {
  background-color: rgba(7, 7, 7, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 67, 122, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: 48px; /* Spaced out generously from menu */
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.brand:hover .brand-logo-img {
  transform: scale(1.03);
}

.header .container-default {
  max-width: 1480px;
  padding-left: clamp(20px, 2.5vw, 36px);
  padding-right: clamp(20px, 2.5vw, 36px);
}

.header-navigation {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(14px, 1.8vw, 26px);
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 2px;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--lemon-yellow);
}

.nav-link.w--current {
  color: var(--rose-pink);
}

.nav-link.w--current::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--rose-pink);
  box-shadow: 0 0 8px rgba(201, 67, 122, 0.6);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 20px);
  margin-left: 20px;
  flex-shrink: 0;
}

.header-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--lemon-yellow);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.header-phone:hover {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 226, 120, 0.6);
}

.btn-header-cta {
  background: var(--rose-pink) !important;
  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid var(--rose-pink) !important;
  box-shadow: 0 4px 14px rgba(201, 67, 122, 0.35);
  transition: all 0.25s ease;
}

.btn-header-cta:hover {
  background: var(--lemon-yellow) !important;
  border-color: var(--lemon-yellow) !important;
  color: #070707 !important;
  box-shadow: 0 6px 20px rgba(255, 226, 120, 0.5);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  background: rgba(201, 67, 122, 0.12);
  border: 1px solid rgba(201, 67, 122, 0.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-button:hover {
  background: rgba(201, 67, 122, 0.22);
}

.menu-icon {
  width: 22px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile Drawer (Solid Black with Rose Pink & Lemon Yellow accents) */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: calc(100vh - 72px);
  background-color: #070707;
  backdrop-filter: blur(20px);
  padding: 24px 20px 48px;
  z-index: 9999;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  border-top: 1px solid rgba(201, 67, 122, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
}

.mobile-nav-drawer.is-open {
  display: flex !important;
}

.mobile-nav-drawer .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 16px;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-drawer .nav-link:hover,
.mobile-nav-drawer .nav-link:active {
  background: rgba(201, 67, 122, 0.15);
  color: var(--lemon-yellow);
  border-color: rgba(201, 67, 122, 0.35);
}

.mobile-nav-drawer .nav-link.w--current {
  color: var(--rose-pink);
  background: rgba(201, 67, 122, 0.2);
  border-color: var(--rose-pink);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   HERO SECTION (Fullscreen Cinematic with Left Architectural Line)
   -------------------------------------------------------------------------- */
.home-hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: var(--neutral-800);
  background-image: linear-gradient(rgba(7, 7, 7, 0.72), rgba(7, 7, 7, 0.82)), url('images/nye_balloon_garlands_lobby.jpg');
  background-size: cover;
  background-position: 47% 48%;
  background-repeat: no-repeat;
  color: var(--neutral-100);
}

@media screen and (max-width: 1024px) {
  .home-hero {
    background-position: center 45%;
  }
}

@media screen and (max-width: 480px) {
  .home-hero {
    background-position: 28% 40%;
  }
}

.home-hero-content {
  border-left: 2px solid var(--neutral-100);
  padding-left: clamp(24px, 5vw, 84px);
  max-width: 960px;
  position: relative;
  z-index: 10;
}

.hero-audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.scroll-down-wrap {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 10;
}

.scroll-down-wrap:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(4px);
}

/* --------------------------------------------------------------------------
   WHO WE ARE (Editorial Statement & Asymmetric Dual Photos)
   -------------------------------------------------------------------------- */
.top-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}

.about-home-images {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.about-img-box {
  position: relative;
  overflow: hidden;
  background-color: var(--neutral-200);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-box:hover img {
  transform: scale(1.03);
}

.about-img-box.img-wide {
  height: 480px;
}

.about-img-box.img-tall {
  height: 480px;
}

/* --------------------------------------------------------------------------
   OUR SERVICES (Staggered Asymmetrical 4-Card Grid)
   -------------------------------------------------------------------------- */
.portfolio-content-main-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 56px;
}

.portfolio-column {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.service-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--neutral-100);
  text-decoration: none;
  background-color: var(--neutral-800);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card.card-tall {
  height: 600px;
}

.service-card.card-medium {
  height: 460px;
}

.service-card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.service-card:hover .service-card-bg-img {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0) 30%, rgba(7, 7, 7, 0.75) 75%, rgba(7, 7, 7, 0.95) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.1) 20%, rgba(7, 7, 7, 0.85) 70%, rgba(7, 7, 7, 0.98) 100%);
}

.service-card-content {
  position: relative;
  z-index: 3;
  padding: 40px 32px;
}

.service-card-content h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.service-card-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 0;
}

.service-pill-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #070707;
  background-color: #FFFFFF;
  padding: 5px 12px;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   OUR PORTFOLIO / CASE STUDIES SLIDER (Dark Section)
   -------------------------------------------------------------------------- */
.portfolio-slider-wrap {
  position: relative;
  margin-top: 56px;
}

.portfolio-slide {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0;
  align-items: stretch;
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  height: 560px; /* Locked desktop height for 100% container stability */
}

.portfolio-slide-info {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.portfolio-slide-info h3 {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 16px;
  min-height: 70px;
  display: flex;
  align-items: center;
}

.portfolio-slide-info p {
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.65;
  min-height: 75px;
}

.portfolio-slide-meta {
  font-size: 13.5px;
  color: var(--neutral-400);
  line-height: 1.8;
  margin-bottom: 28px;
  min-height: 80px;
}

.portfolio-card-top-content {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--neutral-400);
  margin-bottom: 24px;
}

.portfolio-top-dash {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background-color: var(--neutral-400);
  margin: 0 16px;
}

.portfolio-slide-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-bottom-content {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 32px;
  transition: gap 0.25s ease;
}

.card-bottom-content:hover {
  gap: 22px;
}

.card-bottom-dash {
  width: 36px;
  height: 1.5px;
  background-color: #FFFFFF;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.btn-slider-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s ease;
}

.btn-slider-arrow:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   OUR PROCESS (3-Step Row with Big Numbers)
   -------------------------------------------------------------------------- */
.process-step-card {
  text-align: center;
  padding: 0 12px;
}

.process-step-card h3 {
  margin-bottom: 12px;
}

.bottom-underline {
  width: 60px;
  height: 2px;
  background-color: var(--neutral-800);
  margin: 28px auto 0;
}

/* --------------------------------------------------------------------------
   EXECUTIVE COMPLIANCE MATRIX (Dark 4-Card Grid)
   -------------------------------------------------------------------------- */
.compliance-card {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.compliance-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.compliance-badge-metric {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.compliance-card h3 {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.compliance-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   VIDEO WALKTHROUGHS (Live Behind-the-Scenes & Staging)
   -------------------------------------------------------------------------- */
.video-walkthrough-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 820px) {
  .video-walkthrough-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

.video-walkthrough-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.video-walkthrough-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.video-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  background-color: #000000;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.video-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.video-walkthrough-card:hover .video-player-wrap video {
  transform: scale(1.015);
}

/* Subtle overlay gradient on poster */
.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.4) 0%, rgba(7, 7, 7, 0) 30%, rgba(7, 7, 7, 0.15) 70%, rgba(7, 7, 7, 0.75) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Floating Badges */
.video-top-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.video-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.video-duration-chip {
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Luxury Center Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.play-btn-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}

.video-player-wrap:hover .play-btn-circle {
  background: rgba(212, 175, 55, 0.95);
  color: #070707;
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

.play-icon, .pause-icon {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

/* State when playing: hide center play button and fade out controls unless hovered */
.video-player-wrap.is-playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

.video-player-wrap.is-playing .video-overlay-gradient {
  opacity: 0.3;
}

.video-player-wrap.is-playing .video-controls-bar {
  opacity: 0;
}

.video-player-wrap.is-playing:hover .video-controls-bar {
  opacity: 1;
}

/* Custom Sleek Controls Bar */
.video-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 7, 7, 0.9) 100%);
  padding: 12px 14px 10px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.video-progress-container {
  width: 100%;
  height: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.video-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  position: relative;
  transition: height 0.15s ease;
}

.video-progress-container:hover .video-progress-bar {
  height: 5px;
}

.video-progress-filled {
  width: 0%;
  height: 100%;
  background: #D4AF37;
  border-radius: 4px;
  transition: width 0.1s linear;
}

.video-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-controls-left, .video-controls-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ctrl-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0;
}

.ctrl-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.ctrl-btn svg {
  width: 18px;
  height: 18px;
}

.video-time-display {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Card Content Below Video */
.video-card-content {
  padding: 20px 8px 6px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: transparent;
}

.video-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.video-card-tag {
  color: #D4AF37;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.video-location-tag {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
}

.video-card-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 8px;
  min-height: auto;
}

.video-card-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin-bottom: 18px;
  min-height: auto;
}

.video-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-inquire-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D4AF37;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.video-inquire-link:hover {
  gap: 12px;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS & FEATURED CLIENT SPOTLIGHT
   -------------------------------------------------------------------------- */
.spotlight-quote-card {
  background-color: #FAF7F2;
  border: 1px solid rgba(7, 7, 7, 0.12);
  padding: 48px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.spotlight-quote-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.test-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(7, 7, 7, 0.1);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.test-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 24px;
  font-style: italic;
}

.test-author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(7, 7, 7, 0.08);
  padding-top: 18px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.test-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #070707;
}

.test-role {
  font-size: 12px;
  color: #777777;
}

/* --------------------------------------------------------------------------
   CTA BANNER (Full Bleed Image)
   -------------------------------------------------------------------------- */
.cta-banner-section {
  position: relative;
  padding: 130px 24px;
  text-align: center;
  background-color: var(--neutral-800);
  background-image: linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.85)), url('images/luxury_ballroom_arch_cta.jpg');
  background-size: cover;
  background-position: center 55%;
  color: #FFFFFF;
}

.cta-banner-content {
  max-width: 780px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.cta-banner-content p {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

/* --------------------------------------------------------------------------
   COMMERCIAL PROCUREMENT INTAKE (Split Contact Form)
   -------------------------------------------------------------------------- */
.contact-hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.decoration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.decoration-form input,
.decoration-form select,
.decoration-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 0;
  font-size: 16px;
  font-family: inherit;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease;
}

.decoration-form input:focus,
.decoration-form select:focus,
.decoration-form textarea:focus {
  border-bottom-color: #FFFFFF;
}

.decoration-form select option {
  background-color: #121212;
  color: #FFFFFF;
}

.form-checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 16px;
  cursor: pointer;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
}

.form-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--neutral-100);
  cursor: pointer;
}

.contact-meta-box {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px;
}

.contact-meta-item {
  margin-bottom: 28px;
}

.contact-meta-item:last-child {
  margin-bottom: 0;
}

.contact-meta-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 6px;
}

.contact-meta-val {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   FOOTER (Pitch Black with Top Contact Strip)
   -------------------------------------------------------------------------- */
.footer {
  background-color: #050505;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(201, 67, 122, 0.22);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-top-strip {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201, 67, 122, 0.18);
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-top-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.footer-top-contact-item {
  display: flex;
  flex-direction: column;
}

.footer-top-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-pink);
  margin-bottom: 4px;
}

.footer-top-link {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #FFFFFF;
}

.footer-top-link:hover {
  color: var(--lemon-yellow);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 320px;
}

.newsletter-box {
  display: flex;
  margin-top: 12px;
}

.newsletter-box input {
  background: #111114;
  border: 1px solid rgba(201, 67, 122, 0.3);
  border-right: none;
  padding: 12px 16px;
  font-size: 13.5px;
  color: #FFFFFF;
  outline: none;
  font-family: inherit;
  flex: 1;
}

.newsletter-box button {
  background: var(--rose-pink);
  color: #FFFFFF;
  border: none;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-box button:hover {
  background: var(--lemon-yellow);
  color: #070707;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-pink);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--lemon-yellow);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--lemon-yellow);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   ABOUT PAGE SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.about-hero-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--neutral-800);
  color: var(--neutral-100);
  text-align: center;
}

.about-mosaic-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 320px 320px;
  gap: 24px;
  margin-top: 64px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mosaic-item:hover img {
  transform: scale(1.04);
}

.stats-counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 80px 0;
  border-bottom: 1px solid rgba(7, 7, 7, 0.1);
  text-align: center;
}

.stats-label {
  font-size: 15px;
  font-weight: 700;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.value-card {
  text-align: left;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.team-card {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.team-card-content {
  padding: 24px;
}

.team-card-name {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.team-card-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.team-card-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   COMMERCIAL PRICING CATALOG (Webflow Decoration X Obsidian Layout)
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pricing-card {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
}

.pricing-card-image-wrap {
  height: 240px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #050505;
}

.pricing-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.pricing-card:hover .pricing-card-img {
  transform: scale(1.04);
}

.pricing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}

.pricing-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.25;
  min-height: 56px;
}

.pricing-dimension {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 20px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 64px;
}

.pricing-amount {
  font-size: 34px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.pricing-unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.pricing-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 70px;
}

.pricing-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 96px;
}

.pricing-spec-item {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.pricing-spec-check {
  color: #FFFFFF;
  font-weight: 900;
  flex-shrink: 0;
}

.pricing-card-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pricing-card-btn:hover {
  background: #FFFFFF;
  color: #070707;
  border-color: #FFFFFF;
}

/* Secondary Compact Catalog Strip */
.catalog-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.catalog-strip-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-strip-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.catalog-strip-price {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.catalog-strip-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Logistics & Delivery Notice Bar */
.pricing-logistics-bar {
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-logistics-content {
  flex: 1;
  min-width: 280px;
}

.pricing-logistics-heading {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pricing-logistics-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN & MEDIA QUERIES (0px Horizontal Overflow)
   -------------------------------------------------------------------------- */
@media (max-width: 1240px) {
  .header-navigation {
    gap: clamp(10px, 1.2vw, 18px);
  }
  .nav-link {
    font-size: 12.5px;
  }
  .brand {
    margin-right: 28px;
  }
}

@media (max-width: 991px) {
  .header {
    height: 72px;
  }
  .header-wrapper {
    height: 72px;
  }
  .brand {
    margin-right: 0;
  }
  .brand-logo-img {
    height: 40px;
    max-width: 155px;
  }
  .header-navigation {
    display: none !important;
  }
  .header-actions .header-phone {
    display: none;
  }
  .header-actions .btn-header-cta {
    display: none;
  }
  .menu-button {
    display: flex !important;
  }
}

@media (max-width: 1024px) {
  .grid-2-columns,
  .about-home-images,
  .spotlight-quote-card,
  .contact-hero-wrapper {
    grid-template-columns: 1fr !important;
  }
  .portfolio-slide {
    grid-template-columns: 1fr !important;
    height: auto !important;
  }
  .portfolio-slide-info {
    height: auto !important;
    min-height: 440px !important;
    padding: 40px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .portfolio-slide-info h3 {
    min-height: unset !important;
  }
  .portfolio-slide-info p {
    min-height: unset !important;
  }
  .portfolio-slide-meta {
    min-height: unset !important;
  }
  .portfolio-slide-img-wrap {
    height: 380px !important;
    width: 100% !important;
  }
  .portfolio-slide-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .grid-4-columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-columns-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .about-mosaic-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 240px 240px !important;
  }
  .stats-counter-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
  }
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr !important;
  }
  .video-walkthrough-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  .catalog-strip {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .cta-banner-section {
    background-position: center 45% !important;
    padding: 110px 24px !important;
  }
  .lookbook-home-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  .lookbook-home-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 28px 24px !important;
  }
}

@media (max-width: 768px) {
  .lookbook-home-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .lookbook-home-grid .lookbook-card-title,
  .lookbook-home-grid .lookbook-card-desc {
    min-height: unset !important;
  }
  .lookbook-home-banner-actions {
    width: 100% !important;
  }
  .lookbook-home-banner-actions a {
    width: 100% !important;
    text-align: center !important;
  }
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
  .portfolio-content-main-wrapper {
    grid-template-columns: 1fr !important;
  }
  .grid-3-columns {
    grid-template-columns: 1fr !important;
  }
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
  .service-card.card-tall,
  .service-card.card-medium {
    min-height: 400px !important;
  }
  .home-hero-content {
    border-left-width: 0 !important;
    padding-left: 0 !important;
  }
  .top-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-img-box.img-wide,
  .about-img-box.img-tall {
    height: 320px !important;
  }
  .footer-top-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}

@media (max-width: 480px) {
  .container-default {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  ._2-button-wrap {
    flex-direction: column;
    width: 100%;
  }
  ._2-button-wrap .button-primary,
  ._2-button-wrap .button-secondary {
    width: 100%;
  }
  .grid-4-columns {
    grid-template-columns: 1fr !important;
  }
  .about-mosaic-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .mosaic-item {
    height: 240px !important;
  }
  .stats-counter-strip {
    grid-template-columns: 1fr !important;
  }
  .portfolio-slide-info {
    padding: 32px 20px !important;
    min-height: 560px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .portfolio-slide-img-wrap {
    height: 280px !important;
  }
  .spotlight-quote-card {
    padding: 24px 18px !important;
  }
  .video-card-content {
    padding: 20px 18px !important;
  }
  .video-walkthrough-grid {
    max-width: 100% !important;
  }
  .pricing-card-image-wrap {
    height: 200px !important;
  }
  .pricing-card-body {
    padding: 22px 18px !important;
  }
  .pricing-amount {
    font-size: 28px !important;
  }
  .pricing-logistics-bar {
    padding: 20px 16px !important;
  }
  .cta-banner-section {
    background-position: center 38% !important;
    padding: 85px 18px !important;
  }
}

/* --------------------------------------------------------------------------
   LOOKBOOK PAGE STYLES (Webflow Decoration X Obsidian System)
   -------------------------------------------------------------------------- */
body.lookbook-page {
  background-color: var(--neutral-800);
  color: var(--neutral-100);
}

.lookbook-hero-section {
  padding-top: 170px;
  padding-bottom: 70px;
  background-color: var(--neutral-800);
  border-bottom: 1px solid var(--neutral-700);
  text-align: center;
  color: var(--neutral-100);
}

.lookbook-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 10px;
}

.lookbook-filter-btn {
  background: #141414;
  color: var(--neutral-300);
  border: 1px solid var(--neutral-700);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.lookbook-filter-btn:hover {
  color: var(--neutral-100);
  border-color: var(--neutral-500);
  background: #1f1f1f;
}

.lookbook-filter-btn.active {
  background: var(--neutral-100);
  color: #000000;
  border-color: var(--neutral-100);
}

.lookbook-grid-section {
  padding: 80px 0 100px;
  background-color: var(--neutral-800);
  color: var(--neutral-100);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.lookbook-card {
  background: #0e0e0e;
  border: 1px solid var(--neutral-700);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.lookbook-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
}

.lookbook-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--neutral-700);
  background: #141414;
}

.lookbook-month-tag {
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

.lookbook-category-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-400);
}

.lookbook-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000000;
}

.lookbook-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
  display: block;
}

.lookbook-card:hover .lookbook-card-img {
  transform: scale(1.03);
}

.lookbook-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lookbook-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--neutral-100);
}

.lookbook-card-specs {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--neutral-700);
}

.lookbook-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--neutral-400);
  margin-bottom: 24px;
  flex-grow: 1;
}

.lookbook-card-action {
  margin-top: auto;
}

.lookbook-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--neutral-600);
  color: var(--neutral-100);
  background: transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.lookbook-card-btn:hover {
  background: var(--neutral-100);
  color: #000000;
  border-color: var(--neutral-100);
}

.lookbook-retainer-banner {
  background: #0e0e0e;
  border-top: 1px solid var(--neutral-700);
  border-bottom: 1px solid var(--neutral-700);
  padding: 80px 0;
  text-align: center;
  color: var(--neutral-100);
}

/* Homepage Lookbook Showcase Section */
.lookbook-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.lookbook-home-grid .lookbook-card {
  height: 100%;
}

.lookbook-home-grid .lookbook-card-title {
  font-size: 18px;
  min-height: 48px;
}

.lookbook-home-grid .lookbook-card-desc {
  font-size: 13.5px;
  min-height: 66px;
  margin-bottom: 20px;
}

.lookbook-home-banner {
  margin-top: 48px;
  padding: 36px 40px;
  background: #0e0e0e;
  border: 1px solid var(--neutral-700);
  border-left: 3px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.lookbook-home-banner-content {
  flex: 1;
  min-width: 280px;
}

.lookbook-home-banner-tag {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lookbook-home-banner-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
}

.lookbook-home-banner-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.lookbook-home-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.lookbook-card.is-hidden {
  display: none !important;
}

@media (max-width: 991px) {
  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .lookbook-hero-section {
    padding-top: 130px;
    padding-bottom: 50px;
  }
  .lookbook-grid-section {
    padding: 50px 0 70px;
  }
  .lookbook-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lookbook-filter-bar {
    gap: 8px;
  }
  .lookbook-filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
  .lookbook-card-body {
    padding: 20px 16px;
  }
  .lookbook-retainer-banner {
    padding: 60px 0;
  }
}

/* Accessibility & Semantic SEO Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --------------------------------------------------------------------------
   EVENT & COMPANY MARKETING SECTION (Obsidian Luxury Add-On)
   -------------------------------------------------------------------------- */
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.marketing-card {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.marketing-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.marketing-card-header {
  margin-bottom: 20px;
}

.marketing-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue, #6366f1);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.marketing-card h3 {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.35;
}

.marketing-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
}

.marketing-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.marketing-card-features li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.marketing-card-features li:last-child {
  margin-bottom: 0;
}

.marketing-feature-icon {
  color: #38bdf8;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.marketing-addon-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marketing-addon-content h4 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.marketing-addon-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 680px;
  line-height: 1.55;
}

@media screen and (max-width: 991px) {
  .marketing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .marketing-addon-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
