/* ==========================================================================
   Fur Manager marketing site
   --------------------------------------------------------------------------
   Same palette as the app: deep slate and warm amber on a warm stone neutral.
   A groomer who visits the site and then sees the product should recognise it.

   Deliberately restrained. The pitch is "no hidden fees, nothing to work out",
   and a site covered in gradients and badges argues against that.
   ========================================================================== */

:root {
  --ink: #253340;
  --ink-2: #3a4a5c;
  --muted: #6b7785;
  --line: #e2e5e9;
  --bg: #faf9f7;
  --surface: #ffffff;
  --accent: #e0a33c;
  --ok: #1f6b3a;
  --max: 62rem;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5rem; }
h1 { font-size: clamp(2rem, 5vw, 2.9rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); margin-top: 3rem; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; margin-top: 1.75rem; }
p { margin: 0 0 1rem; }
a { color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 44rem; }
.muted { color: var(--muted); }
.small { font-size: .92rem; }

/* Header ------------------------------------------------------------------ */
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .9rem; padding-bottom: .9rem; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; font-weight: 600; }
.brand img { width: 30px; height: 30px; border-radius: 7px; display: block; }
.site-nav a { margin-left: 1.1rem; text-decoration: none; font-size: .95rem; color: var(--ink-2); }
.site-nav a:hover { color: var(--accent); }

/* Sections ---------------------------------------------------------------- */
.hero { padding: 4rem 0 2rem; }
.hero p.lead { font-size: 1.2rem; color: var(--ink-2); max-width: 36rem; }
section { padding: 1rem 0 2.5rem; }
.band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.btn {
  display: inline-block; background: var(--ink); color: #fff;
  text-decoration: none; border: 0; border-radius: 10px;
  padding: .9rem 1.6rem; font-size: 1.02rem; cursor: pointer;
}
.btn:hover { background: #17242f; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }

.cards { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1.5rem 0; }
@media (min-width: 42rem) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 60rem) { .cards.three { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem 1.35rem; }
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

ul.plain { padding-left: 1.15rem; }
ul.plain li { margin-bottom: .45rem; }

ul.ticks { list-style: none; padding: 0; }
ul.ticks li { padding-left: 1.6rem; position: relative; margin-bottom: .5rem; }
ul.ticks li::before {
  content: "\2713"; position: absolute; left: 0; color: var(--ok); font-weight: 700;
}

.note {
  border-left: 3px solid var(--accent); background: var(--surface);
  padding: 1rem 1.2rem; margin: 1.75rem 0; border-radius: 0 8px 8px 0;
}

/* Price ------------------------------------------------------------------- */
.price { display: flex; align-items: baseline; gap: .4rem; margin: .5rem 0 1rem; }
.price .amount { font-size: 3.2rem; font-weight: 650; letter-spacing: -0.03em; }
.price .per { color: var(--muted); }

/* A screenshot that does not exist yet. Deliberately obvious. */
.shot {
  border: 2px dashed var(--line); border-radius: 12px; background: var(--surface);
  padding: 2.5rem 1.25rem; text-align: center; color: var(--muted);
  font-size: .9rem; margin: 1rem 0;
}
.shot strong { display: block; color: var(--ink-2); margin-bottom: .25rem; }

/* Form -------------------------------------------------------------------- */
form.contact { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 1.35rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .9rem; margin-bottom: .3rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .75rem .85rem; font: inherit; font-size: 1rem;
  border: 1px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink);
}
.field textarea { min-height: 7rem; resize: vertical; }
.hp { position: absolute; left: -9999px; }
#form-status { margin-top: .8rem; font-size: .95rem; }

.site-footer {
  border-top: 1px solid var(--line); background: var(--surface);
  margin-top: 3rem; padding: 2rem 0; font-size: .92rem; color: var(--muted);
}
.site-footer .row { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
.site-footer a { color: var(--muted); }
