@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --bg: #F8F7F5;
  --surface: #FFFFFF;
  --text: #2B2A29;
  --text-light: #5A5856;
  --accent: #BA6C5A; 
  --accent-hover: #9E5848;
  --border: #E8E5E1;
  --muted: #F0EFEA;
  
  --font-heading: 'Lora', serif;
  --font-body: 'Manrope', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

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

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.site-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

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

.hero {
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.hero-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-content h2 {
  font-size: 2.5rem;
}

.split-image {
  border-radius: 4px;
  overflow: hidden;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.lead-section {
  background: var(--muted);
  padding: 6rem 0;
}

.lead-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: var(--surface);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.lead-wrapper h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.lead-wrapper p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

.form-disclaimer a {
  text-decoration: underline;
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-light);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col p {
  margin-bottom: 0.5rem;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: none; 
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--text-light);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-btn {
  background: var(--text);
  color: var(--surface);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-body);
}

.cookie-btn:hover {
  background: var(--text-light);
}

.legal-page {
  padding: 4rem 0;
  max-width: 700px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

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

.success-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero, .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .split-section.reverse {
    direction: ltr;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
