/* ==========================================================
   Cedar Bark Pet Retreat — soft, organic, warm.
   Intentionally opposite of the sharp/aggressive local-design
   system: pillowy radii, generous whitespace, serif display
   type, hand-drawn flourishes, pastel palette.
   ========================================================== */

:root {
  --cream: #FBF6EC;
  --cream-deep: #F3EADB;
  --sage: #8FA887;
  --sage-deep: #5E7A58;
  --coral: #E89B7C;
  --coral-deep: #C97A5B;
  --bark: #3D2817;
  --bark-soft: #5C4534;
  --ink: #2A2520;
  --paper: #FFFDF8;
  --line: rgba(61, 40, 23, 0.12);
  --star: #E9B949;

  --font-display: 'Fraunces', 'Cooper', 'Georgia', serif;
  --font-body: 'Nunito', 'Helvetica Neue', system-ui, sans-serif;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 999px;

  --shadow-soft: 0 10px 30px -12px rgba(61, 40, 23, 0.18);
  --shadow-lift: 0 24px 50px -20px rgba(61, 40, 23, 0.28);

  --max: 1180px;
  --max-narrow: 780px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--bark-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--coral-deep); text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--bark); }
button { font: inherit; cursor: pointer; }

/* ----- Type ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--bark);
  line-height: 1.1;
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}
.italic { font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; }

/* ----- Layout ----- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { max-width: var(--max-narrow); }
section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

/* ----- Nav ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(251, 246, 236, 0.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  color: var(--bark); text-decoration: none;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--coral); display: grid; place-items: center;
  color: var(--paper); font-size: 1.1rem;
  box-shadow: inset -4px -6px 0 rgba(0,0,0,0.08);
}
.nav-links { display: none; gap: 32px; }
.nav-links a {
  color: var(--bark-soft); text-decoration: none; font-weight: 700; font-size: 0.94rem;
}
.nav-links a:hover { color: var(--coral-deep); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bark); color: var(--paper);
  padding: 10px 18px; border-radius: var(--r-pill);
  text-decoration: none; font-weight: 800; font-size: 0.92rem;
}
.nav-cta:hover { background: var(--coral-deep); color: var(--paper); }
@media (min-width: 880px) { .nav-links { display: inline-flex; } }

/* ----- Hero ----- */
.hero { padding-block: clamp(70px, 11vw, 140px); }
.hero-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
}
.hero h1 .swash { color: var(--coral-deep); font-style: italic; }
.hero .lede {
  font-size: 1.2rem; margin-top: 24px; max-width: 52ch; color: var(--bark-soft);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--r-pill);
  font-weight: 800; text-decoration: none; font-size: 1rem;
  border: 2px solid transparent; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
}
.btn-primary { background: var(--coral); color: var(--paper); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--coral-deep); color: var(--paper); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost { background: transparent; color: var(--bark); border-color: var(--bark); }
.btn-ghost:hover { background: var(--bark); color: var(--paper); }

.hero-quick {
  display: flex; flex-wrap: wrap; gap: 22px 28px;
  margin-top: 40px; padding-top: 28px; border-top: 1px dashed var(--line);
}
.hero-quick div b {
  display: block; font-family: var(--font-display); color: var(--bark);
  font-size: 1.6rem; font-weight: 600;
}
.hero-quick div span { font-size: 0.88rem; color: var(--bark-soft); }

/* Hero illustration card */
.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 70% 20%, rgba(232, 155, 124, 0.55), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(143, 168, 135, 0.5), transparent 55%),
    var(--cream-deep);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-art::before {
  content: ""; position: absolute; inset: 18px;
  border-radius: 38px; border: 1.5px dashed rgba(61, 40, 23, 0.22);
  pointer-events: none;
}
.hero-art .blob {
  position: absolute; width: 280px; height: 280px;
  background: var(--sage);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  filter: blur(0.5px);
}
.hero-art .pup {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 11rem;
  filter: drop-shadow(0 12px 18px rgba(61, 40, 23, 0.25));
}
.hero-art .sticker {
  position: absolute; top: 22px; right: 22px;
  background: var(--bark); color: var(--paper);
  padding: 14px 18px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-style: italic; font-size: 1rem;
  transform: rotate(6deg);
}
.hero-art .sticker-2 {
  position: absolute; bottom: 26px; left: 24px;
  background: var(--paper); color: var(--bark);
  padding: 12px 18px; border-radius: var(--r-pill);
  font-weight: 800; font-size: 0.86rem;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-soft);
}

/* ----- Trust strip ----- */
.trust {
  background: var(--bark);
  color: var(--cream);
  padding-block: 38px;
}
.trust-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust b {
  display: block; font-family: var(--font-display);
  color: var(--coral); font-size: 2rem; font-weight: 600;
}
.trust span { font-size: 0.88rem; opacity: 0.85; }

/* ----- Section heading helpers ----- */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head p { color: var(--bark-soft); max-width: 60ch; margin: 16px auto 0; font-size: 1.08rem; }

/* ----- Services ----- */
.services-grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.service .icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
}
.service:nth-child(1) .icon { background: rgba(232, 155, 124, 0.22); }
.service:nth-child(2) .icon { background: rgba(143, 168, 135, 0.28); }
.service:nth-child(3) .icon { background: rgba(233, 185, 73, 0.25); }
.service:nth-child(4) .icon { background: rgba(232, 155, 124, 0.22); }
.service:nth-child(5) .icon { background: rgba(143, 168, 135, 0.28); }
.service:nth-child(6) .icon { background: rgba(233, 185, 73, 0.25); }
.service h3 { margin-bottom: 10px; }
.service p { font-size: 0.98rem; }
.service .price {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-display); font-style: italic;
  color: var(--coral-deep); font-size: 1.1rem; font-weight: 600;
}

/* ----- Why us / Pillars ----- */
.why {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(143, 168, 135, 0.18), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(232, 155, 124, 0.16), transparent 50%),
    var(--cream-deep);
}
.pillars {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  background: var(--paper); padding: 36px 30px;
  border-radius: var(--r-lg);
  border-top: 6px solid var(--sage);
}
.pillar:nth-child(2) { border-top-color: var(--coral); }
.pillar:nth-child(3) { border-top-color: var(--star); }
.pillar .num {
  font-family: var(--font-display);
  font-style: italic; font-weight: 600;
  font-size: 2.6rem; color: var(--coral-deep);
  display: block; line-height: 1; margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 12px; }

/* ----- About / Story ----- */
.story-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .story-grid { grid-template-columns: 0.95fr 1.05fr; } }
.story-art {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 155, 124, 0.45), transparent 60%),
    var(--sage);
  border-radius: 50% 42% 50% 42% / 45% 50% 45% 55%;
  box-shadow: var(--shadow-lift);
  display: grid; place-items: center;
  font-size: 9rem;
}
.story-art::after {
  content: ""; position: absolute;
  width: 100px; height: 100px;
  background: var(--coral);
  border-radius: 50%;
  top: -28px; right: 10%;
  box-shadow: var(--shadow-soft);
}
.story p { margin-bottom: 18px; }
.signature {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; color: var(--bark);
  margin-top: 24px;
}

/* ----- Reviews ----- */
.reviews {
  background: var(--cream-deep);
}
.reviews-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
}
.review .stars { color: var(--star); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 14px; }
.review blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: var(--bark); line-height: 1.5;
  margin-bottom: 18px;
}
.review cite {
  font-style: normal; font-weight: 800; color: var(--bark);
  display: block; font-size: 0.95rem;
}
.review cite span { display: block; font-weight: 400; color: var(--bark-soft); font-size: 0.85rem; }
.review .quote-mark {
  position: absolute; top: -22px; left: 24px;
  font-family: var(--font-display); font-size: 5rem;
  line-height: 1; color: var(--coral); font-weight: 600;
}

/* ----- FAQ ----- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--paper);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--bark);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--coral-deep);
  transition: transform 0.2s ease;
  font-family: var(--font-body); font-weight: 600;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 26px 24px; }

/* ----- CTA band ----- */
.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 155, 124, 0.35), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(143, 168, 135, 0.35), transparent 50%),
    var(--bark);
  color: var(--cream);
  border-radius: var(--r-xl);
  text-align: center;
  padding: clamp(60px, 8vw, 100px) clamp(28px, 5vw, 70px);
  margin-block: 80px;
}
.cta-band h2 { color: var(--paper); margin-bottom: 18px; }
.cta-band p { font-size: 1.15rem; opacity: 0.92; max-width: 56ch; margin: 0 auto 32px; }
.cta-band .btn-primary { background: var(--coral); }
.cta-band .btn-primary:hover { background: var(--paper); color: var(--bark); }
.cta-band .ghost {
  background: transparent; color: var(--paper); border: 2px solid rgba(255, 253, 248, 0.5);
}
.cta-band .ghost:hover { background: var(--paper); color: var(--bark); border-color: var(--paper); }

/* ----- Contact / Hours ----- */
.contact-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
}
.info-card h3 { margin-bottom: 18px; }
.info-card .row {
  display: flex; gap: 14px;
  padding-block: 12px;
  border-bottom: 1px dashed var(--line);
  align-items: center;
}
.info-card .row:last-child { border-bottom: none; }
.info-card .row .lbl {
  font-weight: 800; color: var(--bark);
  flex: 0 0 110px; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.info-card .row .val { color: var(--bark-soft); }

/* ----- Footer ----- */
.foot {
  background: var(--bark);
  color: var(--cream);
  padding-block: 70px 30px;
}
.foot-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.foot a { color: var(--cream); text-decoration: none; }
.foot a:hover { color: var(--coral); text-decoration: underline; }
.foot h4 {
  color: var(--paper); margin-bottom: 16px; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-body); font-weight: 800;
}
.foot ul { list-style: none; padding: 0; }
.foot li { margin-bottom: 8px; font-size: 0.95rem; }
.foot p { font-size: 0.95rem; opacity: 0.85; }
.foot-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.84rem; opacity: 0.78;
}

/* ----- Floating paw motifs ----- */
.paw-deco {
  position: absolute; opacity: 0.08;
  font-size: 4rem; pointer-events: none;
  font-family: var(--font-display);
}

/* ----- Mobile sticky call ----- */
.mobile-call {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: var(--coral); color: var(--paper);
  padding: 16px 20px; border-radius: var(--r-pill);
  text-align: center; font-weight: 800; text-decoration: none;
  box-shadow: var(--shadow-lift); z-index: 60;
  display: block;
}
.mobile-call:hover { background: var(--coral-deep); color: var(--paper); }
@media (min-width: 880px) { .mobile-call { display: none; } }

/* ----- Inline link emphasis (for the money-site links) ----- */
a.exact {
  color: var(--coral-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a.exact:hover { color: var(--bark); text-decoration-thickness: 2px; }

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
