@import url('https://fonts.googleapis.com/css2?family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&family=Lato:wght@300;400;600;700&display=swap');

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

:root {
  --purple-dark: #4a1942;
  --purple: #6b2d6b;
  --purple-mid: #7b3f7b;
  --purple-light: #c9a5c9;
  --purple-band: #8b5e8b;
  --bg-gray: #f0ecf0;
  --bg-light: #f5f3f5;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --text-muted: #555555;
  --link-purple: #6b2d6b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text-body);
  background: var(--bg-gray);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sansita', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

a { color: var(--link-purple); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--purple-dark); text-decoration: underline; }

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

/* ── Navigation ── */
.site-header {
  background: var(--purple-dark);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links li a {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.85); padding: 0.5rem 1.2rem;
  transition: all 0.2s; display: block;
  text-decoration: none;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* ── Hero (full-width image with text overlay) ── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem;
  background-size: cover; background-position: center;
  background-color: #7a6070;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(60, 20, 55, 0.45);
}
.hero-content { position: relative; max-width: 900px; width: 100%; }
.hero h1 {
  font-family: 'Sansita', Arial, sans-serif;
  font-size: 3.2rem;
  font-style: italic;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-btn {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  background: var(--white);
  color: var(--link-purple);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}
.hero-btn:hover { background: #f5f0f5; text-decoration: none; }

/* ── Purple Band ── */
.purple-band {
  background: var(--purple-band);
  color: var(--white);
  padding: 2.5rem 2rem;
}
.purple-band-inner {
  max-width: 1100px; margin: 0 auto;
  font-size: 1.2rem; line-height: 1.6;
  font-family: 'Sansita', Arial, sans-serif;
}

/* ── Page Header (non-home pages) ── */
.page-header {
  background: var(--purple-dark);
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem;
}
.page-header h1 {
  font-size: 2.6rem;
  font-style: italic;
  color: var(--white);
}

/* ── Sections ── */
.section { padding: 3.5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section--white { background: var(--white); }
.section--gray { background: var(--bg-gray); }
.section--light { background: var(--bg-light); }

.section-title {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.section-title--purple { color: var(--purple); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ── Two-column / Split ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.split-img { width: 100%; height: auto; }
.split-text h2 {
  font-size: 1.7rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.split-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.split-text p {
  color: var(--text-body);
  margin-bottom: 0.8rem;
}

/* ── Cards (side by side) ── */
.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.card { text-align: center; }
.card img { width: 100%; margin-bottom: 1rem; }
.card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ── Bullet list (matching Google Sites square bullets) ── */
.feature-list { list-style: square; padding-left: 1.5rem; margin: 1.5rem 0; }
.feature-list li { padding: 0.4rem 0; font-size: 1rem; color: var(--text-body); }
.feature-list li strong { color: var(--text-dark); }

/* ── Service columns (side-by-side) ── */
.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid #e0dce0;
  overflow: hidden;
}
.service-card > img { width: 100%; height: 240px; object-fit: cover; }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.service-card-body h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--text-dark);
}
.service-card-body p { color: var(--text-body); margin-bottom: 0.7rem; font-size: 0.93rem; }
.service-card-body ul { list-style: square; padding-left: 1.4rem; margin-bottom: 1rem; }
.service-card-body ul li { padding: 0.25rem 0; font-size: 0.9rem; color: var(--text-body); }

/* ── Service blocks ── */
.service-block { margin-bottom: 2.5rem; }
.service-block h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.service-block h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--text-dark);
}
.service-block p { color: var(--text-body); margin-bottom: 0.8rem; }
.service-block ul { list-style: square; padding-left: 1.5rem; margin-bottom: 1rem; }
.service-block ul li { padding: 0.3rem 0; font-size: 0.95rem; color: var(--text-body); }
.price-tag {
  display: inline-block; padding: 0.4rem 1rem;
  background: var(--bg-light); border: 1px solid #ddd;
  font-weight: 700; font-size: 0.95rem; color: var(--text-dark);
}
.price-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin-top: 0.3rem; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #ddd; padding: 1.5rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 0.6rem; font-style: normal; }
.faq-item p { color: var(--text-body); font-size: 0.95rem; }

/* ── Team bios ── */
.team-member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.team-photo { width: 300px; height: auto; }
.team-info h2 { font-size: 1.7rem; font-style: italic; margin-bottom: 0.3rem; }
.team-info .role {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 1rem;
}
.team-info p { color: var(--text-body); margin-bottom: 0.8rem; font-size: 0.95rem; }
.certs { margin-top: 1rem; }
.certs h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.certs p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Gift options ── */
.gift-option {
  background: var(--white); padding: 1.5rem;
  border: 1px solid #ddd; margin-bottom: 1.2rem;
}
.gift-option h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.gift-option p { color: var(--text-body); font-size: 0.95rem; margin-bottom: 0.5rem; }

/* ── Contact ── */
.contact-info-block { max-width: 650px; margin: 0 auto; text-align: center; }
.contact-info-block p { color: var(--text-body); margin-bottom: 1.2rem; font-size: 1rem; }
.contact-detail { margin-bottom: 1rem; }
.contact-detail .label {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--purple);
}
.contact-detail .value { font-size: 1.05rem; color: var(--text-dark); }
.contact-detail .value a { color: var(--link-purple); font-weight: 600; }

/* ── Note to Friends (italic quote style) ── */
.note-section .note-title {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--purple);
  margin-bottom: 1rem;
}
.note-section .note-quote {
  font-family: 'Sansita', Arial, sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── Footer ── */
.footer-info {
  background: var(--bg-gray);
  padding: 3rem 2rem;
}
.footer-info-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-logo img { width: 180px; height: 180px; }
.footer-col { text-align: center; }
.footer-col-label {
  font-family: 'Sansita', Arial, sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.footer-col-value {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}
.footer-col-value a { color: var(--link-purple); font-weight: 400; }
.footer-col-value a:hover { text-decoration: underline; }

.footer-bar {
  background: var(--purple-band);
  padding: 1rem 2rem;
  text-align: center;
}
.footer-bar p {
  font-family: 'Sansita', Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--purple-dark);
    padding: 1rem 2rem; gap: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.15);
    z-index: 99;
  }
  .hero h1 { font-size: 2.2rem; }
  .split { grid-template-columns: 1fr; }
  .card-row { grid-template-columns: 1fr; }
  .service-columns { grid-template-columns: 1fr; }
  .team-member { grid-template-columns: 1fr; }
  .team-photo { width: 100%; max-width: 300px; }
  .footer-info-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { display: flex; justify-content: center; }
}
