:root {
  --primary: #c9a227;
  --primary-dark: #a68621;
  --secondary: #1a1a2e;
  --accent: #16213e;
  --light: #f8f6f0;
  --dark: #0f0f23;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --success: #28a745;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

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

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

.ad-disclosure {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
}

.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
}

.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

.nav a:hover {
  color: var(--primary);
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--secondary);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  flex-direction: column;
  padding: 80px 24px 24px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 16px 0;
  font-size: 1.2rem;
  border-bottom: 1px solid #eee;
  color: var(--text);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 650px;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light);
}

.section-dark {
  background: var(--secondary);
  color: var(--white);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--secondary);
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.75);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.split-section {
  display: flex;
  gap: 60px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  background-color: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-card-image {
  height: 200px;
  background-color: var(--light);
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-price span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.testimonials-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--secondary);
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--text-light);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--dark);
}

.benefit-text h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--secondary);
}

.benefit-text p {
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-section {
  background: var(--light);
  padding: 80px 0;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--dark);
}

.contact-text h4 {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 4px;
}

.contact-text p {
  color: var(--text-light);
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.references {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
}

.references h5 {
  margin-bottom: 12px;
  color: var(--primary);
}

.references ol {
  padding-left: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.references a {
  color: var(--primary);
  word-break: break-all;
}

.disclaimer {
  background: #fff3cd;
  padding: 20px;
  border-radius: var(--radius);
  margin: 40px 0;
  font-size: 0.9rem;
  color: #856404;
  border-left: 4px solid #ffc107;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: 32px;
  color: var(--secondary);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: var(--secondary);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text);
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 3000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.cookie-text p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.cookie-text a {
  color: var(--primary);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-accept,
.cookie-reject {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--primary);
  color: var(--dark);
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.cookie-reject:hover {
  border-color: var(--white);
}

.thanks-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--secondary);
}

.thanks-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.inline-cta {
  background: var(--light);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  border-left: 4px solid var(--primary);
}

.inline-cta h4 {
  margin-bottom: 12px;
  color: var(--secondary);
}

.inline-cta p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.about-intro {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1.2;
}

.about-image {
  flex: 1;
  background-color: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 450px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 48px;
}

.value-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.value-card h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.page-header {
  background: var(--secondary);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-lg);
  padding: 16px 28px;
}

.ingredients-section {
  background: var(--white);
  padding: 60px 0;
}

.ingredients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.ingredient-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  padding: 24px;
  background: var(--light);
  border-radius: var(--radius);
}

.ingredient-card h4 {
  color: var(--secondary);
  margin-bottom: 8px;
}

.ingredient-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .about-intro {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .form-wrapper {
    padding: 32px 24px;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .footer-grid {
    flex-direction: column;
  }

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

  .value-card {
    flex: 1 1 100%;
  }
}
