/* =====================================================================
   Daisy's Paw Express — Brand Stylesheet
   Palette pulled from the Daisy's Paw Express logo:
   warm brown #3d2820 · sage #8a9d72 · blush #e8b5b0 · cream #faf3e6
   Type: Fraunces (display, vintage rounded serif) + Nunito (body)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --brown:         #3d2820;
  --brown-900:     #261812;
  --brown-700:     #5a3e30;
  --sage:          #8a9d72;
  --sage-600:      #6a7c54;
  --sage-300:      #c0cdb0;
  --sage-100:      #e7ecdf;
  --blush:         #e8b5b0;
  --blush-600:     #c98f88;
  --blush-300:     #f1cfcc;
  --blush-100:     #fbe9e6;
  --cream:         #faf3e6;
  --cream-200:     #f2e6cf;
  --paper:         #ffffff;
  --ink:           #2a1f1a;
  --ink-soft:      #5a4b41;
  --line:          #ead9c0;

  --shadow-sm: 0 2px 8px rgba(61,40,32,.07);
  --shadow-md: 0 12px 30px rgba(61,40,32,.12);
  --shadow-lg: 0 24px 60px rgba(61,40,32,.18);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --container: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);

  --ff-display: "Fraunces", "Georgia", serif;
  --ff-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blush); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--brown);
  font-variation-settings: "SOFT" 80, "WONK" 1;
}
.h-xl { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.1rem); }
h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.45rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); color: var(--ink); line-height: 1.6; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.center { text-align: center; }
.measure { max-width: 60ch; }
.measure.center { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-body);
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-600); font-weight: 800;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content:""; width: 26px; height: 2px; background: var(--blush); border-radius: 2px;
}
.eyebrow.center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 100px;
  font-family: var(--ff-body); font-weight: 800; font-size: .98rem;
  border: 2px solid transparent; transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blush); color: var(--brown); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blush-600); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { border-color: currentColor; color: var(--brown); }
.btn--ghost:hover { background: var(--brown); color: #fff; border-color: var(--brown); }
.btn--light { background: #fff; color: var(--brown); }
.btn--light:hover { background: var(--cream); }
.btn--on-dark.btn--ghost { color: #fff; }
.btn--on-dark.btn--ghost:hover { background: #fff; color: var(--brown); border-color: #fff; }
.btn--sage { background: var(--sage); color: #fff; box-shadow: var(--shadow-sm); }
.btn--sage:hover { background: var(--sage-600); color: #fff; box-shadow: var(--shadow-md); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,243,230,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .7rem 0;
}
.brand { display: flex; align-items: center; color: var(--brown); }
.brand img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  color: var(--brown); font-weight: 700; font-size: .98rem;
  padding: .5rem .85rem; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--blush-600); background: rgba(232,181,176,.14); }
.nav-links a.is-active { color: var(--blush-600); }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--brown); font-family: var(--ff-body); font-weight: 800; font-size: 1.02rem;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--blush-600); }
.nav-toggle {
  display: none; background: none; border: 0; padding: .4rem; color: var(--brown);
}
.nav-toggle svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  background:
    radial-gradient(60% 60% at 18% 30%, rgba(232,181,176,.45) 0, transparent 60%),
    radial-gradient(60% 60% at 85% 75%, rgba(138,157,114,.32) 0, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-200) 100%);
  color: var(--brown); overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(2rem,5vw,4rem);
  padding: clamp(3.5rem,7vw,6rem) 0 clamp(3.5rem,7vw,5.5rem);
}
.hero h1 { color: var(--brown); }
.hero h1 .accent { color: var(--blush-600); }
.hero p { color: var(--ink-soft); }
.hero .lead { color: var(--ink); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem; }
.hero-trust li { display: flex; align-items: center; gap: .6rem; color: var(--ink-soft); font-size: .95rem; }
.hero-trust svg { width: 20px; height: 20px; color: var(--sage-600); flex: none; }

/* hero visual — frames the circular logo */
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-medallion {
  width: min(440px, 88%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #fff, var(--blush-100));
  border: 1px solid var(--blush-300);
  display: grid; place-items: center; padding: 4%;
  box-shadow: var(--shadow-lg);
}
.hero-medallion img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(61,40,32,.18)); }

/* ---------- Area strip ---------- */
.areastrip {
  background: var(--sage); color: #fff; padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.areastrip .container { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.6rem; justify-content: center; }
.areastrip span { display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; color: #f4ecde; }
.areastrip svg { width: 18px; height: 18px; color: var(--blush-300); }
.areastrip strong { font-family: var(--ff-display); color: #fff; font-weight: 700; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .98rem; }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blush-100); color: var(--blush-600); margin-bottom: 1.1rem;
}
.card-icon svg { width: 28px; height: 28px; }
.card-icon--sage { background: var(--sage-100); color: var(--sage-600); }
.card-icon--cream { background: var(--cream-200); color: var(--brown); }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.media-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--cream-200); position: relative; aspect-ratio: 5/4;
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-fallback {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 1rem;
  background: radial-gradient(120% 120% at 70% 10%, #fff, var(--blush-100) 60%, var(--cream-200));
  color: var(--brown); text-align: center; padding: 2rem;
}
.media-fallback img { width: 60%; opacity: .98; }
.media-fallback span { font-size: .85rem; color: var(--ink-soft); max-width: 28ch; }

/* checklist */
.ticks { display: grid; gap: .8rem; margin-top: 1.4rem; }
.ticks li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink); }
.ticks svg { width: 22px; height: 22px; color: var(--sage-600); flex: none; margin-top: 2px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); text-align: center; }
.stat .num { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem,1.4rem+2vw,3rem); color: var(--blush-600); }
.stat .lbl { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 1.1rem;
  display: grid; place-items: center; background: var(--sage); color: #fff;
  font-family: var(--ff-display); font-weight: 700; font-size: 2.1rem; box-shadow: var(--shadow-sm);
  border: 3px solid var(--blush);
}
.team-card h3 { margin-bottom: .15rem; }
.team-role { color: var(--blush-600); font-weight: 700; font-size: .92rem; letter-spacing: .02em; }
.team-card p { font-size: .95rem; margin-top: .6rem; }

/* ---------- Mission band ---------- */
.band {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-700) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem,5vw,4rem);
  position: relative; overflow: hidden;
}
.band::before {
  content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px;
  background: radial-gradient(circle, rgba(232,181,176,.28), transparent 70%);
}
.band::after {
  content:""; position:absolute; left:-40px; bottom:-80px; width:260px; height:260px;
  background: radial-gradient(circle, rgba(138,157,114,.28), transparent 70%);
}
.band h2 { color: #fff; }
.band p { color: #f4ecde; }
.band .eyebrow { color: var(--blush); }
.band .eyebrow::before { background: var(--blush); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--gap); grid-template-columns: repeat(3,1fr); }
.step { position: relative; padding-top: .5rem; }
.step .n {
  width: 50px; height: 50px; border-radius: 50%; background: var(--blush); color: var(--brown);
  font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 1rem;
  border: 2px solid var(--brown);
}
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 1rem; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 1.4rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 0; font-family: var(--ff-display);
  font-weight: 700; color: var(--brown); display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex: none; transition: transform .25s; color: var(--blush-600); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { padding: 0 0 1.25rem; font-size: .98rem; }

/* ---------- CTA banner ---------- */
.cta {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-600) 100%);
  color: var(--brown); border-radius: var(--radius-lg); text-align: center;
  padding: clamp(2.5rem,6vw,4.5rem) clamp(1.5rem,5vw,3rem); position: relative; overflow: hidden;
}
.cta::before {
  content:""; position:absolute; left:-50px; top:-50px; width:200px; height:200px;
  background: radial-gradient(circle, rgba(255,255,255,.45), transparent 70%);
}
.cta::after {
  content:""; position:absolute; right:-40px; bottom:-60px; width:240px; height:240px;
  background: radial-gradient(circle, rgba(138,157,114,.35), transparent 70%);
}
.cta h2 { color: var(--brown); position: relative; }
.cta p { color: #4d2f25; position: relative; }
.cta .hero-cta { justify-content: center; position: relative; }

/* ---------- Info items ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.info-list { display: grid; gap: 1.3rem; margin-top: 1.6rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ii-icon { width:46px;height:46px;border-radius:12px;background:var(--sage);color:#fff;display:grid;place-items:center;flex:none;}
.info-item .ii-icon svg{width:22px;height:22px;}
.info-item h3 { font-size: 1.05rem; margin-bottom: .1rem; }
.info-item a, .info-item p { color: var(--ink-soft); font-size: .98rem; }
.info-item a:hover { color: var(--blush-600); }

form.card { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: .92rem; color: var(--brown); }
.field input, .field select, .field textarea {
  font: inherit; padding: .8rem .95rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--cream); color: var(--ink); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blush); box-shadow: 0 0 0 3px rgba(232,181,176,.28); background:#fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-700) 100%);
  color: #fff; padding: clamp(3rem,6vw,5rem) 0 clamp(2.5rem,5vw,4rem); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content:""; position: absolute; inset: 0; opacity: .35;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(232,181,176,.45) 0, transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(138,157,114,.45) 0, transparent 35%);
  pointer-events: none;
}
.page-hero > .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #f4ecde; max-width: 60ch; margin: 1rem auto 0; }
.crumbs { display: flex; gap: .5rem; justify-content: center; font-size: .85rem; color: var(--blush-300); margin-bottom: 1rem; }
.crumbs a:hover { color: var(--blush); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown-900); color: #d8c8b6; padding-top: clamp(3rem,6vw,4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--gap); padding-bottom: 2.5rem; }
.site-footer .flogo { display: inline-flex; align-items: center; margin-bottom: 1.1rem; }
.site-footer .flogo img { height: 64px; width: auto; }
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--ff-body); font-weight: 800; }
.site-footer a { color: #d8c8b6; font-size: .95rem; }
.site-footer a:hover { color: var(--blush-300); }
.footer-grid ul { display: grid; gap: .6rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--blush-300); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10); padding: 1.4rem 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .85rem; color: #a08f7e;
}

/* ---------- Floating Email / Book dock ---------- */
.contactdock { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: .7rem; }
.contactdock a {
  display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.35rem; border-radius: 100px;
  font-family: var(--ff-body); font-weight: 800; box-shadow: var(--shadow-lg);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.contactdock a:hover { transform: translateY(-2px); }
.contactdock .dock-book { background: var(--blush); color: var(--brown); }
.contactdock .dock-email { background: var(--brown); color: #fff; }
.contactdock svg { width: 20px; height: 20px; }
@media (max-width: 720px) {
  .contactdock { left: 0; right: 0; bottom: 0; flex-direction: row; gap: 0; }
  .contactdock a { flex: 1; justify-content: center; border-radius: 0; padding: 1rem; box-shadow: 0 -6px 20px rgba(61,40,32,.18); }
  body { padding-bottom: 60px; }
}
.nav-link-cta { display: none !important; color: var(--blush-600) !important; font-weight: 800 !important; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Decorative paw trail / daisy divider ---------- */
.daisy-divider {
  display: flex; justify-content: center; gap: 1rem; margin: 2.2rem auto 0;
  opacity: .8;
}
.daisy-divider svg { width: 26px; height: 26px; color: var(--blush-600); }
.daisy-divider svg:nth-child(even) { color: var(--sage-600); transform: translateY(6px); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { order: -1; max-width: 360px; }
  .split, .split--reverse .split-media, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
}
@media (max-width: 720px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand img { height: 48px; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); padding: 1rem 1.2rem 1.6rem; gap: .2rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .site-header.open .nav-links a { padding: .8rem .6rem; font-size: 1.05rem; }
  .site-header.open .nav-links .nav-link-cta { display: block !important; border-top: 1px solid var(--line); margin-top: .3rem; padding-top: .9rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: .8rem 1.4rem; }
}
