:root {
  --primary: #2d5a4a;
  --primary-dark: #1e3d32;
  --secondary: #d4a574;
  --accent: #7cb5a0;
  --text: #2c3e35;
  --text-light: #5a6b62;
  --bg-light: #f8faf9;
  --bg-warm: #faf7f4;
  --white: #ffffff;
  --border: #e2e8e5;
  --shadow: rgba(45, 90, 74, 0.08);
  --shadow-strong: rgba(45, 90, 74, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

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

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

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

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

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

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

.btn-secondary:hover {
  background: #c49564;
  color: var(--text);
}

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
  z-index: 1000;
}

.header-top {
  background: var(--primary);
  color: var(--white);
  padding: 6px 0;
  font-size: 0.8125rem;
}

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

.ad-disclosure {
  opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s;
}

/* Hero Split */
.hero-split {
  margin-top: 110px;
  display: flex;
  min-height: 85vh;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--bg-light);
}

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

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

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

/* Split Section */
.split-section {
  display: flex;
  min-height: 500px;
}

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

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

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

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

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--bg-warm);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-strong);
}

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

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

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

.service-card h3 {
  color: var(--primary);
}

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

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

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

.price-unit {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Features */
.features-section {
  padding: 100px 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.feature-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.feature-text h4 {
  margin-bottom: 8px;
}

.feature-text p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin: 0;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: var(--primary);
  color: var(--white);
}

.testimonials-section .section-header h2 {
  color: var(--white);
}

.testimonials-section .section-header p {
  color: rgba(255,255,255,0.8);
}

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

.testimonial-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text);
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-location {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--bg-warm);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
}

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

.contact-info {
  flex: 1;
}

.contact-form-wrapper {
  flex: 1;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

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

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.contact-text h4 {
  margin-bottom: 4px;
}

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

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 74, 0.1);
}

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

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

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

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

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

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

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-col p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px var(--shadow-strong);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  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 {
  margin: 0;
  font-size: 0.9375rem;
}

.cookie-text a {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

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

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

.cookie-reject {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.cookie-reject:hover {
  background: var(--bg-light);
}

/* About Page */
.page-hero {
  margin-top: 110px;
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.about-story {
  padding: 80px 0;
}

.team-section {
  padding: 80px 0;
  background: var(--bg-warm);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

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

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--accent);
  margin: 0 auto 20px;
  overflow: hidden;
}

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

.team-member h3 {
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* Legal Pages */
.legal-content {
  padding: 80px 0;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

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

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

/* Thanks Page */
.thanks-section {
  margin-top: 110px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

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

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

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

.thanks-content h1 {
  margin-bottom: 16px;
}

.thanks-content p {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* Disclaimer */
.disclaimer {
  padding: 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--secondary);
  margin: 40px 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
    display: none;
  }

  .main-nav.active { display: block; }

  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav a {
    display: block;
    padding: 16px 0;
  }

  .hero-split,
  .split-section {
    flex-direction: column;
  }

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

  .hero-content,
  .split-content {
    padding: 40px 24px;
  }

  .hero-image,
  .split-image {
    min-height: 300px;
  }

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

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

@media (max-width: 600px) {
  .service-card,
  .testimonial-card,
  .feature-item {
    flex: 1 1 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn { width: 100%; text-align: center; }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}
