:root {
  --color-primary: #c45b28;
  --color-primary-dark: #a04820;
  --color-secondary: #2d4a3e;
  --color-accent: #e8d5c4;
  --color-text: #2b2b2b;
  --color-text-light: #5a5a5a;
  --color-bg: #faf8f5;
  --color-bg-alt: #f0ebe4;
  --color-white: #ffffff;
  --font-heading: 'Georgia', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-secondary);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

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

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

.nav-wrapper {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-secondary);
  font-weight: 400;
  letter-spacing: -0.5px;
}

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

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

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

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

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

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.hero-editorial {
  padding: 100px 24px 80px;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  text-align: center;
}

.hero-editorial h1 {
  margin-bottom: 24px;
  font-size: 3.2rem;
}

.hero-editorial .subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

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

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

.btn-text {
  background: none;
  color: var(--color-primary);
  padding: 8px 0;
  font-weight: 600;
}

.btn-text::after {
  content: ' →';
  transition: transform 0.2s ease;
}

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

.section {
  padding: 80px 24px;
}

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

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

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

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

.article-content {
  max-width: 680px;
  margin: 0 auto;
}

.article-content p {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.article-content h2 {
  margin: 48px 0 24px;
}

.article-image {
  margin: 40px -60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.inline-cta {
  background: var(--color-accent);
  padding: 32px;
  border-radius: var(--radius-md);
  margin: 40px 0;
  text-align: center;
}

.inline-cta p {
  margin-bottom: 16px;
  font-style: italic;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  gap: 32px;
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateX(8px);
}

.service-image {
  flex-shrink: 0;
  width: 200px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  margin-bottom: 12px;
}

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

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

.testimonial-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-block::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 120px;
  color: var(--color-accent);
  position: absolute;
  top: -20px;
  left: 40px;
  line-height: 1;
}

.testimonial-block p {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

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

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

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

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 2px solid var(--color-bg-alt);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  transition: border-color 0.3s ease;
}

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

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

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

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

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

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

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

.page-header h1 {
  margin-bottom: 16px;
}

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

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

.legal-content h2 {
  margin: 40px 0 16px;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin: 32px 0 12px;
  font-size: 1.2rem;
}

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

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

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

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

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

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  fill: none;
}

.contact-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

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

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

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

.thanks-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
}

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

.thanks-container p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 500px;
}

.about-story {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-story-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

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

.about-story-content h2 {
  margin-bottom: 20px;
}

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

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

.team-member {
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
}

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

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

.team-member h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

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

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

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

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

.split-image {
  padding: 0 !important;
}

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

.numbers-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

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

.number-item .number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.number-item .label {
  font-size: 1rem;
  color: var(--color-text-light);
}

@media (max-width: 900px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
  }

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

  .nav-hamburger {
    display: flex;
  }

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

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

  .about-story {
    flex-direction: column;
    gap: 40px;
  }

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

  .split-section > div {
    padding: 60px 24px;
  }

  .article-image {
    margin: 32px 0;
  }

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

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

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

@media (max-width: 600px) {
  .section {
    padding: 60px 16px;
  }

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

  .hero-image-wrapper img {
    height: 300px;
  }

  .numbers-row {
    gap: 40px;
  }

  .number-item .number {
    font-size: 2.5rem;
  }
}
