@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@400;500;700&display=swap');

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

:root {
  --cream: #FAF7F2;
  --cream-dark: #EDE8DE;
  --cream-mid: #F3EDE2;
  --wood-dark: #5C3D1E;
  --wood-medium: #8B5E2A;
  --wood-light: #C4975A;
  --sage: #6B7B5C;
  --sage-light: #8F9F80;
  --text: #2C2416;
  --text-muted: #7A6852;
  --border: #D8CFC0;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(44, 36, 22, 0.10);
  --shadow-sm: 0 2px 8px rgba(44, 36, 22, 0.08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--wood-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--wood-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91, 61, 30, 0.25);
}

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

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

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

.btn-sage:hover {
  background: #5a6a4c;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 123, 92, 0.3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wood-dark);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

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

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--wood-dark);
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wood-dark);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 24px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--cream-dark);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  background: var(--cream-dark);
}

.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.hero-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}

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

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(250, 247, 242, 0.95);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--wood-dark);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.section {
  padding: 72px 0;
}

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

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

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

.section-dark .section-label {
  color: var(--wood-light);
}

.section-dark p {
  color: rgba(250, 247, 242, 0.85);
}

.section-header {
  max-width: 600px;
  margin-bottom: 48px;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

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

.whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.whom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
}

.whom-card .icon {
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.whom-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.whom-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.module-card {
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(250, 247, 242, 0.15);
  border-radius: 6px;
  padding: 28px;
}

.module-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 10px;
}

.module-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--cream);
}

.module-card p {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}

.benefit-text h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}

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

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

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.step {
  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--wood-dark);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--cream-dark);
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.25s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--white);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

.form-section {
  background: var(--cream-dark);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.form-info h2 {
  margin-bottom: 16px;
}

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

.form-promises {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-promise::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.lead-form {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.lead-form h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--wood-medium);
  box-shadow: 0 0 0 3px rgba(139, 94, 42, 0.12);
  background: var(--white);
}

.form-group input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

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

.form-consent {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
  text-align: center;
}

.form-consent a {
  color: var(--wood-medium);
  text-decoration: underline;
}

.site-footer {
  background: var(--wood-dark);
  color: rgba(250, 247, 242, 0.75);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 0;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.65);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.8;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--wood-dark);
  border-top: 2px solid var(--wood-medium);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.85);
  flex: 1;
  min-width: 200px;
}

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

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-cookie-decline {
  padding: 8px 16px;
  font-size: 0.85rem;
  background: transparent;
  color: rgba(250, 247, 242, 0.65);
  border: 1px solid rgba(250, 247, 242, 0.25);
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.btn-cookie-decline:hover {
  background: rgba(250, 247, 242, 0.08);
  color: var(--cream);
}

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

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--white);
  font-size: 2rem;
}

.success-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.success-page p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

.legal-page {
  padding: 72px 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1em;
}

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

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .lead-form { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .whom-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .steps { grid-template-columns: 1fr; }
}
