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

:root {
  --color-primary: #3F4238;
  --color-secondary: #A68A56;
  --color-text: #FFFDF2;
  --color-bg: #FAF9F6;
  --color-dark: #1A1A1A;
  --color-light: #FAF9F6;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', 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.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(31, 31, 31, 0.08);
  --shadow-md: 0 4px 16px rgba(31, 31, 31, 0.12);
  --shadow-lg: 0 8px 32px rgba(31, 31, 31, 0.16);
  
  --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.6s 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 {
  font-size: 100%;
  scroll-behavior: smooth;
}

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

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: 700;
}

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

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

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

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

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

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

.container {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform var(--transition-luxury), background var(--transition-base);
  background: transparent;
}

.header-wrapper.scrolled {
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

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

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  z-index: -1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 1.75rem;
  height: 0.125rem;
  background: white;
  transition: all var(--transition-base);
  border-radius: 0.125rem;
}

.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);
}

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

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

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a2d26 100%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text);
  padding: var(--space-lg) var(--space-sm);
}

.hero-title {
  transform: translateY(2rem);
  animation: fadeInUp var(--transition-luxury) forwards;
  animation-delay: 0.3s;
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  transform: translateY(2rem);
  animation: fadeInUp var(--transition-luxury) forwards;
  animation-delay: 0.6s;
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

.hero-cta {
  transform: translateY(2rem);
  animation: fadeInUp var(--transition-luxury) forwards;
  animation-delay: 0.9s;
}

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

/* Luxury Hero Section Styles */
.hero-luxury {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2d26 50%, #3F4238 100%);
}

.hero-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(166, 138, 86, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(166, 138, 86, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-luxury::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(166, 138, 86, 0.03) 50%, transparent 70%);
  transform: rotate(15deg);
  animation: shimmer 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes shimmer {
  0%, 100% { transform: rotate(15deg) translateX(0); }
  50% { transform: rotate(15deg) translateX(10%); }
}

.hero-luxury-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text);
  padding: var(--space-xl) var(--space-sm);
  max-width: 75rem;
  margin: 0 auto;
}

.hero-luxury-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFDF2 0%, #A68A56 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(3rem) scale(0.95);
  animation: luxuryFadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
}

.hero-luxury-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: rgba(255, 253, 242, 0.85);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(2rem);
  animation: luxuryFadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.5s;
}

.hero-luxury-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 253, 242, 0.7);
  max-width: 40rem;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(2rem);
  animation: luxuryFadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.8s;
}

.hero-luxury-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(2rem);
  animation: luxuryFadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 1.1s;
}

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

.hero-luxury-divider {
  width: 4rem;
  height: 0.125rem;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  margin: var(--space-lg) auto;
  opacity: 0;
  transform: scaleX(0);
  animation: luxuryDivider 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.7s;
}

@keyframes luxuryDivider {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-luxury-accent {
  position: absolute;
  width: 20rem;
  height: 20rem;
  border: 0.0625rem solid rgba(166, 138, 86, 0.2);
  border-radius: 50%;
  z-index: 1;
  animation: float 20s ease-in-out infinite;
}

.hero-luxury-accent:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-luxury-accent:nth-child(2) {
  bottom: 15%;
  right: 15%;
  width: 15rem;
  height: 15rem;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2rem, -2rem) rotate(120deg); }
  66% { transform: translate(-1rem, 2rem) rotate(240deg); }
}

/* Split Hero Layout */
.hero-split {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--color-primary);
  margin-top: 50px;
}

.hero-split-left {
  padding: var(--space-xl);
  color: var(--color-text);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-split-right {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, rgba(166, 138, 86, 0.1) 0%, rgba(63, 66, 56, 0.3) 100%);
  overflow: hidden;
}

.hero-split-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(166, 138, 86, 0.03) 2px,
      rgba(166, 138, 86, 0.03) 4px
    );
  z-index: 1;
}

.hero-split-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateX(-3rem);
  animation: slideInLeft 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.3s;
}

.hero-split-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-3rem);
  animation: slideInLeft 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.5s;
}

.hero-split-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255, 253, 242, 0.85);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateX(-3rem);
  animation: slideInLeft 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.7s;
}

.hero-split-cta {
  opacity: 0;
  transform: translateX(-3rem);
  animation: slideInLeft 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.9s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Centered Minimal Hero */
.hero-minimal {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2d26 100%);
  text-align: center;
}

.hero-minimal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(166, 138, 86, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.hero-minimal-content {
  position: relative;
  z-index: 2;
  color: var(--color-text);
  padding: var(--space-xl) var(--space-sm);
  max-width: 50rem;
  margin: 0 auto;
}

.hero-minimal-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(2rem);
  animation: minimalFadeIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.2s;
}

.hero-minimal-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(2rem);
  animation: minimalFadeIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.5s;
}

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


.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slow), height var(--transition-slow);
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn-primary:hover {
  background: #8f7548;
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 0.125rem solid var(--color-secondary);
}

.btn-secondary:hover {
  background: var(--color-secondary);
  transform: translateY(-0.125rem);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-luxury);
  position: relative;
}

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

.card-image {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

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

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

.card-text {
  font-size: 0.9375rem;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  align-items: center;
}

.asymmetric-item-1 {
  grid-column: 1 / 7;
  transform: translateY(-2rem);
}

.asymmetric-item-2 {
  grid-column: 7 / 13;
  transform: translateY(2rem);
}

.overlap-section {
  position: relative;
  margin-top: -4rem;
}

.angled-section {
  position: relative;
  padding: var(--space-xl) 0;
  background: var(--color-primary);
  color: var(--color-text);
  transform: skewY(-2deg);
  margin: var(--space-xl) 0;
}

.angled-section > * {
  transform: skewY(2deg);
}

.contact-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a2d26 100%);
  color: var(--color-text);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 25rem), 1fr));
  gap: var(--space-lg);
  align-items: start;
}

.contact-info h2 {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.contact-info p {
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

.contact-info a {
  color: var(--color-secondary);
  transition: color var(--transition-base);
}

.contact-info a:hover {
  color: var(--color-text);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 0.0625rem solid rgba(166, 138, 86, 0.2);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(166, 138, 86, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 253, 242, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.15);
}

.form-group 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"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.8125rem;
  text-transform: none;
  letter-spacing: normal;
}

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

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

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

.footer-content {
  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;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-secondary);
  font-size: 0.8125rem;
  transition: color var(--transition-base);
}

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

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(63, 66, 56, 0.98);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: bottom var(--transition-luxury);
}

.cookie-popup.show {
  bottom: 0;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
}

.cookie-text a {
  color: var(--color-secondary);
  text-decoration: underline;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--transition-luxury), transform var(--transition-luxury);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  transition: transform 0.1s ease-out;
}

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

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

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

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

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

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

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

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

.policy-section h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 1.75rem;
}

.policy-section p {
  margin-bottom: var(--space-sm);
}

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

@media (max-width: 48rem) {
  /* Hero Section Responsive Adjustments */
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-split-right {
    height: 50vh;
    min-height: 20rem;
  }
  
  .hero-luxury-accent {
    display: none;
  }
  
  .hero-luxury-cta {
    flex-direction: column;
  }
  
  .hero-luxury-cta .btn {
    width: 100%;
  }

  /* Mobile Navigation */
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }

  /* Mobile Menu Overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-luxury), visibility var(--transition-luxury);
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Luxury Mobile Navigation */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 20rem;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2d26 50%, #3F4238 100%);
    backdrop-filter: blur(20px);
    padding: 0;
    transition: right var(--transition-luxury);
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 30%, rgba(166, 138, 86, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(166, 138, 86, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
  }

  .main-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25rem;
    height: 100%;
    background: linear-gradient(180deg, var(--color-secondary) 0%, transparent 100%);
    opacity: 0.6;
    z-index: 2;
  }

  .main-nav.active {
    right: 0;
  }

  /* Navigation Header */
  .main-nav-header {
    padding: var(--space-lg) var(--space-md);
    border-bottom: 0.0625rem solid rgba(166, 138, 86, 0.2);
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-close {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-base);
    position: relative;
  }

  .nav-close::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(166, 138, 86, 0.1);
    transform: scale(0);
    transition: transform var(--transition-base);
  }

  .nav-close:hover::before {
    transform: scale(1);
  }

  .nav-close span {
    position: relative;
    z-index: 1;
    font-weight: 300;
  }

  /* Navigation List */
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    list-style: none;
    padding: var(--space-md) 0;
    position: relative;
    z-index: 3;
  }

  .main-nav li {
    position: relative;
    overflow: hidden;
  }

  .main-nav li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.25rem;
    background: var(--color-secondary);
    transform: scaleY(0);
    transition: transform var(--transition-base);
    z-index: 1;
  }

  .main-nav li:hover::before,
  .main-nav li.active::before {
    transform: scaleY(1);
  }

  .main-nav a {
    display: block;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 253, 242, 0.9);
    padding: var(--space-md) var(--space-lg);
    position: relative;
    transition: all var(--transition-base);
    text-decoration: none;
    z-index: 2;
  }

  .main-nav a::before {
    content: '';
    position: absolute;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%) translateX(-1rem);
    width: 0.375rem;
    height: 0.375rem;
    background: var(--color-secondary);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-base);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--color-text);
    padding-left: calc(var(--space-lg) + 1.5rem);
    background: rgba(166, 138, 86, 0.05);
  }

  .main-nav a:hover::before,
  .main-nav a:focus::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  .main-nav a::after {
    display: none;
  }

  /* Menu Item Animations */
  .main-nav.active ul li {
    opacity: 0;
    transform: translateX(2rem);
    animation: slideInNavItem 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }

  .main-nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
  .main-nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
  .main-nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
  .main-nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
  .main-nav.active ul li:nth-child(5) { animation-delay: 0.5s; }
  .main-nav.active ul li:nth-child(6) { animation-delay: 0.6s; }

  @keyframes slideInNavItem {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Navigation Footer */
  .main-nav-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    border-top: 0.0625rem solid rgba(166, 138, 86, 0.2);
    background: rgba(0, 0, 0, 0.2);
    z-index: 3;
  }

  /* Active page indicator */
  .main-nav a[href*="index.html"]:not([href*="collection"]):not([href*="offerings"]):not([href*="reach-us"]) {
    color: var(--color-secondary);
  }

  /* Other responsive styles */
  .asymmetric-item-1,
  .asymmetric-item-2 {
    grid-column: 1 / 13;
    transform: translateY(0);
  }

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 30rem) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
  }

  body {
    font-size: 0.875rem;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }

  h3 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
    width: 100%;
  }

  .hero-section {
    min-height: 70vh;
    padding: var(--space-md);
  }

  .section {
    padding: var(--space-lg) 0;
  }

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

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

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

  .main-nav {
    width: 85%;
    padding: var(--space-lg) var(--space-sm);
  }

  .logo {
    font-size: 1.25rem;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .contact-form {
    padding: var(--space-sm);
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.875rem;
    padding: 0.625rem;
  }
}

@media (max-width: 20rem) {
  :root {
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
  }

  html {
    font-size: 14px;
  }

  body {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .container {
    width: 95%;
    padding: 0 var(--space-xs);
  }

  /* Typography */
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.2;
  }

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

  h4 {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
  }

  p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  /* Header */
  .main-header {
    padding: var(--space-xs) 0;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.01em;
  }

  .nav-toggle {
    padding: 0.375rem;
  }

  .nav-toggle span {
    width: 1.5rem;
    height: 0.1rem;
  }

  .main-nav {
    width: 90%;
    max-width: 18rem;
  }

  .main-nav-header {
    padding: var(--space-md) var(--space-sm);
  }

  .main-nav-header span {
    font-size: 1.125rem !important;
  }

  .nav-close {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }

  .main-nav a {
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    padding-left: calc(var(--space-md) + 1.25rem);
  }

  /* Buttons */
  .btn {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
    letter-spacing: 0.03em;
  }

  /* Hero Sections */
  .hero-section {
    min-height: 50vh;
    padding: var(--space-md) var(--space-xs);
  }

  .hero-luxury {
    min-height: 70vh;
    padding: var(--space-lg) var(--space-xs);
  }

  .hero-luxury-content {
    padding: var(--space-md) var(--space-xs);
  }

  .hero-luxury-title {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
  }

  .hero-luxury-subtitle {
    font-size: clamp(0.875rem, 4vw, 1rem);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.03em;
  }

  .hero-luxury-description {
    font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
    margin-bottom: var(--space-md);
    line-height: 1.6;
  }

  .hero-luxury-divider {
    width: 3rem;
    margin: var(--space-sm) auto;
  }

  .hero-luxury-cta {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero-luxury-cta .btn {
    width: 100%;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-split-left {
    padding: var(--space-md) var(--space-sm);
  }

  .hero-split-right {
    height: 40vh;
    min-height: 15rem;
  }

  .hero-split-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: var(--space-sm);
  }

  .hero-split-subtitle {
    font-size: clamp(0.875rem, 4vw, 1rem);
    margin-bottom: var(--space-sm);
  }

  .hero-split-description {
    font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
    margin-bottom: var(--space-md);
    line-height: 1.6;
  }

  .hero-minimal {
    min-height: 60vh;
    padding: var(--space-lg) var(--space-xs);
  }

  .hero-minimal-content {
    padding: var(--space-md) var(--space-xs);
  }

  .hero-minimal-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: var(--space-sm);
  }

  .hero-minimal-subtitle {
    font-size: clamp(0.875rem, 4vw, 1rem);
  }

  /* Sections */
  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    margin-bottom: var(--space-md);
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .section-subtitle {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    margin-bottom: var(--space-md);
    line-height: 1.5;
  }

  /* Cards */
  .card {
    padding: var(--space-xs);
  }

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

  .card-image {
    height: 10rem;
  }

  .card-title {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
    margin-bottom: var(--space-xs);
  }

  .card-text {
    font-size: 0.8125rem;
    margin-bottom: var(--space-xs);
    line-height: 1.5;
  }

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

  /* Grid */
  .grid {
    gap: var(--space-sm);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Asymmetric Layout */
  .asymmetric-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .asymmetric-item-1,
  .asymmetric-item-2 {
    grid-column: 1 / -1;
    transform: translateY(0);
  }

  /* Angled Section */
  .angled-section {
    padding: var(--space-lg) 0;
    margin: var(--space-lg) 0;
    transform: skewY(0);
  }

  .angled-section > * {
    transform: skewY(0);
  }

  /* Contact Section */
  .contact-section {
    padding: var(--space-lg) 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-info h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: var(--space-sm);
  }

  .contact-info p {
    font-size: 0.8125rem;
    margin-bottom: var(--space-xs);
  }

  .contact-form {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

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

  .form-group label {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.625rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
  }

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

  .checkbox-group {
    gap: 0.375rem;
    margin-bottom: var(--space-sm);
  }

  .checkbox-group label {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .map-container {
    height: 15rem;
    border-radius: var(--radius-md);
    margin-top: var(--space-sm);
  }

  /* Footer */
  .footer {
    padding: var(--space-sm) 0;
    font-size: 0.75rem;
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
    width: 100%;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  /* Cookie Popup */
  .cookie-popup {
    padding: var(--space-sm);
  }

  .cookie-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .cookie-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--space-xs);
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  /* Thank You Section */
  .thank-you-section {
    min-height: 60vh;
    padding: var(--space-lg) var(--space-xs);
  }

  .thank-you-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
  }

  /* Error Section */
  .error-content h1 {
    font-size: clamp(3rem, 15vw, 5rem);
    margin-bottom: var(--space-xs);
  }

  /* Policy Section */
  .policy-section {
    padding: var(--space-lg) 0;
  }

  .policy-section h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
  }

  .policy-section h2 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-xs);
  }

  .policy-section p {
    font-size: 0.8125rem;
    margin-bottom: var(--space-xs);
    line-height: 1.5;
  }

  .policy-section ul {
    margin-left: var(--space-sm);
    margin-bottom: var(--space-xs);
    font-size: 0.8125rem;
  }

  /* Utility Classes */
  .hero-luxury-accent {
    display: none;
  }

  /* Icon adjustments */
  i[class^="fas"] {
    font-size: 2rem !important;
  }

  /* Hide decorative elements on very small screens */
  .hero-luxury::after {
    display: none;
  }
}
