@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: #FDF2F2;
  --color-secondary: #926B32;
  --color-accent: #BA9494;
  --color-light: #FFFFFF;
  --color-dark: #7C2D12;
  
  --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.75rem;
  --radius-lg: 1.5rem;
  
  --shadow-sm: 0 2px 8px rgba(124, 45, 18, 0.08);
  --shadow-md: 0 4px 16px rgba(124, 45, 18, 0.12);
  --shadow-lg: 0 8px 32px rgba(124, 45, 18, 0.16);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-secondary);
  background: var(--color-primary);
  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.2rem, 2.5vw, 1.8rem);
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--color-dark);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

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

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
}

.logo:hover {
  transform: translateY(-2px);
}

.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: 2px;
  background: var(--color-dark);
  transition: width var(--transition-fast);
}

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

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

.burger span {
  width: 1.8rem;
  height: 2px;
  background: var(--color-secondary);
  transition: all var(--transition-fast);
}

.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 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

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

.hero-text {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  animation: fadeInUp var(--transition-luxury) 0.6s ease-out forwards;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--color-secondary);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  transition: left var(--transition-smooth);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--color-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-primary::before {
  background: var(--color-dark);
}

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

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

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

.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(--color-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  transform: translateY(40px);
}

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

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

.card-image {
  width: 100%;
  height: 250px;
  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.3rem;
  margin-bottom: var(--space-xs);
}

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

.card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
}

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

.asymmetric-content {
  transform: translateX(-50px);
  transition: all var(--transition-luxury);
}

.asymmetric-content.visible {
  transform: translateX(0);
  opacity: 1;
}

.asymmetric-image {
  transform: translateX(50px) rotate(3deg);
  transition: all var(--transition-luxury);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.asymmetric-image.visible {
  transform: translateX(0) rotate(0deg);
  opacity: 1;
}

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

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

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

.contact-section {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

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

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.info-icon {
  font-size: 1.5rem;
  color: var(--color-secondary);
  min-width: 2rem;
}

.map-container {
  width: 100%;
  height: 350px;
  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-light);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-accent);
  border-top: 1px solid var(--color-accent);
}

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

.footer-links a {
  font-size: 0.75rem;
  color: var(--color-accent);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--color-light);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: bottom var(--transition-smooth);
}

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

.cookie-content {
  max-width: 1200px;
  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;
  margin: 0;
}

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

.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);
  color: var(--color-accent);
  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-icon {
  font-size: 4rem;
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  animation: scaleIn var(--transition-luxury) ease-out;
}

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

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

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

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Luxury Hero Sections with Advanced Animations */
.hero-luxury {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #FDF2F2 0%, #FFFFFF 50%, #FDF2F2 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Home Hero - Parallax with floating elements */
.hero-home {
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(146, 107, 50, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(186, 148, 148, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  z-index: 1;
}

.hero-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.hero-home .hero-title {
  background: linear-gradient(135deg, #926B32 0%, #7C2D12 50%, #926B32 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite, fadeInUp 1s ease-out;
}

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

.hero-home .hero-text {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.4s forwards;
}

.hero-home .hero-btn {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.8s forwards, pulse 2s ease-in-out 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(146, 107, 50, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(146, 107, 50, 0);
  }
}

/* Decor Hero - Elegant reveal with particles */
.hero-decor {
  position: relative;
  overflow: hidden;
}

.hero-decor .particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-decor .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

.hero-decor .hero-content {
  position: relative;
  z-index: 2;
  max-width: 65%;
  backdrop-filter: blur(2px);
}

.hero-decor .hero-title {
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-decor .hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  animation: underlineExpand 1.5s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
  to {
    width: 100%;
  }
}

.hero-decor .hero-text {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Furniture Hero - 3D transform with depth */
.hero-furniture {
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

.hero-furniture .geometric-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.1;
}

.hero-furniture .geometric-shape {
  position: absolute;
  border: 2px solid var(--color-secondary);
  animation: rotate3D 20s infinite linear;
}

.hero-furniture .shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-furniture .shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  border-radius: 50%;
  animation-delay: -5s;
}

.hero-furniture .shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 30%;
  transform: rotate(45deg);
  animation-delay: -10s;
}

@keyframes rotate3D {
  0% {
    transform: rotate(0deg) rotateY(0deg);
  }
  100% {
    transform: rotate(360deg) rotateY(360deg);
  }
}

.hero-furniture .hero-content {
  position: relative;
  z-index: 2;
  max-width: 55%;
  transform-style: preserve-3d;
}

.hero-furniture .hero-title {
  opacity: 0;
  transform: translateZ(-50px);
  animation: fadeIn3D 1.2s ease-out forwards;
}

@keyframes fadeIn3D {
  from {
    opacity: 0;
    transform: translateZ(-50px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

.hero-furniture .hero-text {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Contact Hero - Elegant reveal with wave animation */
.hero-contact {
  position: relative;
  overflow: hidden;
}

.hero-contact .wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(146, 107, 50, 0.05) 100%);
  z-index: 1;
  clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
  animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
  0%, 100% {
    clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0 20%, 100% 10%, 100% 100%, 0% 100%);
  }
}

.hero-contact .hero-content {
  position: relative;
  z-index: 2;
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
}

.hero-contact .hero-title {
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: scaleInRotate 1s ease-out forwards;
}

@keyframes scaleInRotate {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.hero-contact .hero-title::before,
.hero-contact .hero-title::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-secondary);
  opacity: 0;
  animation: sparkle 1.5s ease-out 0.8s forwards;
}

.hero-contact .hero-title::before {
  left: -3rem;
}

.hero-contact .hero-title::after {
  right: -3rem;
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
}

.hero-contact .hero-text {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Responsive adjustments for luxury heroes */
@media (max-width: 1024px) {
  .hero-home .hero-content,
  .hero-decor .hero-content,
  .hero-furniture .hero-content {
    max-width: 80%;
  }
  
  .hero-contact .hero-content {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .hero-home .hero-content,
  .hero-decor .hero-content,
  .hero-furniture .hero-content,
  .hero-contact .hero-content {
    max-width: 100%;
  }
  
  .hero-contact .hero-title::before,
  .hero-contact .hero-title::after {
    display: none;
  }
  
  .hero-furniture .geometric-shape {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    max-width: 70%;
  }
  
  .asymmetric-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .overlap-content {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
  }
  
  .nav.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .overlap-content {
    max-width: 100%;
    padding: var(--space-md);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .hero {
    padding: var(--space-lg) 0;
  }
  
  .btn {
    padding: 0.7rem 2rem;
    font-size: 0.8rem;
  }
  
  .card-image {
    height: 200px;
  }
  
  .map-container {
    height: 250px;
  }
}

.luxury-page {
  background: linear-gradient(135deg, #FDF2F2 0%, #FFFFFF 100%);
  min-height: 100vh;
  padding-top: 7rem;
}

.luxury-container {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.luxury-container::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(146, 107, 50, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.luxury-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-accent);
  position: relative;
}

.luxury-header h1 {
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, #926B32 0%, #7C2D12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.luxury-date {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-style: italic;
}

.luxury-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
  border-left: 4px solid var(--color-secondary);
  padding-left: var(--space-sm);
}

.luxury-content h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.luxury-content ul, .luxury-content ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

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

.luxury-footer-action {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-accent);
}

@media (max-width: 768px) {
  .luxury-container {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .luxury-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .luxury-page {
    padding-top: 6rem;
  }
  
  .luxury-container {
    padding: var(--space-sm);
  }
  
  .luxury-content ul, .luxury-content ol {
    margin-left: var(--space-sm);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 87.5%;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }
  
  .luxury-page {
    padding-top: 5rem;
  }
  
  .luxury-container {
    padding: 1rem;
    border-radius: var(--radius-sm);
  }
  
  .luxury-header h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .card-content {
    padding: 1rem;
  }
}
