* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

a { color: inherit; }

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 22%, rgba(189,164,141,.28), transparent 28%),
    linear-gradient(180deg, var(--soft), var(--bg));
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  margin-right: auto;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--paper);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(35px, 5vw, 70px);
  align-items: center;
  padding: 55px 0 95px;
}

.eyebrow, .section-label {
  display: inline-flex;
  background: rgba(189,164,141,.22);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

h1, h2, h3 {
  line-height: 1.15;
  color: var(--primary-dark);
}

h1 {
  font-size: clamp(3rem, 4.8vw, 5.15rem);
  margin: 0 0 22px;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 28px;
  letter-spacing: -0.035em;
}

.hero-copy p {
  font-size: 1.16rem;
  max-width: 610px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.btn {
  border: 0;
  background: var(--primary);
  color: white;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(95,79,63,.2);
  cursor: pointer;
}

.btn-small { padding: 10px 18px; }

.btn-ghost {
  background: var(--paper);
  color: var(--primary-dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.hero-stats div {
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 20px;
  padding: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.6rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: .92rem;
}

.hero-visual {
  position: relative;
  min-height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape-back {
  position: absolute;
  width: min(520px, 85%);
  height: 520px;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background: linear-gradient(135deg, rgba(189,164,141,.95), rgba(118,100,79,.84));
  border-radius: 42% 58% 54% 46% / 38% 44% 56% 62%;
  animation: float 5s ease-in-out infinite;
  z-index: 0;
}

.photo-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  height: 600px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 24px;
  display: block;
}

.floating-note {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 110px;
  background: var(--paper);
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-weight: 800;
  color: var(--primary-dark);
}

.section { padding: 95px 0; }

.section-grid, .split-grid, .faq-grid, .contact-card, .footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.soft { background: var(--soft); }

.cards {
  display: grid;
  gap: 22px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }

.card, .post, .quote, details, .timeline-item, .contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card .icon { font-size: 2rem; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-item strong {
  color: var(--accent);
  font-size: 2.2rem;
}

.testimonial {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.testimonial-card {
  background: var(--paper);
  padding: 42px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 190px;
}

.testimonial-card p { font-size: 1.35rem; }

.slider-btn, .theme-toggle {
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--primary-dark);
}

details { margin-bottom: 16px; }

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--primary-dark);
}

.contact {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.contact h2, .contact .section-label { color: white; }
.contact p { color: rgba(255,255,255,.9); }

.contact-card { grid-template-columns: 1fr 1fr; }

form {
  display: grid;
  gap: 14px;
}

input, textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  background: var(--bg);
  color: var(--text);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.footer {
  padding: 44px 0;
  background: var(--soft);
}

.footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.9rem;
  box-shadow: 0 16px 30px rgba(37,211,102,.35);
  z-index: 30;
}

.theme-toggle {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 30;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 4%;
    right: 4%;
    background: var(--paper);
    padding: 22px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

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

  .hero, .section-grid, .split-grid, .faq-grid, .contact-card, .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 35px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .shape-back {
    width: 88%;
    height: 420px;
  }

  .photo-card {
    width: min(390px, 94vw);
    height: 480px;
  }

  .cards-3, .timeline {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
