/* ==========================================================================
   PAWRS.com — acquisition page
   Palette: warm cream #f7f4eb, forest green #1a531c, charcoal #333333,
            sand #d0b49f  (drawn from the brand board)
   Type: Outfit (all weights)
   ========================================================================== */

:root {
  --cream: #f7f4eb;
  --cream-deep: #efeadb;
  --green: #1a531c;
  --green-deep: #123d15;
  --sand: #d0b49f;
  --charcoal: #333333;
  --ink: #2b2b28;
  --ink-dim: #6f6d64;
  --line: rgba(51, 51, 51, 0.14);
  --radius: 14px;
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: min(1100px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-weight: 800; line-height: 1.12; letter-spacing: -0.015em; color: var(--charcoal); }

a { color: var(--green); text-decoration: none; }

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

.eyebrow {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1rem;
}

.fine { font-size: 0.85rem; color: var(--ink-dim); }

/* ------------------------------------------------------------- buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  cursor: pointer;
}
.btn--green { background: var(--green); color: var(--cream); }
.btn--green:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn--outline { border-color: var(--charcoal); color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--cream); }
.btn--sm { padding: 0.55rem 1.35rem; font-size: 0.74rem; }
.btn--full { width: 100%; }

/* ------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 235, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(51, 51, 51, 0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.05rem 0; }
.wordmark { font-weight: 800; font-size: 1.35rem; letter-spacing: 0.02em; color: var(--charcoal); }
.wordmark span { color: var(--green); font-weight: 600; }
.header-nav { display: flex; align-items: center; gap: 1rem; }
.badge {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); border: 1.5px solid var(--green); border-radius: 999px; padding: 0.38rem 0.95rem;
}

/* ------------------------------------------------------------- hero */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 50% at 50% 0%, rgba(26, 83, 28, 0.07), transparent 70%),
    var(--cream);
  overflow: hidden;
}
.hero-inner { max-width: 46rem; margin-inline: auto; }
.hero h1 { font-size: clamp(3.6rem, 9vw, 6rem); }
.hero h1 .tld { color: var(--green); font-weight: 600; }
.lede { margin: 1.5rem auto 2.4rem; font-size: 1.16rem; color: var(--ink-dim); max-width: 36rem; }
.lede strong { color: var(--green); font-weight: 600; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 1.7rem; font-size: 0.82rem; color: var(--ink-dim); letter-spacing: 0.05em; }
.paw-track {
  position: absolute; bottom: -1.2rem; right: 6%;
  font-size: 7rem; opacity: 0.07; transform: rotate(-18deg);
  user-select: none; pointer-events: none;
}

/* ------------------------------------------------------------- vision */
.vision { padding: 5.5rem 0; background: #fff; border-block: 1px solid var(--line); }
.section-head { max-width: 44rem; margin-bottom: 2.8rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.section-sub { margin-top: 1rem; color: var(--ink-dim); }

.board {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(51, 51, 51, 0.14);
  border: 1px solid var(--line);
  background: var(--cream);
}
.board img { width: 100%; }
.board figcaption { padding: 1rem 1.4rem; font-size: 0.82rem; color: var(--ink-dim); border-top: 1px solid var(--line); }

/* ------------------------------------------------------------- why */
.why { padding: 6rem 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2.6rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(51, 51, 51, 0.10); }
.card-ico {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(26, 83, 28, 0.1); color: var(--green);
  font-size: 1.1rem; margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.12rem; margin-bottom: 0.55rem; }
.card p { font-size: 0.92rem; color: var(--ink-dim); }

.chip-list { display: flex; flex-wrap: wrap; gap: 0.7rem; list-style: none; justify-content: center; }
.chip-list li {
  padding: 0.65rem 1.35rem; border-radius: 999px;
  background: var(--cream-deep); border: 1px solid var(--line);
  font-size: 0.88rem; font-weight: 500; color: var(--charcoal);
}

/* ------------------------------------------------------------- process */
.process { padding: 6rem 0; background: var(--green); color: var(--cream); }
.process .eyebrow { color: var(--sand); }
.process h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 1.2rem; }
.process-copy p { color: rgba(247, 244, 235, 0.82); margin-bottom: 1rem; }
.process .fine { color: rgba(247, 244, 235, 0.6); }
.process-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.steps { list-style: none; display: grid; gap: 1rem; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.35rem 1.5rem;
  background: rgba(247, 244, 235, 0.07);
  border: 1px solid rgba(247, 244, 235, 0.16);
  border-radius: var(--radius);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-weight: 800; font-size: 1.15rem; color: var(--sand);
  line-height: 1.5;
}
.steps h3 { color: #fff; font-size: 1.02rem; font-weight: 600; }
.steps p { font-size: 0.88rem; color: rgba(247, 244, 235, 0.75); }

/* ------------------------------------------------------------- offer */
.offer { padding: 6.5rem 0; }
.offer-inner { max-width: 44rem; margin-inline: auto; }
.offer-form-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: 0 20px 50px rgba(51, 51, 51, 0.08);
}

.field { margin-bottom: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label {
  display: block; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1.05rem;
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px;
  color: var(--ink); font-family: var(--font); font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field textarea { resize: vertical; }
.form-fine { margin-top: 1rem; font-size: 0.78rem; color: var(--ink-dim); text-align: center; }

.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form-status { padding: 1rem 1.2rem; margin-bottom: 1.4rem; font-size: 0.92rem; border-radius: 10px; border: 1.5px solid; }
.form-status[hidden] { display: none; }
.form-status--ok { border-color: rgba(26, 83, 28, 0.4); color: var(--green-deep); background: rgba(26, 83, 28, 0.08); }
.form-status--err { border-color: rgba(170, 60, 50, 0.4); color: #8c2f26; background: rgba(170, 60, 50, 0.07); }

/* ------------------------------------------------------------- footer */
.site-footer { border-top: 1px solid var(--line); padding: 2.6rem 0; background: var(--cream-deep); }
.footer-inner p { font-size: 0.9rem; color: var(--ink-dim); }
.footer-inner .fine { margin-top: 0.5rem; font-size: 0.78rem; }

/* ------------------------------------------------------------- motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------- responsive */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 2.6rem; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .offer-form-panel { padding: 1.6rem; }
  .hero { padding: 4.5rem 0 4rem; }
}

/* very small screens: the Make Offer button carries the header */
@media (max-width: 480px) {
  .badge { display: none; }
}
