/* ==========================================================================
   AELEX — Architectural & Industrial Hardware
   Hero Section Design System & Styling
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette — AELEX Warm Architectural System */
  --color-warm-ivory: #F5F1E8;
  --color-warm-offwhite: #F5F1E8;
  --color-warm-beige: #EAE3D6;
  --bg-editorial: #EAE3D6;
  
  --color-graphite-dark: #242424;
  --color-charcoal: #242424;
  --color-charcoal-light: #2E2E2E;
  --color-text-dark: #242424;
  
  --color-warm-grey: #6E6961;
  --color-muted-grey: #6E6961;
  --color-text-muted-dark: #6E6961;
  
  /* Metallic Accents */
  --color-brass-primary: #B08A4A;
  --color-brass-light: #C7A76A;
  --color-brass-glow: rgba(176, 138, 74, 0.25);

  /* Editorial Section Color Palette & Borders */
  --color-line-geo: rgba(176, 138, 74, 0.22);
  --color-line-geo-light: rgba(110, 105, 97, 0.18);

  /* Overlay Gradients */
  --overlay-dark: linear-gradient(
    90deg, 
    rgba(36, 36, 36, 0.88) 0%, 
    rgba(36, 36, 36, 0.55) 45%, 
    rgba(36, 36, 36, 0.35) 70%, 
    rgba(36, 36, 36, 0.65) 100%
  );
  --overlay-bottom-vignette: linear-gradient(
    180deg, 
    rgba(36, 36, 36, 0.5) 0%, 
    transparent 35%, 
    rgba(36, 36, 36, 0.75) 80%, 
    rgba(36, 36, 36, 0.95) 100%
  );

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --ease-out-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-out-smooth);
  --transition-medium: 0.5s var(--ease-out-smooth);
  --transition-slow: 1.2s var(--ease-out-smooth);
}

/* --------------------------------------------------------------------------
   2. Base Reset & Layout Constraints
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-graphite-dark);
  color: var(--color-warm-offwhite);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

/* Ensure no horizontal scroll anywhere */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   3. Header Navigation (Minimal Transparent Overlay)
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2.25rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease, background 0.3s ease;
}

/* Brand Identity */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-warm-offwhite);
  z-index: 102;
}

.brand-mark-img {
  width: 41px;
  height: 41px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-mark-img {
  transform: scale(1.05);
}

.brand-mark {
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark-svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-brass-primary);
  stroke-width: 2;
  transition: transform 0.4s var(--ease-out-smooth);
}

.brand-logo:hover .brand-mark-svg {
  transform: rotate(45deg);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-warm-offwhite);
}

.brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color:black;
  display: block;
  margin-top: -3px;
  font-weight: 600;
}

.footer-mark-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  background: white;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-mark-img {
  transform: scale(1.05);
}


/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

.nav-link {
  color: rgba(245, 243, 239, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-brass-primary);
  transition: width 0.3s var(--ease-out-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-warm-offwhite);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Product Dropdown Menu (Desktop & Mobile)
   -------------------------------------------------------------------------- */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-chevron {
  margin-left: 0.4rem;
  transition: transform 0.3s var(--ease-out-smooth);
  vertical-align: middle;
  display: inline-block;
  opacity: 0.8;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown:focus-within .dropdown-chevron,
.nav-item-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--color-brass-primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  min-width: 250px;
  background-color: rgba(22, 22, 22, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(176, 141, 87, 0.25);
  border-radius: 3px;
  padding: 0.65rem 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(176, 141, 87, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out-smooth), transform 0.25s var(--ease-out-smooth), visibility 0.25s;
  z-index: 120;
}

/* Invisible Hover Bridge to prevent premature closing */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu,
.nav-item-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.85);
  text-decoration: none;
  transition: all 0.2s var(--ease-out-smooth);
  position: relative;
  white-space: nowrap;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 14px;
  background-color: var(--color-brass-primary);
  transition: transform 0.2s var(--ease-out-smooth);
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--color-warm-offwhite);
  background-color: rgba(176, 141, 87, 0.1);
  padding-left: 1.75rem;
}

.dropdown-item:hover::before,
.dropdown-item:focus::before {
  transform: translateY(-50%) scaleY(1);
}

/* Header Contact/CTA button */
.nav-cta-btn {
  padding: 0.65rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-warm-offwhite);
  border: 1px solid rgba(245, 243, 239, 0.3);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta-btn:hover {
  border-color: var(--color-brass-primary);
  color: var(--color-brass-light);
  background: rgba(176, 141, 87, 0.1);
  box-shadow: 0 0 20px var(--color-brass-glow);
}

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 102;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-warm-offwhite);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  background-color: var(--color-brass-primary);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  background-color: var(--color-brass-primary);
}

/* --------------------------------------------------------------------------
   4. Hero Slider Architecture
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: clamp(7.5rem, 13vh, 9.5rem);
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.0s var(--ease-out-smooth), visibility 1.0s var(--ease-out-smooth);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background Photography Container */
.slide-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slow scale animation when slide becomes active */
.hero-slide.active .slide-bg-image {
  transform: scale(1.08);
}

/* Dark Sophisticated Vignette Overlays */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.slide-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bottom-vignette);
  pointer-events: none;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   5. Hero Content & Typography Positioning
   -------------------------------------------------------------------------- */
.hero-content-wrapper {
  position: relative;
  left: 6%;
  bottom: auto;
  margin-top: auto;
  max-width: 680px;
  z-index: 10;
  pointer-events: auto;
}

/* Eyebrow Label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-smooth) 0.3s, transform 0.8s var(--ease-out-smooth) 0.3s;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background-color:white;
}

/* Main Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.8vw, 4.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-warm-offwhite);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out-smooth) 0.45s, transform 0.9s var(--ease-out-smooth) 0.45s;
}

/* Subtitle / Product Focus */
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 500;
  color: var(--color-warm-offwhite);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-smooth) 0.6s, transform 0.8s var(--ease-out-smooth) 0.6s;
}

/* Supporting Copy */
.hero-description {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-warm-offwhite);
  margin-bottom: 2.25rem;
  max-width: 540px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-smooth) 0.7s, transform 0.8s var(--ease-out-smooth) 0.7s;
}

/* CTA Action Button Group */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-smooth) 0.85s, transform 0.8s var(--ease-out-smooth) 0.85s;
}

.hero-slide.active .hero-eyebrow,
.hero-slide.active .hero-headline,
.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-description,
.hero-slide.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Primary CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:black;
  background-color: white;
  border: 1px solid var(--color-brass-primary);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-smooth);
}

.btn-primary .btn-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-brass-primary);
  border-color: var(--color-brass-primary);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--color-brass-glow);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

/* Secondary CTA Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-warm-offwhite);
  background: rgba(36, 36, 36, 0.6);
  border: 1px solid var(--color-brass-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-smooth);
}

.btn-secondary:hover {
  border-color: var(--color-brass-light);
  color: #ffffff;
  background: var(--color-brass-primary);
  box-shadow: 0 6px 20px var(--color-brass-glow);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-cta-btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-brass-primary);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   6. Minimal Slider Controls & Indicators
   -------------------------------------------------------------------------- */
.slider-controls-wrapper {
  position: absolute;
  right: 9%;
  bottom: clamp(3.5rem, 8vh, 6rem);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Slide Progress Counter */
.slider-counter-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.current-slide-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-brass-primary);
  min-width: 2.2ch;
}

.total-slide-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-muted-grey);
}

/* Animated Progress Bar */
.slider-progress-track {
  width: 140px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.slider-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--color-brass-primary);
  box-shadow: 0 0 10px var(--color-brass-primary);
  transition: width 0.1s linear;
}

/* Sleek Minimal Arrow Buttons */
.slider-arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  border: 1px solid rgba(245, 243, 239, 0.2);
  background: rgba(18, 18, 18, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-warm-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-smooth);
}

.arrow-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.arrow-btn:hover {
  border-color: var(--color-brass-primary);
  color: var(--color-brass-primary);
  background: rgba(176, 141, 87, 0.15);
}

.arrow-btn.prev-btn:hover svg {
  transform: translateX(-3px);
}

.arrow-btn.next-btn:hover svg {
  transform: translateX(3px);
}

.arrow-btn:focus-visible {
  outline: 2px solid var(--color-brass-primary);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   7. Mobile Drawer Navigation Overlay
   -------------------------------------------------------------------------- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-smooth), visibility 0.4s var(--ease-out-smooth);
  overflow-y: auto;
  padding: 2rem 1.5rem;
}

.mobile-nav-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer:not(.open),
.mobile-nav-drawer:not(.open) * {
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-warm-offwhite);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--color-brass-primary);
}

/* Mobile Dropdown & Accordion Submenu */
.mobile-nav-dropdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-dropdown-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  cursor: pointer;
  user-select: none;
}

.mobile-dropdown-toggle {
  background: transparent;
  border: 1px solid rgba(176, 141, 87, 0.4);
  color: var(--color-brass-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-smooth);
  padding: 0;
}

.toggle-icon {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
  display: block;
}

.mobile-nav-dropdown.open .mobile-dropdown-toggle {
  border-color: var(--color-brass-light);
  background: rgba(176, 141, 87, 0.15);
  color: var(--color-warm-offwhite);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s, margin-top 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  width: 100%;
  margin-top: 0;
}

.mobile-nav-dropdown.open .mobile-submenu {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  margin-top: 1rem;
}

.mobile-submenu-link {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(245, 243, 239, 0.75) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  display: block !important;
  padding: 0.35rem 0.75rem !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.mobile-submenu-link:hover,
.mobile-submenu-link:active {
  color: var(--color-brass-primary) !important;
}

.mobile-drawer-footer {
  margin-top: 3.5rem;
  text-align: center;
}

.mobile-drawer-contact {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted-grey);
}

/* --------------------------------------------------------------------------
   8. Responsive Media Queries
   -------------------------------------------------------------------------- */

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
  .site-header {
    padding: 2.75rem 6rem;
  }
  .hero-slide {
    padding-top: clamp(8.5rem, 14vh, 11rem);
    padding-bottom: clamp(4.5rem, 10vh, 7rem);
  }
  .hero-content-wrapper {
    left: 6%;
    max-width: 760px;
    bottom: auto;
  }
  .hero-eyebrow {
    font-size: 0.825rem;
    margin-bottom: 1.25rem;
  }
  .hero-headline {
    font-size: clamp(3.25rem, 4.2vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    margin-bottom: 1rem;
  }
  .hero-description {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.65;
    margin-bottom: 2.25rem;
    max-width: 560px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 1.05rem 2.35rem;
    font-size: 0.925rem;
  }
  .slider-controls-wrapper {
    right: 10%;
    bottom: clamp(4.5rem, 10vh, 7rem);
  }
}

/* Desktop & Laptop (1400px - 1919px) */
@media (min-width: 1400px) and (max-width: 1919px) {
  .site-header {
    padding: 2.25rem 4rem;
  }
  .hero-slide {
    padding-top: clamp(7.5rem, 13vh, 9.5rem);
    padding-bottom: clamp(3.5rem, 8vh, 6rem);
  }
  .hero-content-wrapper {
    left: 6%;
    max-width: 680px;
    bottom: auto;
  }
  .hero-headline {
    font-size: clamp(2.75rem, 3.8vw, 3.75rem);
    line-height: 1.08;
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    margin-bottom: 0.85rem;
  }
  .hero-description {
    font-size: clamp(0.95rem, 1.1vw, 1.075rem);
    line-height: 1.62;
    margin-bottom: 1.85rem;
    max-width: 530px;
  }
  .slider-controls-wrapper {
    right: 8%;
    bottom: clamp(3.5rem, 8vh, 6rem);
  }
}

/* Medium Laptop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .site-header {
    padding: 2rem 3.5rem;
  }
  .hero-slide {
    padding-top: clamp(7rem, 12vh, 8.5rem);
    padding-bottom: clamp(3.25rem, 7vh, 5rem);
  }
  .hero-content-wrapper {
    left: 6%;
    max-width: 620px;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  .hero-headline {
    font-size: clamp(2.4rem, 3.4vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 0.65rem;
  }
  .hero-subtitle {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    margin-bottom: 0.75rem;
  }
  .hero-description {
    font-size: clamp(0.9rem, 1.08vw, 1.025rem);
    line-height: 1.6;
    margin-bottom: 1.6rem;
    max-width: 510px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 1.85rem;
    font-size: 0.85rem;
  }
  .slider-controls-wrapper {
    right: 8%;
    bottom: clamp(3.25rem, 7vh, 5rem);
  }
}

/* Tablet Landscape / Small Laptop (1024px - 1199px) */
@media (min-width: 769px) and (max-width: 1199px) {
  .site-header {
    padding: 1.75rem 2.5rem;
  }
  .brand-mark-img {
    width: 36px;
    height: 36px;
  }
  .nav-menu {
    gap: 1.75rem;
  }
  .hero-slide {
    padding-top: clamp(6.5rem, 11vh, 7.5rem);
    padding-bottom: clamp(3rem, 6vh, 4.5rem);
  }
  .hero-content-wrapper {
    left: 6%;
    max-width: 560px;
  }
  .hero-eyebrow {
    font-size: 0.725rem;
    margin-bottom: 0.85rem;
  }
  .hero-headline {
    font-size: clamp(2.1rem, 3.2vw, 2.75rem);
    line-height: 1.12;
    margin-bottom: 0.6rem;
  }
  .hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    margin-bottom: 0.65rem;
  }
  .hero-description {
    font-size: clamp(0.875rem, 1.05vw, 0.975rem);
    line-height: 1.55;
    margin-bottom: 1.35rem;
    max-width: 480px;
  }
  .hero-actions {
    gap: 0.85rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 0.85rem 1.65rem;
    font-size: 0.825rem;
  }
  .slider-controls-wrapper {
    right: 6%;
    bottom: clamp(3rem, 6vh, 4.5rem);
    gap: 1.25rem;
  }
  .slider-progress-track {
    width: 100px;
  }
}

/* Short Viewport Heights on Desktop (<= 768px height) */
@media (min-width: 769px) and (max-height: 768px) {
  .hero-eyebrow {
    margin-bottom: 0.65rem;
  }
  .hero-headline {
    margin-bottom: 0.45rem;
  }
  .hero-subtitle {
    margin-bottom: 0.5rem;
  }
  .hero-description {
    margin-bottom: 1.25rem;
  }
}

/* Tablet Portrait & Mobile (768px and below) — Full-Width Integrated Hero Banner */
@media (max-width: 768px) {
  .site-header {
    padding: 1.1rem 1.25rem;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.75) 0%, rgba(20, 20, 20, 0) 100%);
  }

  .brand-mark-img {
    width: 32px;
    height: 32px;
  }
  
  .nav-menu,
  .nav-cta-btn {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  /* Full-width visual hero composition matching target reference */
  .hero-wrapper {
    position: relative;
    width: 100%;
    height: clamp(380px, 62vh, 520px);
    min-height: 360px;
    max-height: 520px;
    overflow: hidden;
    background-color: var(--color-graphite-dark);
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
  }

  .slide-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Custom object-positioning per slide to ensure products remain in ideal view */
  #slide-1 .slide-bg-image {
    object-fit: cover;
    object-position: center 48%;
  }
  #slide-2 .slide-bg-image {
    object-fit: cover;
    object-position: center 50%;
  }
  #slide-3 .slide-bg-image {
    object-fit: cover;
    object-position: center 50%;
  }
  #slide-4 .slide-bg-image {
    object-fit: cover;
    object-position: center 42%;
  }

  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg, 
      rgba(18, 18, 18, 0.65) 0%, 
      rgba(18, 18, 18, 0.1) 45%, 
      rgba(18, 18, 18, 0.65) 100%
    );
    pointer-events: none;
  }

  /* Hide Hero Content Text Overlay on Mobile for Minimal Hardware Presentation */
  .hero-content-wrapper {
    display: none !important;
  }

  /* Bottom Floating Slider Controls on Mobile */
  .slider-controls-wrapper {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    width: calc(100% - 2.5rem);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .slider-counter-block {
    gap: 0.5rem;
  }

  .current-slide-num {
    font-size: 1.25rem;
    min-width: auto;
    color: var(--color-brass-primary);
  }

  .total-slide-num {
    font-size: 0.85rem;
    color: rgba(245, 241, 232, 0.7);
  }

  .slider-progress-track {
    width: 60px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.25);
  }

  .arrow-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(245, 241, 232, 0.3);
    background: rgba(36, 36, 36, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

/* Specific Mobile Breakpoint (575px and below) */
@media (max-width: 575px) {
  .site-header {
    padding: 1rem 1.15rem;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.55rem;
  }

  .hero-wrapper {
    height: clamp(340px, 58vh, 480px);
    min-height: 340px;
    max-height: 480px;
  }

  .slider-controls-wrapper {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
  }

  .slider-progress-track {
    width: 45px;
  }

  .arrow-btn {
    width: 36px;
    height: 36px;
  }

  .arrow-btn svg {
    width: 15px;
    height: 15px;
  }
}

/* Small Narrow Mobile (390px - 320px) */
@media (max-width: 390px) {
  .hero-wrapper {
    height: clamp(320px, 55vh, 440px);
    min-height: 320px;
  }

  .slider-controls-wrapper {
    bottom: 0.85rem;
  }
}



/* ==========================================================================
   9. AELEX Editorial / Architectural Brand Section Styling
   ========================================================================== */
.brand-editorial-section {
  position: relative;
  width: 100%;
  background-color: white;
  color: var(--color-text-dark);
  padding: 8.5rem 9%;
  overflow: hidden;
  border-top: 1px solid rgba(214, 210, 202, 0.4);
}

/* Asymmetric Two-Column Grid Layout */
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Left Zone: Large Editorial Typography & Architectural Annotations
   -------------------------------------------------------------------------- */
.editorial-left-zone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Small Uppercase Eyebrow */
.editorial-eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted-dark);
  margin-bottom: 2rem;
}

.editorial-eyebrow-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--color-brass-primary);
}

/* Stacked Editorial Headline */
.editorial-headline-block {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--color-text-dark);
}

.editorial-line {
  display: block;
}

.editorial-line.line-1 {
  font-weight: 700;
  color: var(--color-text-dark);
}

.editorial-line.line-2 {
  font-weight: 800;
  color: var(--color-brass-primary);
  letter-spacing: 0.01em;
}

.editorial-line.line-3 {
  font-weight: 500;
  color: #383632;
}

/* Narrative Body Copy */
.editorial-lead-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.075rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-muted-dark);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.editorial-lead-text strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

/* Architectural Design Annotations (Engineering Callouts) */
.editorial-annotations-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 480px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line-geo);
}

.annotation-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.annotation-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-brass-primary);
  text-transform: uppercase;
}

.annotation-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-dark);
  text-transform: uppercase;
}

.annotation-desc {
  font-family: var(--font-body);
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--color-text-muted-dark);
}

/* --------------------------------------------------------------------------
   Right Zone: Circular Visual Composition & Architectural Geometry
   -------------------------------------------------------------------------- */
.editorial-right-zone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

/* SVG Geometric Engineering Lines Backdrop */
.geo-lines-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  pointer-events: none;
  z-index: 1;
}

.geo-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.geo-svg circle,
.geo-svg line,
.geo-svg path {
  stroke: var(--color-line-geo);
  stroke-width: 1px;
  fill: none;
  vector-effect: non-scaling-stroke;
}

.geo-svg .dashed-line {
  stroke-dasharray: 4 6;
}

.geo-svg .brass-line {
  stroke: var(--color-brass-primary);
  opacity: 0.5;
}

/* SVG Curved Text Path */
.curved-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  width: 360px;
  height: 360px;
  pointer-events: none;
  z-index: 3;
  animation: spinSlow 40s linear infinite;
  will-change: transform;
}

@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.curved-text-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.curved-text-path {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  fill: var(--color-text-muted-dark);
  text-transform: uppercase;
}

/* Main Circular Image Frame (Small 280px Desktop Circle) */
.editorial-circle-frame {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 18px 45px rgba(18, 18, 18, 0.1);
  border: 1px solid var(--color-line-geo);
  background-color: #FFFFFF;
  cursor: pointer;
  transition: box-shadow 0.5s var(--ease-out-smooth), transform 0.5s var(--ease-out-smooth);
}

.editorial-circle-frame:hover {
  box-shadow: 0 25px 60px rgba(176, 141, 87, 0.2);
  transform: scale(1.02);
}

.editorial-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out-smooth), filter 0.5s ease;
}

.editorial-circle-frame:hover .editorial-product-img {
  transform: scale(1.07);
  filter: brightness(1.03);
}

/* Interactive Hover Badge */
/* .editorial-hover-badge {
  position: absolute;
  bottom: 10%;
  right: 8%;
  z-index: 5;
  padding: 0.5rem 0.95rem;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-warm-offwhite);
  font-family: var(--font-body);
  font-size: 0.675rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 30px;
  border: 1px solid var(--color-brass-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.4s var(--ease-out-smooth);
  pointer-events: none;
} */

.editorial-circle-frame:hover .editorial-hover-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.editorial-hover-badge .badge-arrow {
  color: var(--color-brass-primary);
  transition: transform 0.3s ease;
}

.editorial-circle-frame:hover .editorial-hover-badge .badge-arrow {
  transform: translateX(3px);
}

/* Floating Secondary Accent 1 (Bottom Left - Brass Tower Bolt) */
.secondary-accent-1 {
  position: absolute;
  bottom: -4%;
  left: -8%;
  z-index: 4;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FFFFFF;
  box-shadow: 0 10px 25px rgba(18, 18, 18, 0.12);
  background: #FFFFFF;
  transition: transform 0.5s var(--ease-out-smooth);
}

.secondary-accent-1:hover {
  transform: translateY(-4px) scale(1.06);
}

.secondary-accent-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-caption-tag {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text-dark);
  color: var(--color-warm-offwhite);
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  white-space: nowrap;
  border-radius: 2px;
}

/* Floating Secondary Accent 2 (Top Right - Steel Fitting Detail) */
.secondary-accent-2 {
  position: absolute;
  top: -2%;
  right: -6%;
  z-index: 4;
  width: 65px;
  height: 65px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-line-geo);
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.06);
  padding: 3px;
  transition: transform 0.5s var(--ease-out-smooth);
}

.secondary-accent-2:hover {
  transform: translateY(-4px) scale(1.06);
}

.secondary-accent-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-smooth), transform 0.9s var(--ease-out-smooth);
}

.reveal-element.reveal-scale {
  transform: scale(0.92);
}

.brand-editorial-section.in-view .reveal-element {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger Delays */
.brand-editorial-section.in-view .delay-1 { transition-delay: 0.15s; }
.brand-editorial-section.in-view .delay-2 { transition-delay: 0.3s; }
.brand-editorial-section.in-view .delay-3 { transition-delay: 0.45s; }
.brand-editorial-section.in-view .delay-4 { transition-delay: 0.6s; }
.brand-editorial-section.in-view .delay-5 { transition-delay: 0.75s; }

/* --------------------------------------------------------------------------
   Responsive Media Queries — Editorial Section
   -------------------------------------------------------------------------- */

/* Laptop / Desktop (1280px - 1440px) */
@media (max-width: 1440px) {
  .brand-editorial-section {
    padding: 6.5rem 7%;
  }

  .editorial-grid {
    gap: 3rem;
  }

  .editorial-circle-frame {
    width: 260px;
    height: 260px;
  }

  .curved-text-wrapper {
    width: 340px;
    height: 340px;
  }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .brand-editorial-section {
    padding: 5.5rem 6%;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .editorial-left-zone {
    max-width: 600px;
  }

  .editorial-right-zone {
    justify-content: center;
  }

  .editorial-circle-frame {
    width: 260px;
    height: 260px;
  }

  .curved-text-wrapper {
    width: 340px;
    height: 340px;
  }
}

/* Tablet Portrait & Mobile (768px and below) */
@media (max-width: 768px) {
  .brand-editorial-section {
    padding: 4.5rem 5%;
  }

  .editorial-headline-block {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
  }

  .editorial-lead-text {
    font-size: 0.925rem;
    margin-bottom: 2rem;
  }

  .editorial-annotations-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .editorial-circle-frame {
    width: 240px;
    height: 240px;
  }

  .curved-text-wrapper {
    width: 310px;
    height: 310px;
  }

  .secondary-accent-1 {
    width: 70px;
    height: 70px;
    left: -4%;
  }

  .secondary-accent-2 {
    width: 55px;
    height: 55px;
    right: -4%;
  }
}

/* Small Mobile (390px - 360px) */
@media (max-width: 414px) {
  .brand-editorial-section {
    padding: 3.5rem 1.25rem;
  }

  .editorial-eyebrow-label {
    font-size: 0.68rem;
    margin-bottom: 1rem;
  }

  .editorial-headline-block {
    font-size: 1.6rem;
    line-height: 1.15;
  }

  .editorial-circle-frame {
    width: 220px;
    height: 220px;
  }

  .curved-text-wrapper {
    width: 280px;
    height: 280px;
  }

  .secondary-accent-1 {
    width: 60px;
    height: 60px;
    left: -5%;
    bottom: -4%;
  }

  .secondary-accent-2 {
    width: 50px;
    height: 50px;
    right: -5%;
    top: 0%;
  }
}

/* ==========================================================================
   10. AELEX Third Section — Premium Asymmetrical Product Showcase Styling
   ========================================================================== */
.product-showcase-section {
  position: relative;
  width: 100%;
  background-color:#FFFFFF;
  color: var(--color-warm-offwhite);
  padding: 5rem 6%;
  overflow: hidden;
  border-top: 1px solid rgba(245, 243, 239, 0.08);
}

/* Showcase Intro Header */
.showcase-intro-block {
  max-width: 760px;
  margin-bottom: 4.5rem;
}

.showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brass-primary);
  margin-bottom: 1.25rem;
}

.showcase-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-brass-primary);
}

.showcase-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #b08d57;
  margin-bottom: 1.25rem;
}

.showcase-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-muted-grey);
  max-width: 580px;
}

/* Asymmetrical CSS Grid Layout */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  grid-template-rows: auto auto auto;
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* Base Panel Styling */
.showcase-panel {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.5s var(--ease-out-smooth), box-shadow 0.5s var(--ease-out-smooth);
}

/* Panel 01: Dominant Product Photography (Left - Spans 2 Rows) */
.panel-dominant {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 560px;
  background-color: var(--color-charcoal);
  border: 1px solid rgba(245, 243, 239, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.panel-dominant .panel-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out-smooth), filter 0.5s ease;
}

.panel-dominant:hover .panel-bg-image {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.panel-dominant-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.1) 0%, rgba(18, 18, 18, 0.85) 100%);
  pointer-events: none;
}

.panel-dominant-content {
  position: relative;
  z-index: 5;
  padding: 2.5rem;
}

.panel-tag-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-brass-primary);
  color: var(--color-brass-light);
  font-family: var(--font-heading);
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-radius: 2px;
}

.panel-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-warm-offwhite);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.panel-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted-grey);
}

/* Panel 02: Technical Statement (Top Middle - Matte Black Card) */
.panel-text-dark-1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background-color: #ffffff;
  border: 1px solid rgba(245, 243, 239, 0.1);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.panel-num-accent {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-brass-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-num-accent::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: rgba(176, 141, 87, 0.3);
}

.panel-statement-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color:#b08d57;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.panel-statement-body {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-muted-grey);
}

/* Panel 03: Product Detail Macro Crop (Top Right) */
.panel-detail-crop {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  min-height: 260px;
  background-color: var(--color-charcoal);
  border: 1px solid rgba(245, 243, 239, 0.1);
  position: relative;
}

.panel-detail-crop .panel-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out-smooth);
}

.panel-detail-crop:hover .panel-bg-image {
  transform: scale(1.06);
}

/* Panel 04: Function Text Panel (Middle Right - Spans Col 2 & 3) */
.panel-text-dark-2 {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  background-color: #ffffff;
  border: 1px solid rgba(245, 243, 239, 0.1);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.panel-text-dark-2 .panel-statement-title {
  font-size: 1.45rem;
}

/* Panel 05: Large Lower Feature Visual (Spans Full Width) */
.panel-feature-wide {
  grid-column: 1 / -1;
  grid-row: 3 / 4;
  min-height: 600px;
  background-color: var(--color-charcoal);
  border: 1px solid rgba(245, 243, 239, 0.12);
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.panel-feature-wide .panel-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out-smooth), filter 0.5s ease;
}

.panel-feature-wide:hover .panel-bg-image {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.panel-feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.4) 50%, rgba(18, 18, 18, 0.7) 100%);
  pointer-events: none;
}

.panel-feature-content {
  position: relative;
  z-index: 5;
  padding: 4rem 3.5rem;
  max-width: 680px;
}

.feature-quote-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brass-primary);
  margin-bottom: 1rem;
}

.feature-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-warm-offwhite);
  margin-bottom: 1rem;
}

.feature-quote-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted-grey);
}

/* Hover Detail Indicator Badge */
.panel-detail-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 6;
  padding: 0.45rem 0.85rem;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 243, 239, 0.2);
  color: var(--color-warm-offwhite);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.35s var(--ease-out-smooth);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.showcase-panel:hover .panel-detail-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Reveal in Showcase Section */
.product-showcase-section.in-view .reveal-element {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries — Product Showcase Section
   -------------------------------------------------------------------------- */

/* Laptop / Desktop (1280px - 1440px) */
@media (max-width: 1440px) {
  .product-showcase-section {
    padding: 7.5rem 7%;
  }

  .showcase-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 1.5rem;
  }

  .panel-dominant {
    min-height: 500px;
  }

  .panel-feature-wide {
    min-height: 420px;
  }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .panel-detail-badge {
    opacity: 1;
    transform: translateY(0);
  }

  .product-showcase-section {
    padding: 6rem 6%;
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .panel-dominant {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }

  .panel-text-dark-1 {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .panel-detail-crop {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .panel-text-dark-2 {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .panel-feature-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 380px;
  }
}

/* Tablet Portrait & Mobile (768px and below) */
@media (max-width: 768px) {
  .product-showcase-section {
    padding: 4.5rem 5%;
  }

  .showcase-intro-block {
    margin-bottom: 3rem;
  }

  .showcase-headline {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .panel-dominant {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .panel-text-dark-1,
  .panel-text-dark-2 {
    grid-column: 1 / -1;
    padding: 2.25rem 1.75rem;
    min-height: auto;
  }

  .panel-detail-crop {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .panel-feature-wide {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .panel-feature-content {
    padding: 2.5rem 1.75rem;
  }

  .feature-quote-text {
    font-size: 1.65rem;
  }
}

/* Small Mobile (390px - 360px) */
@media (max-width: 414px) {
  .product-showcase-section {
    padding: 3.5rem 1.25rem;
  }

  .showcase-intro-block {
    margin-bottom: 2.25rem;
  }

  .showcase-headline {
    font-size: 1.75rem;
  }

  .panel-dominant {
    min-height: 320px;
  }

  .panel-dominant-content {
    padding: 1.5rem;
  }

  .panel-title {
    font-size: 1.25rem;
  }

  .panel-text-dark-1,
  .panel-text-dark-2 {
    padding: 1.75rem 1.25rem;
  }

  .panel-statement-title {
    font-size: 1.15rem;
  }

  .panel-feature-wide {
    min-height: 320px;
  }

  .panel-feature-content {
    padding: 1.75rem 1.25rem;
  }

  .feature-quote-text {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   11. AELEX Fourth Section — Minimal Product Category Showcase Styling
   ========================================================================== */
.product-collection-section {
  position: relative;
  width: 100%;
  background-color:white;
  color: var(--color-text-dark, #171717);
  padding: 7.5rem 6%;
  overflow: hidden;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.collection-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

/* Minimal Section Header */
.collection-header {
  margin-bottom: 4rem;
  max-width: 800px;
}

.collection-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brass-primary, #B08D57);
  margin-bottom: 1.25rem;
}

.eyebrow-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-brass-primary, #B08D57);
}

.collection-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-text-dark, #171717);
  margin-bottom: 1rem;
}

.collection-subtext {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-muted-dark, #686660);
  max-width: 580px;
}

/* 4-Card Horizontal Desktop Grid */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

/* Primary Product/Category Card */
.category-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  background-color: #EAE8E3;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  outline: none;
  transition: transform 0.5s var(--ease-out-smooth), box-shadow 0.5s var(--ease-out-smooth);
}

.card-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-out-smooth);
}

.card-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.1) 0%,
    rgba(18, 18, 18, 0.35) 50%,
    rgba(18, 18, 18, 0.88) 100%
  );
  transition: opacity 0.5s ease;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.75rem;
  z-index: 5;
  color: #F7F6F2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease-out-smooth);
}

.card-num-tag {
  font-family: var(--font-heading);
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brass-light, #CBB07E);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.card-cta-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brass-primary, #B08D57);
  opacity: 0.85;
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out-smooth);
}

.card-arrow {
  transition: transform 0.35s var(--ease-out-smooth);
}

/* Card Hover Interactions */
.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.category-card:hover .card-image,
.category-card:focus-visible .card-image {
  transform: scale(1.035);
}

.category-card:hover .card-content,
.category-card:focus-visible .card-content {
  transform: translateY(0);
}

.category-card:hover .card-cta-indicator,
.category-card:focus-visible .card-cta-indicator {
  opacity: 1;
  color: #FFFFFF;
}

.category-card:hover .card-arrow,
.category-card:focus-visible .card-arrow {
  transform: translateX(5px);
}

/* ==========================================================================
   12. AELEX Corporate Footer Styling
   ========================================================================== */
.site-footer {
  position: relative;
  width: 100%;
  background-color: #171717;
  color: #F5F3EE;
  padding: 6.5rem 6% 3.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

/* Top 4-Column Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Brand Identity Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #F5F3EE;
  margin-bottom: 1.5rem;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-brass-primary, #B08D57);
  stroke-width: 2;
  transition: transform 0.4s var(--ease-out-smooth);
}

.footer-logo:hover .footer-logo-svg {
  transform: rotate(45deg);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F5F3EE;
  display: block;
}

.footer-brand-tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brass-primary, #B08D57);
  display: block;
  margin-top: -2px;
  font-weight: 600;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: #A9A59C;
  max-width: 360px;
}

/* Footer Column Titles */
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brass-primary, #B08D57);
  margin-bottom: 1.75rem;
  position: relative;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-brass-primary, #B08D57);
  margin-top: 0.5rem;
}

/* Footer Navigation Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  color: #A9A59C;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #F5F3EE;
  transform: translateX(4px);
}

/* Contact Details */
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A7770;
}

.contact-value {
  color: #F5F3EE;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--color-brass-light, #CBB07E);
}

/* Location Address */
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: #A9A59C;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.address-line,
.contact-value,
.factory-info-text,
.quick-info-val {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.address-name {
  color: #F5F3EE;
  font-weight: 600;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin-bottom: 2.5rem;
}

/* Bottom Footer Row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.copyright-text {
  font-family: var(--font-body);
  font-size: 0.725rem;
  letter-spacing: 0.12em;
  color: #7A7770;
  text-transform: uppercase;
}

.legal-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-brass-primary, #B08D57);
  text-transform: uppercase;
}

/* Scroll Reveal for Section 4 & Footer */
.product-collection-section .reveal-element,
.site-footer .reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-smooth), transform 0.8s var(--ease-out-smooth);
}

.product-collection-section.in-view .reveal-element,
.site-footer.in-view .reveal-element {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries — Section 4 & Footer
   -------------------------------------------------------------------------- */

/* Laptop (1280px - 1440px) */
@media (max-width: 1440px) {
  .product-collection-section {
    padding: 6.5rem 6%;
  }

  .collection-grid {
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  .product-collection-section {
    padding: 5.5rem 5%;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .category-card {
    aspect-ratio: 3 / 4;
  }

  .site-footer {
    padding: 5.5rem 5% 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2.5rem;
  }
}

/* Tablet Portrait & Mobile (768px and below) */
@media (max-width: 768px) {
  .product-collection-section {
    padding: 4.5rem 5%;
  }

  .collection-header {
    margin-bottom: 2.75rem;
  }

  .collection-headline {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .card-content {
    padding: 1.5rem 1.25rem;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .site-footer {
    padding: 4.5rem 5% 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
  }

  .footer-brand-desc {
    max-width: 100%;
  }
}

/* Mobile Devices (575px to 360px) */
@media (max-width: 575px) {
  .product-collection-section {
    padding: 3.5rem 1.25rem;
  }

  .collection-header {
    margin-bottom: 2.25rem;
  }

  .collection-headline {
    font-size: 1.75rem;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .category-card {
    aspect-ratio: 3 / 4.2;
  }

  .card-content {
    padding: 1.15rem 0.85rem;
  }

  .card-num-tag {
    font-size: 0.6rem;
  }

  .card-title {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .card-cta-indicator {
    font-size: 0.625rem;
  }

  .site-footer {
    padding: 3.5rem 1.25rem 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .category-card {
    aspect-ratio: 3 / 3.8;
  }
}

/* Reduced Motion Accessibility Support */
@media (prefers-reduced-motion: reduce) {
  .product-collection-section .reveal-element,
  .site-footer .reveal-element,
  .about-hero-section .reveal-element,
  .about-intro-section .reveal-element {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .curved-text-wrapper {
    animation: none;
  }
}

/* ==========================================================================
   13. AELEX About Page — Complete Rebuild (Clean Minimal Architecture)
   ========================================================================== */

/* Common Container Utility for Rebuilt About Sections */
.about-clean-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.clean-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brass-primary, #B08D57);
  margin-bottom: 1.25rem;
}

.eyebrow-brass-line {
  display: inline-block;
  width: 22px;
  height: 2px;
  background-color: var(--color-brass-primary, #B08D57);
}

.clean-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-text-dark, #171717);
  margin-bottom: 1.75rem;
}

.clean-headline .highlight-brass {
  color: var(--color-brass-primary, #B08D57);
}

.clean-body-copy {
  font-family: var(--font-body);
  font-size: clamp(0.925rem, 1.05vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-muted-dark, #5A5751);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 550px;
}

.clean-img-wrapper {
  width: 100%;
  max-width: 360px; /* Constrained small/medium desktop image 300-420px */
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #EAE8E3;
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.clean-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out-smooth);
}

@media (hover: hover) and (pointer: fine) {
  .clean-img-wrapper:hover .clean-product-img {
    transform: scale(1.025);
  }
}

/* --------------------------------------------------------------------------
   SECTION 1 — ABOUT HERO (.about-hero-clean)
   -------------------------------------------------------------------------- */
.about-hero-clean {
  position: relative;
  width: 100%;
  height: 98vh;
  min-height: 520px;
  background-color: var(--color-graphite-dark, #121212);
  color: var(--color-warm-offwhite, #F5F3EF);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--overlay-dark, linear-gradient(90deg, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.55) 50%, rgba(18, 18, 18, 0.65) 100%)); */
}

.about-hero-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-hero-content-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6% 4.5rem;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brass-primary, #B08D57);
  margin-bottom: 1rem;
}

.eyebrow-brass-bar {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-brass-primary, #B08D57);
}

.about-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-warm-offwhite, #F5F3EF);
  margin-bottom: 0.75rem;
}

.about-hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-brass-light, #CBB07E);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-hero-statement {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-muted-grey, #9E9C98);
  max-width: 580px;
}

/* --------------------------------------------------------------------------
   SECTION 2 — ABOUT INTRODUCTION (.about-intro-clean)
   -------------------------------------------------------------------------- */
.about-intro-clean {
  position: relative;
  width: 100%;
  background-color: var(--bg-editorial, #f0ece6);
  color: var(--color-text-dark, #171717);
  padding: 8rem 8%;
  overflow: hidden;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
}

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

.about-intro-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* --------------------------------------------------------------------------
   SECTION 3 — AELEX DESIGN PHILOSOPHY (.about-philosophy-clean)
   -------------------------------------------------------------------------- */
.about-philosophy-clean {
  position: relative;
  width: 100%;
  background-color: var(--bg-editorial, #F7F6F2);
  color: var(--color-text-dark, #171717);
  padding: 5rem 10% 5rem;
  overflow: hidden;
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  /* gap: 5rem; */
}

.about-philosophy-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

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

/* --------------------------------------------------------------------------
   SECTION 4 — QUALITY / CRAFTSMANSHIP (.about-craft-clean)
   -------------------------------------------------------------------------- */
.about-craft-clean {
  position: relative;
  width: 100%;
  background-color: var(--color-warm-ivory); /* Warm Ivory contrasting background */
  color: var(--color-text-dark, #171717);
  padding: 8.5rem 6%;
  overflow: hidden;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
}

.craft-header-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-eyebrow {
  justify-content: center;
}

.center-headline {
  text-align: center;
}

.craft-lead-statement {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-muted-dark, #5A5751);
  margin-top: 0.5rem;
}

/* 3 Text-Based Editorial Points (No boxes, no cards) */
.craft-editorial-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  position: relative;
}

.craft-point-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid rgba(176, 141, 87, 0.3);
  padding-top: 1.5rem;
}

.point-num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-brass-primary, #B08D57);
  margin-bottom: 0.5rem;
}

.point-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dark, #171717);
  margin-bottom: 0.75rem;
}

.point-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted-dark, #5A5751);
}

/* --------------------------------------------------------------------------
   SECTION 5 — SIMPLE ABOUT CTA (.about-cta-clean)
   -------------------------------------------------------------------------- */
.about-cta-clean {
  position: relative;
  width: 100%;
  background-color: var(--bg-editorial, #F7F6F2);
  color: var(--color-text-dark, #171717);
  padding: 8.5rem 6%;
  overflow: hidden;
  text-align: center;
}

.cta-clean-block {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-headline {
  margin-bottom: 1.25rem;
}

.cta-support-copy {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.65;
  color: var(--color-text-muted-dark, #5A5751);
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.cta-action-wrap {
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Reveal Animations System
   -------------------------------------------------------------------------- */
.about-hero-clean .reveal-element,
.about-intro-clean .reveal-element,
.about-philosophy-clean .reveal-element,
.about-craft-clean .reveal-element,
.about-cta-clean .reveal-element {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-smooth), transform 0.8s var(--ease-out-smooth);
}

.about-intro-clean .reveal-left,
.about-philosophy-clean .reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s var(--ease-out-smooth), transform 0.8s var(--ease-out-smooth);
}

.about-intro-clean .reveal-right,
.about-philosophy-clean .reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s var(--ease-out-smooth), transform 0.8s var(--ease-out-smooth);
}

.in-view .reveal-element {
  opacity: 1;
  transform: translateY(0);
}

.in-view .reveal-left,
.in-view .reveal-right {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* --------------------------------------------------------------------------
   Responsive Breakpoints & Overflow-Free Mobile Safety
   -------------------------------------------------------------------------- */

/* Laptop (1280px - 1440px) */
@media (max-width: 1440px) {
  .about-intro-clean,
  .about-philosophy-clean,
  .about-craft-clean,
  .about-cta-clean {
    padding: 7rem 6%;
  }

  .about-intro-grid,
  .about-philosophy-grid {
    gap: 4rem;
  }

  .clean-img-wrapper {
    max-width: 330px;
  }
}

/* Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) {
  .about-hero-clean {
    height: 60vh;
    min-height: 440px;
  }

  .about-intro-clean,
  .about-philosophy-clean,
  .about-craft-clean,
  .about-cta-clean {
    padding: 6rem 5%;
  }

  .about-intro-grid,
  .about-philosophy-grid {
    gap: 3rem;
  }

  .clean-img-wrapper {
    max-width: 300px;
  }

  .craft-editorial-points {
    gap: 2.5rem;
  }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
  .about-hero-clean {
    height: 52vh;
    min-height: 380px;
  }

  .about-hero-content-wrapper {
    padding: 0 5% 3.5rem;
  }

  .about-intro-clean,
  .about-philosophy-clean,
  .about-craft-clean,
  .about-cta-clean {
    padding: 5rem 5%;
  }

  .about-intro-grid,
  .about-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-intro-image,
  .about-philosophy-image {
    justify-content: flex-start;
  }

  .clean-body-copy {
    max-width: 100%;
  }

  .clean-img-wrapper {
    max-width: 320px;
  }

  .craft-editorial-points {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .craft-header-block {
    margin-bottom: 3.5rem;
  }
}

/* Mobile Devices (575px to 360px) */
@media (max-width: 575px) {
  .about-hero-clean {
    height: auto;
    min-height: 340px;
    padding-top: 5.5rem;
  }

  .about-hero-content-wrapper {
    padding: 0 1.25rem 2.5rem;
  }

  .about-hero-headline {
    font-size: 2.25rem;
  }

  .about-hero-subtitle {
    font-size: 0.95rem;
  }

  .about-intro-clean,
  .about-philosophy-clean,
  .about-craft-clean,
  .about-cta-clean {
    padding: 3.5rem 1.25rem;
  }

  .clean-headline {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
    margin-bottom: 1.25rem;
  }

  .clean-body-copy {
    font-size: 0.925rem;
    line-height: 1.65;
    gap: 0.85rem;
  }

  .about-intro-image,
  .about-philosophy-image {
    justify-content: center;
    width: 100%;
  }

  .clean-img-wrapper {
    width: 85%;
    max-width: 290px;
  }

  .craft-header-block {
    margin-bottom: 2.5rem;
  }

  .craft-editorial-points {
    gap: 1.75rem;
  }
}

/* Mobile Animation Safety: Switch horizontal transforms to vertical to guarantee ZERO horizontal scrollbar on small screens */
@media (max-width: 768px) {
  .about-intro-clean .reveal-left,
  .about-intro-clean .reveal-right,
  .about-philosophy-clean .reveal-left,
  .about-philosophy-clean .reveal-right {
    transform: translateY(28px);
  }
}

/* Reduced Motion Accessibility Support */
@media (prefers-reduced-motion: reduce) {
  .about-hero-clean .reveal-element,
  .about-intro-clean .reveal-element,
  .about-philosophy-clean .reveal-element,
  .about-craft-clean .reveal-element,
  .about-cta-clean .reveal-element,
  .about-intro-clean .reveal-left,
  .about-intro-clean .reveal-right,
  .about-philosophy-clean .reveal-left,
  .about-philosophy-clean .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   14. AELEX Product Page Styles — Recreated Content Area
   ========================================================================== */

/* Container Utility for Product Sections */
.product-clean-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

/* --------------------------------------------------------------------------
   SECTION 1 — PRODUCT HERO (.product-hero-clean)
   -------------------------------------------------------------------------- */
.product-hero-clean {
  position: relative;
  width: 100%;
  height: 98vh;
  min-height: 500px;
  background-color: var(--color-graphite-dark, #121212);
  color: var(--color-warm-offwhite, #F5F3EF);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.product-hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--overlay-dark, linear-gradient(90deg, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.55) 50%, rgba(18, 18, 18, 0.65) 100%)); */
}

.product-hero-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bottom-vignette, linear-gradient(180deg, rgba(18, 18, 18, 0.5) 0%, transparent 40%, rgba(18, 18, 18, 0.95) 100%));
}

.product-hero-content-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6% 4rem;
}

.product-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brass-primary, #B08D57);
  margin-bottom: 1rem;
}

.product-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-warm-offwhite, #F5F3EF);
  margin-bottom: 1rem;
}

.product-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-muted-grey, #9E9C98);
  max-width: 580px;
  margin-bottom: 2rem;
}

.product-hero-action {
  display: flex;
}

/* --------------------------------------------------------------------------
   SECTION 2 — FEATURED PRODUCT COLLECTION (.product-collection-clean)
   -------------------------------------------------------------------------- */
.product-collection-clean {
  position: relative;
  width: 100%;
  background-color: var(--bg-editorial, #F7F6F2);
  color: var(--color-text-dark, #171717);
  padding: 7.5rem 6%;
  overflow: hidden;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
}

.collection-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4.5rem;
}

.collection-visual-block {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.collection-main-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #EAE8E3;
  border-radius: 2px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.collection-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.35s var(--ease-out-smooth), transform 0.6s var(--ease-out-smooth);
}

.collection-img-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background-color: rgba(23, 23, 23, 0.88);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.collection-content-block {
  display: flex;
  flex-direction: column;
}

.collection-action-wrap {
  margin-bottom: 2rem;
}

/* Horizontal Interactive Thumbnail Strip */
.collection-thumbnail-strip {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.thumbnail-strip-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-brass-primary, #B08D57);
  text-transform: uppercase;
}

.thumbnail-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.thumb-item {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  outline: none;
  transition: transform 0.3s ease;
}

.thumb-img-box {
  width: 66px;
  height: 66px;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 2px;
  overflow: hidden;
  background-color: #EAE8E3;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.thumb-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-muted-dark, #6E6B64);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.thumb-item:hover .thumb-img-box,
.thumb-item.active .thumb-img-box {
  border-color: var(--color-brass-primary, #B08D57);
  box-shadow: 0 4px 14px rgba(176, 141, 87, 0.25);
  transform: translateY(-2px);
}

.thumb-item.active .thumb-label,
.thumb-item:hover .thumb-label {
  color: var(--color-text-dark, #171717);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   SECTION 3 — EXPLORE AELEX COLLECTION (.product-editorial-clean)
   -------------------------------------------------------------------------- */
.product-editorial-clean {
  position: relative;
  width: 100%;
  background-color: var(--bg-editorial, #F7F6F2);
  color: var(--color-text-dark, #171717);
  padding: 7.5rem 6%;
  overflow: hidden;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
}

.editorial-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-start;
  gap: 4.5rem;
  margin-bottom: 3.5rem;
}

.editorial-main-heading {
  margin-bottom: 1.75rem;
}

.editorial-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.cat-nav-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted-dark, #6E6B64);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.cat-nav-link:hover,
.cat-nav-link.active {
  color: var(--color-text-dark, #171717);
  border-bottom-color: var(--color-brass-primary, #B08D57);
}

/* Curated 3-Photo Collage Right */
.editorial-photo-collage {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  width: 100%;
}

.collage-item {
  overflow: hidden;
  border-radius: 2px;
  background-color: #EAE8E3;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-item-1 {
  width: 36%;
  aspect-ratio: 3 / 4;
}

.collage-item-2 {
  width: 34%;
  aspect-ratio: 3 / 4;
  margin-top: 1.75rem;
}

.collage-item-3 {
  width: 30%;
  aspect-ratio: 3 / 4;
  margin-top: 3.5rem;
}

/* Asymmetrical Showcase Wrap */
.editorial-showcase-wrap {
  padding-top: 3.5rem;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.editorial-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4.5rem;
}

.showcase-images-col {
  display: flex;
  width: 100%;
}

.showcase-wide-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.showcase-wide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-story-col {
  display: flex;
  flex-direction: column;
}

.showcase-product-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-text-dark, #171717);
  margin-bottom: 1.25rem;
}

.showcase-product-copy {
  font-family: var(--font-body);
  font-size: clamp(0.925rem, 1.05vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-muted-dark, #5A5751);
  margin-bottom: 1.5rem;
}

.showcase-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  padding-top: 1.25rem;
}

.showcase-spec-list li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted-dark, #5A5751);
}

.showcase-spec-list span {
  font-weight: 700;
  color: var(--color-text-dark, #171717);
}

/* --------------------------------------------------------------------------
   SECTION 4 — FEATURED PRODUCT SHOWCASE (.product-showcase-alt)
   -------------------------------------------------------------------------- */
.product-showcase-alt {
  position: relative;
  width: 100%;
  background-color: #F2F0EB; /* Soft contrast background */
  color: var(--color-text-dark, #171717);
  padding: 7.5rem 6%;
  overflow: hidden;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
}

.showcase-alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4.5rem;
}

.showcase-alt-content {
  display: flex;
  flex-direction: column;
}

.showcase-alt-action {
  margin-top: 1rem;
}

.showcase-alt-visual {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.showcase-alt-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #EAE8E3;
  border-radius: 2px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.showcase-alt-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.showcase-alt-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background-color: rgba(23, 23, 23, 0.88);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* --------------------------------------------------------------------------
   SECTION 5 — SIMPLE PRODUCT CTA (.product-cta-clean)
   -------------------------------------------------------------------------- */
.product-cta-clean {
  position: relative;
  width: 100%;
  background-color: var(--bg-editorial, #F7F6F2);
  color: var(--color-text-dark, #171717);
  padding: 7.5rem 6%;
  overflow: hidden;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Scroll Animations for Product Page
   -------------------------------------------------------------------------- */

/* Safe Progressive Enhancement: Default content is visible. Hide only when JS is active */
.js-enabled .product-hero-clean .reveal-element,
.js-enabled .product-collection-clean .reveal-element,
.js-enabled .product-editorial-clean .reveal-element,
.js-enabled .product-showcase-alt .reveal-element,
.js-enabled .product-cta-clean .reveal-element {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-smooth), transform 0.8s var(--ease-out-smooth);
}

.js-enabled .product-collection-clean .reveal-left,
.js-enabled .product-editorial-clean .reveal-left,
.js-enabled .product-showcase-alt .reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.8s var(--ease-out-smooth), transform 0.8s var(--ease-out-smooth);
}

.js-enabled .product-collection-clean .reveal-right,
.js-enabled .product-editorial-clean .reveal-right,
.js-enabled .product-showcase-alt .reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.8s var(--ease-out-smooth), transform 0.8s var(--ease-out-smooth);
}

/* Explicit High-Specificity Rules to Make Elements Visible when .in-view is Added */
.product-hero-clean.in-view .reveal-element,
.product-collection-clean.in-view .reveal-element,
.product-editorial-clean.in-view .reveal-element,
.product-showcase-alt.in-view .reveal-element,
.product-cta-clean.in-view .reveal-element,
.in-view .reveal-element {
  opacity: 1;
  transform: translateY(0);
}

.product-collection-clean.in-view .reveal-left,
.product-editorial-clean.in-view .reveal-left,
.product-showcase-alt.in-view .reveal-left,
.in-view .reveal-left {
  opacity: 1;
  transform: translateX(0);
}

.product-collection-clean.in-view .reveal-right,
.product-editorial-clean.in-view .reveal-right,
.product-showcase-alt.in-view .reveal-right,
.in-view .reveal-right {
  opacity: 1;
  transform: translateX(0);
}


/* --------------------------------------------------------------------------
   Responsive Media Queries — Product Page
   -------------------------------------------------------------------------- */

/* Laptop (1280px - 1440px) */
@media (max-width: 1440px) {
  .product-collection-clean,
  .product-editorial-clean,
  .product-showcase-alt,
  .product-cta-clean {
    padding: 6.5rem 6%;
  }

  .collection-showcase-grid,
  .editorial-top-grid,
  .editorial-showcase-grid,
  .showcase-alt-grid {
    gap: 4rem;
  }
}

/* Tablet Landscape (1024px - 1199px) */
@media (max-width: 1199px) {
  .product-hero-clean {
    height: 60vh;
    min-height: 440px;
  }

  .product-collection-clean,
  .product-editorial-clean,
  .product-showcase-alt,
  .product-cta-clean {
    padding: 5.5rem 5%;
  }

  .collection-showcase-grid,
  .editorial-top-grid,
  .editorial-showcase-grid,
  .showcase-alt-grid {
    gap: 3rem;
  }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
  .product-hero-clean {
    height: 52vh;
    min-height: 380px;
  }

  .product-hero-content-wrapper {
    padding: 0 5% 3.5rem;
  }

  .product-collection-clean,
  .product-editorial-clean,
  .product-showcase-alt,
  .product-cta-clean {
    padding: 4.5rem 5%;
  }

  .collection-showcase-grid,
  .editorial-top-grid,
  .editorial-showcase-grid,
  .showcase-alt-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .collection-visual-block,
  .showcase-alt-visual {
    justify-content: flex-start;
  }

  .collection-main-frame,
  .showcase-alt-frame {
    max-width: 380px;
  }
}

/* Mobile Devices (575px to 360px) */
@media (max-width: 575px) {
  .product-hero-clean {
    height: auto;
    min-height: 340px;
    padding-top: 5.5rem;
  }

  .product-hero-content-wrapper {
    padding: 0 1.25rem 2.5rem;
  }

  .product-hero-headline {
    font-size: 2.25rem;
  }

  .product-collection-clean,
  .product-editorial-clean,
  .product-showcase-alt,
  .product-cta-clean {
    padding: 3.5rem 1.25rem;
  }

  .collection-main-frame,
  .showcase-alt-frame {
    max-width: 100%;
  }

  .thumbnail-row {
    gap: 0.75rem;
  }

  .thumb-img-box {
    width: 56px;
    height: 56px;
  }

  .editorial-photo-collage {
    flex-direction: column;
    gap: 1rem;
  }

  .collage-item-1,
  .collage-item-2,
  .collage-item-3 {
    width: 100%;
    margin-top: 0;
    aspect-ratio: 16 / 10;
  }
}

/* Mobile Animation Safety: Switch horizontal transforms to vertical to guarantee ZERO horizontal scrollbar on small screens */
@media (max-width: 768px) {
  .product-collection-clean .reveal-left,
  .product-collection-clean .reveal-right,
  .product-editorial-clean .reveal-left,
  .product-editorial-clean .reveal-right,
  .product-showcase-alt .reveal-left,
  .product-showcase-alt .reveal-right {
    transform: translateY(28px);
  }
}

/* Reduced Motion Accessibility Support */
@media (prefers-reduced-motion: reduce) {
  .product-hero-clean .reveal-element,
  .product-collection-clean .reveal-element,
  .product-editorial-clean .reveal-element,
  .product-showcase-alt .reveal-element,
  .product-cta-clean .reveal-element,
  .product-collection-clean .reveal-left,
  .product-collection-clean .reveal-right,
  .product-editorial-clean .reveal-left,
  .product-editorial-clean .reveal-right,
  .product-showcase-alt .reveal-left,
  .product-showcase-alt .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   AELEX — NEW EDITORIAL PRODUCT CONTENT & SLIDER DESIGN SYSTEM
   ========================================================================== */

.product-page-main-content {
  position: relative;
  width: 100%;
  background-color: var(--bg-editorial, #F7F6F2);
  color: var(--color-text-dark, #171717);
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   1. EDITORIAL PRODUCT COLLECTION (.product-collection-editorial)
   -------------------------------------------------------------------------- */
.product-collection-editorial {
  position: relative;
  width: 100%;
  padding: 4.5rem 6% 5rem;
  background-color: var(--bg-editorial, #efece6);
  overflow: hidden;
}

.decorative-curves-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.curve-arc {
  position: absolute;
  border: 1px solid rgba(23, 23, 23, 0.05);
  border-radius: 50%;
  pointer-events: none;
  box-sizing: border-box;
}

.curve-arc-1 {
  width: 950px;
  height: 950px;
  top: -120px;
  left: -220px;
}

.curve-arc-2 {
  width: 1200px;
  height: 1200px;
  top: 500px;
  right: -350px;
}

.curve-arc-3 {
  width: 1000px;
  height: 1000px;
  top: 1450px;
  left: -280px;
}

.curve-arc-4 {
  width: 1150px;
  height: 1150px;
  top: 2300px;
  right: -300px;
}

.product-editorial-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
}

.editorial-collection-header {
  margin-bottom: 3.25rem;
  text-align: center;
}

.editorial-collection-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #171717;
  margin-top: 0.5rem;
}

.asymmetrical-product-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.asym-product-card {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
}

.asym-product-card.pos-left {
  justify-content: flex-start;
  padding-left: 10%;
}

.asym-product-card.pos-right {
  justify-content: flex-end;
  padding-right: 10%;
}

.asym-product-card.pos-left-offset {
  justify-content: flex-start;
  padding-left: 10%;
}

.asym-product-card.pos-right-offset {
  justify-content: flex-end;
  padding-right: 10%;
}

.asym-card-inner {
  width: 360px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: default;
  transition: transform 0.4s var(--ease-out-smooth);
}

.asym-image-box {
  width: 100%;
  height: 350px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.improvehight{
 height: 485px;
}
.asym-product-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.08));
  transition: transform 0.45s var(--ease-out-smooth);
}

.asym-product-img.fit-cover {
  width: 100%;
  /* height: 100%; */
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  filter: none;
}

.asym-card-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.asym-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #A09D96;
  letter-spacing: 0.12em;
}

.asym-product-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #171717;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.asym-product-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-text-muted-dark, #5A5751);
  margin: 0.35rem 0 0.5rem;
}

.asym-explore-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #66635C;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  margin-top: 0.2rem;
  transition: color 0.3s ease;
}

.asym-arrow-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease-out-smooth);
}

/* Hover Interactions */
.asym-card-inner:hover .asym-product-img {
  transform: scale(1.05) translateY(-6px);
}

.asym-card-inner:hover .asym-image-box {
  /* background-color: #E6E5E0; */
  /* box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06); */
}

.asym-card-inner:hover .asym-product-name {
  color: #000000;
}

.asym-card-inner:hover .asym-explore-btn {
  color: var(--color-brass-primary, #B08D57);
}

.asym-card-inner:hover .asym-arrow-icon {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   2. CATEGORY SHOWCASE SECTIONS (.category-showcase-section)
   -------------------------------------------------------------------------- */
.category-showcase-section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6.5rem 6%;
  background-color: #fefbf6;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
}

.category-showcase-section.alt-bg {
  background-color: #F1EFEA;
}

.showcase-container {
  max-width: 1280px;
  margin: 0 auto;
}

.showcase-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.showcase-card-grid.reverse-grid .showcase-visual-col {
  order: 1;
}

.showcase-card-grid.reverse-grid .showcase-content-col {
  order: 2;
}

.showcase-category-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #171717;
  margin: 0.65rem 0 1.25rem;
  line-height: 1.2;
}

.showcase-description {
  font-size: 0.95rem;
  color: #5A5751;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.showcase-spec-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.spec-pill {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 23, 23, 0.08);
  padding: 0.65rem 1.1rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  backdrop-filter: blur(4px);
}

.spec-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #9E9C98;
  text-transform: uppercase;
}

.spec-val {
  font-size: 0.825rem;
  font-weight: 600;
  color: #171717;
}

.showcase-visual-col {
  width: 100%;
}

.showcase-img-card {
  position: relative;
  width: 80%;
  aspect-ratio: 0 / 3;
  background-color: #E6E4DE;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out-smooth);
}

.showcase-img-card:hover .showcase-img {
  transform: scale(1.04);
}

.showcase-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background-color: rgba(23, 23, 23, 0.88);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* --------------------------------------------------------------------------
   3. PROFESSIONAL PRODUCT SLIDER (.product-slider-section)
   -------------------------------------------------------------------------- */
.product-slider-section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 7rem 6%;
  background-color: #F7F6F2;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
  overflow: hidden;
}

.product-slider-container {
  max-width: 1320px;
  margin: 0 auto;
}

.slider-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.slider-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #171717;
  margin-top: 0.5rem;
}

.slider-nav-controls {
  display: flex;
  gap: 0.75rem;
}

.slider-arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(23, 23, 23, 0.2);
  background: transparent;
  color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow-btn svg {
  width: 20px;
  height: 20px;
}

.slider-arrow-btn:hover {
  background-color: #171717;
  color: #FFFFFF;
  border-color: #171717;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.slider-viewport:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.5s var(--ease-out-smooth);
  will-change: transform;
}

.slider-card {
  flex: 0 0 calc((100% - 5.25rem) / 4);
  min-width: 260px;
  background-color: #FFFFFF;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 2px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.slider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

.slider-card-img-box {
  width: 100%;
  height: 180px;
  background-color: #F4F3EF;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.25rem;
}

.slider-card-img {
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.45s var(--ease-out-smooth);
}

.slider-card-img.fit-cover {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.slider-card:hover .slider-card-img {
  transform: scale(1.06);
}

.slider-card-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
  justify-content: space-between;
}

.slider-card-category {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-brass-primary, #B08D57);
  text-transform: uppercase;
}

.slider-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #171717;
  margin: 0.2rem 0 0.5rem;
  line-height: 1.35;
}

.slider-card-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #66635C;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.slider-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.slider-card:hover .slider-card-link {
  color: #171717;
}

.slider-card:hover .slider-card-link svg {
  transform: translateX(4px);
}

.slider-dots-wrap {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(23, 23, 23, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: #171717;
}

/* --------------------------------------------------------------------------
   4. SCROLL-BASED REVEAL ANIMATIONS (DIRECTIONAL & STAGGERED)
   -------------------------------------------------------------------------- */

/* General Upward Reveal Elements */
.js-enabled .reveal-element {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* Left-Side Directional Reveal (Desktop: -60px) */
.js-enabled .reveal-left,
.js-enabled .asym-product-card.pos-left,
.js-enabled .asym-product-card.pos-left-offset {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* Right-Side Directional Reveal (Desktop: 60px) */
.js-enabled .reveal-right,
.js-enabled .asym-product-card.pos-right,
.js-enabled .asym-product-card.pos-right-offset {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* Active / In-View State for Parent Container or Individual Element */
.js-enabled .reveal-element.in-view,
.js-enabled .reveal-element.is-visible,
.js-enabled .reveal-left.in-view,
.js-enabled .reveal-left.is-visible,
.js-enabled .reveal-right.in-view,
.js-enabled .reveal-right.is-visible,
.js-enabled .asym-product-card.in-view,
.js-enabled .asym-product-card.is-visible,
.product-collection-editorial.in-view .reveal-element,
.product-collection-editorial.in-view .reveal-left,
.product-collection-editorial.in-view .reveal-right,
.product-collection-editorial.in-view .asym-product-card,
.category-showcase-section.in-view .reveal-element,
.category-showcase-section.in-view .reveal-left,
.category-showcase-section.in-view .reveal-right,
.product-slider-section.in-view .reveal-element {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Inner Text Element Staggering within Product Cards */
.js-enabled .asym-card-inner .asym-image-box {
  transition-delay: 0ms;
}
.js-enabled .asym-card-inner .asym-number {
  transition-delay: 80ms;
}
.js-enabled .asym-card-inner .asym-product-name {
  transition-delay: 120ms;
}
.js-enabled .asym-card-inner .asym-product-desc {
  transition-delay: 160ms;
}
.js-enabled .asym-card-inner .asym-explore-btn {
  transition-delay: 200ms;
}

/* Responsive Translation Distances (Prevents Horizontal Scrollbar) */
@media (max-width: 992px) {
  .js-enabled .reveal-left,
  .js-enabled .asym-product-card.pos-left,
  .js-enabled .asym-product-card.pos-left-offset {
    transform: translateX(-40px);
  }

  .js-enabled .reveal-right,
  .js-enabled .asym-product-card.pos-right,
  .js-enabled .asym-product-card.pos-right-offset {
    transform: translateX(40px);
  }
}

@media (max-width: 575px) {
  .js-enabled .reveal-left,
  .js-enabled .asym-product-card.pos-left,
  .js-enabled .asym-product-card.pos-left-offset {
    transform: translateX(-25px);
  }

  .js-enabled .reveal-right,
  .js-enabled .asym-product-card.pos-right,
  .js-enabled .asym-product-card.pos-right-offset {
    transform: translateX(25px);
  }
}

/* Accessibility: Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal-element,
  .js-enabled .reveal-left,
  .js-enabled .reveal-right,
  .js-enabled .asym-product-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   5. RESPONSIVE MEDIA QUERIES FOR NEW SECTIONS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .slider-card {
    flex: 0 0 calc((100% - 3.5rem) / 3);
  }
}

@media (max-width: 992px) {
  .product-collection-editorial {
    padding: 3.5rem 5% 4rem;
  }

  .category-showcase-section,
  .product-slider-section {
    padding: 5rem 5%;
  }

  .asymmetrical-product-grid {
    gap: 3rem;
  }

  .asym-product-card.pos-left,
  .asym-product-card.pos-right,
  .asym-product-card.pos-left-offset,
  .asym-product-card.pos-right-offset {
    padding-left: 0;
    padding-right: 0;
  }

  .showcase-card-grid,
  .showcase-card-grid.reverse-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showcase-card-grid.reverse-grid .showcase-visual-col {
    order: 2;
  }

  .showcase-card-grid.reverse-grid .showcase-content-col {
    order: 1;
  }

  .slider-card {
    flex: 0 0 calc((100% - 1.75rem) / 2);
  }
}

@media (max-width: 768px) {
  /* Product Hero Banner Mobile Fix */
  .product-hero-clean {
    height: auto;
    min-height: 320px;
    padding-top: 5.25rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: flex-end;
  }

  .product-hero-bg-image {
    object-fit: cover;
    object-position: center center;
  }

  .product-hero-content-wrapper {
    padding: 0 1.25rem 2rem;
  }

  .product-hero-eyebrow {
    font-size: 0.675rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
  }

  .product-hero-headline {
    font-size: clamp(1.65rem, 6.5vw, 2.25rem);
    line-height: 1.12;
    margin-bottom: 0.5rem;
  }

  .product-hero-subtitle {
    font-size: clamp(0.85rem, 3.2vw, 0.95rem);
    margin-bottom: 1.25rem;
  }

  /* Contact Us Page Hero Mobile Fix */
  #contact-hero {
    height: auto;
    min-height: 260px;
    padding-top: 4.75rem;
    padding-bottom: 1.5rem;
  }

  #contact-hero .product-hero-bg-image {
    object-fit: cover;
    object-position: center 35%;
  }

  /* Zig-Zag Product Showcase Mobile Fix */
  .product-collection-editorial {
    padding: 2.75rem 1.25rem 3.25rem;
  }

  .category-showcase-section,
  .product-slider-section {
    padding: 3.5rem 1.25rem;
  }

  .editorial-collection-header {
    margin-bottom: 2.25rem;
  }

  .editorial-collection-title {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
  }

  .asymmetrical-product-grid {
    gap: 2.25rem;
    width: 100%;
  }

  .asym-product-card {
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
  }

  .asym-card-inner {
    width: min(90vw, 320px);
    max-width: 320px;
    margin: 0 auto;
  }
  
  .resize_image{
    width: 100%;
    height: 250px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .asym-image-box {
    width: 100%;
    height: 250px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .asym-product-img,
  .asym-product-img.fit-cover {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  .asym-card-meta {
    padding-top: 0.85rem;
  }

  .asym-product-name {
    font-size: 0.9rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
  }

  .asym-explore-btn {
    font-size: 0.725rem;
  }

  .slider-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .slider-card {
    flex: 0 0 100%;
  }

  /* Animation Safety for Mobile Viewports */
  .category-showcase-section .reveal-left,
  .category-showcase-section .reveal-right,
  .product-collection-editorial .reveal-left,
  .product-collection-editorial .reveal-right,
  .asym-product-card.reveal-left,
  .asym-product-card.reveal-right {
    transform: translateY(24px);
  }
}

/* --------------------------------------------------------------------------
   6. QUALITY PAGE STYLING (PRINCIPLES, PROCESS TIMELINE, CTA)
   -------------------------------------------------------------------------- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.principle-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 23, 23, 0.08);
  padding: 2.25rem 1.75rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.4s var(--ease-out-smooth), box-shadow 0.4s var(--ease-out-smooth);
}

.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.principle-number {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-brass, #C5A059);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.principle-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #171717;
  margin-bottom: 0.75rem;
}

.principle-desc {
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: #555;
  line-height: 1.6;
}

/* Quality Process Section */
.quality-process-section {
  position: relative;
  width: 100%;
  padding: 5.5rem 6%;
  background-color: #171717;
  color: #F7F6F2;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header .clean-eyebrow span {
  color: var(--accent-brass, #C5A059);
}

.process-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 0.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-brass, #C5A059);
  margin-bottom: 1rem;
  display: block;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #A0A0A0;
  line-height: 1.6;
}

/* Quality CTA Section */
.quality-cta-section {
  position: relative;
  width: 100%;
  padding: 5rem 6%;
  background-color: var(--bg-editorial, #F7F6F2);
  text-align: center;
}

.quality-cta-container {
  max-width: 760px;
  margin: 0 auto;
}

.quality-cta-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #171717;
  margin: 0.75rem 0 1.25rem;
}

.quality-cta-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #4A4A4A;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

/* Quality Media Queries */
@media (max-width: 992px) {
  .principles-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 575px) {
  .principles-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .quality-process-section {
    padding: 4rem 1.25rem;
  }

  .quality-cta-section {
    padding: 3.5rem 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   7. CONTACT US PAGE STYLING (FORM, INPUTS, FACTORY LOCATION)
   -------------------------------------------------------------------------- */
.contact-form-wrapper {
  background: #FFFFFF;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 4px;
  padding: 2.75rem 2.25rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.03);
}

.contact-form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #171717;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #171717;
  background-color: #FBFBFA;
  border: 1px solid rgba(23, 23, 23, 0.15);
  border-radius: 3px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--accent-brass, #C5A059);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #A0A0A0;
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.75rem;
  justify-content: center;
}

.contact-quick-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quick-info-item {
  display: flex;
  flex-direction: column;
}

.quick-info-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-brass, #C5A059);
  margin-bottom: 0.25rem;
}

.quick-info-val {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
}

/* Factory Info Grid */
.factory-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.factory-info-card {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 4px;
}

.factory-info-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-brass, #C5A059);
  margin-bottom: 0.35rem;
}

.factory-info-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #222;
  line-height: 1.5;
}

/* Contact Media Queries */
@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-wrapper {
    padding: 2rem 1.25rem;
  }
}

/* Contact Inline Form Validation & Status Messaging */
.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #D9534F !important;
  background-color: #FFF8F8 !important;
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12) !important;
}

.form-error-msg {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #D9534F;
  margin-top: 0.35rem;
  display: block;
  font-weight: 500;
}

.form-status-box {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
}

.form-status-box.success {
  display: block;
  background-color: rgba(176, 141, 87, 0.08);
  border: 1px solid var(--accent-brass, #C5A059);
  color: #171717;
}

.form-status-box.error {
  display: block;
  background-color: #FFF8F8;
  border: 1px solid #D9534F;
  color: #D9534F;
}

/* Hero Background Image Scaling */
.product-hero-bg-image {
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-hero-clean.in-view .product-hero-bg-image {
  transform: scale(1.04);
}

/* ==========================================================================
   FULL-WIDTH CINEMATIC ARCHITECTURAL PRODUCT HERO STYLING (PRODUCTS.HTML ONLY)
   ========================================================================== */
/* ==========================================================================
   FULL-WIDTH CINEMATIC ARCHITECTURAL PRODUCT HERO STYLING (PRODUCTS.HTML ONLY)
   ========================================================================== */
.product-cinematic-hero {
  position: relative;
  width: 100%;
  min-height: clamp(730px, 88vh, 950px);
  background-color: #121212;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.cinematic-hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cinematic-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transition: transform 2s ease-out;
}

.cinematic-vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.cinematic-hero-container {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 7rem 6% 4rem 6%;
  box-sizing: border-box;
}

.cinematic-hero-content-box {
  position: relative;
  width: min(600px, 100%);
}

.cinematic-hero-headline {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.5rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 0.98;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 1.2rem 0 1.25rem 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cinematic-hero-subtitle {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(1rem, 1.4vw, 1rem);
  color: #E2DFD7;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 480px;
}

.cinematic-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.4rem;
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(210, 170, 90, 0.85);
  border-radius: 2px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}

.cinematic-cta:hover {
  background: #B08D57;
  color: #121212;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(176, 141, 87, 0.3);
}

.cinematic-cta:hover .cta-arrow-icon {
  transform: translateX(5px);
  stroke: #121212;
}

.cta-arrow-icon {
  transition: transform 0.3s ease;
}

/* Responsive Media Queries for Cinematic Hero */
@media (max-width: 1024px) {
  .cinematic-hero-container {
    padding: 6.5rem 4% 3rem 4%;
  }

  .cinematic-hero-content-box {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .product-cinematic-hero {
    min-height: clamp(540px, 80vh, 720px);
  }

  .cinematic-hero-container {
    padding: 5.5rem 1.25rem 2.5rem 1.25rem;
  }

  .cinematic-vignette-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
  }

  .cinematic-hero-headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
}

/* ==========================================================================
   CURATED SELECTION SECTION (3-CATEGORY ALTERNATING CIRCULAR ZIG-ZAG)
   ========================================================================== */
.product-collection-editorial {
  position: relative;
  width: 100%;
  padding: 6.5rem 6% 7.5rem;
  background-color: #F7F6F2;
  color: #171717;
  box-sizing: border-box;
  overflow: hidden;
}

.editorial-bg-curves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bg-curve-svg {
  width: 100%;
  height: 100%;
}

.product-editorial-container {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
}

.editorial-collection-header {
  margin-bottom: 4.5rem;
  text-align: center;
}

.clean-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-brass, #B08D57);
  text-transform: uppercase;
}

.eyebrow-brass-line {
  width: 28px;
  height: 1.5px;
  background-color: var(--accent-brass, #B08D57);
  display: inline-block;
}

.editorial-collection-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.1rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #171717;
  margin-top: 0.75rem;
  line-height: 1.12;
}

.header-brass-line {
  width: 45px;
  height: 2px;
  background-color: var(--accent-brass, #B08D57);
  margin-top: 1.25rem;
}

/* 3-Category Flow */
.zigzag-curated-flow {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.zigzag-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 29, 27, 0.08) 20%, rgba(176, 141, 87, 0.22) 50%, rgba(29, 29, 27, 0.08) 80%, transparent);
  margin: 0.5rem 0;
}

.zigzag-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
}
.resize_image{
  height: 480px;
}
/* Circular Stage Container */
.product-circle-stage {
  position: relative;
  width: clamp(340px, 34vw, 480px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Radial Glow Behind Circle */
.circle-radial-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle at center, rgba(212, 184, 138, 0.22) 0%, rgba(247, 246, 242, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Axis / Crosshair SVG */
.circle-axis-svg {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  pointer-events: none;
  z-index: 2;
}

/* Outer Technical Ring & Typography SVG */
.circle-tech-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  animation: slowCircleRotate 65s linear infinite;
}

@keyframes slowCircleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .circle-tech-ring-svg {
    animation: none;
  }
}

.circle-path-text {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 3px;
  fill: #9C8052;
  text-transform: uppercase;
}

/* Inner White Circular Card */
.circle-inner-card {
  position: relative;
  z-index: 4;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(29, 29, 27, 0.08);
  box-shadow: 0 16px 40px rgba(29, 29, 27, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.4s var(--ease-out-smooth, cubic-bezier(0.16, 1, 0.3, 1)), box-shadow 0.4s ease, border-color 0.4s ease;
}

.zigzag-image-col:hover .circle-inner-card {
  transform: scale(1.03);
  box-shadow: 0 24px 50px rgba(176, 141, 87, 0.16);
  border-color: rgba(176, 141, 87, 0.4);
}

/* Architectural L-Block Backdrop inside Circle */
.arch-l-block {
  position: absolute;
  top: 18%;
  left: 20%;
  width: 48%;
  height: 68%;
  background-color: #E8E4DB;
  border-radius: 2px;
  box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.8), 2px 6px 16px rgba(0, 0, 0, 0.04);
  pointer-events: none;
  z-index: 1;
}

.arch-l-block::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 130%;
  height: 32%;
  background-color: #E8E4DB;
  border-radius: 2px;
}

/* Floating Product Image */
.floating-product-img {
  position: relative;
  z-index: 2;
  max-width: 68%;
  max-height: 68%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* mix-blend-mode: multiply; */
  transition: transform 0.4s var(--ease-out-smooth, cubic-bezier(0.16, 1, 0.3, 1));
}

.floating-product-img--bolt {
  max-width: 72%;
  max-height: 72%;
}

.zigzag-image-col:hover .floating-product-img {
  transform: scale(1.06) translateY(-4px);
}

/* Text Column */
.zigzag-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  margin-left: 4rem;
}

.zigzag-num-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.zigzag-num {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-brass, #B08D57);
  letter-spacing: 0.1em;
}

.num-line {
  width: 32px;
  height: 1.5px;
  background-color: var(--accent-brass, #B08D57);
  display: inline-block;
}

.zigzag-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #171717;
  margin: 0 0 1rem 0;
  line-height: 1.15;
}

.zigzag-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1rem;
  color: #5A5751;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.zigzag-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-brass, #B08D57);
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.zigzag-explore-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background-color: #171717;
  transition: width 0.3s ease;
}

.zigzag-explore-link:hover {
  color: #171717;
}

.zigzag-explore-link:hover::after {
  width: 100%;
}

.zigzag-explore-link:hover .asym-arrow-icon {
  transform: translateX(6px);
}

/* Mobile & Responsive Rules */
@media (max-width: 1024px) {
  .zigzag-row {
    gap: 3rem;
  }

  .product-circle-stage {
    width: clamp(290px, 32vw, 380px);
  }

  .zigzag-curated-flow {
    gap: 4.5rem;
  }
}

@media (max-width: 768px) {
  .product-collection-editorial {
    padding: 4rem 1.25rem 5rem;
  }

  .editorial-collection-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .clean-eyebrow {
    justify-content: center;
  }

  .header-brass-line {
    margin: 1rem auto 0;
  }

  .zigzag-curated-flow {
    gap: 3.5rem;
  }

  .zigzag-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .zigzag-row.row-left-image,
  .zigzag-row.row-right-image {
    display: flex;
    flex-direction: column;
  }

  .zigzag-image-col {
    order: 1;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .zigzag-text-col {
    order: 2;
    align-items: center;
    max-width: 100%;
  }

  .product-circle-stage {
    width: clamp(260px, 75vw, 340px);
  }

  .zigzag-num-badge {
    justify-content: center;
  }

  .zigzag-title {
    font-size: 1.5rem;
  }

  .zigzag-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .product-circle-stage {
    width: clamp(230px, 82vw, 290px);
  }

  .circle-path-text {
    font-size: 7.5px;
    letter-spacing: 2px;
  }

  .zigzag-title {
    font-size: 1.35rem;
  }
}

/* ==========================================================================
   AELEX REDESIGNED PRODUCT RANGE SLIDER (PRODUCTS.HTML - 6 CARDS, 4 VISIBLE DESKTOP)
   ========================================================================== */
.product-slider-section {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #F8F7F4 0%, #F1EFEA 100%);
  color: #171717;
  padding: 6.5rem 6%;
  overflow: hidden;
  border-top: 1px solid rgba(23, 23, 23, 0.06);
  box-sizing: border-box;
}

.product-slider-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.75) 0%, rgba(241, 239, 234, 0) 70%);
  pointer-events: none;
}

.product-slider-container {
  max-width: 1560px;
  margin: 0 auto;
  position: relative;
}

/* Header Row with Title + Navigation Controls Side-by-Side (Zero Overlap) */
.slider-header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.slider-header-text {
  display: flex;
  flex-direction: column;
}

.slider-heading {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #171717;
  margin-top: 0.4rem;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.slider-subtext {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-brass, #B08D57);
}

/* Top Right Navigation Arrow Controls (No Overlap with Cards!) */
.slider-nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.slider-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  outline: none;
}

.slider-nav-btn:hover {
  background-color: #171717;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.slider-nav-btn:disabled,
.slider-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Viewport and Track */
.slider-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 2rem;
  touch-action: pan-y;
  outline: none;
}

.slider-viewport::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  transition: transform 0.5s var(--ease-out-smooth, cubic-bezier(0.16, 1, 0.3, 1));
}

/* Vertical Premium Product Card (4 Visible Desktop) */
.slider-card-item {
  flex: 0 0 calc((100% - 3 * 1.5rem) / 4);
  min-width: 250px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  height: 460px;
  box-sizing: border-box;
}

.slider-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1), 0 6px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(176, 141, 87, 0.35);
}

/* Top Image Area (70% Height - Perfect Object Contain) */
.card-img-area {
  position: relative;
  height: 70%;
  width: 100%;
    background: radial-gradient(circle at 50% 45%, #FBFBF9 0%, #f1e6d0 100%);  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.card-img-lighting {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.03) 100%);
  pointer-events: none;
}

.card-product-img {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

.slider-card-item:hover .card-product-img {
  transform: scale(1.04);
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.16));
}

/* Bottom Info Area (30% Height) */
.card-info-area {
  height: 30%;
  width: 100%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.35rem;
  box-sizing: border-box;
}

.card-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.card-product-name {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #171717;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-product-sub {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.775rem;
  color: #686660;
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Minimal Premium EXPLORE Button */
.card-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-brass, #B08D57);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  margin-top: 0.35rem;
  width: fit-content;
}

.explore-arrow-icon {
  transition: transform 0.3s ease;
}

.slider-card-item:hover .card-explore-btn,
.card-explore-btn:hover {
  color: #171717;
}

.slider-card-item:hover .explore-arrow-icon,
.card-explore-btn:hover .explore-arrow-icon {
  transform: translateX(5px);
  stroke: #171717;
}

/* Pagination Dots */
.slider-dots-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgba(23, 23, 23, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-smooth, cubic-bezier(0.16, 1, 0.3, 1));
}

.slider-dot.active {
  width: 24px;
  border-radius: 6px;
  background-color: var(--accent-brass, #B08D57);
}

/* Responsive Breakpoints */

/* Desktop 1440px / 1920px -> 4 cards visible */
@media (min-width: 1281px) {
  .slider-card-item {
    flex: 0 0 calc((100% - 3 * 1.5rem) / 4);
  }
}

/* Desktop/Laptop 1024px - 1280px -> 3 cards visible */
@media (max-width: 1280px) and (min-width: 769px) {
  .slider-card-item {
    flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  }
}

/* Tablet 768px -> 2 cards visible */
@media (max-width: 768px) {
  .product-slider-section {
    padding: 4.5rem 1.25rem;
  }

  .slider-header-wrap {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 2rem;
  }

  .slider-track {
    gap: 1.25rem;
  }

  .slider-card-item {
    flex: 0 0 calc((100% - 1.25rem) / 2);
    height: 440px;
    border-radius: 16px;
  }
}

/* Small Tablet 575px -> 1.5 cards visible */
@media (max-width: 575px) {
  .slider-card-item {
    flex: 0 0 calc((100% - 1rem) / 1.5);
    height: 410px;
  }
}

/* Mobile 320px - 430px -> 1 card fully visible */
@media (max-width: 430px) {
  .slider-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .slider-nav-controls {
    align-self: flex-end;
  }

  .slider-card-item {
    flex: 0 0 100%;
    height: 400px;
  }

  .card-product-name {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   AELEX ARCHITECTURAL HARDWARE — PRODUCT SIZE DETAILS DIALOG STYLES
   ========================================================================== */

/* Button Reset & Base Styling for EXPLORE FURTHER button */
button.asym-explore-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #66635C;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  margin-top: 0.2rem;
  transition: color 0.3s ease;
  touch-action: manipulation;
  position: relative;
  z-index: 5;
}

button.asym-explore-btn:hover,
button.asym-explore-btn:focus-visible {
  color: var(--color-brass-primary, #B08A4A);
  outline: none;
}

button.asym-explore-btn:focus-visible {
  text-decoration: underline;
}

/* Dialog Lock Body Scroll */
body.aelex-dialog-open {
  overflow: hidden !important;
}

/* Modal Backdrop Overlay */
.aelex-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aelex-dialog-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal Dialog Container */
.aelex-dialog-container {
  background-color: #FAF8F5;
  width: 100%;
  max-width: 940px;
  max-height: 90vh;
  border-radius: 4px;
  border: 1px solid rgba(176, 138, 74, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aelex-dialog-overlay.is-open .aelex-dialog-container {
  transform: scale(1);
}

/* Modal Close Button */
.aelex-dialog-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background-color: #FAF8F5;
  color: #1D1D1D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.aelex-dialog-close:hover,
.aelex-dialog-close:focus-visible {
  background-color: #1D1D1D;
  color: #FAF8F5;
  border-color: #1D1D1D;
  outline: none;
}

/* Modal Header */
.aelex-dialog-header {
  padding: 2rem 2.5rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  background-color: #FAF8F5;
}

.aelex-dialog-category {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-brass-primary, #B08A4A);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}

.aelex-dialog-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1D1D1D;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

/* Modal Image Box */
.aelex-dialog-media {
  width: 100%;
  height: 240px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.aelex-dialog-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.07));
}

/* Modal Body */
.aelex-dialog-body {
  padding: 1.75rem 2.5rem 2.25rem;
  background-color: #FAF8F5;
}

.aelex-dialog-section-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.aelex-accent-line {
  width: 20px;
  height: 2px;
  background-color: var(--color-brass-primary, #B08A4A);
  display: inline-block;
}

.aelex-section-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #1D1D1D;
  text-transform: uppercase;
  margin: 0;
}

.aelex-chart-group-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.aelex-chart-group-header:first-child {
  margin-top: 0;
}

.aelex-chart-group-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-brass-primary, #B08A4A);
  text-transform: uppercase;
  margin: 0;
}


/* Size Table & Scroll Wrapper */
.aelex-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.aelex-size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.aelex-size-table th {
  background-color: #F3EFE6;
  color: #242424;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.aelex-size-table td {
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #333333;
  font-weight: 400;
  white-space: nowrap;
}

.aelex-size-table tr:nth-child(even) {
  background-color: #FAF8F5;
}

.aelex-size-table tr:hover {
  background-color: rgba(176, 138, 74, 0.06);
}

.aelex-size-table tr:last-child td {
  border-bottom: none;
}

.aelex-size-table td.cell-code {
  font-weight: 700;
  color: #1D1D1D;
  letter-spacing: 0.02em;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .aelex-dialog-overlay {
    padding: 0.75rem;
  }

  .aelex-dialog-container {
    max-height: 94vh;
  }

  .aelex-dialog-header {
    padding: 1.5rem 1.25rem 1rem;
  }

  .aelex-dialog-title {
    font-size: 1.2rem;
  }

  .aelex-dialog-media {
    height: 190px;
    padding: 1rem;
  }

  .aelex-dialog-body {
    padding: 1.25rem 1.25rem 1.75rem;
  }

  .aelex-dialog-close {
    width: 36px;
    height: 36px;
    top: 0.85rem;
    right: 0.85rem;
  }

  .aelex-size-table th,
  .aelex-size-table td {
    padding: 0.65rem 0.85rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .aelex-dialog-overlay {
    padding: 0;
  }

  .aelex-dialog-container {
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
    border: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aelex-dialog-overlay,
  .aelex-dialog-container {
    transition: none !important;
  }
}

/* ==========================================================================
   PRODUCT PAGE & QUALITY PAGE SCOPED MOBILE IMPROVEMENTS (MOBILE ONLY <= 575px)
   ========================================================================== */

/* 1. Product Page Mobile Hero Banner Fix (Modeled after Contact Us Mobile Hero) */
@media (max-width: 575px) {
  .product-page-body .product-cinematic-hero {
    height: auto;
    min-height: 340px;
    padding-top: 5.5rem;
    padding-bottom: 2.25rem;
    display: flex;
    align-items: flex-end;
  }

  .product-page-body .cinematic-hero-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .product-page-body .cinematic-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .product-page-body .cinematic-hero-container {
    padding: 0 1.25rem 1.5rem 1.25rem;
  }

  .product-page-body .cinematic-hero-content-box {
    width: 100%;
    max-width: 100%;
  }

  /* 2. Product Page Mobile Responsive Typography Scale */
  .product-page-body .cinematic-hero-headline {
    font-size: clamp(1.5rem, 5.5vw, 1.85rem);
    line-height: 1.15;
    letter-spacing: 0.05em;
    margin: 0.75rem 0 0.85rem 0;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .product-page-body .cinematic-hero-subtitle {
    font-size: clamp(0.875rem, 3.5vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .product-page-body .editorial-collection-title {
    font-size: clamp(1.4rem, 5vw, 1.7rem);
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .product-page-body .zigzag-title {
    font-size: clamp(1.15rem, 4.2vw, 1.3rem);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .product-page-body .showcase-category-title {
    font-size: clamp(1.35rem, 4.8vw, 1.6rem);
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .product-page-body .slider-heading {
    font-size: clamp(1.35rem, 4.8vw, 1.6rem);
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .product-page-body .card-product-name {
    font-size: clamp(1.05rem, 3.8vw, 1.15rem);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* 3. Quality Page Mobile Responsive Typography Scale */
@media (max-width: 575px) {
  .quality-page-body .product-hero-headline {
    font-size: clamp(1.65rem, 6vw, 1.95rem);
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .quality-page-body .showcase-category-title,
  .quality-page-body .editorial-collection-title,
  .quality-page-body .process-title,
  .quality-page-body .quality-cta-title {
    font-size: clamp(1.4rem, 5vw, 1.65rem);
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .quality-page-body .principle-title {
    font-size: clamp(1.05rem, 3.8vw, 1.15rem);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .quality-page-body .process-step-title {
    font-size: clamp(1.0rem, 3.6vw, 1.1rem);
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

/* ==========================================================================
   PART 8 — QUALITY PAGE MOBILE CTA BUTTON FIX (MOBILE ONLY <= 575px)
   ========================================================================== */
@media (max-width: 575px) {
  .quality-page-body .quality-cta-container .btn-primary {
    width: auto;
    max-width: 100%;
    padding: 0.85rem 1.4rem;
    font-size: 0.825rem;
    letter-spacing: 0.08em;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: normal;
    word-break: break-word;
  }
}

/* ==========================================================================
   PART 9 — CONTACT US PAGE MOBILE FORM LAYOUT & SPACING FIX (MOBILE ONLY <= 575px)
   ========================================================================== */
@media (max-width: 575px) {
  .contact-form-wrapper {
    padding: 1.5rem 1.15rem;
    box-sizing: border-box;
  }

  .contact-form-group {
    margin-bottom: 1.15rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-label {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.08em;
  }

  .form-input,
  .form-textarea {
    padding: 0.75rem 0.95rem;
    font-size: 0.9rem;
    line-height: 1.4;
    box-sizing: border-box;
  }

  .form-textarea {
    min-height: 110px;
  }

  .form-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    justify-content: center;
  }
}

/* ==========================================================================
   PARTS 1–7 — TARGETED TABLET & SMALL LAPTOP RESPONSIVENESS (768px & 1024px)
   ========================================================================== */

/* Targeted Tablet Breakpoint (768px) */
@media (min-width: 768px) and (max-width: 820px) {
  /* Header Layout */
  .site-header {
    padding: 1.5rem 2.5rem;
  }

  .brand-tagline {
    display: none;
  }

  /* Hero Section Heights & Paddings */
  .hero-slide {
    padding-top: clamp(6.5rem, 12vh, 8rem);
    padding-bottom: clamp(3rem, 6vh, 4.5rem);
  }

  .product-hero-clean,
  .product-cinematic-hero {
    min-height: 460px;
  }

  /* Asymmetrical Product Cards (Sub-pages: Brass Hinges, Brass Tower Bolt, Steel Fittings) */
  .asymmetrical-product-grid {
    gap: 3rem;
  }

  .asym-product-card.pos-left,
  .asym-product-card.pos-left-offset {
    padding-left: 3%;
  }

  .asym-product-card.pos-right,
  .asym-product-card.pos-right-offset {
    padding-right: 3%;
  }

  .asym-card-inner {
    width: 100%;
    max-width: 340px;
  }

  .asym-image-box {
    height: 300px;
  }

  /* Footer Grid */
  .site-footer .footer-container,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

/* Targeted Tablet Landscape / Laptop Breakpoint (1024px) */
@media (min-width: 992px) and (max-width: 1024px) {
  /* Header & Desktop Navigation */
  .site-header {
    padding: 1.5rem 2.5rem;
  }

  .brand-mark-img {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  .nav-menu {
    gap: 1.4rem;
  }

  .nav-link {
    font-size: 0.825rem;
    padding: 0.4rem 0;
  }

  .nav-cta-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.775rem;
  }

  /* Hero Section Dimensions */
  .product-hero-clean,
  .product-cinematic-hero {
    min-height: 520px;
  }

  /* Asymmetrical Product Cards */
  .asym-product-card.pos-left,
  .asym-product-card.pos-left-offset {
    padding-left: 5%;
  }

  .asym-product-card.pos-right,
  .asym-product-card.pos-right-offset {
    padding-right: 5%;
  }

  .asym-card-inner {
    width: 320px;
    max-width: 100%;
  }

  /* Grid Layouts & Spacing */
  .collection-showcase-grid,
  .editorial-top-grid,
  .editorial-showcase-grid,
  .showcase-alt-grid {
    gap: 2.5rem;
  }
}

/* Global 768px Section Containment & Animation Overflow Safety */
@media (max-width: 768px) {
  .product-collection-editorial,
  .category-showcase-section,
  .product-showcase-section,
  .brand-editorial-section,
  .product-editorial-clean,
  .about-hero-clean,
  .about-intro-clean,
  .about-philosophy-clean,
  .about-craft-clean,
  .about-cta-clean,
  .site-footer {
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
  }

  .js-enabled .reveal-left,
  .js-enabled .reveal-right,
  .js-enabled .asym-product-card.pos-left,
  .js-enabled .asym-product-card.pos-left-offset,
  .js-enabled .asym-product-card.pos-right,
  .js-enabled .asym-product-card.pos-right-offset {
    transform: translateY(20px) !important;
  }

  /* Mobile & Tablet Product Card Tactile Touch Feedback */
  .asym-card-inner {
    cursor: pointer;
    touch-action: manipulation;
    /* -webkit-tap-highlight-color: transparent; */
  }

  .asym-card-inner:active {
    opacity: 0.94;
    transform: scale(0.99);
  }
}