@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --liquid-platinum: #F4F4F5;
  --anthracite: #18181B;
  --polished-slab: #E4E4E7;
  --steel-needle: #71717A;
  --white-neon: #FFFFFF;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(24, 24, 27, 0.08);
  --shadow-md: 0 4px 24px rgba(24, 24, 27, 0.12);
  --shadow-lg: 0 8px 48px rgba(24, 24, 27, 0.16);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--liquid-platinum);
  color: var(--anthracite);
  line-height: 1.6;
  font-size: 0.9375rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: rgba(244, 244, 245, 0.8);
  backdrop-filter: blur(20px);
  transform: translateY(0);
  transition: transform var(--transition-luxury), background var(--transition-smooth);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--anthracite);
  margin: 0.375rem 0;
  transition: all var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--anthracite);
  transition: width var(--transition-smooth);
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  text-align: center;
  transform: translateY(2rem);
  animation: fadeInUp var(--transition-luxury) forwards;
  animation-delay: 0.3s;
  margin-top: 50px;
}

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

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.125rem;
  color: var(--steel-needle);
  margin-bottom: var(--space-lg);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: all var(--transition-smooth);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--white-neon);
  color: var(--anthracite);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--polished-slab);
  color: var(--anthracite);
}

.btn-secondary:hover {
  background: var(--anthracite);
  color: var(--white-neon);
}

.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.section-asymmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 90rem;
  margin: 0 auto;
}

.section-content {
  max-width: 70rem;
  margin: 0 auto;
}

.section-title {
  margin-bottom: var(--space-md);
  transform: translateX(-2rem);
  transition: all var(--transition-luxury);
}

.section-title.visible {
  opacity: 1;
  transform: translateX(0);
}

.section-text {
  color: var(--steel-needle);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.card {
  background: var(--white-neon);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  transform: translateY(2rem);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--anthracite);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--steel-needle);
  font-size: 0.875rem;
  line-height: 1.7;
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 90rem;
  margin: 0 auto;
}

.asymmetric-item {
  position: relative;
  transition: all var(--transition-luxury);
}

.asymmetric-item.visible {
  opacity: 1;
}

.asymmetric-item:nth-child(odd) {
  transform: translateX(-3rem) rotate(-2deg);
}

.asymmetric-item:nth-child(odd).visible {
  transform: translateX(0) rotate(0deg);
}

.asymmetric-item:nth-child(even) {
  transform: translateX(3rem) rotate(2deg);
}

.asymmetric-item:nth-child(even).visible {
  transform: translateX(0) rotate(0deg);
}

.overlap-section {
  position: relative;
  margin-top: calc(var(--space-xl) * -1);
  z-index: 10;
}

.product-card {
  background: var(--white-neon);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  background: var(--polished-slab);
}

.product-info {
  padding: var(--space-md);
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.product-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--anthracite);
  margin: var(--space-sm) 0;
}

.contact-section {
  background: var(--white-neon);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  max-width: 50rem;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem var(--space-sm);
  border: 1px solid var(--polished-slab);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all var(--transition-smooth);
  background: var(--liquid-platinum);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--anthracite);
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.8125rem;
  color: var(--steel-needle);
}

.footer {
  padding: var(--space-md);
  text-align: center;
  background: var(--anthracite);
  color: var(--liquid-platinum);
  font-size: 0.8125rem;
}

.footer-content {
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.footer a {
  color: var(--liquid-platinum);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer a:hover {
  opacity: 1;
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 30rem;
  background: var(--white-neon);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transform: translateY(150%);
  transition: transform var(--transition-luxury);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-popup p {
  font-size: 0.8125rem;
  margin-bottom: var(--space-sm);
  color: var(--steel-needle);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.map-container {
  width: 100%;
  height: 25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.thank-you-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.thank-you-content {
  max-width: 40rem;
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  animation: scaleIn var(--transition-luxury);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.luxury-thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.luxury-thanks-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--liquid-platinum) 0%, var(--polished-slab) 100%);
  opacity: 0.6;
}

.luxury-thanks-content {
  position: relative;
  z-index: 1;
  max-width: 45rem;
  text-align: center;
  background: var(--white-neon);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: luxuryFadeIn 1s ease-out;
}

.luxury-icon-wrapper {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--anthracite), var(--steel-needle));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: luxuryPulse 2s infinite;
}

.luxury-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--white-neon);
}

.luxury-divider {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--anthracite), transparent);
  margin: var(--space-md) auto;
}

.luxury-lead {
  font-size: 1.25rem;
  color: var(--anthracite);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.luxury-text {
  color: var(--steel-needle);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.luxury-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes luxuryFadeIn {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxuryPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(24, 24, 27, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 1rem rgba(24, 24, 27, 0);
  }
}

.error-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.luxury-error {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.luxury-error-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, var(--polished-slab), var(--liquid-platinum));
  opacity: 0.8;
}

.luxury-error-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
}

.error-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--anthracite), var(--steel-needle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: luxuryFadeIn 0.8s ease-out;
}

.policy-content {
  max-width: 50rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.policy-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.policy-content p,
.policy-content ul {
  margin-bottom: var(--space-md);
  color: var(--steel-needle);
  line-height: 1.8;
}

.policy-content ul {
  padding-left: var(--space-md);
}

.policy-content li {
  margin-bottom: var(--space-xs);
}

.luxury-policy {
  min-height: 100vh;
  background: var(--liquid-platinum);
}

.luxury-policy-hero {
  background: linear-gradient(135deg, var(--anthracite) 0%, var(--steel-needle) 100%);
  color: var(--white-neon);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}

.luxury-policy-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.luxury-policy-hero h1 {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-sm);
}

.luxury-date {
  font-size: 0.875rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.luxury-policy-content {
  max-width: 60rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.luxury-policy-section {
  background: var(--white-neon);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.luxury-policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--anthracite), var(--steel-needle));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.luxury-policy-section:hover {
  transform: translateX(0.5rem);
  box-shadow: var(--shadow-md);
}

.luxury-policy-section:hover::before {
  opacity: 1;
}

.luxury-section-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--anthracite), var(--steel-needle));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.luxury-section-icon i {
  color: var(--white-neon);
  font-size: 1.25rem;
}

.luxury-policy-section h2 {
  margin-bottom: var(--space-md);
  color: var(--anthracite);
}

.luxury-policy-section p {
  color: var(--steel-needle);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.luxury-policy-section ul {
  margin-top: var(--space-sm);
  padding-left: var(--space-md);
}

.luxury-policy-section li {
  color: var(--steel-needle);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.luxury-contact-info {
  background: var(--liquid-platinum);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
}

@media (min-width: 48rem) {
  .nav-toggle {
    display: none;
  }
  
  .asymmetric-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-asymmetric {
    grid-template-columns: 1fr 1fr;
  }
  
  .asymmetric-item:nth-child(2n) {
    margin-top: var(--space-lg);
  }
}

@media (max-width: 48rem) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 20rem;
    background: var(--white-neon);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-lg);
  }
  
  .nav.active {
    transform: translateX(0);
  }
  
  .nav a {
    font-size: 1.125rem;
    padding: var(--space-sm);
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
  }
}

/* ========================================
   LUXURY DESIGN ENHANCEMENT CLASSES
   ======================================== */

.luxury-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel-needle);
  display: block;
  margin-bottom: var(--space-sm);
}

.luxury-thin-rule {
  width: 3rem;
  height: 1px;
  background: var(--anthracite);
  margin: var(--space-md) 0;
}

.luxury-stat-row {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--polished-slab);
  margin-top: var(--space-lg);
}

.luxury-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  display: block;
}

.luxury-stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-needle);
  display: block;
  margin-top: 0.25rem;
}

.luxury-num-grid {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--polished-slab);
}

.luxury-num-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--polished-slab);
  align-items: start;
}

.luxury-num-label {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--polished-slab);
  line-height: 1;
  padding-top: 0.25rem;
}

.luxury-num-body h3 {
  margin-bottom: var(--space-xs);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.luxury-num-body p {
  color: var(--steel-needle);
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 30rem;
}

.luxury-hover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--polished-slab);
  margin-top: var(--space-lg);
}

.luxury-hover-item {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid var(--polished-slab);
  transition: background var(--transition-smooth), color var(--transition-smooth);
  position: relative;
}

.luxury-hover-item:last-child {
  border-right: none;
}

.luxury-hover-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--anthracite);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}

.luxury-hover-item:hover::before {
  transform: scaleX(1);
}

.luxury-hover-item:hover {
  background: var(--anthracite);
  color: var(--white-neon);
}

.luxury-hover-item:hover p,
.luxury-hover-item:hover .luxury-eyebrow {
  color: rgba(244, 244, 245, 0.7);
}

.luxury-hover-item:hover i {
  color: var(--white-neon);
}

.luxury-hover-icon {
  font-size: 1.5rem;
  color: var(--anthracite);
  margin-bottom: var(--space-md);
  transition: color var(--transition-smooth);
}

.luxury-hover-item h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: var(--space-sm);
}

.luxury-hover-item p {
  font-size: 0.875rem;
  color: var(--steel-needle);
  line-height: 1.7;
  transition: color var(--transition-smooth);
}

.luxury-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.luxury-quote-card {
  padding: var(--space-lg);
  border-top: 2px solid var(--anthracite);
  background: var(--white-neon);
}

.luxury-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--polished-slab);
  display: block;
  margin-bottom: var(--space-sm);
  user-select: none;
}

.luxury-quote-text {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--anthracite);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.luxury-quote-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-needle);
}

.luxury-timeline {
  counter-reset: timeline-counter;
  position: relative;
  margin-top: var(--space-lg);
  padding-left: 4rem;
}

.luxury-timeline::before {
  content: '';
  position: absolute;
  left: 0.875rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--polished-slab);
}

.luxury-timeline-step {
  counter-increment: timeline-counter;
  position: relative;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--polished-slab);
}

.luxury-timeline-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.luxury-timeline-step::before {
  content: counter(timeline-counter, decimal-leading-zero);
  position: absolute;
  left: -4rem;
  top: 0.25rem;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--anthracite);
  color: var(--white-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.luxury-timeline-step h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: var(--space-xs);
}

.luxury-timeline-step p {
  color: var(--steel-needle);
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 35rem;
}

.luxury-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.luxury-pricing-card {
  background: var(--white-neon);
  border-top: 3px solid var(--anthracite);
  padding: var(--space-lg);
  transition: all var(--transition-smooth);
}

.luxury-pricing-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.luxury-pricing-card.featured {
  background: var(--anthracite);
  color: var(--white-neon);
}

.luxury-pricing-card.featured > p {
  color: rgba(244, 244, 245, 0.7);
}

.luxury-price-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--anthracite);
  display: block;
  margin: var(--space-sm) 0;
}

.luxury-pricing-card.featured .luxury-price-amount {
  color: var(--white-neon);
}

.luxury-price-divider {
  width: 2rem;
  height: 1px;
  background: currentColor;
  margin: var(--space-sm) 0;
  opacity: 0.3;
}

.luxury-pricing-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: var(--space-xs);
}

.luxury-pricing-card > p {
  font-size: 0.875rem;
  color: var(--steel-needle);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.luxury-feature-list {
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}

.luxury-pricing-card.featured .luxury-feature-list {
  border-top-color: rgba(244, 244, 245, 0.15);
}

.luxury-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  color: var(--steel-needle);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-pricing-card.featured .luxury-feature-list li {
  color: rgba(244, 244, 245, 0.7);
  border-bottom-color: rgba(244, 244, 245, 0.08);
}

.luxury-feature-list li:last-child {
  border-bottom: none;
}

.luxury-feature-list li::before {
  content: '—';
  flex-shrink: 0;
  color: var(--anthracite);
  opacity: 0.5;
}

.luxury-pricing-card.featured .luxury-feature-list li::before {
  color: var(--liquid-platinum);
}

.luxury-page-hero {
  padding: 9rem var(--space-md) var(--space-xl);
  background: var(--anthracite);
  color: var(--white-neon);
  position: relative;
  overflow: hidden;
}

.luxury-page-hero .luxury-eyebrow {
  color: rgba(244, 244, 245, 0.5);
}

.luxury-page-hero h1 {
  color: var(--white-neon);
  max-width: 35rem;
  margin-bottom: var(--space-md);
}

.luxury-page-hero p {
  color: rgba(244, 244, 245, 0.7);
  max-width: 35rem;
  font-size: 1rem;
  line-height: 1.8;
}

.luxury-page-hero-inner {
  max-width: 90rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.luxury-page-hero-deco {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(244, 244, 245, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.luxury-page-hero-deco::before {
  content: '';
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(244, 244, 245, 0.06);
  border-radius: 50%;
}

.luxury-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 90rem;
  margin: 0 auto;
}

.luxury-principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.luxury-principle-item {
  padding: var(--space-md);
  border-left: 2px solid var(--anthracite);
}

.luxury-principle-item h4 {
  margin-bottom: var(--space-xs);
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.luxury-principle-item p {
  font-size: 0.875rem;
  color: var(--steel-needle);
  line-height: 1.7;
}

.luxury-contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  max-width: 90rem;
  margin: 0 auto;
}

.luxury-contact-form-col {
  padding: var(--space-xl) var(--space-lg) var(--space-xl) 0;
}

.luxury-contact-info-col {
  padding: var(--space-xl) 0 var(--space-xl) var(--space-lg);
  border-left: 1px solid var(--polished-slab);
}

.luxury-info-block {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--polished-slab);
}

.luxury-info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.luxury-info-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-needle);
  display: block;
  margin-bottom: var(--space-xs);
}

.luxury-info-value {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--anthracite);
  line-height: 1.6;
}

.luxury-info-value a {
  color: var(--anthracite);
}

.luxury-info-value a:hover {
  color: var(--steel-needle);
}

.luxury-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-xs);
}

.luxury-hours-table tr {
  border-bottom: 1px solid var(--polished-slab);
}

.luxury-hours-table tr:last-child {
  border-bottom: none;
}

.luxury-hours-table td {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--steel-needle);
  font-family: var(--font-body);
}

.luxury-hours-table td:last-child {
  text-align: right;
  color: var(--anthracite);
}

.luxury-faq {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--polished-slab);
}

.luxury-faq-item {
  border-bottom: 1px solid var(--polished-slab);
  padding: var(--space-md) 0;
}

.luxury-faq-q {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--anthracite);
  margin-bottom: var(--space-xs);
}

.luxury-faq-a {
  font-size: 0.875rem;
  color: var(--steel-needle);
  line-height: 1.8;
  max-width: 40rem;
}

@media (max-width: 48rem) {
  .luxury-hover-grid {
    grid-template-columns: 1fr;
  }

  .luxury-hover-item {
    border-right: none;
    border-bottom: 1px solid var(--polished-slab);
  }

  .luxury-hover-item:last-child {
    border-bottom: none;
  }

  .luxury-quote-grid {
    grid-template-columns: 1fr;
  }

  .luxury-pricing-grid {
    grid-template-columns: 1fr;
  }

  .luxury-2col {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .luxury-principle-grid {
    grid-template-columns: 1fr;
  }

  .luxury-contact-grid {
    grid-template-columns: 1fr;
  }

  .luxury-contact-form-col {
    padding: var(--space-md) 0;
  }

  .luxury-contact-info-col {
    padding: var(--space-md) 0;
    border-left: none;
    border-top: 1px solid var(--polished-slab);
  }

  .luxury-stat-row {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .luxury-num-item {
    grid-template-columns: 3.5rem 1fr;
  }

  .luxury-timeline {
    padding-left: 3rem;
  }

  .luxury-timeline-step::before {
    left: -3rem;
  }

  .luxury-page-hero-deco {
    display: none;
  }

  .luxury-page-hero {
    padding-top: 7rem;
  }
}

/* ========================================
   PRODUCT SHOWCASE CARDS (with photos)
   ======================================== */

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.product-showcase-card {
  background: var(--white-neon);
  border-top: 3px solid var(--anthracite);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-showcase-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.product-showcase-img-wrap {
  position: relative;
  overflow: hidden;
  height: 18rem;
}

.product-showcase-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(24, 24, 27, 0.15) 100%);
  pointer-events: none;
}

.product-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-luxury);
}

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

.product-showcase-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-showcase-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-needle);
  margin-bottom: var(--space-sm);
}

.product-showcase-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0;
}

.product-showcase-price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--anthracite);
  display: block;
  margin: var(--space-sm) 0;
}

.product-showcase-rule {
  width: 2rem;
  height: 1px;
  background: var(--anthracite);
  opacity: 0.25;
  margin-bottom: var(--space-sm);
}

.product-showcase-body > p {
  font-size: 0.875rem;
  color: var(--steel-needle);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.product-showcase-features {
  list-style: none;
  border-top: 1px solid var(--polished-slab);
  padding-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  color: var(--steel-needle);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.product-showcase-features li:last-child {
  border-bottom: none;
}

.product-showcase-features li::before {
  content: '—';
  color: var(--anthracite);
  opacity: 0.4;
  flex-shrink: 0;
}

.product-showcase-body .btn {
  margin-top: auto;
  display: block;
  text-align: center;
}

@media (max-width: 48rem) {
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-showcase-img-wrap {
    height: 14rem;
  }
}

@media (max-width: 20rem) {
  html {
    font-size: 87.5%;
  }
  
  .hero {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .luxury-thanks-content,
  .luxury-policy-section {
    padding: var(--space-md) var(--space-sm);
  }
  
  .luxury-icon-wrapper {
    width: 4rem;
    height: 4rem;
  }
  
  .luxury-icon-wrapper i {
    font-size: 2rem;
  }
  
  .luxury-lead {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
  }
  
  .card {
    padding: var(--space-sm);
  }
  
  .contact-section {
    padding: var(--space-md) var(--space-sm);
  }
  
  .form-input,
  .form-textarea {
    font-size: 0.875rem;
  }
}
