:root {
  --bg-color: #FAF7F2;
  --text-color: #2C2C2C;
  --primary-color: #2D4A3E;
  --accent-color: #C9847A;
  --border-color: #E2DDD5;
  --font-serif: 'Georgia', serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: normal;
  color: var(--primary-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-color);
  font-style: italic;
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 16px 36px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.btn:hover {
  background-color: #1f362c;
  transform: translateY(-2px);
  color: #fff;
  opacity: 1;
}

.hero {
  padding: 180px 0 100px;
  display: flex;
  align-items: center;
  gap: 64px;
  min-height: 100vh;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
}

.hero-image-wrap {
  flex: 1;
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.section {
  padding: 100px 0;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.motif-divider {
  text-align: center;
  margin: 40px 0;
  opacity: 0.5;
}

.text-center-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  font-family: var(--font-serif);
  line-height: 1.8;
  color: var(--primary-color);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent-color);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 16px;
}

.lead-form-section {
  background-color: var(--primary-color);
  color: #fff;
  padding: 100px 0;
}

.lead-form-section .section-title {
  color: #fff;
}

.lead-form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  border-radius: 8px;
  color: var(--text-color);
}

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

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

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: #FAFAFA;
}

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

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 32px;
}

.form-checkbox-wrap a {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  background-color: var(--accent-color);
}

.form-submit:hover {
  background-color: #B5746A;
}

.footer {
  background-color: #1a2c25;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-company {
  text-align: right;
  line-height: 1.8;
}

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 400px;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
  border: 1px solid var(--border-color);
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-text {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.cookie-text a {
  text-decoration: underline;
  color: var(--primary-color);
}

.legal-page {
  padding: 160px 0 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 64px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

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

.legal-content p, .legal-content ul {
  margin-bottom: 16px;
}

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

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 80px 48px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.success-icon {
  width: 64px;
  height: 64px;
  color: var(--primary-color);
  margin: 0 auto 32px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 120px 0 60px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-company {
    text-align: left;
  }
  
  .legal-content {
    padding: 32px 24px;
  }
  
  .lead-form {
    padding: 32px 24px;
  }
}
