@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 {
  --basalt: #0A0A0B;
  --mercury: #E5E7EB;
  --onyx: #171719;
  --silver: #3F3F46;
  --white: #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.25rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.15);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.2);
  
  --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.19, 1, 0.22, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

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

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

h4 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

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

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

.luxury-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-width: 75rem;
  padding: var(--space-sm) var(--space-md);
  background: rgba(23, 23, 25, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  z-index: 1000;
  transition: all var(--transition-luxury);
  border: 1px solid rgba(63, 63, 70, 0.3);
  margin-top: var(--space-sm);
}

.luxury-header.hidden {
  transform: translateX(-50%) translateY(-120%);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
  color: var(--mercury);
}

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

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

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

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

.burger {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--mercury);
  transition: all var(--transition-smooth);
  border-radius: 2px;
}

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

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

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

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

/* ----- Luxury hero variant ----- */
.hero-section.hero-luxury {
  min-height: 100vh;
  isolation: isolate;
}

.hero-section.hero-luxury.hero-sub {
  min-height: 70vh;
}

.hero-luxury .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(229, 231, 235, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 20% 60%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, var(--basalt) 0%, var(--onyx) 100%);
}

.hero-luxury .hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: heroGridMove 20s linear infinite;
  pointer-events: none;
}

.hero-luxury .hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-luxury .hero-shape {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  animation: heroFloat 12s ease-in-out infinite;
}

.hero-luxury .hero-shape:nth-child(1) { width: 320px; height: 320px; top: 10%; left: -5%; animation-delay: 0s; animation-duration: 14s; }
.hero-luxury .hero-shape:nth-child(2) { width: 200px; height: 200px; top: 60%; right: -3%; animation-delay: -4s; animation-duration: 10s; }
.hero-luxury .hero-shape:nth-child(3) { width: 140px; height: 140px; bottom: 20%; left: 15%; animation-delay: -7s; animation-duration: 11s; }
.hero-luxury .hero-shape:nth-child(4) { width: 80px; height: 80px; top: 30%; right: 20%; animation-delay: -2s; animation-duration: 9s; }
.hero-luxury .hero-shape:nth-child(5) { width: 260px; height: 260px; bottom: -10%; right: 25%; animation-delay: -5s; animation-duration: 15s; }

.hero-luxury .hero-accent-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  z-index: 0;
  opacity: 0;
  animation: heroLineReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}

.hero-luxury .hero-accent-line.top { top: 25%; left: 10%; right: 10%; width: auto; }
.hero-luxury .hero-accent-line.bottom { bottom: 28%; left: 15%; right: 15%; width: auto; }

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

.hero-luxury .hero-canvas {
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 50rem;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.hero-luxury .hero-content {
  animation: none;
}

.hero-luxury .hero-title-wrap {
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.hero-luxury .hero-title {
  display: inline-block;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(1.2em);
  animation: heroTitleReveal 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
  position: relative;
}

.hero-luxury .hero-title .hero-title-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.08) 45%, rgba(212,175,55,0.12) 50%, transparent 55%);
  background-size: 200% 100%;
  animation: heroShimmer 4s ease-in-out 1.5s infinite;
  pointer-events: none;
}

.hero-title {
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-luxury .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  opacity: 0;
  transform: translateY(1rem);
  animation: heroSubtitleReveal 0.9s cubic-bezier(0.19, 1, 0.22, 1) 0.55s forwards;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease-out 0.6s forwards;
  font-weight: 300;
}

.hero-luxury .hero-cta-wrap {
  opacity: 0;
  transform: translateY(1rem);
  animation: heroCtaReveal 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.85s forwards;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--basalt);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  border: 2px solid var(--white);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-luxury .cta-button {
  animation: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.hero-luxury .cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.hero-luxury .cta-button:hover::before {
  opacity: 1;
}

.hero-luxury .cta-button:hover {
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5), 0 8px 32px rgba(0,0,0,0.3);
}

.cta-button:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

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

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

.card {
  background: var(--onyx);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition-smooth);
  border: 1px solid var(--silver);
  transform: translateY(2rem);
}

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

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

.card-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

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

.card-text {
  font-size: 0.85rem;
  color: var(--mercury);
  opacity: 0.8;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.asymmetric-content {
  transform: rotate(-2deg);
  padding: var(--space-lg);
  background: var(--onyx);
  border-radius: var(--radius-lg);
  transition: all var(--transition-luxury);
}

.asymmetric-content:hover {
  transform: rotate(0deg);
}

.asymmetric-image {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  transition: all var(--transition-luxury);
}

.asymmetric-image:hover {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

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

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

.overlap-content {
  position: relative;
  z-index: 1;
  background: var(--basalt);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--silver);
}

.product-card {
  background: var(--onyx);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid var(--silver);
}

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

.product-image {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

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

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

.product-price {
  font-size: 1.8rem;
  font-family: var(--font-display);
  color: var(--white);
  margin: var(--space-sm) 0;
}

.contact-section {
  background: var(--onyx);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) auto;
  max-width: 50rem;
  border: 1px solid var(--silver);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--basalt);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  color: var(--mercury);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
}

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

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

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

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.8rem;
  cursor: pointer;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: var(--white);
  color: var(--basalt);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.submit-button:hover {
  background: var(--mercury);
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-md);
}

.map-container {
  width: 100%;
  height: 25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--silver);
  margin-top: var(--space-md);
}

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

.footer {
  padding: var(--space-md);
  text-align: center;
  border-top: 1px solid var(--silver);
  font-size: 0.8rem;
  opacity: 0.7;
}

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

.footer-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: opacity var(--transition-smooth);
}

.footer-links a:hover {
  opacity: 1;
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 35rem;
  background: var(--onyx);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  border: 1px solid var(--silver);
  transform: translateY(150%);
  transition: transform var(--transition-luxury);
}

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

.privacy-popup-content {
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
}

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

.privacy-button {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.privacy-accept {
  background: var(--white);
  color: var(--basalt);
}

.privacy-accept:hover {
  background: var(--mercury);
}

.privacy-decline {
  background: transparent;
  color: var(--mercury);
  border: 1px solid var(--silver);
}

.privacy-decline:hover {
  border-color: var(--mercury);
}

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

.error-content h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  margin-bottom: var(--space-sm);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.thankyou-content {
  max-width: 40rem;
}

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

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

.feature-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--onyx);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  border: 1px solid var(--silver);
}

.feature-item:hover {
  transform: translateY(-0.5rem);
  border-color: var(--mercury);
}

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

/* Luxury hero animations */
@keyframes heroGridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(15px, -20px) scale(1.02); opacity: 0.6; }
  50% { transform: translate(-10px, 10px) scale(0.98); opacity: 0.5; }
  75% { transform: translate(-20px, -10px) scale(1.01); opacity: 0.55; }
}

@keyframes heroLineReveal {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

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

@keyframes heroShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@media (min-width: 768px) {
  .asymmetric-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    flex-wrap: nowrap;
  }
}

@media (max-width: 768px) {
  .hero-luxury .hero-shape:nth-child(n) {
    width: 120px !important;
    height: 120px !important;
  }
  .hero-luxury.hero-sub {
    min-height: 60vh;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--onyx);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--silver);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .luxury-header {
    width: 95%;
    padding: var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-content {
    transform: rotate(0deg);
  }
  
  .overlap-bg {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-popup {
    left: var(--space-sm);
    right: var(--space-sm);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-section {
    padding: var(--space-md) var(--space-sm);
  }
  
  .cta-button {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
  }
  
  .card-image,
  .product-image {
    height: 12rem;
  }
  
  .map-container {
    height: 18rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
    min-width: 280px;
  }

  /* Typography – readable at 320px */
  h1 {
    font-size: clamp(1.75rem, 10vw, 2.25rem);
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  h3 {
    font-size: clamp(1.25rem, 6vw, 1.5rem);
  }

  h4 {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
  }

  p {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  /* Header */
  .luxury-header {
    width: 100%;
    padding: 0.5rem 0.5rem;
    margin-top: 0.25rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .header-content {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.02em;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-menu {
    width: 85%;
    max-width: 280px;
    padding: 2rem 1rem;
  }

  .nav-menu a {
    font-size: 0.8rem;
    padding: 0.6rem 0;
  }

  /* Hero */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0.75rem 1.5rem;
  }

  .hero-luxury.hero-sub {
    min-height: 55vh;
  }

  .hero-luxury .hero-content {
    max-width: 100%;
    padding: 0 0.25rem;
  }

  .hero-luxury .hero-title-wrap {
    margin-bottom: 0.75rem;
  }

  .hero-luxury .hero-title {
    font-size: clamp(1.6rem, 9vw, 2rem);
    line-height: 1.2;
  }

  .hero-luxury .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .hero-luxury .hero-shape:nth-child(n) {
    width: 60px !important;
    height: 60px !important;
  }

  .hero-luxury .hero-accent-line.top,
  .hero-luxury .hero-accent-line.bottom {
    left: 5%;
    right: 5%;
  }

  /* Buttons – touch-friendly */
  .cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Layout */
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 100%;
  }

  .section {
    padding: 1.5rem 0.75rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 7vw, 1.75rem);
    margin-bottom: 1.5rem;
  }

  .grid {
    gap: 0.75rem;
  }

  .card,
  .feature-item,
  .product-card {
    padding: 0.75rem;
    min-width: 0;
  }

  .card-image,
  .product-image {
    height: 10rem;
    border-radius: var(--radius-sm);
  }

  .card-title,
  .product-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.8rem;
  }

  .product-price {
    font-size: 1.4rem;
  }

  .feature-grid {
    gap: 0.75rem;
  }

  .feature-item {
    padding: 0.75rem;
  }

  .icon-feature {
    font-size: 1.5rem;
  }

  /* Asymmetric / overlap */
  .asymmetric-section {
    gap: 1rem;
  }

  .asymmetric-content {
    padding: 1rem;
  }

  .overlap-content {
    padding: 1rem;
  }

  /* Contact */
  .contact-section {
    padding: 1rem;
    margin: 1.5rem auto;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    font-size: 0.75rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.75rem 0.85rem;
    font-size: 16px; /* prevents iOS zoom on focus */
    min-height: 44px;
  }

  .form-textarea {
    min-height: 6rem;
  }

  .checkbox-group label {
    font-size: 0.7rem;
  }

  .submit-button {
    padding: 0.85rem;
    font-size: 0.8rem;
    min-height: 44px;
  }

  .map-container {
    height: 14rem;
    border-radius: var(--radius-md);
  }

  /* Footer */
  .footer {
    padding: 1rem 0.75rem;
    font-size: 0.7rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .footer-links a {
    font-size: 0.7rem;
    padding: 0.35rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Privacy popup */
  .privacy-popup {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0.75rem;
    max-width: 100%;
  }

  .privacy-popup-content {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .privacy-button {
    padding: 0.65rem;
    font-size: 0.7rem;
    min-height: 44px;
  }

  /* Error & thank you pages */
  .error-page,
  .thankyou-page {
    padding-top: 5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    min-height: auto;
  }

  .error-content h1 {
    font-size: clamp(3rem, 20vw, 5rem);
  }

  .error-content h2 {
    font-size: clamp(1.25rem, 6vw, 1.5rem);
  }

  .thankyou-content {
    padding: 0 0.25rem;
  }

  /* Prevent overflow */
  img {
    max-width: 100%;
    height: auto;
  }

  .container,
  .hero-content,
  .asymmetric-content,
  .overlap-content {
    min-width: 0;
  }
}
