/* ============================================
   Yolanda / Exclusive Beauty — site styles
   Anything Tailwind can't express directly.
   ============================================ */

:root {
  --cream:        #FAF3E8;
  --cream-100:    #F0EAE0;
  --teal:         #5BBFB5;
  --teal-light:   #A8E4E0;
  --teal-25:      rgba(168, 228, 224, 0.25);
  --purple:       #3F2A52;
  --gold:         #C9A84C;
  --gold-20:      rgba(201, 168, 76, 0.2);
  --ink:          #333333;
  --ink-soft:     #555555;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: "Almarena Neue", "DM Serif Display", Georgia, serif;
  font-feature-settings: "ss01" on;
  letter-spacing: -0.01em;
}
.font-script {
  font-family: "Cruyff Sans", "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Hero — animated highlight "now!" badge over "Here" */
.hero-highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.12em 0.04em;
  background: var(--teal-25);
  border-right: 3px solid var(--teal-light);
  animation: caret-blink 1.05s steps(2, end) infinite;
}
@keyframes caret-blink {
  0%, 60%   { border-right-color: var(--teal-light); }
  61%, 100% { border-right-color: transparent; }
}
.hero-highlight::after {
  content: "now!";
  position: absolute;
  top: -1.6em;
  right: -1px;
  transform: translateX(50%);
  background: var(--teal-light);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.32em;
  line-height: 1.4;
  padding: 0.25em 0.55em;
  border-radius: 0.5em 0.5em 0.5em 0;
  white-space: nowrap;
  letter-spacing: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

/* Big watermark wordmark "Exclusive beauty" */
.watermark-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.watermark {
  color: var(--cream);
  white-space: nowrap;
  line-height: 0.85;
  opacity: 0.85;
  text-align: center;
  user-select: none;
}
.watermark .line-1 {
  font-family: "Almarena Neue", Georgia, serif;
  font-size: clamp(140px, 24vw, 340px);
  display: block;
}
.watermark .line-2 {
  font-family: "Cruyff Sans", Georgia, serif;
  font-style: italic;
  font-size: clamp(150px, 26vw, 370px);
  display: block;
  margin-top: -0.18em;
  margin-left: 0.18em;
}

/* Decorative blob shapes (top + bottom of hero) */
.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Section: gold curved background */
.gold-curve {
  position: relative;
  background: var(--gold);
  isolation: isolate;
  overflow: hidden;
}
.gold-curve::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 120px;
  background: var(--cream);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 0;
}
.gold-curve::after {
  content: "";
  position: absolute;
  inset: auto -1px -1px -1px;
  height: 120px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 0;
}

/* Photo collage cards (Why Exclusive Beauty) */
.collage-card {
  border-radius: 18px;
  border: 4px solid var(--cream);
  box-shadow: -6px 4px 30px rgba(0,0,0,0.16);
  background-size: cover;
  background-position: center;
}

/* Generic image gradient overlay */
.img-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--gold-20) 100%);
  border-radius: inherit;
  pointer-events: none;
}

/* Sparkle bullet for "Why" list */
.spark::before {
  content: "✦";
  display: inline-block;
  width: 1.4em;
  margin-left: -1.4em;
  color: var(--teal);
  font-size: 0.9em;
}

/* Button base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 1rem 2rem;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.25),
    0 4px 8px rgba(0,0,0,0.16),
    0 2px 4px rgba(0,0,0,0.16);
  border: 1px solid rgba(34,34,34,0.06);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn:hover  { transform: translateY(-1px); box-shadow: inset 0 1px 1px rgba(255,255,255,0.25), 0 8px 18px rgba(0,0,0,0.18), 0 2px 4px rgba(0,0,0,0.16); }
.btn:active { transform: translateY(0); }
.btn-teal   { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #4FAFA5; }
.btn-purple { background: var(--purple); color: var(--cream); }
.btn-purple:hover { background: #34233F; }
.btn-gold   { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #B5963F; }

/* Small "pill" header buttons */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  color: #fff;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.25),
    0 4px 6px rgba(0,0,0,0.08),
    0 1px 2px rgba(0,0,0,0.12);
  border: 1px solid rgba(34,34,34,0.15);
  transition: transform 140ms ease;
}
.pill:hover { transform: translateY(-1px); }
.pill-purple { background: var(--purple); }
.pill-teal   { background: var(--teal); }

/* Section heading underline (animated underline as you scroll) */
.heading-underline {
  position: relative;
  display: inline-block;
}
.heading-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms ease 200ms;
}
.reveal-on.heading-underline::after { transform: scaleX(1); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
.reveal-on { opacity: 1; transform: none; }

/* Testimonial card */
.tweet {
  background: #F9FAFB;
  border: 2px solid var(--teal);
  border-radius: 28px;
  padding: 22px;
}

/* Drop-shadow card */
.card-shadow {
  background: #fff;
  border-radius: 20px;
  box-shadow: 1px 1px 30px rgba(0,0,0,0.08);
}

/* Footer divider line */
.footer-rule {
  border-color: rgba(255,255,255,0.55);
}

/* Mobile menu transition */
#mobileMenu {
  transition: transform 280ms ease, opacity 280ms ease;
}
#mobileMenu.is-closed {
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
}

/* ===== Shared component styles for sub-pages ============= */

/* Page header banner — wave shape at the top of inner pages */
.page-banner {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 3rem;
  background: var(--cream-100);
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 70px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Process step card (How the Process Works) */
.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.step-card.is-final {
  background: var(--gold);
  color: #fff;
}
.step-card.is-final h3 { color: #fff; }

.step-num {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--teal);
  width: 3rem;
  flex: 0 0 auto;
  text-align: right;
  padding-right: 0.5rem;
}
.step-card.is-final + .step-num,
.step-card.is-final ~ .step-num { color: var(--gold); }

/* Soft pill chips inside step cards */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 13px;
  font-weight: 500;
}
.chip.chip-gold { background: var(--gold); }
.chip.chip-light { background: #fff; color: var(--gold); border: 1px solid var(--gold); }
.chip svg { width: 14px; height: 14px; }

/* Form ---------------------------------------------------- */
.form-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}
.form-card > header {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  padding: 1rem 1.5rem;
}
.form-section {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  padding: 0.85rem 1.5rem;
  margin: 0 -1.5rem;
}
@media (min-width: 768px) {
  .form-section { margin: 0 -2.25rem; padding: 0.85rem 2.25rem; }
}

.label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #111;
  margin-bottom: 0.4rem;
}
.input, .select, .textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #BCBCBC;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 15px;
  color: #222;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(91,191,181,0.18);
}
.input::placeholder { color: #BCBCBC; }
.checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #BCBCBC;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
}
.checkbox:checked {
  background: var(--teal);
  border-color: var(--teal);
}
.checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 4px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Donor card -------------------------------------------- */
.donor-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}
.donor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}
.donor-card .photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #D2CECE 40%, #C19998 70%, #B07E7E 100%);
}
.donor-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.donor-card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 8px;
}
.donor-card .heart {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  color: #C9A84C;
  cursor: pointer;
  border: none;
  transition: transform 150ms;
}
.donor-card .heart:hover { transform: scale(1.1); }
.donor-card .heart.is-liked { color: #5BBFB5; }
.donor-card .name {
  position: absolute;
  left: 0; right: 0; bottom: 78px;
  text-align: center;
  font-style: italic;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.donor-card .cta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 26px;
  border-radius: 12px;
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.25), 0 4px 8px rgba(0,0,0,0.16);
  cursor: pointer;
}

/* Donor profile modal (Pop-Up Perfil) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 1rem;
  animation: fade-in 160ms ease;
}
.modal-backdrop.is-hidden { display: none; }
@keyframes fade-in { from {opacity:0;} to {opacity:1;} }

.modal {
  background: var(--cream-100);
  border-radius: 28px;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  animation: pop-in 220ms ease;
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.modal .close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* Spec tile inside modal */
.spec {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.spec .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(91,191,181,0.12);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.spec .icon svg { width: 22px; height: 22px; }
.spec .label-sm { font-size: 14px; font-weight: 700; color: #111; line-height: 1.2; }
.spec .value-sm { font-size: 14px; color: #4B5563; }

/* Pricing row bars (Fees & Expenses) */
.fee-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1.25rem;
  background: #fff;
  border-radius: 12px;
}
.fee-row.is-gold { background: var(--gold); color: #fff; }
.fee-row.is-gold .price { color: #fff; }
.fee-row .price {
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
}

/* Compensation hero bars */
.comp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: #111;
}
.comp-row + .comp-row { margin-top: 0.6rem; }
.comp-row.alt { background: var(--gold); color: #fff; }
.comp-row .right { color: var(--gold); font-weight: 700; }
.comp-row.alt .right { color: #fff; }

/* Yes / No fertility table rows */
.fact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
}
.fact.no  { background: #C77070; }
.fact.yes { background: var(--teal); }
.fact .tag {
  font-weight: 800;
  font-size: 18px;
  width: 60px;
  flex: 0 0 auto;
}


/* Make watermark text smaller on mobile so it doesn't dominate */
@media (max-width: 640px) {
  .watermark .line-1 { font-size: 28vw; }
  .watermark .line-2 { font-size: 30vw; }
}
