/* =========================================================
   Paws Services — design exploration
   Brand purple, biscuit accent, warm paper background.
   ========================================================= */

@media (min-width: 1001px) {
  html { scroll-behavior: smooth; }
}

:root {
  /* Brand */
  --purple: #470066;
  --purple-deep: #2E0B44;
  --plum: #6B2E8F;
  --purple-tint: #F1E9F6;

  /* Warmth — biscuit, not orange */
  --honey: #C98A3C;
  --honey-deep: #7E5214;
  --honey-tint: #F7EDDF;

  --sage: #4F7A5E;
  --sage-tint: #E6EFE8;

  /* Paper */
  --cream: #FDF8F3;
  --paper: #FFFFFF;
  --ink: #2A1F31;
  --body: #4E4356;
  --line: #E7DED6;

  --shadow-sm: 0 2px 8px rgba(46, 11, 68, .06);
  --shadow: 0 12px 28px rgba(46, 11, 68, .09);
  --max: 1150px;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "SOFT" 30, "WONK" 1;
  color: var(--purple-deep);
  line-height: 1.12;
  margin: 0 0 .45em;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.35rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }
a { color: var(--purple); }

.wrap { width: min(100% - 40px, var(--max)); margin-inline: auto; }
section { padding: clamp(54px, 7vw, 96px) 0; }
section[id] { scroll-margin-top: 84px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--purple); color: #fff; padding: 14px 22px;
  text-decoration: none; font-weight: 700;
}
.skip-link:focus { left: 0; }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  font-family: "Nunito", sans-serif; font-size: 1.02rem; font-weight: 800;
  text-decoration: none; cursor: pointer; min-height: 54px;
  transition: background-color .2s cubic-bezier(.2,.7,.3,1), color .2s ease, border-color .2s ease;
}
.btn i { font-size: 1.15em; }
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-deep); }
.btn-ghost { background: transparent; color: var(--purple); border-color: #CDB8DA; }
.btn-ghost:hover { border-color: var(--purple); background: var(--purple-tint); }
.btn-honey { background: var(--honey-tint); color: var(--honey-deep); border-color: #E4CDA9; }
.btn-honey:hover { background: #F1E0C6; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; padding-block: 12px; }
.site-header .logo img { width: 146px; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.site-nav a {
  text-decoration: none; color: var(--purple-deep); font-weight: 700; font-size: 1rem;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--honey); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 800;
  color: var(--purple); text-decoration: none; white-space: nowrap;
}
.header-cta .btn { padding: 11px 20px; min-height: 46px; font-size: .98rem; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(36px, 4.5vw, 64px); padding-bottom: clamp(48px, 6vw, 84px); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--honey-deep); font-weight: 800; font-size: .96rem;
  margin: 0 0 18px; letter-spacing: .01em;
}
.eyebrow i { font-size: 1.15rem; color: var(--honey); }

.hero h1 { position: relative; z-index: 1; margin-bottom: .3em; }
.hero h1 .hl { color: var(--purple); position: relative; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -1%; right: -1%; bottom: 4%; height: 26%;
  background: var(--honey-tint); border-radius: 3px; z-index: -1;
}
.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 50ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 28px 0 22px; }
.hero-note { font-size: .97rem; display: flex; align-items: flex-start; gap: 8px; margin: 0; }
.hero-note i { color: var(--sage); font-size: 1.15rem; line-height: 1.5; flex: none; }

.hero-media { position: relative; }
.hero-media .shot { border-radius: 20px 60px 20px 60px; overflow: hidden; aspect-ratio: 4 / 5; }
.hero-media .shot img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 22px; left: -16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 13px 17px;
  display: flex; align-items: center; gap: 11px; color: var(--purple-deep);
}
.hero-badge i { font-size: 1.55rem; color: var(--honey); }
.hero-badge b { font-family: "Fraunces", serif; font-size: 1.05rem; display: block; line-height: 1.2; }
.hero-badge small { color: var(--body); font-size: .84rem; }

/* ---------- Facts strip ---------- */
.facts { background: var(--purple); color: #fff; padding: 0; }
.facts .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 26px; padding-block: 30px; }
.facts .item { display: flex; align-items: center; gap: 13px; }
.facts i { font-size: 1.7rem; color: #E7C99A; }
.facts b { font-family: "Fraunces", serif; font-weight: 600; color: #fff; display: block; line-height: 1.2; font-size: 1.15rem; }
.facts span { color: #DCC8E8; font-size: .92rem; }

/* ---------- Section heads ---------- */
.section-head { max-width: 58ch; margin: 0 0 clamp(32px, 4.5vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-bottom: 0; }
.rule { width: 46px; height: 4px; background: var(--honey); border-radius: 2px; margin-bottom: 20px; }
.section-head.center .rule { margin-inline: auto; }

/* ---------- Services ---------- */
.services { background: var(--paper); }
.price-grid { display: grid; grid-template-columns: minmax(0, 620px); justify-content: center; gap: 26px; align-items: start; }

.price-card {
  border-radius: 22px; padding: 28px; display: flex; flex-direction: column;
  border: 1px solid var(--line); background: var(--cream); position: relative;
}
.price-card.feature { background: var(--purple-tint); border-color: #DFCDEA; }
.price-card .photo { aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; margin-bottom: 22px; }
.price-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.price-row { display: flex; align-items: baseline; gap: 9px; }
.price { font-family: "Fraunces", serif; font-size: 2.2rem; color: var(--purple); line-height: 1.1; }
.price-when { font-weight: 700; color: var(--body); font-size: .98rem; }
.price-sub { font-size: .97rem; margin: 12px 0 18px; }
.includes { list-style: none; padding: 0; margin: 0 0 24px; }
.includes li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 1rem; }
.includes i { color: var(--sage); margin-top: 4px; font-size: 1.05rem; }
.price-card .btn { margin-top: auto; }
.tag {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  background: var(--honey-tint); color: var(--honey-deep); font-weight: 800; font-size: .84rem;
  padding: 5px 13px; border-radius: 6px; margin-bottom: 14px;
}

/* ---------- How it works ---------- */
.steps { background: var(--honey-tint); }
.step-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; position: relative; }
.step { position: relative; padding-top: 8px; }
.step .n {
  width: 52px; height: 52px; border-radius: 50%; background: var(--purple); color: #fff;
  display: grid; place-items: center; font-family: "Fraunces", serif; font-size: 1.3rem;
  margin-bottom: 18px; position: relative; z-index: 2;
}
.step::before {
  content: ""; position: absolute; top: 34px; left: 62px; right: -34px; height: 2px;
  background-image: linear-gradient(to right, #DCC4A0 55%, transparent 55%);
  background-size: 12px 2px; z-index: 1;
}
.step:last-child::before { display: none; }
.step h3 { margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: 1rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(30px, 5vw, 62px); align-items: center; }
.about-media .shot { border-radius: 60px 20px 60px 20px; overflow: hidden; }
.quote {
  border-left: 4px solid var(--honey); padding: 4px 0 4px 22px; margin-top: 26px;
  font-family: "Fraunces", serif; font-size: 1.15rem; color: var(--purple-deep); line-height: 1.45;
}

/* ---------- Credentials ---------- */
.creds { background: var(--paper); }
.cred-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 44px; }
.cred {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.cred > i { font-size: 1.5rem; color: var(--purple); margin-top: 2px; }
.cred h3 { font-size: 1.08rem; margin-bottom: 2px; }
.cred p { margin: 0; font-size: .97rem; }
.cred a { font-weight: 700; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid figure { margin: 0; border-radius: 14px; overflow: hidden; aspect-ratio: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.ph {
  width: 100%; height: 100%; display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: center; text-align: center;
  background: var(--honey-tint); border: 2px dashed #E0C9A6; border-radius: 14px;
  color: var(--honey-deep); font-weight: 700; font-size: .86rem; padding: 12px;
}
.ph i { font-size: 1.7rem; }

.cred-note { font-size: .88rem; color: var(--muted, #6b6b6b); }

/* ---------- Legal pages (privacy policy) ---------- */
.legal { background: var(--paper); }
.legal .wrap { width: min(100% - 40px, 760px); }
.legal h1 { margin-bottom: .25em; }
.legal .effective {
  display: inline-block; background: var(--honey-tint); color: var(--honey-deep);
  font-weight: 700; font-size: .92rem; padding: 6px 14px; border-radius: 999px; margin-bottom: 2em;
}
.legal h2 {
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  margin-top: 1.9em; padding-top: 1.1em; border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal ul { padding-left: 1.15em; margin: 0 0 1.25em; }
.legal li { margin-bottom: .4em; }
.legal .back { margin-top: 2.6em; }
.looksLikeLink {
  background: none; border: 0; padding: 0; font: inherit; color: var(--purple);
  text-decoration: underline; cursor: pointer;
}
.looksLikeLink:hover { color: var(--plum); }

/* ---------- FAQ ---------- */
.faq { background: var(--purple-tint); }
.faq-list { max-width: 800px; }
details { border-bottom: 1px solid #DFCDEA; }
details:first-child { border-top: 1px solid #DFCDEA; }
summary {
  cursor: pointer; padding: 20px 52px 20px 0; position: relative; list-style: none;
  font-family: "Fraunces", serif; font-size: 1.1rem; color: var(--purple-deep); font-weight: 600;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; position: absolute; right: 12px; top: 50%;
  width: 10px; height: 10px; margin-top: -7px;
  border-right: 2.5px solid var(--purple); border-bottom: 2.5px solid var(--purple);
  transform: rotate(45deg); transition: transform .2s ease;
}
details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
details .answer { padding: 0 40px 22px 0; }
details .answer p { margin: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--purple); color: #fff; }
.contact h2 { color: #fff; }
.contact .rule { background: #E7C99A; }
.contact > .wrap > div > p { color: #E4D3EE; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 58px); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 15px; }
.contact-list li { display: flex; gap: 14px; align-items: center; color: #E4D3EE; }
.contact-list a { color: #fff; font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list > i { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.13); display: grid; place-items: center; font-size: 1.15rem; flex: none; }

.form-card { background: var(--paper); border-radius: 22px; padding: clamp(24px, 3vw, 34px); }
.form-card p { color: var(--body); }
.field { margin-bottom: 17px; }
.field label { display: block; font-weight: 800; color: var(--purple-deep); margin-bottom: 6px; font-size: .97rem; }
.field .opt { font-weight: 600; color: var(--body); }
input, textarea {
  width: 100%; padding: 14px 17px; border: 2px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--cream);
  transition: border-color .15s ease, background-color .15s ease;
}
input:focus, textarea:focus { border-color: var(--purple); background: #fff; }
textarea { min-height: 124px; resize: vertical; }
.err { display: none; color: #A3261C; font-weight: 700; font-size: .91rem; margin: 6px 0 0; }
.err.on { display: block; }
[aria-invalid="true"] { border-color: #A3261C; }
.form-card .btn { width: 100%; }
.form-status { margin: 15px 0 0; font-weight: 700; text-align: center; }
.turnstile-box { margin: 4px 0 16px; }
.form-small { font-size: .87rem; text-align: center; margin: 13px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--purple-deep); color: #CDB8DA; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 38px; }
.site-footer h3 { color: #fff; font-size: 1.02rem; margin-bottom: 12px; }
.site-footer a { color: #fff; }
.site-footer p { font-size: .97rem; }
.footer-brand { display: flex; align-items: center; gap: 9px; font-family: "Fraunces", serif; font-size: 1.45rem; color: #fff; margin-bottom: 10px; }
.footer-brand i { color: #E7C99A; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.1);
  display: grid; place-items: center; font-size: 1.15rem; text-decoration: none;
  transition: background-color .2s ease;
}
.socials a:hover { background: rgba(255,255,255,.22); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .88rem;
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--cream); border-top: 1px solid var(--line);
}
.mobile-cta .btn { flex: 1; padding: 13px 14px; min-height: 50px; font-size: .98rem; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .about-grid, .contact-grid, .price-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 440px; margin-inline: auto; }
  .hero-media .shot { aspect-ratio: 5 / 4; }
  .site-nav { display: none; }
  .step-flow { grid-template-columns: 1fr; gap: 26px; }
  .step::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .wrap { width: min(100% - 32px, var(--max)); }
  .cred-list { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .facts .wrap { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .hero-badge { left: 8px; bottom: 12px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.gallery-cta { text-align: center; margin: 30px 0 0; }

/* ---------- Mobile menu ---------- */
.menu-toggle {
  display: none; margin-left: auto; background: transparent; border: 2px solid #CDB8DA;
  border-radius: 12px; width: 48px; height: 48px; cursor: pointer;
  color: var(--purple); font-size: 1.5rem; align-items: center; justify-content: center;
}
.menu-toggle:hover { border-color: var(--purple); background: var(--purple-tint); }

.mobile-menu {
  flex-direction: column; border-top: 1px solid var(--line);
  background: var(--cream); padding: 6px 20px 14px;
}
.mobile-menu a {
  padding: 15px 4px; text-decoration: none; color: var(--purple-deep);
  font-weight: 700; border-bottom: 1px solid var(--line); min-height: 52px;
  display: flex; align-items: center; gap: 9px;
}
.mobile-menu a:last-child { border-bottom: 0; }
.menu-phone { color: var(--purple) !important; }

@media (max-width: 1000px) {
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .mobile-menu:not([hidden]) { display: flex; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ---------- Mobile length trims ---------- */
@media (max-width: 640px) {
  section { padding: 44px 0; }
  .hero { padding-top: 30px; padding-bottom: 40px; }
  .hero-media .shot { aspect-ratio: 4 / 3; }
  .price-card { padding: 22px; }
  .price-card .photo { aspect-ratio: 16 / 9; margin-bottom: 18px; }
  .price-card .photo:has(.ph) { aspect-ratio: 5 / 2; }
  .gallery-grid figure:nth-child(1) { aspect-ratio: 16 / 11; }
  .section-head { margin-bottom: 26px; }
  .includes li { padding: 4px 0; }
  .contact-list { gap: 12px; }

  /* No translate on phones: shifting elements changes the page height as they
     reveal, which makes the scroll position feel unstable on a long page. */
  .reveal { transform: none; }
}
