:root {
  --pink-primary: #C9757A;
  --pink-medium: #DC8C8C;
  --pink-pale: #FBE8E5;
  --pink-highlight: #FCEDEA;
  --gold: #B98D5E;
  --sage: #8CA07A;
  --text-main: #3A2E2E;
  --text-muted: #6B5D5D;
  --bg: #FFFBFA;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Calibri', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--pink-primary);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.9rem; text-align: center; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-main); }

a { color: var(--pink-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hide-mobile { display: none; }
@media (min-width: 700px) {
  .hide-mobile { display: inline; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--pink-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--pink-medium);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border-color: var(--pink-primary);
  color: var(--pink-primary);
}
.btn-outline:hover {
  background: var(--pink-pale);
  text-decoration: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--pink-highlight);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  max-width: 1400px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pink-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-tagline {
  display: none;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  white-space: nowrap;
}
@media (min-width: 560px) {
  .brand-tagline { display: block; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--pink-primary);
  border-radius: 2px;
}

.main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 0 solid var(--pink-highlight);
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem;
  gap: 0.75rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}
.main-nav.open {
  max-height: 400px;
  padding: 0.5rem 1.25rem 1rem;
  border-bottom-width: 1px;
}
.main-nav a {
  color: var(--text-main);
  font-weight: 500;
  padding: 0.35rem 0;
}
.main-nav a.nav-current {
  color: var(--pink-primary);
}
.main-nav .nav-cta {
  color: var(--pink-primary);
  font-weight: 700;
}

@media (min-width: 1220px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    max-height: none;
    overflow: visible;
    border: none;
    padding: 0;
    background: none;
    gap: 1.3rem;
  }
  .main-nav a {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    padding: 0.4rem 0.1rem;
    position: relative;
    white-space: nowrap;
  }
  .main-nav a.nav-current::after {
    content: '';
    position: absolute;
    left: 0.1rem;
    right: 0.1rem;
    bottom: -0.1rem;
    height: 2px;
    background: var(--pink-primary);
  }
  .main-nav .nav-cta {
    background: var(--pink-primary);
    color: #fff;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .main-nav .nav-cta::after { display: none; }
  .main-nav .nav-cta:hover {
    background: var(--pink-medium);
    text-decoration: none;
  }
}

/* Hero */
.hero-new {
  background: linear-gradient(180deg, var(--pink-highlight) 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
}
@media (min-width: 1160px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
    min-height: 560px;
    padding: 0 0 0 2.5rem;
    max-width: none;
    margin: 0;
  }
}

.hero-brand-panel {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem 1.5rem;
}
@media (min-width: 1160px) {
  .hero-brand-panel {
    flex: 0 0 260px;
    width: 260px;
    justify-content: center;
    padding: 3rem 1.25rem;
    position: relative;
  }
  .hero-brand-panel::after {
    content: '';
    position: absolute;
    top: 8%;
    bottom: 8%;
    right: 0;
    width: 1px;
    border-right: 1.5px solid var(--pink-medium);
    opacity: 0.65;
    border-radius: 999px;
  }
}
.brand-logo-lg {
  width: 260px;
  max-width: 100%;
  height: auto;
}
.brand-name-lg {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--pink-primary);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
@media (min-width: 1160px) {
  .brand-name-lg {
    font-size: 1.35rem;
    white-space: nowrap;
  }
}
.brand-heart-icon {
  width: 16px;
  height: 16px;
  color: var(--pink-primary);
  margin-bottom: 0.6rem;
}
.brand-tagline-lg {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 230px;
}
.brand-sprig-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  margin-top: 1.25rem;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1.5rem 2.5rem;
}
@media (min-width: 1160px) {
  .hero-content {
    align-items: flex-start;
    text-align: left;
    padding: 3rem 1.5rem 3rem 3rem;
    justify-content: center;
    max-width: 420px;
  }
}
.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
@media (min-width: 1160px) {
  .hero-content h1 { font-size: 3.2rem; }
}
.hero-content h1 .line-accent {
  color: var(--pink-primary);
  display: block;
}
.heart-inline {
  width: 0.62em;
  height: 0.62em;
  margin-left: 0.15em;
  vertical-align: baseline;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 400px;
  margin-bottom: 2.25rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
  width: 100%;
  max-width: 440px;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1160px) {
  .hero-feature {
    align-items: flex-start;
    text-align: left;
  }
}
.hero-feature-icon {
  width: 34px;
  height: 34px;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.hero-feature span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text-main);
  line-height: 1.4;
}

.hero-photo-wrap {
  flex: 0 0 auto;
  width: 100%;
  max-height: 340px;
  overflow: hidden;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
@media (min-width: 1160px) {
  /* Desktop: photo becomes a full-bleed background behind the hero, fading into the page background on the left */
  .hero-photo-wrap { display: none; }
}

.hero-bg {
  display: none;
}
.hero-fade {
  display: none;
}
@media (min-width: 1160px) {
  .hero-new { position: relative; overflow: hidden; }
  .hero-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 100%;
    display: block;
  }
  /* Fade anchored to the left edge, sized to just cover the brand panel + text
     column (not the full container), so the photo is visible as soon as possible. */
  .hero-fade {
    display: block;
    position: absolute;
    inset: 0;
    left: 0;
    width: 800px;
    max-width: 70%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(to right, var(--bg) 0%, var(--bg) 92%, rgba(255, 251, 250, 0) 100%);
  }
  .hero-grid { position: relative; z-index: 1; }
}

/* Contact info bar */
.info-bar {
  background: var(--pink-pale);
  padding: 1.75rem 0;
}
.info-bar .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .info-bar .container { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .info-bar .container { grid-template-columns: repeat(4, 1fr); }
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-primary);
}
.info-icon svg {
  width: 19px;
  height: 19px;
}
.info-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}
.info-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}
.section-alt {
  background: var(--pink-highlight);
}
.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* Services teaser (homepage, no prices) */
.services-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .services-teaser-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-teaser-card {
  background: #fff;
  border: 1px solid var(--pink-highlight);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.1rem;
  color: var(--gold);
}
.service-teaser-card h3 {
  margin-bottom: 0.5rem;
}
.service-teaser-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.services-teaser-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: #fff;
  border: 1px solid var(--pink-highlight);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-featured {
  border-color: var(--pink-primary);
  background: var(--pink-pale);
}
.service-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.service-desc { color: var(--text-muted); font-size: 0.95rem; flex-grow: 1; }
.service-duration { color: var(--text-muted); font-size: 0.85rem; font-style: italic; }
.service-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-primary);
  margin: 0.5rem 0 0;
}

/* Plans */
.plans-block, .addons-block {
  margin-top: 3rem;
  text-align: center;
}
.plans-title { text-align: center; }
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 1.75rem;
}
@media (min-width: 700px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
}
.plan-card {
  background: var(--pink-pale);
  border-radius: 16px;
  padding: 1.5rem;
}
.plan-card h4 {
  font-family: var(--font-heading);
  color: var(--pink-primary);
  margin-bottom: 0.4rem;
}
.plan-card p { color: var(--text-muted); margin: 0; }

.addons-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1rem;
  max-width: 700px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  text-align: left;
}
@media (min-width: 600px) {
  .addons-list { grid-template-columns: 1fr 1fr; }
}
.addons-list li {
  background: #fff;
  border: 1px solid var(--pink-highlight);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  color: var(--text-main);
}
.addons-note { color: var(--text-muted); font-size: 0.9rem; }

/* Price matrix (preturi.html) */
.price-matrix-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 0 0 1px var(--pink-highlight);
}
.price-matrix {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}
.price-matrix th, .price-matrix td {
  padding: 1rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--pink-highlight);
}
.price-matrix thead th {
  vertical-align: top;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.price-col-icon {
  width: 26px;
  height: 26px;
  margin: 0 auto 0.5rem;
  display: block;
}
.price-col-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
th .price-col-tagline {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}
.price-col-label {
  text-align: left;
  background: var(--pink-pale);
}
.price-col-label .price-col-name { color: var(--text-main); }
.price-col-label .price-col-tagline { color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 0.68rem; }

.price-col-sage { background: #EEF2E9; color: #5C7048; }
.price-col-sage .price-col-icon, .price-col-sage .price-col-name { color: #5C7048; }
.price-col-pink { background: var(--pink-highlight); color: var(--pink-primary); }
.price-col-pink .price-col-icon, .price-col-pink .price-col-name { color: var(--pink-primary); }
.price-col-gold { background: #FAF2E4; color: var(--gold); }
.price-col-gold .price-col-icon, .price-col-gold .price-col-name { color: var(--gold); }

.price-matrix tbody .price-col-sage,
.price-matrix tbody .price-col-pink,
.price-matrix tbody .price-col-gold {
  font-weight: 700;
  font-size: 1.05rem;
}
.price-matrix tbody tr:last-child th,
.price-matrix tbody tr:last-child td {
  border-bottom: none;
}

.price-row-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  color: var(--text-main);
  font-weight: 700;
}
.price-row-label small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.price-row-icon {
  width: 22px;
  height: 22px;
  color: var(--pink-primary);
  flex-shrink: 0;
}

.price-note-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}
@media (min-width: 800px) {
  .price-note-grid { grid-template-columns: repeat(2, 1fr); }
}
.price-note-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--pink-highlight);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
}
.price-note-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.price-note-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.price-note-icon-info { background: var(--pink-primary); color: #fff; font-style: italic; font-family: var(--font-heading); }
.price-note-icon-heart { background: var(--pink-pale); color: var(--pink-primary); font-size: 1.1rem; }
.price-note-icon-leaf { background: #EEF2E9; color: #5C7048; }
.price-note-icon-leaf svg { width: 16px; height: 16px; }

/* Extra services list (preturi.html) */
.extra-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .extra-list { grid-template-columns: repeat(2, 1fr); }
}
.extra-column {
  display: flex;
  flex-direction: column;
}
.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--pink-highlight);
}
.extra-column .extra-item:last-child { border-bottom: none; }
.extra-text h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-size: 1rem;
  margin: 0 0 0.25rem;
}
.extra-text p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}
.extra-price {
  flex-shrink: 0;
  color: var(--pink-primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: right;
  white-space: nowrap;
}
.extra-price-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}
.extra-price-tiers b { color: var(--pink-primary); font-weight: 700; }

.extra-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  color: var(--pink-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 2.5rem 0 1.5rem;
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border-top: 3px solid var(--gold);
}
.why-card p { color: var(--text-muted); margin: 0; }
.why-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* About */
.about-inner {
  max-width: 720px;
  text-align: center;
}

/* Founder cards */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
}
.founder-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-card-photo {
  width: 280px;
  max-width: 100%;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
  border: 4px solid var(--pink-highlight);
}
.founder-card-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--pink-primary);
  margin-bottom: 0.2rem;
}
.founder-card-role {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.1rem;
}
.founder-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Brand story */
.story-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.story-intro p {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 1.75rem;
}
.story-intro p:last-child {
  margin-bottom: 0;
}
.story-text {
  max-width: 700px;
  margin: 0 auto;
}
.story-text p {
  margin-bottom: 1.25em;
}
.story-text p:last-child {
  margin-bottom: 0;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}
.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--pink-highlight);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  padding: 1rem 1.75rem 1rem 0;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 1rem;
  color: var(--pink-primary);
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  color: var(--text-muted);
  padding-bottom: 1rem;
  margin: 0;
}

/* Testimonials empty state */
.testimonials-empty {
  text-align: center;
  color: var(--text-muted);
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.services-only-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Contact form */
.contact-inner {
  max-width: 640px;
}
.booking-form {
  background: #fff;
  border: 1px solid var(--pink-highlight);
  border-radius: 16px;
  padding: 1.75rem;
}
.form-row {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
}
.form-row-half {
  flex-direction: row;
  gap: 1rem;
}
.form-row-half > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--pink-medium);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text-main);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--pink-primary);
  outline-offset: 1px;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--pink-primary);
  cursor: pointer;
}
.form-status {
  margin-top: 0.75rem;
  font-weight: 700;
  min-height: 1.2em;
}
.form-status.success { color: #4b7c4b; }
.form-status.error { color: var(--pink-primary); }

@media (max-width: 500px) {
  .form-row-half { flex-direction: column; gap: 0; }
}

/* Footer — dispute resolution */
.footer-disputes {
  border-top: 1px solid rgba(58, 46, 46, 0.08);
  margin-top: 2rem;
  padding-top: 1.75rem;
  text-align: center;
}
.footer-disputes-title {
  font-family: var(--font-heading);
  color: var(--pink-primary);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.footer-disputes-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 640px;
  margin: 0 auto 1.25rem;
}
.footer-disputes-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .footer-disputes-links {
    flex-direction: row;
  }
}
.footer-dispute-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--pink-highlight);
  border: 1px solid var(--pink-pale);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}
.footer-dispute-link:hover {
  background: var(--pink-pale);
  text-decoration: none;
}
.footer-dispute-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--pink-pale);
  padding: 2.5rem 0 1rem;
  margin-top: 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  color: var(--pink-primary);
  font-weight: 600;
}
@media (min-width: 700px) {
  .footer-brand { justify-content: flex-start; }
}
.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-info p, .footer-social a, .footer-legal a {
  color: var(--text-muted);
  display: block;
  margin: 0 0 0.4rem;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
@media (min-width: 700px) {
  .footer-social { align-items: flex-start; }
}
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
@media (min-width: 700px) {
  .footer-legal { align-items: flex-start; }
}
.footer-legal-sep {
  display: none;
}
@media (min-width: 700px) {
  .footer-legal { justify-content: flex-start; }
}
.footer-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 2rem 0 0;
}

/* ===== Baby Safe protocol page ===== */

.protocol-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-highlight) 0%, var(--bg) 100%);
}
.protocol-eyebrow {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.protocol-hero h1 {
  max-width: 760px;
  margin: 0 auto 0.5rem;
}
.protocol-hero .protocol-trademark {
  font-size: 0.55em;
  vertical-align: super;
}
.protocol-lede {
  max-width: 680px;
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.protocol-lede strong {
  color: var(--text-main);
}

.protocol-rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 2.5rem auto;
}

.protocol-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
.protocol-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}
.protocol-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.protocol-item h3 {
  margin-bottom: 0.6rem;
}
.protocol-item p {
  color: var(--text-muted);
}
.protocol-item ul {
  color: var(--text-muted);
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
}
.protocol-item li {
  margin-bottom: 0.4rem;
}
.protocol-item p + p {
  margin-top: 0.75rem;
}

.priority-list {
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.priority-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pink-pale);
  color: var(--text-main);
  font-weight: 700;
  padding: 0.45rem 0.9rem 0.45rem 0.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
}
.priority-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
}

.colorcode-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}
@media (min-width: 560px) {
  .colorcode-grid { grid-template-columns: repeat(2, 1fr); }
}
.colorcode-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--pink-highlight);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}
.colorcode-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(58, 46, 46, 0.12);
}
.colorcode-card strong {
  display: block;
  color: var(--text-main);
  font-size: 0.92rem;
}
.colorcode-card span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}
.process-step {
  background: var(--pink-pale);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.process-arrow {
  color: var(--gold);
  font-size: 1rem;
}

.specialists-banner {
  max-width: 780px;
  margin: 3.5rem auto 0;
  background: var(--pink-pale);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  padding: 2rem 2rem;
  text-align: center;
}
.specialists-banner h3 {
  margin-bottom: 0.6rem;
}
.specialists-banner p {
  color: var(--text-muted);
  margin: 0;
}

.promise-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 0 4.5rem;
}
.promise-block .protocol-eyebrow {
  margin-bottom: 1rem;
}
.promise-block p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--pink-primary);
  line-height: 1.5;
}
