:root {
  --primary: #8B6914;
  --primary-dark: #6B5210;
  --secondary: #D4A574;
  --accent: #E8DDD4;
  --dark: #2C2416;
  --text: #3D3428;
  --text-light: #6B5D4D;
  --bg: #FDFBF8;
  --bg-alt: #F5F0E8;
  --white: #FFFFFF;
  --border: #E0D6C8;
  --shadow: rgba(44, 36, 22, 0.08);
  --shadow-hover: rgba(44, 36, 22, 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-color: var(--bg);
}

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;
}

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

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

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
}

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

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

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

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

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

.ad-notice {
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  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.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 36, 22, 0.7) 0%, rgba(44, 36, 22, 0.4) 100%);
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 540px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

/* Section Styles */
.section {
  padding: 80px 0;
}

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

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

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

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

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

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

.section-dark .section-text {
  color: var(--accent);
}

/* Cards Grid */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-hover);
}

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

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

.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

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

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

/* Two Column Layout */
.two-col {
  display: flex;
  gap: 48px;
  align-items: center;
}

.two-col-reverse {
  flex-direction: row-reverse;
}

.two-col-content {
  flex: 1;
}

.two-col-media {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--secondary);
}

.two-col-media img {
  width: 100%;
  display: block;
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

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

.content-list {
  list-style: none;
  margin: 24px 0;
}

.content-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.content-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
}

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

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  gap: 24px;
}

.testimonial-card {
  flex: 1;
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.8;
}

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

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

.author-info {
  font-weight: 600;
  color: var(--dark);
}

.author-info span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Form Styles */
.form-section {
  background: linear-gradient(135deg, var(--dark) 0%, #3D3428 100%);
  padding: 80px 0;
}

.form-container {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.form-info {
  flex: 1;
  color: var(--white);
}

.form-info-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-info-text {
  color: var(--accent);
  margin-bottom: 32px;
}

.form-wrapper {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.3s ease;
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--primary-dark);
}

/* Contact Page */
.contact-grid {
  display: flex;
  gap: 48px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1.2;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow);
}

.contact-block {
  margin-bottom: 32px;
}

.contact-block-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.contact-block p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--accent);
  padding: 64px 0 24px;
}

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

.footer-col {
  flex: 1;
}

.footer-col:first-child {
  flex: 1.5;
}

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

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

.footer-text {
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--accent);
  transition: color 0.3s ease;
}

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

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

.footer-copy {
  font-size: 0.9rem;
  color: var(--accent);
}

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

.footer-legal a {
  font-size: 0.9rem;
  color: var(--accent);
}

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

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

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

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

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

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

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

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

.cookie-reject:hover {
  background: rgba(255,255,255,0.1);
}

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

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

.thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 32px;
}

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

.legal-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
}

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

.legal-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin: 24px 0 12px;
}

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

.legal-content ul {
  margin: 16px 0 16px 24px;
  color: var(--text);
}

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

/* Disclaimer */
.disclaimer {
  background: var(--accent);
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Page Header */
.page-header {
  background: var(--bg-alt);
  padding: 48px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

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

/* Services Page */
.services-intro {
  text-align: center;
  padding: 60px 0 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 60px;
}

.service-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 320px;
  display: flex;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

.service-card-image {
  width: 40%;
  min-height: 260px;
  background-color: var(--secondary);
}

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

.service-card-content {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card-text {
  color: var(--text-light);
  margin-bottom: 16px;
  flex-grow: 1;
}

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

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

/* About Page */
.about-hero {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}

.about-hero-content {
  flex: 1;
}

.about-hero-media {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--secondary);
}

.team-section {
  padding: 60px 0;
}

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

.team-card {
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--secondary);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-dark);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .two-col,
  .two-col-reverse {
    flex-direction: column;
  }

  .form-container {
    flex-direction: column;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: -4px 0 24px var(--shadow);
    transition: right 0.3s ease;
  }

  .nav.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  .stats-row {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-item {
    flex: 1 1 45%;
  }

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

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

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

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

  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card-image {
    width: 100%;
    min-height: 200px;
  }
}
