:root {
  --primary: #8B4D6B;
  --primary-dark: #6B3A52;
  --secondary: #D4A5A5;
  --accent: #F5E6E0;
  --text: #2D2D2D;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --bg-light: #FDF9F8;
  --bg-alt: #F7EFED;
  --border: #E8D5D0;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

h1, h2, h3, h4 {
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.8rem; font-weight: 600; }
h2 { font-size: 2.2rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }

p { margin-bottom: 1rem; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

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

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

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

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: var(--accent);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.ad-disclosure {
  font-style: italic;
}

.header-main {
  padding: 16px 0;
}

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

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

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

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

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

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-split {
  display: flex;
  width: 100%;
}

.hero-content {
  flex: 1;
  padding: 60px 48px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-image {
  flex: 1;
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.split-section {
  display: flex;
  min-height: 500px;
}

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

.split-content {
  flex: 1;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.split-content.bg-alt {
  background: var(--bg-alt);
}

.split-image {
  flex: 1;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 2rem;
}

.service-card {
  flex: 1 1 calc(50% - 12px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(139, 77, 107, 0.12);
  transform: translateY(-4px);
}

.service-card-image {
  height: 200px;
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

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

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

.service-card h3 {
  margin-bottom: 0.5rem;
}

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

.service-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.full-section {
  padding: 80px 0;
}

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

.full-section.bg-primary {
  background: var(--primary);
  color: var(--white);
}

.full-section.bg-primary h2,
.full-section.bg-primary h3 {
  color: var(--white);
}

.full-section.bg-primary p {
  color: rgba(255, 255, 255, 0.9);
}

.features-row {
  display: flex;
  gap: 40px;
  margin-top: 2rem;
}

.feature-item {
  flex: 1;
  text-align: center;
  padding: 24px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-split {
  display: flex;
  gap: 48px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

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

footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
}

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

.footer-col {
  flex: 1;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.footer-col li {
  margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

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

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

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
}

.thanks-content h1 {
  margin-bottom: 1rem;
}

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

.legal-content {
  padding: 60px 0;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-content a {
  color: var(--secondary);
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
}

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

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

.disclaimer {
  background: var(--bg-alt);
  padding: 24px;
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.about-team {
  display: flex;
  gap: 32px;
  margin-top: 2rem;
}

.team-member {
  flex: 1;
  text-align: center;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-color: var(--bg-alt);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header {
  background: var(--bg-alt);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.cta-inline {
  background: var(--accent);
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

.cta-inline h3 {
  margin-bottom: 1rem;
}

.reference-list {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.reference-list h4 {
  margin-bottom: 1rem;
}

.reference-list ol {
  margin-left: 1.5rem;
}

.reference-list li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

  .hero-content {
    padding: 48px 24px;
  }

  .hero-image {
    height: 400px;
    position: relative;
  }

  .split-content {
    padding: 48px 24px;
  }

  .split-image {
    height: 350px;
    position: relative;
  }

  .features-row {
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 calc(50% - 20px);
  }

  .contact-split {
    flex-direction: column;
  }

  .footer-grid {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  nav ul.show {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .header-main .container {
    position: relative;
  }

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

  .feature-item {
    flex: 1 1 100%;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

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