/* =====================================================================
   ChatPET Animal Communications — styles.css
   A warm, calm, premium landing page.
   Palette: cream / ivory / blush / muted gold / soft brown
   Type: Cormorant Garamond (display) + Mulish (UI/body)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg:        #F7F2E8;   /* warm cream page background        */
  --bg-alt:    #F1E7D8;   /* deeper cream for alternating bands */
  --surface:   #FFFDF8;   /* ivory card surface                */
  --blush:     #EAD7CB;   /* soft blush accent                 */
  --gold:      #AC8447;   /* muted gold — premium accents only */
  --gold-soft: #C9A86E;
  --ink:       #38302A;   /* primary warm-brown text           */
  --ink-2:     #6E6052;   /* muted secondary text              */
  --cta:       #574635;   /* espresso brown — primary buttons  */
  --cta-hover: #44372A;
  --line:      rgba(56, 48, 42, 0.14);
  --shadow-sm: 0 2px 10px rgba(87, 70, 53, 0.06);
  --shadow-md: 0 14px 40px rgba(87, 70, 53, 0.10);
  --shadow-lg: 0 30px 70px rgba(87, 70, 53, 0.14);
  --radius:    20px;
  --radius-lg: 28px;
  --maxw:      1120px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; max-width: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;        /* 17px base — never tiny */
  line-height: 1.7;
  font-weight: 400;
  /* soft atmospheric warmth */
  background-image:
    radial-gradient(120% 70% at 80% -10%, rgba(201,168,110,0.16), transparent 60%),
    radial-gradient(90% 60% at 0% 0%, rgba(234,215,203,0.30), transparent 55%);
  background-attachment: fixed;
  overflow-x: clip;
  max-width: 100%;
}

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

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0.2px;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1rem; }

a { color: inherit; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--narrow { max-width: 760px; }

.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.eyebrow {
  font-family: "Mulish", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 1rem;
}
.eyebrow--gold { color: var(--gold); }

.section-head {
  max-width: 620px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  color: var(--ink-2);
  line-height: 1.65;
}
.micro { font-size: 0.92rem; color: var(--ink-2); margin-top: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  min-height: 48px;            /* comfortable tap target */
}
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

.btn-primary {
  background: var(--cta);
  color: #FBF5EC;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  border-color: var(--gold-soft);
}

.link-underline {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--cta);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-underline:hover { color: var(--gold); border-color: var(--gold); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(56, 48, 42, 0.90);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(233, 224, 212, 0.16);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}
.wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #F4EFE6;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}
/* CTA in the dark header */
.site-header .btn-ghost {
  color: #F4EFE6;
  border-color: rgba(233, 224, 212, 0.38);
}
.site-header .btn-ghost:hover,
.site-header .btn-ghost:focus-visible {
  background: rgba(233, 224, 212, 0.12);
  border-color: var(--gold-soft);
}
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name { display: block; }
.brand-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #F4EFE6;
  margin-top: 0.1rem;
}
.header-cta { padding: 0.65rem 1.3rem; min-height: 42px; }

/* ---------- Media images ---------- */
.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.media-img--soft { box-shadow: var(--shadow-sm); }

/* ---------- 1. Hero ---------- */
.hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { max-width: 38ch; }
.hero-copy .lede { margin-bottom: 2rem; }
.hero-media { position: relative; }
/* soft warm glow behind the cluster for depth */
.hero-media::before {
  content: "";
  position: absolute;
  inset: 4% -4% 4% -4%;
  background: radial-gradient(circle at 52% 46%, rgba(201,168,110,0.20), transparent 64%);
  z-index: 0;
}

/* ---- Scattered pet medallion cluster ---- */
.pet-cluster {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  z-index: 1;
}
/* faint pink paw tucked behind the medallions, echoing the ChatPET logo */
.pet-cluster::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 108%;
  height: 108%;
  transform: translate(-50%, -50%);
  background: url("assets/images/pink-paw.png") no-repeat center / contain;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
/* The wheel rotates slowly; the paw hub behind it stays still */
.pet-wheel {
  position: absolute;
  inset: 0;
  animation: wheelSpin 80s linear infinite;
}
.pet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  aspect-ratio: 1 / 1;
  margin: -20% 0 0 -20%;                 /* center the medallion on the hub */
  /* place each one on the rim (upright), then it orbits with the wheel */
  transform: rotate(var(--angle)) translateY(-78%) rotate(calc(-1 * var(--angle)));
}
.pet-spin {                              /* counter-rotates so the dog stays upright */
  display: block;
  width: 100%;
  height: 100%;
  animation: wheelSpinReverse 80s linear infinite;
}
.pet-bounce {                            /* the visible medallion; bobs gently */
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  border: 5px solid var(--surface);
  box-shadow: 0 0 0 1.5px rgba(172,132,71,0.55), var(--shadow-md);
  animation: petBounce 5.5s var(--ease) infinite;
}
.pet-bounce img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s var(--ease);
}
.pet-bounce:hover img { transform: scale(1.08); }

.pet--a { --angle: 0deg;   }
.pet--b { --angle: 72deg;  }
.pet--c { --angle: 144deg; }
.pet--d { --angle: 216deg; }
.pet--e { --angle: 288deg; }
/* slightly different bounce timing so they don't bob in lockstep */
.pet--a .pet-bounce { animation-duration: 5.5s; }
.pet--b .pet-bounce { animation-duration: 6.5s; animation-delay: -1.5s; }
.pet--c .pet-bounce { animation-duration: 5s;   animation-delay: -0.7s; }
.pet--d .pet-bounce { animation-duration: 6s;   animation-delay: -2.2s; }
.pet--e .pet-bounce { animation-duration: 5.8s; animation-delay: -1.1s; }

@keyframes wheelSpin        { to { transform: rotate(360deg); } }
@keyframes wheelSpinReverse { to { transform: rotate(-360deg); } }
@keyframes petBounce        { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ---------- 2. About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-copy { max-width: 46ch; }

/* ---------- 3. Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-2); margin: 0; }

/* ---------- 4. Steps ---------- */
.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 1rem;
}
.step {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.7rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  flex: none;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--cta);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.step h3 { margin: 0; font-size: 1.25rem; }

/* ---------- 5. Offer ---------- */
.offer-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.offer-card::after {            /* slim gold frame accent */
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(172,132,71,0.30);
  border-radius: calc(var(--radius-lg) - 12px);
  pointer-events: none;
}
.price { margin: 0.4rem 0 0.8rem; }
.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.offer-desc { color: var(--ink-2); max-width: 38ch; margin: 0 auto 1.8rem; }

/* ---------- 6. FAQ ---------- */
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.6rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Mulish", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 0 1.4rem;
  color: var(--ink-2);
  max-width: 60ch;
}

/* ---------- 7. Final CTA ---------- */
.final-cta {
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(201,168,110,0.18), transparent 60%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
}
.final-inner { max-width: 640px; }
.final-inner .lede { margin-bottom: 2rem; }

/* ---------- 8. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #E9E0D4;
  padding-block: 3rem 2rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(233, 224, 212, 0.18);
}
.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
}
.footer-brand-row { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand-row .brand-logo { height: 38px; width: auto; }
.footer-brand-row .brand-name { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; font-weight: 600; letter-spacing: 0.05em; color: #F4EFE6; display: block; }
.footer-tag { margin: 0.1rem 0 0; color: #B9AD9D; font-size: 0.95rem; }
.footer-links { display: flex; gap: 1.6rem; }
.footer-links a {
  color: #D9CFC0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s var(--ease);
}
.footer-links a:hover { color: var(--gold-soft); }
.copyright {
  margin: 1.4rem 0 0;
  font-size: 0.85rem;
  color: #9F9482;
}

/* ---------- Scroll-reveal (progressive enhancement) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* Tablet */
@media (max-width: 920px) {
  .cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* Mobile — stack everything cleanly */
@media (max-width: 760px) {
  .hero-grid,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { max-width: none; }
  /* image first feels warmer on small screens for the about block */
  .about-media { order: -1; }
  .media-img { aspect-ratio: 4 / 3; }
  /* Angelica's portrait: taller crop + top bias so her head isn't cut off on mobile */
  .about-media .media-img { aspect-ratio: 4 / 5; object-position: 50% 22%; }
  .pet-cluster { max-width: 380px; margin-top: 0.5rem; }

  .header-cta { display: none; }   /* keep mobile header clean; CTAs are everywhere below */

  .step { gap: 1rem; padding: 1.1rem 1.2rem; }
  .step h3 { font-size: 1.1rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
  .pet-wheel, .pet-spin, .pet-bounce { animation: none; }
}

/* =====================================================================
   BOOKING PAGE (book.html)
   ===================================================================== */
.booking .section-head { text-align: center; }
.booking h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); }

.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

/* Session summary card */
.booking-summary {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.booking-summary::before {            /* faint paw watermark, echoing the logo */
  content: "";
  position: absolute;
  right: -28px; bottom: -28px;
  width: 150px; height: 150px;
  background: url("assets/images/pink-paw.png") no-repeat center / contain;
  opacity: 0.10;
  pointer-events: none;
}
.booking-summary .price { margin: 0.2rem 0 1rem; }
.booking-summary .price-amount { font-size: clamp(2.6rem, 6vw, 3.4rem); }
.booking-summary h2 {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.booking-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.booking-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-2);
}
.booking-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

/* Booking form card */
.booking-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.booking-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.field .optional { font-weight: 400; color: var(--ink-2); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(172,132,71,0.18);
}
.btn-block { width: 100%; margin-top: 0.3rem; }

/* Success state */
.booking-success { text-align: center; padding: 1rem 0; }
.success-mark {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--forest, #1F4736);
  background: #2E5E48;
  color: #F4EFE6;
  font-size: 1.6rem;
}
.booking-success h3 { font-size: 1.9rem; margin-bottom: 0.4rem; }
.booking-success p { color: var(--ink-2); max-width: 42ch; margin: 0 auto 1rem; }

@media (max-width: 760px) {
  .booking-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* =====================================================================
   LEGAL PAGE (privacy.html, terms, etc.)
   ===================================================================== */
.legal-page .section-head { text-align: center; }
.legal-page h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); }
.legal-meta {
  font-size: 0.95rem;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  margin: 0;
}
.legal {
  counter-reset: legal-sec;
  color: #463d33;
  line-height: 1.8;
}
.legal > section { margin-bottom: 2.4rem; }
.legal h2 {
  counter-increment: legal-sec;
  font-size: 1.55rem;
  margin: 0 0 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.legal h2::before {
  content: counter(legal-sec) ". ";
  color: var(--gold);
  font-style: italic;
}
.legal h3 {
  font-size: 1.15rem;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 1.4rem 0 0.5rem;
}
.legal p { margin: 0 0 1rem; }
.legal ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.legal li {
  position: relative;
  padding-left: 1.5rem;
}
.legal li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
}
.legal a { color: var(--cta); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.legal a:hover { color: var(--gold); }
.legal-address {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  line-height: 1.6;
}
/* subtle marker for template placeholders still to be filled */
.legal .ph {
  color: var(--ink-2);
  border-bottom: 1px dashed var(--gold-soft);
  font-style: italic;
}

/* ---------- Offer bullet list + add-on (centered card, left-aligned items) ---------- */
.offer-list {
  list-style: none;
  margin: 0 auto 1.4rem;
  padding: 0;
  display: inline-grid;
  gap: 0.6rem;
  text-align: left;
  justify-items: start;
}
.offer-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink-2);
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.offer-addon {
  margin: 0 auto 1.5rem;
  font-size: 0.96rem;
  color: var(--ink-2);
}
.offer-addon strong { color: var(--gold); font-weight: 700; }

/* ---------- Footer contact email ---------- */
.footer-contact { margin: 0.45rem 0 0; font-size: 0.95rem; }
.footer-contact a { color: #D9CFC0; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

/* ---------- Meet Angelica quote ---------- */
.about-quote {
  margin: 1.2rem 0;
  padding: 0.2rem 0 0.2rem 1.1rem;
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: var(--ink-2);
}

/* ---------- Booking photo upload field ---------- */
.booking-form input[type="file"] {
  width: 100%;
  font-size: 0.95rem;
  color: var(--ink-2);
  padding: 0.55rem 0.2rem;
}
.booking-form input[type="file"]::file-selector-button {
  margin-right: 0.8rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

/* Booking: live session price under the animals dropdown */
.price-live { margin: 0.55rem 0 0; font-size: 1rem; color: var(--ink); }
.price-live strong { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; color: var(--gold, #B98C3C); letter-spacing: 0.01em; }
