:root {
  --sand: #F5EFE6;
  --charcoal: #2E2E2E;
  --sage: #9DB5A0;
  --blush: #E6B7B0;
  --gold: #C6A664;
  --white: #ffffff;
  
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Poppins', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(46, 46, 46, 0.08);
  --shadow-md: 0 4px 16px rgba(46, 46, 46, 0.12);
  --shadow-lg: 0 8px 32px rgba(46, 46, 46, 0.16);
  
  --transition: 0.3s ease;
}

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

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

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

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

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

a {
  color: var(--charcoal);
  text-decoration: none;
  transition: var(--transition);
}

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

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

button, .btn {
  font-family: var(--font-secondary);
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
}

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

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

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

.header-unique.scrolled {
  background: rgba(245, 239, 230, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}

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

.nav-main a {
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
}

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

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

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

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

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

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

.hero-content {
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  width: 80px;
  height: 50px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-card:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}

.float-card:nth-child(3) {
  top: 40%;
  right: 15%;
  animation-delay: 2s;
}

.float-card:nth-child(4) {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

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

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-sm);
}

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

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

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

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

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-primary);
}

.feature-box {
  text-align: center;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-box:hover {
  background: var(--sage);
  color: var(--white);
}

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

.feature-box:hover .feature-icon {
  color: var(--white);
}

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

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid rgba(46, 46, 46, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.1);
}

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

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

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.8rem;
  margin: 0;
}

.footer-minimal {
  background: var(--charcoal);
  color: var(--sand);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
}

.footer-content a {
  color: var(--sand);
  font-size: 0.8rem;
}

.footer-content a:hover {
  color: var(--gold);
}

.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 16px rgba(46, 46, 46, 0.15);
  z-index: 9999;
  padding: var(--space-md);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.active {
  display: block;
  transform: translateY(0);
}

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

.cookie-consent-text {
  flex: 1;
  min-width: 250px;
}

.cookie-consent-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
}

.cookie-consent-text p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--charcoal);
  opacity: 0.9;
  margin: 0;
}

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

.cookie-consent-text a:hover {
  color: var(--sage);
}

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

.btn-accept {
  background: var(--gold);
  color: var(--white);
}

.btn-accept:hover {
  background: var(--sage);
}

.btn-decline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn-decline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: var(--space-sm);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--sand);
}

.faq-icon {
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--space-sm);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-sm) var(--space-sm);
}

.faq-answer p {
  font-size: 0.85rem;
  line-height: 1.6;
}

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

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

.info-box {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-sm);
}

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

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

.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: 5rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

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

.thank-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

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

.policy-content h1 {
margin-top: var(--space-lg);
}

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

.policy-content p {
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
  line-height: 1.7;
}

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

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

@media (max-width: 768px) {
  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    align-items: flex-start;
    display: none;
  }
  
  .nav-main.active {
    right: 0;
    display: flex;
  }
  
  body:has(.nav-main.active) {
    overflow: hidden;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  
  .float-card {
    width: 60px;
    height: 40px;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-consent-buttons .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 2.5rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .error-content h1 {
    font-size: 3rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  html {
    font-size: 90%;
  }
  
  .container {
    padding: 0 0.75rem;
  }
}
