@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 {
  --bone-white: #F9F6F2;
  --burnt-umber: #3C2F2F;
  --sage-ash: #94A3B8;
  --raw-ochre: #B08968;
  --soft-sand: #F1EEE9;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(60, 47, 47, 0.08);
  --shadow-md: 0 4px 16px rgba(60, 47, 47, 0.12);
  --shadow-lg: 0 8px 32px rgba(60, 47, 47, 0.16);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bone-white);
  color: var(--burnt-umber);
  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;
}

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

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

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

button, .btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--raw-ochre);
  color: var(--bone-white);
  cursor: pointer;
  transition: all var(--transition-luxury);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

button:hover, .btn:hover {
  background: var(--burnt-umber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

button:hover::before, .btn:hover::before {
  width: 300px;
  height: 300px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) var(--space-sm);
  background: transparent;
  transition: all var(--transition-luxury);
}

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

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

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

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

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

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

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

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

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

.burger span {
  width: 25px;
  height: 2px;
  background: var(--burnt-umber);
  transition: all var(--transition-smooth);
}

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

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

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

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

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

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

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

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage-ash);
  margin-bottom: var(--space-sm);
  animation: fadeIn 1s ease-out 0.3s both;
}

.hero h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--sage-ash);
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-out 0.7s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Luxury Hero Sections */
.luxury-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-xl) + 80px) var(--space-sm) var(--space-xl);
  background: linear-gradient(135deg, var(--bone-white) 0%, var(--soft-sand) 50%, var(--bone-white) 100%);
}

.luxury-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(176, 137, 104, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: luxuryFloat 20s ease-in-out infinite;
}

.luxury-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: luxuryFloat 25s ease-in-out infinite reverse;
}

.luxury-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.luxury-hero-badge {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: rgba(176, 137, 104, 0.1);
  border: 1px solid rgba(176, 137, 104, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--raw-ochre);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease-out 0.2s both;
}

.luxury-hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--burnt-umber) 0%, var(--raw-ochre) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.4s both;
  position: relative;
}

.luxury-hero-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--raw-ochre), transparent);
  animation: expandLine 1.2s ease-out 0.8s both;
}

.luxury-hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--sage-ash);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  font-weight: 300;
  animation: fadeIn 1.2s ease-out 0.6s both;
}

.luxury-hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.luxury-hero-decoration {
  position: absolute;
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--raw-ochre), transparent);
  opacity: 0.3;
}

.luxury-hero-decoration:nth-child(1) {
  top: 20%;
  left: 10%;
  animation: luxuryPulse 3s ease-in-out infinite;
}

.luxury-hero-decoration:nth-child(2) {
  top: 60%;
  right: 15%;
  animation: luxuryPulse 3s ease-in-out infinite 1.5s;
}

/* Collection Hero Specific */
.collection-hero {
  background: linear-gradient(135deg, var(--soft-sand) 0%, var(--bone-white) 50%, var(--soft-sand) 100%);
  position: relative;
}

.collection-hero::before {
  background: radial-gradient(circle, rgba(176, 137, 104, 0.12) 0%, transparent 70%);
}

/* Custom Hero Specific */
.custom-hero {
  background: linear-gradient(45deg, var(--bone-white) 0%, var(--soft-sand) 100%);
}

.custom-hero::after {
  background: radial-gradient(circle, rgba(176, 137, 104, 0.1) 0%, transparent 70%);
}

/* About Hero Specific */
.about-hero {
  background: linear-gradient(180deg, var(--bone-white) 0%, var(--soft-sand) 100%);
}

.about-hero::before {
  background: radial-gradient(circle, rgba(148, 163, 184, 0.1) 0%, transparent 70%);
}

/* Contact Hero Specific */
.contact-hero {
  background: linear-gradient(135deg, var(--soft-sand) 0%, var(--bone-white) 50%, var(--soft-sand) 100%);
}

.contact-hero::after {
  background: radial-gradient(circle, rgba(176, 137, 104, 0.1) 0%, transparent 70%);
}

@keyframes luxuryFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}

@keyframes luxuryPulse {
  0%, 100% {
    opacity: 0.2;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(1.2);
  }
}

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

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(30px);
  transition: all var(--transition-luxury);
}

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

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--raw-ochre);
  margin-bottom: var(--space-xs);
}

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

.section-description {
  color: var(--sage-ash);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--bone-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-luxury);
  box-shadow: var(--shadow-sm);
  transform: translateY(40px);
}

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

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: var(--soft-sand);
}

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

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

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

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

.card-text {
  color: var(--sage-ash);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--raw-ochre);
  font-weight: 600;
}

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

.asymmetric-item {
  position: relative;
}

.asymmetric-item:nth-child(1) {
  grid-column: 1 / 7;
  transform: rotate(-2deg);
}

.asymmetric-item:nth-child(2) {
  grid-column: 7 / 13;
  transform: translateY(40px) rotate(1deg);
}

.feature-box {
  padding: var(--space-md);
  background: var(--soft-sand);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-luxury);
  border: 1px solid transparent;
}

.feature-box:hover {
  background: var(--bone-white);
  border-color: var(--raw-ochre);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--raw-ochre);
  margin-bottom: var(--space-sm);
}

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

.feature-text {
  color: var(--sage-ash);
  font-size: 0.85rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--soft-sand);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form-input, .form-textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--bone-white);
  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(--raw-ochre);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.footer {
  background: var(--burnt-umber);
  color: var(--bone-white);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  font-size: 0.8rem;
}

.footer-content {
  max-width: 1400px;
  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);
  flex-wrap: wrap;
}

.footer a:hover {
  color: var(--raw-ochre);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--burnt-umber);
  color: var(--bone-white);
  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: 1400px;
  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.85rem;
}

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

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

.btn-secondary {
  background: transparent;
  border: 2px solid var(--bone-white);
}

.btn-secondary:hover {
  background: var(--bone-white);
  color: var(--burnt-umber);
}

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

.page-404 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--raw-ochre);
  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: 600px;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--raw-ochre);
  margin-bottom: var(--space-md);
}

.policy-page {
  padding: var(--space-xl) var(--space-sm);
  padding-top: calc(var(--space-xl) + 80px);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.policy-content p {
  margin-bottom: var(--space-sm);
  color: var(--sage-ash);
}

.policy-content ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--sage-ash);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bone-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-luxury);
    z-index: 999;
  }
  
  .nav.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .asymmetric-item:nth-child(1),
  .asymmetric-item:nth-child(2) {
    grid-column: 1 / 13;
    transform: none;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .luxury-hero {
    min-height: 80vh;
    padding: calc(var(--space-lg) + 80px) var(--space-sm) var(--space-lg);
  }
  
  .luxury-hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  .luxury-hero-description {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }
  
  .luxury-hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .luxury-hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .luxury-hero-decoration {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  button, .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }
}

.luxury-error-page, .luxury-thanks-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-sm);
  position: relative;
  overflow: hidden;
}

.luxury-error-content, .luxury-thanks-content {
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.error-decoration, .thanks-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--raw-ochre);
  opacity: 0.05;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.error-decoration::after, .thanks-decoration::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--sage-ash);
  opacity: 0.5;
  bottom: -50px;
  left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

.error-number {
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--raw-ochre);
  font-weight: 300;
  line-height: 1;
  margin-bottom: var(--space-sm);
  animation: fadeInScale 1s ease-out 0.2s forwards;
}

.error-title, .thanks-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

.error-text, .thanks-text {
  font-size: 1.1rem;
  color: var(--sage-ash);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.error-actions, .thanks-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.thanks-icon-wrapper {
  margin-bottom: var(--space-md);
  animation: scaleIn 0.8s ease-out 0.2s forwards;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--raw-ochre);
}

.thanks-info {
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s ease-out 0.7s forwards;
}

.thanks-info a {
  color: var(--raw-ochre);
  text-decoration: underline;
}

.luxury-policy-page {
  padding-top: 80px;
}

.luxury-policy-hero {
  background: linear-gradient(135deg, var(--soft-sand) 0%, var(--bone-white) 100%);
  padding: var(--space-xl) var(--space-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.luxury-policy-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--raw-ochre);
  opacity: 0.03;
  top: -200px;
  right: -200px;
}

.luxury-policy-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.policy-date {
  color: var(--sage-ash);
  font-size: 0.9rem;
  font-style: italic;
}

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

.policy-section {
  margin-bottom: var(--space-lg);
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.policy-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(2) { animation-delay: 0.2s; }
.policy-section:nth-child(3) { animation-delay: 0.3s; }
.policy-section:nth-child(4) { animation-delay: 0.4s; }
.policy-section:nth-child(5) { animation-delay: 0.5s; }
.policy-section:nth-child(6) { animation-delay: 0.6s; }
.policy-section:nth-child(7) { animation-delay: 0.7s; }
.policy-section:nth-child(8) { animation-delay: 0.8s; }

.policy-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
  color: var(--burnt-umber);
  position: relative;
  padding-bottom: var(--space-xs);
}

.policy-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--raw-ochre);
}

.policy-section h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--burnt-umber);
}

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

.policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.policy-list li {
  color: var(--sage-ash);
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  position: relative;
  line-height: 1.8;
}

.policy-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--raw-ochre);
  font-size: 1.5rem;
  line-height: 1;
}

.contact-box {
  background: var(--soft-sand);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--raw-ochre);
  margin: var(--space-md) 0;
}

.contact-box p {
  margin-bottom: var(--space-xs);
  color: var(--burnt-umber);
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.cookie-type-box {
  background: var(--soft-sand);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}

.cookie-type-box h3 {
  color: var(--burnt-umber);
  margin-bottom: var(--space-xs);
}

.cookie-type-box p {
  color: var(--sage-ash);
  margin-bottom: 0;
}

.steps-box {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.step-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--soft-sand);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
}

.step-item:hover {
  background: var(--bone-white);
  transform: translateX(5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--raw-ochre);
  color: var(--bone-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-item p {
  margin: 0;
  color: var(--burnt-umber);
}

.policy-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--sage-ash);
  opacity: 0.3;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

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

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

@media (max-width: 768px) {
  .luxury-error-page, .luxury-thanks-page {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .error-number {
    font-size: 4rem;
  }
  
  .luxury-policy-hero {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .luxury-policy-content {
    padding: var(--space-lg) var(--space-sm);
  }
}

@media (max-width: 480px) {
  .error-actions, .thanks-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .error-actions .btn, .thanks-actions .btn {
    width: 100%;
  }
  
  .steps-box {
    gap: var(--space-xs);
  }
  
  .step-item {
    padding: var(--space-xs);
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  /* Base Typography */
  html {
    font-size: 14px;
  }
  
  body {
    font-size: 0.85rem;
  }
  
  /* Header & Navigation */
  .logo {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
  }
  
  .header {
    padding: var(--space-xs) 0.5rem;
  }
  
  .header-content {
    padding: 0 0.5rem;
  }
  
  .nav {
    width: 85%;
    padding: var(--space-md);
  }
  
  .nav a {
    font-size: 0.8rem;
    padding: var(--space-xs) 0;
  }
  
  .burger span {
    width: 22px;
    height: 2px;
  }
  
  /* Buttons */
  button, .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    min-width: auto;
  }
  
  .btn-secondary {
    padding: 0.7rem 1.2rem;
  }
  
  /* Luxury Hero Sections */
  .luxury-hero {
    min-height: 75vh;
    padding: calc(var(--space-md) + 70px) 0.75rem var(--space-md);
  }
  
  .luxury-hero::before,
  .luxury-hero::after {
    display: none;
  }
  
  .luxury-hero-badge {
    padding: 0.5rem 1.2rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
  }
  
  .luxury-hero-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: var(--space-sm);
  }
  
  .luxury-hero-title::after {
    width: 50px;
    height: 1.5px;
  }
  
  .luxury-hero-description {
    font-size: clamp(0.85rem, 4vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    padding: 0 0.5rem;
  }
  
  .luxury-hero-cta {
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
    padding: 0 0.5rem;
  }
  
  .luxury-hero-cta .btn {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1.5rem;
  }
  
  .luxury-hero-decoration {
    display: none;
  }
  
  /* Sections */
  .section {
    padding: var(--space-md) 0.75rem;
  }
  
  .container {
    padding: 0 0.5rem;
  }
  
  .section-header {
    margin-bottom: var(--space-md);
  }
  
  .section-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: var(--space-xs);
  }
  
  .section-description {
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 0 0.5rem;
  }
  
  /* Cards */
  .card {
    margin-bottom: var(--space-sm);
  }
  
  .card-image {
    height: 220px;
  }
  
  .card-content {
    padding: var(--space-sm);
  }
  
  .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  
  .card-text {
    font-size: 0.8rem;
    margin-bottom: var(--space-xs);
  }
  
  .card-price {
    font-size: 1.3rem;
  }
  
  /* Grids */
  .grid {
    gap: var(--space-sm);
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  /* Feature Boxes */
  .feature-box {
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
  }
  
  .feature-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .feature-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  /* Asymmetric Layout */
  .asymmetric-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .asymmetric-item {
    grid-column: 1 / -1 !important;
    transform: none !important;
  }
  
  .asymmetric-item img {
    margin-bottom: var(--space-sm);
  }
  
  /* Forms */
  .contact-form {
    padding: var(--space-md);
    margin: 0 0.5rem;
  }
  
  .form-group {
    margin-bottom: var(--space-sm);
  }
  
  .form-label {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  .form-textarea {
    min-height: 100px;
  }
  
  .form-checkbox {
    font-size: 0.7rem;
    line-height: 1.4;
  }
  
  /* Map Container */
  .map-container {
    height: 300px;
    margin: 0 0.5rem;
    border-radius: var(--radius-sm);
  }
  
  /* Footer */
  .footer {
    padding: var(--space-sm) 0.75rem;
    font-size: 0.7rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
  }
  
  .footer-links a {
    font-size: 0.7rem;
  }
  
  /* Cookie Popup */
  .cookie-popup {
    padding: var(--space-sm) 0.75rem;
  }
  
  .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%;
  }
  
  /* Error & Thanks Pages */
  .luxury-error-page,
  .luxury-thanks-page {
    padding: var(--space-md) 0.75rem;
    min-height: calc(100vh - 140px);
  }
  
  .error-number {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
  }
  
  .error-title,
  .thanks-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: var(--space-sm);
  }
  
  .error-text,
  .thanks-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    padding: 0 0.5rem;
  }
  
  .error-actions,
  .thanks-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-xs);
    padding: 0 0.5rem;
  }
  
  .error-actions .btn,
  .thanks-actions .btn {
    width: 100%;
  }
  
  .thanks-icon {
    font-size: 3rem;
  }
  
  .thanks-icon-wrapper {
    margin-bottom: var(--space-sm);
  }
  
  /* Policy Pages */
  .luxury-policy-hero {
    padding: var(--space-md) 0.75rem;
  }
  
  .luxury-policy-hero::before {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
  }
  
  .luxury-policy-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: var(--space-xs);
  }
  
  .luxury-policy-content {
    padding: var(--space-md) 0.75rem;
  }
  
  .policy-section {
    margin-bottom: var(--space-md);
  }
  
  .policy-section h2 {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
    margin-bottom: var(--space-sm);
    padding-bottom: 0.4rem;
  }
  
  .policy-section h2::after {
    width: 35px;
    height: 2px;
  }
  
  .policy-section h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
  }
  
  .policy-section p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: var(--space-xs);
  }
  
  .policy-list li {
    font-size: 0.8rem;
    line-height: 1.6;
    padding-left: var(--space-sm);
    margin-bottom: 0.4rem;
  }
  
  .contact-box,
  .cookie-type-box {
    padding: var(--space-sm);
    margin: var(--space-sm) 0;
  }
  
  .contact-box p,
  .cookie-type-box p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .steps-box {
    gap: var(--space-xs);
  }
  
  .step-item {
    padding: var(--space-xs);
    gap: var(--space-xs);
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .step-item p {
    font-size: 0.75rem;
  }
  
  .policy-cta {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
  }
  
  /* H1-H6 Headings */
  h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  
  h3 {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }
  
  h4 {
    font-size: clamp(1rem, 5vw, 1.2rem);
  }
  
  /* Spacing Adjustments */
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
  }
}
