:root {
  --primary: #F63D7A;
  --bg-soft: #F9EEF1;
  --accent-warm: #F63D7A;
  --cream: #FFF9F6;
  --text-dark: #4E4348;
  --text-muted: #8E8087;
  --border-soft: #E9D9DE;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --max-width: 1120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display Bold', 'Libre Bodoni', Times, 'Times New Roman', serif;
  background: var(--bg-soft);
  color: var(--text-dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
}

/* Main spacing */
main.container {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero-text p {
  max-width: 620px;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.hero-image img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  background: var(--cream);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.center-buttons {
  justify-content: center;
}

/* Shared homepage section style */
.home-section {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-heading p {
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
}

.page-section {
  padding-top: 0.5rem;
}

.page-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.page-header h1 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.page-header p:not(.eyebrow) {
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 1.45rem;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn-secondary {
  background: var(--accent-warm);
}

.btn-secondary:hover {
  opacity: 0.92;
}

/* Cards and grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.five-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.card,
.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.card h3,
.form-card h2 {
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}

.card p,
.form-card p {
  color: var(--text-dark);
}

.numbered-card {
  position: relative;
  padding-top: 3.25rem;
}

.number-tag {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #fff1f6;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-card h4 {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Forms */
form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1rem;
}

.form-group {
  margin-bottom: 0.2rem;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-dark);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(246, 61, 122, 0.12);
}

.form-note {
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.25rem;
  border: none;
  background: var(--bg-soft);
  color: var(--text-dark);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #fff3f7;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  color: var(--text-dark);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Social */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Footer */
footer {
  margin-top: 3rem;
  background: var(--text-dark);
  color: #ffffff;
  padding-top: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-content h3,
.footer-content h4 {
  margin-bottom: 0.75rem;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.92);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

footer a {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 960px) {
  .hero,
  .card-grid,
  .story-grid,
  .footer-content,
  .five-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 2rem 1.25rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    right: 0;
    width: 240px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .nav-links.show {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero {
    gap: 1.5rem;
  }

  .hero-image img {
    min-height: 240px;
  }

  .section-heading h2,
  .page-header h1 {
    line-height: 1.15;
  }

  .btn,
  .social-btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons,
  .social-buttons {
    flex-direction: column;
  }
}