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

:root {
  --vapor: #F4F4F5;
  --iron: #18181B;
  --glacier: #E4E4E7;
  --steel: #71717A;
  --neon: #FFFFFF;

  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dim: #8A6F45;
  --obsidian: #0C0C0E;
  --onyx: #141416;
  --charcoal: #1E1E22;
  --champagne: #F5EDD6;
  --ivory: #FAF8F3;
  
  --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.25rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  
  --shadow-sm: 0 2px 8px rgba(24, 24, 27, 0.06);
  --shadow-md: 0 8px 24px rgba(24, 24, 27, 0.12);
  --shadow-lg: 0 16px 48px rgba(24, 24, 27, 0.18);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--vapor);
  color: var(--iron);
  line-height: 1.6;
  font-size: 0.9rem;
  overflow-x: hidden;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

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

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

button {
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.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.85);
  backdrop-filter: blur(20px);
  transform: translateY(0);
  transition: transform var(--transition-slow), background var(--transition-base);
}

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

.header-inner {
  max-width: 1400px;
  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.02em;
  color: var(--iron);
}

.nav-toggle {
  display: none;
  background: transparent;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--iron);
  left: 0;
  transition: all var(--transition-base);
}

.nav-toggle span:nth-child(1) { top: 0.25rem; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0.25rem; }

.nav-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

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

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

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

.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-content {
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: var(--space-md);
  transform: translateY(40px);
  animation: fadeInUp var(--transition-luxury) forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gold);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  transform: translateY(40px);
  animation: fadeInUp var(--transition-luxury) 0.3s forwards;
}

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

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--iron);
  border: 1px solid var(--iron);
}

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

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--steel);
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--neon);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-md);
}

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

.card-text {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.6;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: var(--space-sm);
}

.slider-3d {
  position: relative;
  height: 600px;
  perspective: 1200px;
  margin: var(--space-lg) 0;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform var(--transition-luxury);
}

.slide {
  position: absolute;
  width: 400px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transition: all var(--transition-luxury);
  cursor: pointer;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.slide-caption {
  position: absolute;
  bottom: -3rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.slide.active .slide-caption {
  opacity: 1;
}

.slider-controls {
  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.slider-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--neon);
  color: var(--iron);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.slider-btn:hover {
  transform: scale(1.1);
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
  margin: var(--space-xl) 0;
}

.asymmetric-section:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}

.asymmetric-section:nth-child(even) .asymmetric-content {
  order: 2;
}

.asymmetric-section:nth-child(even) .asymmetric-image {
  order: 1;
}

.asymmetric-image {
  position: relative;
  transform: rotate(-3deg);
  transition: transform var(--transition-slow);
}

.asymmetric-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.asymmetric-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.asymmetric-content {
  padding: var(--space-md);
}

.overlap-section {
  position: relative;
  margin: var(--space-xl) 0;
}

.overlap-bg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 50%;
  height: 80%;
  background: var(--glacier);
  border-radius: var(--radius-lg);
  z-index: 0;
  transform: rotate(5deg);
}

.overlap-content {
  position: relative;
  z-index: 1;
  background: var(--neon);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 70%;
  box-shadow: var(--shadow-lg);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--glacier);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-base);
  background: var(--vapor);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--iron);
  background: var(--neon);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.8rem;
  color: var(--steel);
}

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

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.footer {
  background: var(--iron);
  color: var(--vapor);
  padding: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--glacier);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--neon);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  background: var(--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-slow);
}

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

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

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

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

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--iron);
  margin-bottom: var(--space-md);
}

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

.error-code {
  font-size: 8rem;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

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

.policy-content p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

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

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

/* ═══════════════════════════════════════════════
   POLICY & THANK-YOU PAGES — RESPONSIVE
   terms, cookies, privacy, return, thank-you
   ═══════════════════════════════════════════════ */

.policy-page .section .container,
.thank-you-page .section .container {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.policy-page .section .container > * {
  margin-left: 0;
  margin-right: 0;
}

.policy-page .section .container {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.policy-page .section .container a {
  word-break: break-all;
}

.contact-hero {
  background: var(--glacier);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin: var(--space-lg) 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--iron);
  margin-top: 0.25rem;
}

.contact-details h4 {
  margin-bottom: var(--space-xs);
}

.contact-details p {
  color: var(--steel);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-title { font-size: 3rem; }
  
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .asymmetric-section,
  .asymmetric-section:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-section:nth-child(even) .asymmetric-content,
  .asymmetric-section:nth-child(even) .asymmetric-image {
    order: 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .slide {
    width: 350px;
    height: 450px;
  }

  /* Policy & thank-you pages */
  .policy-page .hero { min-height: 45vh; }
  .policy-page .hero-title { font-size: 2.75rem; }
  .policy-page .section .container { max-width: 100%; }
  .policy-page .section .container > div:not(.overlap-section):not(.asymmetric-section) {
    padding: 2.5rem 1.5rem !important;
    margin: 2.5rem 0 !important;
  }
  .policy-page .section .container .asymmetric-section > div {
    padding: 2.5rem 1.5rem !important;
  }
  .policy-page .overlap-content { max-width: 95% !important; padding: 2rem 1.5rem !important; }
  .policy-page .section h2 { font-size: 1.75rem; margin-bottom: 1.25rem; }
  .policy-page .section .grid-2,
  .policy-page .section .grid-3 { gap: 1rem; }
  .thank-you-page .section .overlap-content { padding: 3rem 2rem !important; }
  .thank-you-page .section h1 { font-size: 2.5rem; }
  .thank-you-page .section .btn { padding: 0.875rem 1.5rem; }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero-title { font-size: 2.25rem; }
  
  .nav-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--neon);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-slow);
    align-items: flex-start;
  }
  
  .nav.active {
    right: 0;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .slider-3d {
    height: 500px;
  }
  
  .slide {
    width: 280px;
    height: 380px;
  }
  
  .overlap-content {
    max-width: 100%;
  }
  
  .overlap-bg {
    width: 70%;
  }

  /* Policy & thank-you pages */
  .policy-page .hero { min-height: 40vh; padding: var(--space-lg) var(--space-md); }
  .policy-page .hero-title { font-size: 2.25rem; }
  .policy-page .hero-subtitle { font-size: 0.9rem; }
  .policy-page .section { padding: var(--space-lg) var(--space-sm); }
  .policy-page .section .container { padding-left: var(--space-sm); padding-right: var(--space-sm); }
  .policy-page .section .container > div:not(.overlap-section):not(.asymmetric-section) {
    padding: 1.75rem 1rem !important;
    margin: 2rem 0 !important;
  }
  .policy-page .section .container .asymmetric-section > div {
    padding: 1.75rem 1rem !important;
  }
  .policy-page .overlap-content { max-width: 100% !important; padding: 1.5rem 1rem !important; }
  .policy-page .section h2 { font-size: 1.5rem; margin-bottom: 1rem; text-align: left !important; }
  .policy-page .section .container > div[style*="text-align: center"] h2 { text-align: center !important; }
  .policy-page .section .grid-2,
  .policy-page .section .grid-3 { grid-template-columns: 1fr; gap: 0.75rem; }
  .policy-page .section .card .card-content { padding: 1.25rem; }
  .policy-page .section .card-content > div[style*="font-size: 2.5rem"] { font-size: 2rem !important; }
  .policy-page .section ul li { padding: 0.5rem 0 !important; font-size: 0.9rem; }
  .policy-page .section ul li[style*="padding: 1rem"] { padding: 0.75rem 0 !important; }
  .policy-page .section .container > div[style*="flex-direction: column"] p { font-size: 0.9rem; text-align: center; }
  .thank-you-page .section { padding: var(--space-lg) var(--space-md); min-height: 70vh; }
  .thank-you-page .section .overlap-content { padding: 2.5rem 1.5rem !important; max-width: 100% !important; }
  .thank-you-page .section h1 { font-size: 2rem; margin-bottom: 1rem; }
  .thank-you-page .section p { font-size: 0.95rem; }
  .thank-you-page .section .btn { padding: 0.8rem 1.25rem; font-size: 0.8rem; }
  .thank-you-page .section [style*="font-size: 5rem"] { font-size: 3.5rem !important; }
  .thank-you-page .section [style*="display: flex"][style*="gap: 1rem"] { flex-direction: column; align-items: center; gap: 0.75rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  
  .hero-title { font-size: 1.875rem; }
  
  .section {
    padding: var(--space-md) var(--space-sm);
  }
  
  .slider-3d {
    height: 400px;
  }
  
  .slide {
    width: 240px;
    height: 320px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .error-code {
    font-size: 5rem;
  }

  /* Policy & thank-you pages */
  .policy-page .hero { min-height: 35vh; padding: var(--space-md) var(--space-sm); }
  .policy-page .hero-title { font-size: 1.875rem; }
  .policy-page .hero-subtitle { font-size: 0.85rem; }
  .policy-page .section { padding: var(--space-md) var(--space-sm); }
  .policy-page .section .container > div:not(.overlap-section):not(.asymmetric-section) {
    padding: 1.5rem 0.875rem !important;
    margin: 1.5rem 0 !important;
  }
  .policy-page .section .container .asymmetric-section > div {
    padding: 1.5rem 0.875rem !important;
  }
  .policy-page .overlap-content { padding: 1.25rem 0.875rem !important; }
  .policy-page .section h2 { font-size: 1.35rem; margin-bottom: 0.875rem; }
  .policy-page .section .card .card-content { padding: 1rem; }
  .policy-page .section .card-content > div[style*="font-size: 2.5rem"] { font-size: 1.75rem !important; }
  .policy-page .section .card-title { font-size: 1rem; }
  .policy-page .section .card-text { font-size: 0.82rem; }
  .policy-page .section ul li { padding: 0.4rem 0 !important; font-size: 0.85rem; }
  .policy-page .section ul li[style*="padding: 1rem"] { padding: 0.6rem 0 !important; }
  .policy-page .section ul li[style*="padding: 0.75rem"] { padding: 0.5rem 0 !important; }
  .policy-page .section .container > div[style*="flex-direction: column"] p { font-size: 0.85rem; }
  .policy-page .section .container > div[style*="flex-direction: column"] { gap: 0.375rem !important; }
  .thank-you-page .section { padding: var(--space-md) var(--space-sm); min-height: 65vh; }
  .thank-you-page .section .overlap-content { padding: 2rem 1rem !important; }
  .thank-you-page .section h1 { font-size: 1.75rem; margin-bottom: 0.875rem; }
  .thank-you-page .section p { font-size: 0.9rem; margin-bottom: 0.75rem; }
  .thank-you-page .section [style*="font-size: 5rem"] { font-size: 3rem !important; margin-bottom: 1.5rem !important; }
  .thank-you-page .section [style*="display: flex"][style*="gap: 1rem"] { flex-direction: column; gap: 0.625rem; }
  .thank-you-page .section .btn { padding: 0.75rem 1rem; font-size: 0.75rem; width: 100%; max-width: 280px; }
}

@media (max-width: 320px) {
  html {
    font-size: 87.5%;
  }
  
  body {
    font-size: 0.85rem;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  
  .header {
    padding: 0.75rem 1rem;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .hero {
    padding: 3rem 1rem;
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }
  
  .slider-3d {
    height: 350px;
  }
  
  .slide {
    width: 180px;
    height: 240px;
  }
  
  .slider-controls {
    bottom: -4rem;
  }
  
  .slider-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  
  .card-image {
    height: 180px;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card-title {
    font-size: 1rem;
  }
  
  .card-text {
    font-size: 0.8rem;
  }
  
  .card-price {
    font-size: 1.25rem;
  }
  
  .overlap-content {
    padding: 1.5rem;
  }
  
  .contact-grid {
    gap: 2rem;
  }
  
  .contact-icon {
    font-size: 1.25rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  .form-textarea {
    min-height: 100px;
  }
  
  .map-container {
    height: 300px;
  }
  
  .footer {
    padding: 1.5rem 1rem;
  }
  
  .footer-links {
    gap: 0.75rem;
    font-size: 0.7rem;
  }
  
  .cookie-popup {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
  }
  
  .cookie-popup-text {
    font-size: 0.8rem;
  }
  
  .nav {
    width: 85%;
    padding: 2rem 1rem;
  }
  
  .nav a {
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════
   LUXURY HOME PAGE — DARK EDITORIAL REDESIGN
   ═══════════════════════════════════════════════ */

/* ── Hero ── */
.lux-hero {
  min-height: 100vh;
  background: var(--obsidian);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 var(--space-lg);
}

.lux-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.lux-hero-left {
  padding: var(--space-xl) 0 var(--space-xl) var(--space-md);
  position: relative;
  z-index: 2;
}

.lux-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: lux-fade-in 1s cubic-bezier(0.19,1,0.22,1) 0.2s forwards;
}

.lux-hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.lux-eyebrow-line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.lux-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: lux-fade-in 1.2s cubic-bezier(0.19,1,0.22,1) 0.4s forwards;
}

.lux-hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.lux-hero-title strong {
  font-weight: 600;
  color: var(--ivory);
}

.lux-gold-rule {
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--space-md) 0;
  opacity: 0;
  animation: lux-fade-in 1s cubic-bezier(0.19,1,0.22,1) 0.6s forwards;
}

.lux-hero-subtitle {
  font-size: 0.95rem;
  color: rgba(250,248,243,0.55);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: lux-fade-in 1s cubic-bezier(0.19,1,0.22,1) 0.7s forwards;
}

.lux-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  opacity: 0;
  animation: lux-fade-in 1s cubic-bezier(0.19,1,0.22,1) 0.9s forwards;
}

.btn-gold {
  display: inline-block;
  padding: 0.95rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  border: 1px solid var(--gold);
  transition: all 0.5s cubic-bezier(0.19,1,0.22,1);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.25);
}

.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.4s ease;
}

.btn-ghost-gold i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.btn-ghost-gold:hover {
  color: var(--gold-light);
}

.btn-ghost-gold:hover i {
  transform: translateX(4px);
}

.lux-hero-right {
  position: relative;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  animation: lux-fade-in 1.5s cubic-bezier(0.19,1,0.22,1) 0.3s forwards;
}

.lux-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.lux-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
}

.lux-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--obsidian) 0%,
    rgba(12,12,14,0.3) 30%,
    transparent 60%
  );
}

.lux-hero-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-md);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold-light);
  padding: 1rem;
  backdrop-filter: blur(8px);
  background: rgba(12,12,14,0.5);
}

.lux-hero-badge span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.6;
  font-family: var(--font-body);
}

.lux-hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.lux-scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,248,243,0.35);
  z-index: 3;
  opacity: 0;
  animation: lux-fade-in 1s ease 1.5s forwards;
}

.lux-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

.lux-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(201,169,110,0.5), transparent);
  animation: lux-scroll-pulse 2s ease-in-out infinite;
}

@keyframes lux-scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

/* ── Marquee strip ── */
.lux-marquee {
  background: var(--gold);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.lux-marquee-track {
  display: inline-flex;
  animation: lux-marquee-scroll 28s linear infinite;
}

.lux-marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--obsidian);
  padding: 0 2rem;
}

.lux-marquee-sep {
  color: var(--obsidian) !important;
  opacity: 0.4;
}

@keyframes lux-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Editorial collection grid ── */
.lux-collection {
  background: var(--onyx);
  padding: var(--space-xl) var(--space-lg);
}

.lux-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.lux-section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.lux-section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.lux-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.lux-section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.lux-section-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-self: flex-end;
}

.lux-section-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.lux-editorial-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 680px;
}

.lux-editorial-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.lux-editorial-item:first-child {
  grid-row: 1 / 3;
}

.lux-editorial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.05);
  transition: transform 0.9s cubic-bezier(0.19,1,0.22,1), filter 0.6s ease;
}

.lux-editorial-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.8) contrast(1.05);
}

.lux-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,14,0.85) 0%, transparent 50%);
  transition: background 0.4s ease;
}

.lux-editorial-item:hover .lux-editorial-overlay {
  background: linear-gradient(to top, rgba(12,12,14,0.75) 0%, rgba(12,12,14,0.1) 60%);
}

.lux-editorial-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.lux-editorial-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.4rem;
  display: block;
}

.lux-editorial-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
}

.lux-editorial-item:first-child .lux-editorial-name {
  font-size: 2rem;
}

/* ── Stats band ── */
.lux-stats {
  background: var(--charcoal);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.lux-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.lux-stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.lux-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.lux-stat-item {
  text-align: center;
  padding: var(--space-md);
  position: relative;
}

.lux-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
}

.lux-stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

.lux-stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: var(--gold-dim);
  font-style: italic;
}

.lux-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.35);
  margin-top: 0.75rem;
  display: block;
}

/* ── Craft / philosophy section ── */
.lux-craft {
  background: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.lux-craft-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lux-craft-image {
  position: relative;
}

.lux-craft-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.lux-craft-image-accent {
  position: absolute;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -2rem;
  right: -2rem;
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-lg);
}

.lux-craft-image-tag {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--obsidian);
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.lux-craft-content {
  padding: var(--space-md) 0;
}

.lux-craft-content .lux-section-label {
  color: var(--gold-dim);
  margin-bottom: var(--space-sm);
}

.lux-craft-content .lux-section-label::before {
  background: var(--gold-dim);
}

.lux-craft-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--iron);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.lux-craft-heading em {
  font-style: italic;
  color: var(--gold-dim);
}

.lux-craft-text {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.9;
  margin-bottom: var(--space-sm);
}

.lux-craft-divider {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--space-md) 0;
}

.lux-craft-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}

.lux-craft-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--iron);
}

.lux-craft-features li::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Testimonials ── */
.lux-testimonials {
  background: var(--obsidian);
  padding: var(--space-xl) var(--space-lg);
}

.lux-testimonials .lux-section-header {
  margin-bottom: var(--space-lg);
}

.lux-testimonials-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.lux-testimonial-card {
  background: var(--onyx);
  border: 1px solid rgba(201,169,110,0.1);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.lux-testimonial-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-6px);
}

.lux-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: var(--space-sm);
  opacity: 0.5;
}

.lux-testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(250,248,243,0.8);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.lux-testimonial-rule {
  width: 2rem;
  height: 1px;
  background: var(--gold-dim);
  margin-bottom: var(--space-sm);
}

.lux-testimonial-name {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.lux-testimonial-location {
  font-size: 0.7rem;
  color: rgba(250,248,243,0.3);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ── Showroom CTA band ── */
.lux-cta {
  background: var(--charcoal);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.lux-cta::before {
  content: 'SPEIL';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 700;
  color: rgba(201,169,110,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.lux-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lux-cta-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.lux-cta-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.lux-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lux-cta-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.lux-cta-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.lux-cta-text {
  font-size: 0.95rem;
  color: rgba(250,248,243,0.5);
  line-height: 1.8;
}

.lux-cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.lux-cta-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(201,169,110,0.15);
}

.lux-cta-info p {
  font-size: 0.75rem;
  color: rgba(250,248,243,0.3);
  letter-spacing: 0.05em;
}

.lux-cta-info strong {
  color: rgba(250,248,243,0.65);
  font-weight: 400;
}

/* ── Animation keyframe ── */
@keyframes lux-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive luxury home ── */
@media (max-width: 1024px) {
  .lux-hero {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .lux-hero-left {
    order: 2;
    padding: var(--space-lg) var(--space-md);
    background: var(--obsidian);
  }

  .lux-hero-right {
    order: 1;
    height: 55vh;
    animation: none;
    opacity: 1;
  }

  .lux-hero-img-overlay {
    background: linear-gradient(
      to bottom,
      transparent 40%,
      var(--obsidian) 100%
    );
  }

  .lux-hero-badge {
    bottom: var(--space-sm);
    right: var(--space-sm);
  }

  .lux-editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .lux-editorial-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 350px;
  }

  .lux-editorial-item:not(:first-child) {
    height: 260px;
  }

  .lux-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .lux-stat-item:nth-child(2)::after {
    display: none;
  }

  .lux-craft-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .lux-craft-image-accent {
    width: 35%;
    right: -1rem;
  }

  .lux-cta-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .lux-hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .lux-collection,
  .lux-stats,
  .lux-craft,
  .lux-testimonials,
  .lux-cta {
    padding: var(--space-lg) var(--space-md);
  }

  .lux-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .lux-editorial-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .lux-editorial-item:first-child {
    grid-column: auto;
    height: 320px;
  }

  .lux-editorial-item:not(:first-child) {
    height: 220px;
  }

  .lux-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .lux-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .lux-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .lux-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .lux-stats-inner {
    grid-template-columns: 1fr;
  }

  .lux-stat-item::after {
    display: none !important;
  }

  .lux-craft-image-accent {
    display: none;
  }

  .lux-cta-actions {
    flex-direction: column;
  }

  .btn-gold {
    width: 100%;
    text-align: center;
  }
}

/* ════════════════════════════════════════════════
   320 px — ULTRA-NARROW PRECISION LAYER
   Covers both shared components & luxury home
   ════════════════════════════════════════════════ */
@media (max-width: 320px) {

  /* ── Root scale ── */
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 2.75rem;
  }

  html { font-size: 87.5%; }
  body { font-size: 0.8rem; overflow-x: hidden; }

  /* ── Global headings ── */
  h1 { font-size: 1.5rem;  }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
  h4 { font-size: 0.95rem; }

  /* ── Header / Nav ── */
  .header {
    padding: 0.65rem 0.875rem;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
  }

  .nav {
    width: 90%;
    padding: 1.75rem 1rem;
    gap: 1.25rem;
  }

  .nav a {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }

  .nav-toggle {
    width: 1.75rem;
    height: 1.75rem;
  }

  /* ── Shared buttons ── */
  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  /* ── Shared cards ── */
  .card-image   { height: 170px; }
  .card-content { padding: 0.875rem; }
  .card-title   { font-size: 0.95rem; }
  .card-text    { font-size: 0.78rem; }
  .card-price   { font-size: 1.1rem; }

  /* ── Shared sections ── */
  .section        { padding: 1.75rem 0.875rem; }
  .section-title  { font-size: 1.35rem; }
  .section-subtitle { font-size: 0.8rem; }

  /* ── Overlap / feature panel ── */
  .overlap-content {
    padding: 1.25rem;
    max-width: 100%;
  }
  .overlap-bg { display: none; }

  /* ── Forms ── */
  .form-input,
  .form-textarea {
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
  }
  .form-textarea { min-height: 90px; }

  /* ── Map ── */
  .map-container { height: 240px; }

  /* ── Footer ── */
  .footer { padding: 1.25rem 0.875rem; }
  .footer-links {
    gap: 0.5rem 0.75rem;
    font-size: 0.65rem;
  }

  /* ── Cookie popup ── */
  .cookie-popup {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 0.875rem;
    border-radius: 0.5rem;
  }
  .cookie-popup-text  { font-size: 0.75rem; }
  .cookie-popup-actions { flex-direction: column; gap: 0.5rem; }
  .cookie-popup-actions .btn { width: 100%; text-align: center; }

  /* ── Contact ── */
  .contact-grid  { gap: 1.5rem; }
  .contact-icon  { font-size: 1.1rem; }

  /* ══════════════════════════════════════
     POLICY & THANK-YOU — 320 px OVERRIDES
     ══════════════════════════════════════ */
  .policy-page .hero { min-height: 30vh; padding: 1.5rem 0.75rem; }
  .policy-page .hero-title { font-size: 1.5rem; }
  .policy-page .hero-subtitle { font-size: 0.78rem; }
  .policy-page .section { padding: 1.25rem 0.75rem; }
  .policy-page .section .container { padding-left: 0.75rem; padding-right: 0.75rem; }
  .policy-page .section .container > div:not(.overlap-section):not(.asymmetric-section) {
    padding: 1.25rem 0.75rem !important;
    margin: 1.25rem 0 !important;
  }
  .policy-page .section .container .asymmetric-section > div {
    padding: 1.25rem 0.75rem !important;
  }
  .policy-page .overlap-content { padding: 1rem 0.75rem !important; }
  .policy-page .section h2 { font-size: 1.15rem; margin-bottom: 0.75rem; }
  .policy-page .section h3 { font-size: 1rem; }
  .policy-page .section h4 { font-size: 0.9rem; }
  .policy-page .section .card .card-content { padding: 0.875rem; }
  .policy-page .section .card-content > div[style*="font-size: 2.5rem"] { font-size: 1.5rem !important; margin-bottom: 0.75rem !important; }
  .policy-page .section .card-title { font-size: 0.9rem; }
  .policy-page .section .card-text { font-size: 0.78rem; }
  .policy-page .section p { font-size: 0.8rem; line-height: 1.7; }
  .policy-page .section ul li { padding: 0.35rem 0 !important; font-size: 0.78rem; }
  .policy-page .section ul li[style*="padding: 1rem"] { padding: 0.5rem 0 !important; }
  .policy-page .section ul li[style*="padding: 0.75rem"] { padding: 0.4rem 0 !important; }
  .policy-page .section .container > div[style*="flex-direction: column"] p { font-size: 0.78rem; }
  .policy-page .section .container > div[style*="flex-direction: column"] { gap: 0.25rem !important; }
  .policy-page .section [style*="font-size: 2rem"] { font-size: 1.5rem !important; }
  .thank-you-page .section { padding: 1.25rem 0.75rem; min-height: 60vh; }
  .thank-you-page .section .overlap-content { padding: 1.5rem 0.75rem !important; }
  .thank-you-page .section h1 { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .thank-you-page .section p { font-size: 0.82rem; margin-bottom: 0.5rem; }
  .thank-you-page .section [style*="font-size: 5rem"] { font-size: 2.5rem !important; margin-bottom: 1rem !important; }
  .thank-you-page .section [style*="display: flex"][style*="gap: 1rem"] { flex-direction: column; gap: 0.5rem; }
  .thank-you-page .section .btn { padding: 0.7rem 0.875rem; font-size: 0.7rem; width: 100%; max-width: 100%; }

  /* ══════════════════════════════════════
     LUXURY HOME — 320 px OVERRIDES
     ══════════════════════════════════════ */

  /* ── Lux Hero ── */
  .lux-hero {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .lux-hero-right {
    height: 42vh;
    min-height: 180px;
    order: 1;
    opacity: 1;
    animation: none;
  }

  .lux-hero-img-overlay {
    background: linear-gradient(
      to bottom,
      transparent 30%,
      var(--obsidian) 100%
    );
  }

  .lux-hero-badge { display: none; }

  .lux-hero-left {
    order: 2;
    padding: 1.5rem 0.875rem 2rem;
    background: var(--obsidian);
  }

  .lux-hero-eyebrow {
    margin-bottom: 0.75rem;
  }

  .lux-eyebrow-line { width: 1.5rem; }

  .lux-hero-eyebrow span {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .lux-hero-title {
    font-size: 2.25rem;
    line-height: 1.05;
    margin-bottom: 0.75rem;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .lux-gold-rule {
    width: 2rem;
    margin: 0.875rem 0;
    animation: none;
    opacity: 1;
  }

  .lux-hero-subtitle {
    font-size: 0.78rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .lux-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
    animation: none;
    opacity: 1;
  }

  .btn-gold {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .btn-ghost-gold {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    justify-content: center;
    padding: 0.4rem 0;
  }

  /* ── Marquee ── */
  .lux-marquee { padding: 0.6rem 0; }

  .lux-marquee-track span {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 0 1rem;
  }

  /* ── Collection grid ── */
  .lux-collection {
    padding: 1.75rem 0.875rem;
  }

  .lux-section-header {
    margin-bottom: 1rem;
    gap: 0.5rem;
  }

  .lux-section-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.375rem;
  }

  .lux-section-title {
    font-size: 1.5rem;
  }

  .lux-section-link {
    font-size: 0.62rem;
  }

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

  .lux-editorial-item:first-child {
    grid-column: auto;
    grid-row: auto;
    height: 240px;
  }

  .lux-editorial-item:not(:first-child) {
    height: 180px;
  }

  .lux-editorial-item:first-child .lux-editorial-name {
    font-size: 1.35rem;
  }

  .lux-editorial-name { font-size: 1rem; }

  .lux-editorial-num {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .lux-editorial-info { padding: 1rem; }

  /* ── Stats band ── */
  .lux-stats { padding: 1.75rem 0.875rem; }

  .lux-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .lux-stat-item {
    padding: 1rem 0.5rem;
  }

  .lux-stat-item::after { display: none !important; }

  .lux-stat-num {
    font-size: 2.5rem;
  }

  .lux-stat-suffix {
    font-size: 1.25rem;
  }

  .lux-stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    margin-top: 0.4rem;
  }

  /* ── Craft section ── */
  .lux-craft { padding: 1.75rem 0.875rem; }

  .lux-craft-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lux-craft-image-main {
    aspect-ratio: 4/3;
    max-height: 240px;
    object-fit: cover;
  }

  .lux-craft-image-accent { display: none; }

  .lux-craft-image-tag {
    font-size: 0.58rem;
    padding: 0.35rem 0.625rem;
    left: 0;
    top: 0.875rem;
  }

  .lux-craft-content { padding: 0; }

  .lux-craft-heading {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
  }

  .lux-craft-divider {
    width: 2rem;
    margin: 0.875rem 0;
  }

  .lux-craft-text {
    font-size: 0.78rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
  }

  .lux-craft-features {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .lux-craft-features li {
    font-size: 0.78rem;
    gap: 0.5rem;
  }

  .lux-craft-features li::before {
    width: 0.35rem;
    height: 0.35rem;
  }

  /* ── Testimonials ── */
  .lux-testimonials { padding: 1.75rem 0.875rem; }

  .lux-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .lux-testimonial-card {
    padding: 1.25rem 1rem;
  }

  .lux-quote-mark {
    font-size: 3.5rem;
    margin-bottom: 0.375rem;
  }

  .lux-testimonial-text {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 0.875rem;
  }

  .lux-testimonial-name     { font-size: 0.65rem; }
  .lux-testimonial-location { font-size: 0.62rem; }

  /* ── CTA section ── */
  .lux-cta { padding: 1.75rem 0.875rem; }

  .lux-cta::before { display: none; }

  .lux-cta-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .lux-cta-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
  }

  .lux-cta-label::before { width: 1.25rem; }

  .lux-cta-heading {
    font-size: 2rem;
    line-height: 1.1;
  }

  .lux-cta-text {
    font-size: 0.78rem;
    line-height: 1.75;
  }

  .lux-cta-actions {
    flex-direction: column;
    gap: 0.625rem;
  }

  .lux-cta-actions .btn-gold,
  .lux-cta-actions .btn-ghost-gold {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .lux-cta-info {
    padding-top: 0.875rem;
    gap: 0.3rem;
  }

  .lux-cta-info p {
    font-size: 0.68rem;
    line-height: 1.5;
  }
}
