/* Oakhaven County Animal Services — demo mini-site (fictional client)
   Identity: warm civic, sticker/poster energy.
   Type: Bricolage Grotesque (display) + Figtree (body) */

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

:root {
  --night: #14231C;
  --green: #2C6E49;
  --cream: #FAF4E8;
  --coral: #E4572E;
  --sun: #F2B33D;
  --white: #FFFFFF;
}

body {
  font-family: 'Figtree', sans-serif;
  background: var(--cream);
  color: var(--night);
  line-height: 1.65;
}

/* portfolio demo bar (kept deliberately plain) */
.demo-note {
  background: #111111; color: #E8E2D8;
  font-size: 0.8rem; padding: 0.6rem 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-family: 'Figtree', sans-serif;
}
.demo-note a { color: #8fb0d9; text-decoration: none; }
.demo-note a:hover { text-decoration: underline; }

/* ---------- header ---------- */
header.main {
  background: var(--cream);
  border-bottom: 2px solid var(--night);
  padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.9rem;
  position: sticky; top: 0; z-index: 50;
}
.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: var(--night); }
.paw {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.85rem;
  border: 2px solid var(--night);
  box-shadow: 3px 3px 0 var(--night);
  flex-shrink: 0;
}
.brand h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.15rem; line-height: 1.05;
}
.brand h1 span { display: block; font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
header.main nav { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
header.main nav a {
  font-weight: 700; font-size: 0.88rem; color: var(--night); text-decoration: none;
  padding: 0.45rem 1rem; border-radius: 99px; border: 2px solid transparent;
}
header.main nav a:hover { border-color: var(--night); }
header.main nav a.active { background: var(--night); color: var(--cream); }

/* ---------- marquee strip ---------- */
.marquee {
  background: var(--coral); color: var(--cream);
  border-bottom: 2px solid var(--night);
  overflow: hidden; white-space: nowrap;
  padding: 0.5rem 0;
}
.marquee-track {
  display: inline-block;
  animation: slide 28s linear infinite;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.marquee-track span { margin: 0 1.4rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- hero (home) ---------- */
.hero {
  max-width: 1040px; margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 780px) { .hero { grid-template-columns: 1fr; padding-top: 2.5rem; } }
.hero h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.hero h2 .hl {
  background: var(--sun);
  padding: 0 0.18em;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero p { font-size: 1.1rem; max-width: 460px; margin-bottom: 1.75rem; }
.buttons { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  padding: 0.8rem 1.6rem; border-radius: 99px;
  border: 2px solid var(--night);
  box-shadow: 3px 3px 0 var(--night);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--night); }
.btn.coral { background: var(--coral); color: var(--cream); }
.btn.green { background: var(--green); color: var(--cream); }
.btn.plain { background: var(--white); color: var(--night); }

/* stat sticker */
.stat-card {
  background: var(--green); color: var(--cream);
  border: 2px solid var(--night); border-radius: 24px;
  box-shadow: 6px 6px 0 var(--night);
  padding: 2rem;
  transform: rotate(1.5deg);
}
.stat-card .n { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 3.6rem; line-height: 1; }
.stat-card .l { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sun); margin: 0.35rem 0 1rem; }
.stat-card p { font-size: 0.92rem; }

/* ---------- page head (subpages) ---------- */
.page-head { padding: 3rem 1.5rem 0; max-width: 1040px; margin: 0 auto; }
.page-head .panel {
  background: var(--green); color: var(--cream);
  border: 2px solid var(--night); border-radius: 24px;
  box-shadow: 6px 6px 0 var(--night);
  padding: 2.5rem 2.25rem;
}
.page-head .crumb { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sun); margin-bottom: 0.5rem; }
.page-head .crumb a { color: var(--sun); text-decoration: none; }
.page-head .crumb a:hover { text-decoration: underline; }
.page-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 2.9rem); line-height: 1.05;
}
.page-head p { margin-top: 0.75rem; max-width: 640px; font-size: 1.02rem; }

/* ---------- content ---------- */
.wrap { max-width: 1040px; margin: 0 auto; padding: 2.75rem 1.5rem; }
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.6rem; margin-bottom: 1.5rem;
}
.section-title .tick { color: var(--coral); }

/* pet / role cards */
.pets { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1.5rem; }
.pet {
  background: var(--white);
  border: 2px solid var(--night); border-radius: 20px;
  box-shadow: 4px 4px 0 var(--night);
  overflow: hidden;
}
.pet .photo {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 2.6rem;
  color: rgba(250, 244, 232, 0.95);
  border-bottom: 2px solid var(--night);
}
.pet .body { padding: 1.1rem 1.2rem 1.25rem; }
.pet h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.1rem; }
.pet .meta { font-size: 0.78rem; font-weight: 600; color: var(--green); margin: 0.15rem 0 0.5rem; }
.pet p { font-size: 0.88rem; }
.pet .badge {
  display: inline-block; margin-top: 0.7rem;
  background: var(--sun); color: var(--night);
  border: 2px solid var(--night); border-radius: 99px;
  font-weight: 700; font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.22rem 0.7rem;
}

/* steps */
.steps { list-style: none; counter-reset: step; max-width: 760px; }
.steps li {
  background: var(--white);
  border: 2px solid var(--night); border-radius: 18px;
  box-shadow: 4px 4px 0 var(--night);
  padding: 1.2rem 1.4rem 1.2rem 4rem;
  margin-bottom: 1.1rem;
  position: relative; counter-increment: step;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 1.15rem; top: 1.1rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--coral); color: var(--cream);
  border: 2px solid var(--night);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.95rem;
}
.steps h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 0.2rem; }
.steps p { font-size: 0.92rem; }

/* tables */
.table-shell {
  border: 2px solid var(--night); border-radius: 18px;
  box-shadow: 4px 4px 0 var(--night);
  overflow: hidden; background: var(--white);
}
table.data { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
table.data th {
  background: var(--night); color: var(--cream);
  text-align: left; padding: 0.8rem 1.1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
}
table.data td { padding: 0.85rem 1.1rem; border-top: 2px solid rgba(20, 35, 28, 0.12); vertical-align: top; }
table.data tr:nth-child(even) td { background: var(--cream); }
table.data .note { font-size: 0.8rem; color: var(--green); font-weight: 600; }

/* callout */
.callout {
  background: var(--sun);
  border: 2px solid var(--night); border-radius: 18px;
  box-shadow: 4px 4px 0 var(--night);
  padding: 1.2rem 1.4rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  max-width: 760px;
}
.callout strong { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; }
.callout a { color: var(--night); font-weight: 700; }

/* services trio (home) */
.services { background: var(--night); border-top: 2px solid var(--night); }
.services-inner {
  max-width: 1040px; margin: 0 auto; padding: 3rem 1.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem;
}
.svc {
  background: var(--cream);
  border: 2px solid var(--night); border-radius: 20px;
  box-shadow: 4px 4px 0 rgba(250, 244, 232, 0.35);
  padding: 1.4rem 1.5rem;
}
.svc .dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--night); display: inline-block; margin-bottom: 0.7rem; }
.svc:nth-child(1) .dot { background: var(--coral); }
.svc:nth-child(2) .dot { background: var(--sun); }
.svc:nth-child(3) .dot { background: var(--green); }
.svc h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 0.35rem; }
.svc p { font-size: 0.9rem; margin-bottom: 0.7rem; }
.svc a { font-weight: 700; font-size: 0.88rem; color: var(--night); }

/* alert ribbon */
.alert {
  background: var(--sun);
  border-bottom: 2px solid var(--night);
  font-size: 0.88rem; font-weight: 600;
  padding: 0.55rem 1.5rem;
  text-align: center;
}
.alert strong { font-weight: 800; }

/* ---------- footer ---------- */
footer.site {
  background: var(--night); color: var(--cream);
  border-top: 2px solid var(--night);
  padding: 2.5rem 1.5rem 1.75rem;
  text-align: center;
}
footer.site .big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--cream);
}
footer.site .big span { color: var(--coral); }
footer.site .credit { font-size: 0.78rem; color: rgba(250, 244, 232, 0.65); margin-top: 0.9rem; }
