:root {
  --primary: #2c3e50;
  --secondary: #8b7355;
  --accent: #c9a86c;
  --bg-light: #faf8f5;
  --bg-cream: #f5f1eb;
  --bg-dark: #1a252f;
  --text-dark: #2c3e50;
  --text-muted: #6b7c8a;
  --text-light: #f5f1eb;
  --border: #d4cfc7;
  --success: #5a8f6b;
  --error: #c9534a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

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

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

a:hover {
  color: var(--accent);
}

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

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

.ad-disclosure {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 12px;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.header {
  background-color: var(--bg-cream);
  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: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--text-dark);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 400;
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

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

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

.btn-light:hover {
  background-color: var(--accent);
}

.section {
  padding: 80px 0;
}

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

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--primary);
}

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

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.editorial-block {
  margin-bottom: 48px;
}

.editorial-block p {
  margin-bottom: 24px;
}

.editorial-image {
  margin: 48px 0;
  background-color: var(--border);
}

.editorial-image img {
  width: 100%;
  display: block;
}

.editorial-image figcaption {
  font-size: 14px;
  color: var(--text-muted);
  padding: 12px 0;
  font-style: italic;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 24px 32px;
  margin: 48px 0;
  background-color: var(--bg-cream);
  font-style: italic;
  font-size: 22px;
}

.quote-block cite {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  color: var(--text-muted);
}

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

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

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  background-color: var(--border);
}

.split-image img {
  width: 100%;
  display: block;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  display: flex;
  gap: 32px;
  padding: 32px;
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.service-image {
  width: 200px;
  flex-shrink: 0;
  background-color: var(--border);
}

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

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--primary);
}

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

.service-price {
  font-size: 22px;
  color: var(--secondary);
  font-weight: 600;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  overflow: hidden;
}

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

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

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--primary);
}

.card-body p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
}

.card-price {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 600;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.testimonial {
  padding: 40px;
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent);
  margin: 32px 0;
}

.testimonial p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-section {
  background-color: var(--bg-cream);
  padding: 60px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  border: 1px solid var(--border);
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}

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

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

.contact-info {
  padding: 40px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-info p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info strong {
  display: block;
  color: var(--text-light);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

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

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

.footer-col h4 {
  font-size: 14px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--accent);
}

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

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

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

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

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

.disclaimer {
  background-color: #f0ede8;
  padding: 32px;
  margin-top: 48px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 3px solid var(--border);
}

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

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

.cookie-inner {
  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: 14px;
  color: rgba(255, 255, 255, 0.85);
}

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

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: var(--secondary);
  color: var(--text-light);
}

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

.cookie-reject:hover {
  border-color: var(--text-light);
}

.page-header {
  background-color: var(--primary);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--text-light);
  font-size: 42px;
  font-weight: 400;
}

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

.page-content h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 40px 0 20px;
  color: var(--primary);
}

.page-content h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 32px 0 16px;
  color: var(--primary);
}

.page-content p {
  margin-bottom: 16px;
}

.page-content ul {
  margin: 16px 0 16px 24px;
}

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

.cta-inline {
  background-color: var(--bg-cream);
  padding: 40px;
  margin: 48px 0;
  text-align: center;
  border: 1px solid var(--border);
}

.cta-inline h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-inline p {
  margin-bottom: 24px;
  color: var(--text-muted);
}

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

.thanks-content h1 {
  font-size: 42px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 24px;
}

.thanks-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

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

.thanks-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

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

.reference-list h4 {
  font-size: 14px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.reference-list ol {
  margin-left: 20px;
}

.reference-list li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.reference-list a {
  color: var(--secondary);
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-cream);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

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

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

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

  .service-image {
    width: 100%;
  }

  .card {
    flex: 1 1 100%;
  }

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

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

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

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .form-section {
    padding: 32px 20px;
  }
}
