:root {
  --primary: #c4532b;
  --primary-dark: #a13d1f;
  --secondary: #2d4a3e;
  --accent: #e8b84a;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --bg: #faf8f5;
  --bg-alt: #f0ebe3;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

/* Navigation */
.nav-wrapper {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
}

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

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

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

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

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
}

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

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Editorial */
.hero-editorial {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero-editorial .container-narrow {
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-editorial h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-editorial .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image-full {
  margin: 48px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.btn-secondary:hover {
  background: #1f3630;
  color: var(--white);
}

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

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

/* Editorial Content */
.editorial-section {
  padding: 60px 0;
}

.editorial-section h2 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 24px;
  line-height: 1.3;
}

.editorial-section h3 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin: 32px 0 16px;
}

.editorial-section p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.editorial-section .highlight-box {
  background: var(--bg-alt);
  padding: 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin: 32px 0;
}

.editorial-section .highlight-box p {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
}

.inline-image {
  margin: 40px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.inline-image img {
  width: 100%;
}

.inline-image figcaption {
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

/* Services Cards */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

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

.section-header h2 {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

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

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

.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex: 1 1 340px;
  max-width: 380px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

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

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

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

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

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: var(--secondary);
}

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

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

.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex: 1 1 340px;
  max-width: 380px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

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

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

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--secondary);
}

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

/* About Split */
.about-split {
  padding: 80px 0;
}

.about-split-content {
  display: flex;
  gap: 48px;
  align-items: center;
}

.about-split-text {
  flex: 1;
}

.about-split-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

/* Stats */
.stats-section {
  padding: 60px 0;
  background: var(--bg-alt);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: var(--white);
}

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

.form-info {
  flex: 1;
}

.form-info h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.form-info p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.form-container {
  flex: 1;
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
}

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

.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 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

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

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

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

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

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

.cta-section .btn:hover {
  background: var(--accent);
  color: var(--secondary);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

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

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

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

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  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);
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  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;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--accent);
  color: var(--secondary);
}

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

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

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  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;
  color: var(--secondary);
  margin-bottom: 16px;
}

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

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

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

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

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

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

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

/* Contact Page */
.contact-hero {
  padding: 60px 0;
  background: var(--bg-alt);
  text-align: center;
}

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

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 60px 0;
}

.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  box-shadow: var(--shadow);
}

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

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

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

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

/* About Page */
.about-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.about-hero h1 {
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 24px;
  text-align: center;
}

.about-hero .lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.2rem;
}

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

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: var(--shadow);
}

.team-card-image {
  height: 200px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-image svg {
  width: 80px;
  height: 80px;
  fill: var(--text-light);
}

.team-card-content {
  padding: 24px;
  text-align: center;
}

.team-card h3 {
  color: var(--secondary);
  margin-bottom: 4px;
}

.team-card span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* Services Page */
.services-hero {
  padding: 60px 0;
  background: var(--bg-alt);
  text-align: center;
}

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

.services-detail {
  padding: 60px 0;
}

.service-detail-card {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #e0e0e0;
}

.service-detail-card:nth-child(even) {
  flex-direction: row-reverse;
}

.service-detail-image {
  flex: 1;
  height: 300px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-image svg {
  width: 100px;
  height: 100px;
  fill: var(--primary);
}

.service-detail-content {
  flex: 1;
}

.service-detail-content h2 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

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

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: flex;
  }

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

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

  .about-split-content {
    flex-direction: column;
  }

  .service-detail-card,
  .service-detail-card:nth-child(even) {
    flex-direction: column;
  }

  .stats-grid {
    gap: 24px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .hero-editorial h1 {
    font-size: 1.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

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

  .sticky-cta {
    bottom: 16px;
    right: 16px;
  }
}
