:root {
  --wine: #78004c;
  --wine-dark: #4f0033;
  --wine-soft: #f8edf4;
  --cream: #fff8f3;
  --gold: #c99a4a;
  --text: #231f20;
  --muted: #6f646a;
  --white: #ffffff;
  --border: #ead9e3;
  --shadow: 0 22px 60px rgba(120, 0, 76, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 243, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(120, 0, 76, 0.12);
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  box-shadow: 0 10px 25px rgba(120, 0, 76, 0.24);
}

.brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--wine-dark);
  font-size: 1.15rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--wine-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-menu a:hover {
  color: var(--wine);
}

.menu-button {
  display: none;
  border: 0;
  background: var(--wine);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(120, 0, 76, 0.16), transparent 36%),
    linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px -10%;
  height: 260px;
  background: var(--wine-soft);
  border-radius: 50% 50% 0 0;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  font-size: 0.76rem;
  color: var(--wine);
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  color: var(--wine-dark);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-description, .section-heading p, .about-grid p, .faq-grid > div p, .contact-card p, .page-content p, .page-content li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(120, 0, 76, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--wine);
  border-color: var(--border);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  color: var(--wine-dark);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
}

.photo-frame {
  border-radius: 42% 42% 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid var(--white);
  background: var(--white);
}

.photo-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.session-card {
  position: absolute;
  left: -26px;
  bottom: 42px;
  width: min(290px, 84%);
  background: var(--white);
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.session-card strong {
  color: var(--wine-dark);
}

.session-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.feature-strip {
  background: var(--wine-dark);
  color: var(--white);
  padding: 40px 0;
}

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

.feature-grid article {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}

.feature-grid span {
  color: var(--gold);
  font-weight: 800;
}

.feature-grid h3 {
  margin: 12px 0 8px;
}

.feature-grid p {
  margin: 0;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 32px;
  position: relative;
  color: var(--wine-dark);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--wine);
  font-weight: 900;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.help-section {
  background: var(--wine-soft);
}

.topics-section {
  background: var(--white);
}

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

.service-card, .testimonial-card, .contact-card, .map-card, details {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(120, 0, 76, 0.08);
}

.service-card {
  padding: 30px;
  border-radius: var(--radius);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wine-soft);
  color: var(--wine);
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--wine-dark);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.topic-card {
  display: block;
  transition: 0.2s ease;
}

.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(120, 0, 76, 0.12);
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(120, 0, 76, 0.14), transparent 34%),
    linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 58px;
}

.page-hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid var(--white);
  background: var(--white);
}

.page-hero-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.page-content {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 34px;
}

.article-section {
  display: grid;
  gap: 12px;
}

.article-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  margin-bottom: 4px;
}

.side-card {
  position: sticky;
  top: 104px;
  background: var(--wine-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 18px 45px rgba(120, 0, 76, 0.08);
}

.side-card h3 {
  color: var(--wine-dark);
}

.link-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.link-list a {
  color: var(--wine-dark);
  font-weight: 800;
}

.ethical-note {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 18px 20px;
}

.cta-band {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--white);
  padding: 64px 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-content p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.testimonials-section {
  background: var(--white);
}

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

.testimonial-card {
  padding: 30px;
  border-radius: var(--radius);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.75;
}

.testimonial-card strong {
  color: var(--wine-dark);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.accordion {
  display: grid;
  gap: 14px;
}

details {
  border-radius: 18px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--wine-dark);
  font-weight: 800;
}

details p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
}

.contact-card, .map-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-card {
  padding: 34px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.contact-list p {
  margin: 0;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  background: var(--wine-dark);
  color: var(--white);
  padding: 56px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 1fr;
  gap: 32px;
}

.site-footer h3, .site-footer h4 {
  margin-top: 0;
}

.site-footer p, .site-footer a {
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  width: min(1120px, calc(100% - 36px));
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1fb45b;
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(31, 180, 91, 0.35);
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-grid,
  .page-hero-grid,
  .content-grid,
  .about-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-frame img,
  .page-hero-card img,
  .about-photo img {
    height: 460px;
  }

  .side-card {
    position: static;
  }

  .session-card {
    left: 18px;
  }

  .feature-grid,
  .cards-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 68px 0;
  }

  .header-content {
    min-height: 70px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .photo-frame img,
  .about-photo img {
    height: 380px;
  }

  .contact-card {
    padding: 26px;
  }
}
