:root {
  --color-primary: #c9a66b;
  --color-secondary: #8b5e3c;
  --color-accent: #e85a71;
  --color-dark: #2d2a26;
  --color-light: #faf8f5;
  --color-cream: #f5f0e8;
  --color-muted: #a89f94;
  --color-text: #3d3832;
  --color-white: #ffffff;
  --color-overlay: rgba(45, 42, 38, 0.85);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --size-xs: 0.625rem;
  --size-sm: 0.75rem;
  --size-base: 0.875rem;
  --size-md: 1rem;
  --size-lg: 1.25rem;
  --size-xl: 1.5rem;
  --size-2xl: 2rem;
  --size-3xl: 2.5rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-light);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 {
  font-size: var(--size-2xl);
}

h2 {
  font-size: var(--size-xl);
}

h3 {
  font-size: var(--size-lg);
}

h4 {
  font-size: var(--size-md);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0.95), transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.05em;
}

.logo:hover {
  color: var(--color-secondary);
}

.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-xs) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.burger-line {
  width: 1.5rem;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition-base);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-overlay);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: var(--size-xl);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav-link:hover {
  color: var(--color-primary);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  background: linear-gradient(rgba(201, 166, 107, 0.5), rgba(139, 94, 60, 0.35)), url('../visuals/bg-image-1.webp') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(201, 166, 107, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  background-color: rgba(250, 248, 245, 0.95);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-subtitle {
  font-size: var(--size-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-size: var(--size-2xl);
  margin-bottom: var(--space-md);
}

.hero-text {
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-tag {
  font-size: var(--size-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-text {
  color: var(--color-muted);
  max-width: 35rem;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: var(--size-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.card-title {
  margin-bottom: var(--space-sm);
}

.card-text {
  color: var(--color-muted);
  font-size: var(--size-sm);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.product-content {
  padding: var(--space-md);
}

.product-title {
  margin-bottom: var(--space-xs);
}

.product-desc {
  color: var(--color-muted);
  font-size: var(--size-sm);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-family: var(--font-heading);
  font-size: var(--size-lg);
  color: var(--color-secondary);
  font-weight: 700;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.process-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.process-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-full);
}

.process-content h3 {
  margin-bottom: var(--space-xs);
}

.process-content p {
  color: var(--color-muted);
  font-size: var(--size-sm);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
}

.feature-text h4 {
  margin-bottom: var(--space-xs);
}

.feature-text p {
  color: var(--color-muted);
  font-size: var(--size-sm);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) var(--space-md);
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.cta-section .btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
}

.cta-section .btn-primary:hover {
  background: var(--color-white);
}

.testimonial-section {
  background: var(--color-cream);
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: var(--size-md);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-size: var(--size-sm);
  color: var(--color-muted);
}

.contact-section {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info {
  background-color: var(--color-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-info h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-item i {
  color: var(--color-primary);
  width: 1.5rem;
}

.contact-item span {
  color: rgba(12, 11, 11, 0.9);
  font-size: var(--size-sm);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--size-sm);
  border: 1px solid var(--color-muted);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.form-textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input {
  margin-top: 3px;
}

.form-checkbox label {
  font-size: var(--size-xs);
  color: var(--color-muted);
}

.form-checkbox a {
  color: var(--color-secondary);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 15rem;
  border: none;
}

.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--size-md);
  color: var(--color-white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}

.footer-link {
  font-size: var(--size-xs);
  color: rgba(255, 255, 255, 0.6);
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-legal {
  font-size: var(--size-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-xs);
}

.footer-legal .footer-link {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  font-size: var(--size-xs);
}

.page-header {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
  padding: calc(var(--space-3xl) + 2rem) 0 var(--space-xl);
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--color-muted);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--size-xs);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb span {
  color: var(--color-text);
}

.content-section {
  padding: var(--space-xl) 0;
}

.content-section h2 {
  margin-bottom: var(--space-md);
}

.content-section h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-section p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.content-section ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.content-section li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.content-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: var(--size-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active .faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  max-height: 20rem;
}

.faq-answer p {
  color: var(--color-muted);
  font-size: var(--size-sm);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-md);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-text {
  font-size: var(--size-sm);
}

.cookie-text a {
  color: var(--color-primary);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.cookie-btn {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--size-xs);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.cookie-accept {
  background: var(--color-primary);
  color: var(--color-dark);
}

.cookie-decline {
  background: transparent;
  border: 1px solid var(--color-muted);
  color: var(--color-white);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content h1 {
  font-size: var(--size-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
}

.thank-you-content {
  max-width: 30rem;
}

.thank-you-icon {
  font-size: var(--size-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.thank-you-content h1 {
  margin-bottom: var(--space-sm);
}

.thank-you-content p {
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

.about-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.team-member {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.team-member h4 {
  margin-bottom: var(--space-xs);
}

.team-member p {
  color: var(--color-muted);
  font-size: var(--size-sm);
}

@media (max-width: 400px) {
  .page-header h1 {
    font-size: 1.5rem;
  }
}

@media (min-width: 480px) {
  :root {
    --size-2xl: 2.25rem;
    --size-3xl: 3rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --size-2xl: 2.5rem;
    --size-3xl: 3.5rem;
  }
  
  .nav-desktop {
    display: flex;
  }
  
  .burger {
    display: none;
  }
  
  .hero-title {
    font-size: var(--size-3xl);
  }
  
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .cookie-content {
    flex-direction: row;
    text-align: left;
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  :root {
    --size-2xl: 3rem;
    --size-3xl: 4rem;
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .process-list {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .process-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
  }
  
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 87.5%;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero {
    padding: var(--space-xl) var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--size-xs);
  }
}