/* ============================================
   Pawcation Jaipur — concept site styles
   Warm, family-friendly, Pink City palette
   ============================================ */

:root {
  --cream:      #FFF8F2;
  --cream-2:    #FCEFE6;
  --ink:        #2E2620;
  --ink-soft:   #6B5E54;
  --rose:       #E2557E;   /* Jaipur pink */
  --rose-dark:  #C73E66;
  --coral:      #F1885B;   /* terracotta accent */
  --coral-soft: #FBD9C8;
  --gold:       #F2B705;
  --white:      #ffffff;
  --shadow:     0 18px 40px -18px rgba(120, 50, 60, .35);
  --shadow-sm:  0 8px 20px -10px rgba(120, 50, 60, .30);
  --radius:     22px;
  --radius-sm:  14px;
  --maxw:       1140px;
}

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

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.1; font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.accent { color: var(--rose); }
em { font-style: italic; color: var(--rose-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 26px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 22px -10px rgba(199, 62, 102, .7);
}
.btn:hover { transform: translateY(-2px); background: var(--rose-dark); box-shadow: 0 16px 28px -12px rgba(199, 62, 102, .8); }
.btn--lg { padding: 16px 34px; font-size: 1.08rem; }
.btn--small { padding: 9px 18px; font-size: .92rem; }
.btn--ghost { background: transparent; color: var(--rose-dark); box-shadow: inset 0 0 0 2px var(--coral-soft); }
.btn--ghost:hover { background: var(--cream-2); color: var(--rose-dark); box-shadow: inset 0 0 0 2px var(--rose); }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 242, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(199, 62, 102, .08);
  transition: box-shadow .25s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.brand__mark { font-size: 1.6rem; }
.brand__text { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem; }
.brand__city { color: var(--rose); font-size: .7rem; font-weight: 600; vertical-align: super; margin-left: 3px; letter-spacing: .05em; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { text-decoration: none; color: var(--ink-soft); font-weight: 700; font-size: .96rem; transition: color .15s; }
.nav__links a:hover { color: var(--rose); }
.nav__links a.btn { color: var(--white); }
.nav__links a.btn:hover { color: var(--white); }
.nav__toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--rose-dark); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 70px 0 90px; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 80% 10%, var(--coral-soft) 0, transparent 45%),
    radial-gradient(circle at 5% 80%, #FBDCE6 0, transparent 45%),
    linear-gradient(180deg, var(--cream) 0, var(--cream-2) 100%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); font-weight: 600; letter-spacing: -.01em; }
.hero__sub { font-size: 1.18rem; color: var(--ink-soft); margin: 22px 0 30px; max-width: 33em; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; font-weight: 700; color: var(--ink-soft); font-size: .95rem; }

.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 380px; }
.hero__photo {
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #FFE9D6, var(--coral) 130%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow); border: 8px solid var(--white);
}
.hero__photo-emoji { font-size: 8rem; line-height: 1; filter: drop-shadow(0 10px 14px rgba(0,0,0,.15)); }
.hero__photo-note { font-weight: 700; color: var(--rose-dark); margin-top: 8px; }
.floatcard {
  position: absolute; background: var(--white); padding: 11px 18px; border-radius: 999px;
  font-weight: 800; font-size: .92rem; box-shadow: var(--shadow-sm); white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.floatcard--1 { top: 8%; left: -2%; animation-delay: 0s; }
.floatcard--2 { bottom: 14%; left: -6%; animation-delay: 1.2s; }
.floatcard--3 { top: 22%; right: -4%; animation-delay: .6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Promise bar ---------- */
.promise { background: var(--rose); color: var(--white); padding: 40px 0; }
.promise__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.promise__item strong { display: block; font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 600; }
.promise__item span { font-size: .95rem; opacity: .92; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section--alt { background: var(--cream-2); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
.section__lead { color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(199,62,102,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__icon { font-size: 2.6rem; margin-bottom: 14px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); position: relative; }
.step__num {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: var(--white); font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.4rem;
  margin-bottom: 16px; box-shadow: 0 8px 16px -8px var(--rose);
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Experience ---------- */
.experience { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.experience h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.experience__copy > p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 22px; }
.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li { padding-left: 34px; position: relative; font-weight: 600; }
.ticks li::before { content: "🐾"; position: absolute; left: 0; top: 0; }
.experience__schedule { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.experience__schedule h3 { font-size: 1.35rem; margin-bottom: 18px; color: var(--rose-dark); }
.timeline { display: grid; gap: 12px; }
.tl { display: flex; align-items: center; gap: 16px; padding-bottom: 12px; border-bottom: 1px dashed var(--coral-soft); }
.tl:last-child { border-bottom: none; padding-bottom: 0; }
.tl__time { font-family: 'Fraunces', serif; font-weight: 700; color: var(--coral); min-width: 48px; }
.tl__what { font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  background: var(--white); border-radius: var(--radius); padding: 36px 30px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative;
  border: 1px solid rgba(199,62,102,.06);
}
.plan--featured { border: 2px solid var(--rose); box-shadow: var(--shadow); transform: scale(1.03); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-weight: 800; font-size: .8rem;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 1.5rem; margin-bottom: 6px; }
.plan__price { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 600; color: var(--rose-dark); margin-bottom: 18px; }
.plan__price span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); font-family: 'Nunito', sans-serif; }
.plan__tag { font-weight: 700; color: var(--coral); font-size: .92rem; margin: -10px 0 18px; }

/* Royal / signature tier */
.plan--royal {
  background: linear-gradient(160deg, #2E2620 0%, #4a2030 100%);
  color: #F6E9DC; border: none;
}
.plan--royal h3 { color: #fff; }
.plan--royal .plan__price { color: var(--gold); }
.plan--royal .plan__price span { color: #E8D7C4; }
.plan--royal .plan__tag { color: var(--gold); }
.plan--royal li { color: #E8D7C4; }
.plan--royal li::before { color: var(--gold); }
.plan__badge--royal { background: var(--ink); color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.btn--royal { background: var(--gold); color: var(--ink); box-shadow: 0 10px 22px -10px rgba(242,183,5,.7); }
.btn--royal:hover { background: #d9a504; color: var(--ink); }

/* Membership band */
.membership {
  margin-top: 40px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  border: 2px dashed var(--coral-soft);
}
.membership__badge {
  display: inline-block; font-weight: 800; font-size: .8rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--rose-dark); background: var(--coral-soft);
  padding: 5px 13px; border-radius: 999px; margin-bottom: 12px;
}
.membership__copy h3 { font-size: 1.6rem; margin-bottom: 10px; }
.membership__copy p { color: var(--ink-soft); max-width: 52ch; }
.membership__price { text-align: center; flex-shrink: 0; }
.membership__price .plan__price { margin-bottom: 14px; }
.plan ul { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan li { padding-left: 28px; position: relative; color: var(--ink-soft); }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--rose); font-weight: 900; }
.plan .btn { text-align: center; }
.pricing__note { text-align: center; margin-top: 28px; color: var(--ink-soft); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.gallery__tile {
  aspect-ratio: 1; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
  background: linear-gradient(135deg, var(--coral-soft), #FBDCE6);
  box-shadow: var(--shadow-sm); transition: transform .2s ease;
}
.gallery__tile:hover { transform: scale(1.05) rotate(-2deg); }

/* ---------- Story ---------- */
.section--story { background: linear-gradient(135deg, #FFF1E6, #FBDCE6); }
.story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 54px; align-items: center; }
.story__circle {
  width: 260px; height: 260px; border-radius: 50%; margin-inline: auto;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 6rem; box-shadow: var(--shadow); border: 8px solid var(--white);
}
.story__visual { position: relative; padding-bottom: 40px; }
.story__photo {
  position: relative; overflow: hidden; background: linear-gradient(160deg, #FFE9D6, var(--coral-soft));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); border: 7px solid var(--white); margin: 0;
}
.story__photo .story__ph { font-size: 4.5rem; position: absolute; z-index: 0; }
.story__photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.story__photo--main {
  width: 320px; height: 320px; border-radius: 24px; margin-inline: auto; transform: rotate(-2deg);
}
.story__photo--mini {
  width: 150px; height: 150px; border-radius: 20px;
  position: absolute; right: 4%; bottom: 26px; transform: rotate(5deg); z-index: 2;
}
.story__caption {
  text-align: center; margin-top: 16px; font-family: 'Fraunces', serif; font-style: italic;
  color: var(--rose-dark); font-size: 1rem;
}
.story__copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.story__copy p { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 16px; }
.story__sign { font-family: 'Fraunces', serif; font-style: italic; color: var(--rose-dark); font-size: 1.2rem !important; }
.story__quote {
  background: var(--white); border-left: 5px solid var(--rose); border-radius: var(--radius-sm);
  padding: 22px 26px; margin: 20px 0; font-size: 1.12rem; font-style: italic; color: var(--ink);
  box-shadow: var(--shadow-sm); line-height: 1.6;
}
.story__quote cite {
  display: block; margin-top: 12px; font-style: normal; font-weight: 800;
  color: var(--rose-dark); font-size: .95rem;
}

/* ---------- Quotes ---------- */
.quote { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.quote p { font-size: 1.1rem; font-style: italic; margin-bottom: 16px; }
.quote__by { font-weight: 800; color: var(--rose-dark); }

/* ---------- CTA ---------- */
.cta { background: var(--rose); color: var(--white); padding: 80px 0; }
.cta__inner { max-width: 680px; margin-inline: auto; text-align: center; }
.cta h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta__inner > p { font-size: 1.15rem; opacity: .95; margin-bottom: 30px; }
.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 560px; margin: 0 auto; }
.cta__form input {
  padding: 14px 18px; border: none; border-radius: 12px; font-size: 1rem; font-family: 'Nunito', sans-serif;
}
.cta__form input:focus { outline: 3px solid var(--gold); }
.cta__form .btn { grid-column: 1 / -1; background: var(--ink); }
.cta__form .btn:hover { background: #1c1713; }
.cta__alt { margin-top: 22px; opacity: .95; }
.cta__ok { margin-top: 20px; background: rgba(255,255,255,.15); padding: 14px; border-radius: 12px; font-weight: 700; }
.cta__terms { margin-top: 14px; font-size: .9rem; opacity: .9; }
.cta__terms a { color: #fff; text-decoration: underline; }
.footer__fine a { color: inherit; text-decoration: underline; }

/* ---------- Socials ---------- */
.nav__ig { font-size: 1.25rem; text-decoration: none; line-height: 1; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.social {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #E8DCD2;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.social:hover { transform: translateY(-3px); background: var(--rose); color: #fff; }

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(37,211,102,.7);
  transition: transform .18s ease;
  animation: float 4s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #E8DCD2; padding: 50px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; }
.footer__brand .brand__text { color: var(--white); }
.footer__brand p { margin-top: 8px; opacity: .7; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: #E8DCD2; text-decoration: none; font-weight: 600; opacity: .8; }
.footer__links a:hover { opacity: 1; color: var(--coral); }
.footer__fine { text-align: center; margin-top: 36px; opacity: .5; font-size: .88rem; }

/* ---------- Legal / disclaimer page ---------- */
.legal { padding: 56px 0 80px; background: var(--cream); }
.legal__inner { max-width: 800px; }
.legal__back { display: inline-block; color: var(--rose-dark); font-weight: 700; text-decoration: none; margin-bottom: 22px; }
.legal__back:hover { color: var(--rose); }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal__updated { color: var(--ink-soft); font-weight: 600; margin-bottom: 28px; }
.legal h2 { font-size: 1.35rem; margin: 34px 0 10px; color: var(--rose-dark); }
.legal p { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { color: var(--ink-soft); margin: 0 0 14px 0; padding-left: 26px; display: grid; gap: 8px; }
.legal li { line-height: 1.55; }
.legal__callout {
  background: #FFF1E6; border-left: 5px solid var(--coral);
  border-radius: var(--radius-sm); padding: 20px 24px; margin: 24px 0 12px; color: var(--ink);
}
.legal__callout strong { color: var(--rose-dark); }
.legal__callout--soft { background: var(--cream-2); border-left-color: var(--rose); margin-top: 36px; }
.legal__fine {
  margin: 30px 0; padding-top: 20px; border-top: 1px dashed var(--coral-soft);
  font-size: .9rem; font-style: italic; color: var(--ink-soft);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links {
    position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; background: var(--cream); padding: 20px 24px;
    gap: 16px; box-shadow: var(--shadow-sm); display: none;
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__visual { order: 1; }
  .hero__cta, .hero__trust { justify-content: center; }
  .promise__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cards, .steps, .pricing { grid-template-columns: 1fr; }
  .experience, .story { grid-template-columns: 1fr; }
  .story__photo--main { width: 280px; height: 280px; }
  .story__photo--mini { width: 120px; height: 120px; right: 10%; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .plan--featured { transform: none; }
  .membership { flex-direction: column; text-align: center; padding: 30px 24px; }
  .membership__copy p { margin-inline: auto; }
}
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .container { padding-inline: 18px; }
  .hero { padding: 40px 0 70px; }
  .hero__photo { width: 230px; height: 230px; }
  .hero__photo-emoji { font-size: 5.5rem; }
  .hero__sub { font-size: 1.06rem; }
  .hero__trust { gap: 14px; font-size: .88rem; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .cta__form { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .floatcard { font-size: .78rem; padding: 7px 12px; }
  .floatcard--1 { left: 2%; }
  .floatcard--2 { left: 0; }
  .floatcard--3 { right: 0; }
  .promise__item strong { font-size: 2rem; }
  .footer__inner { flex-direction: column; }
  .whatsapp-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}
