@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --pink-light: #f0a8c0;
  --pink: #c45a7d;
  --plum: #7a3355;
  --plum-dark: #5c2640;
  --bg: #fdf8f7;
  --bg-alt: #f7ede9;
  --ink: #2e2a2c;
  --ink-soft: #6b6469;
  --line: #e9dcd8;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--plum-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; max-width: 62ch; }
a { color: var(--pink); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 248, 247, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-link img { height: 68px; width: auto; display: block; }
nav.main-nav { display: flex; gap: 32px; }
nav.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--pink); border-color: var(--pink); }

.nav-toggle { display: none; }

.site-nav-bar {
  position: sticky;
  top: 0;
  background: rgba(253, 248, 247, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.site-nav-bar a {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.site-nav-bar a:hover { color: var(--pink); border-color: var(--pink); }

@media (max-width: 720px) {
  nav.main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    display: none;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 14px 28px; border-bottom: 1px solid var(--line); }
  .nav-toggle {
    display: block;
    background: none; border: none;
    font-size: 1.6rem; line-height: 1;
    color: var(--plum-dark);
    cursor: pointer;
  }
}

/* Hero */
.hero {
  padding: 64px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero .kicker {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 14px;
  font-size: 1rem;
}
.hero p.lead { font-size: 1.13rem; color: var(--ink-soft); }
.hero-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(122, 51, 85, 0.35);
}
.hero-photo img {
  width: 100%; height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3.3;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(196,90,125,0.18), rgba(122,51,85,0.05) 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-light), var(--pink) 70%);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(196,90,125,0.6);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px -10px rgba(196,90,125,0.7); }
.btn-outline {
  border: 1.5px solid var(--pink);
  color: var(--plum-dark);
}
.btn-outline:hover { background: rgba(196,90,125,0.08); }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { color: var(--ink-soft); }

/* Grid of target groups */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .grid-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .grid-cards { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}
.card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 54px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }

/* Audio examples */
.examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) { .examples { grid-template-columns: 1fr; } }
.example-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.example-photo { aspect-ratio: 16/11; overflow: hidden; background: var(--bg-alt); }
.example-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.example-body { padding: 22px 24px 26px; }
.example-body h3 { margin-bottom: 4px; }
.example-body .tag { font-size: 0.82rem; color: var(--pink); font-family: 'Poppins', sans-serif; font-weight: 500; margin-bottom: 12px; display:block; }
audio { width: 100%; margin: 14px 0 16px; }
.quote {
  border-left: 3px solid var(--pink);
  padding-left: 14px;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0;
}
.quote cite { display: block; margin-top: 8px; font-style: normal; font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--plum-dark); font-size: 0.88rem; }

/* Contact */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) { .contact-block { grid-template-columns: 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.contact-list .label { display:block; font-family:'Poppins',sans-serif; font-size:0.82rem; color: var(--ink-soft); margin-bottom: 3px; }
.contact-list a { color: var(--plum-dark); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--pink); }

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.88rem; color: var(--ink-soft);
}
.footer-inner a { color: var(--ink-soft); text-decoration: none; margin-left: 18px; }
.footer-inner a:hover { color: var(--pink); }

/* Simple content pages */
.prose h2 { margin-top: 1.6em; }
.prose p { max-width: 68ch; }

.page-hero {
  padding: 52px 0 8px;
}
.page-hero .kicker { color: var(--pink); font-family:'Poppins',sans-serif; font-weight:500; }

/* One-pager anchor offset (sticky header) */
section[id] { scroll-margin-top: 78px; }

/* Full-bleed hero */
.hero-full {
  position: relative;
  width: 100%;
  aspect-ratio: 1758 / 762;
  overflow: hidden;
}
.hero-full img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-full::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-full-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 28px 48px;
  max-width: var(--max);
  margin: 0 auto;
  color: #fff;
}
.hero-full-text .kicker {
  color: var(--pink-light);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}
.hero-full-text h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  margin-bottom: 0.35em;
}
.hero-full-text p.lead {
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.customers-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 32px;
}
.customers-block p { max-width: none; margin: 0; }

/* Flexbox fallback layer (overrides grid for broad compatibility) */
.grid-cards { display: flex; flex-wrap: wrap; }
.grid-cards .card { flex: 1 1 300px; }

.examples { display: flex; flex-wrap: wrap; }
.examples .example-card { flex: 1 1 380px; }

.steps { display: flex; flex-wrap: wrap; }
.steps .step { flex: 1 1 260px; }

.hero-grid { display: flex; flex-wrap: wrap; align-items: center; }
.hero-grid > div { flex: 1 1 420px; }

.contact-block { display: flex; flex-wrap: wrap; }
.contact-block > div { flex: 1 1 320px; }
