/* PawZ — relaunch landing. Black canvas, orange accent, bold display type. */

:root {
  --ink: #0b0b0d;
  --ink-2: #141418;
  --surface: #17171c;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f4f2;
  --text-dim: #a4a1a8;
  --text-faint: #77747b;
  --brand: #ff6a13;
  --brand-hi: #ff8236;
  --brand-deep: #e2560a;
  --focus: #ffb27a;
  --maxw: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 16px;
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}

a { color: var(--brand-hi); text-decoration: none; }
a:hover { color: var(--brand); }

p { margin: 0 0 1rem; }

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

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: var(--ink);
  padding: 0.6rem 1rem;
  font-weight: 700;
  z-index: 100;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 13, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}
.brand:hover { color: var(--text); }
.brand .chip {
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--brand);
  box-shadow: 0 6px 20px rgba(255, 106, 19, 0.35);
}
.brand .chip svg { width: 1.25rem; height: 1.25rem; }
.header-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  flex-wrap: wrap;
}
.header-nav a { color: var(--text-dim); }
.header-nav a:hover { color: var(--text); }
.header-nav a[aria-current="page"] { color: var(--text); }
.nav-cta { color: var(--brand-hi); font-weight: 600; }
.nav-cta:hover { color: var(--brand); }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(3rem, 9vw, 6.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -12%;
  right: -10%;
  width: min(60vw, 640px);
  height: min(60vw, 640px);
  background: radial-gradient(circle, rgba(255, 106, 19, 0.20), rgba(255, 106, 19, 0) 62%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  border: 1px solid var(--line-strong);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.status .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(255, 106, 19, 0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 106, 19, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 106, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 106, 19, 0); }
}

.hero h1 {
  font-size: clamp(2.9rem, 9vw, 6.25rem);
  max-width: 15ch;
}
.hero h1 .accent { color: var(--brand); }
.hero .lede {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-dim);
  max-width: 54ch;
}

/* ---------- Signup ---------- */
.signup {
  margin-top: 2.25rem;
  max-width: 34rem;
}
.field-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.field-row input[type="email"] {
  flex: 1 1 15rem;
  min-width: 0;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  border-radius: 12px;
  padding: 0.95rem 1.05rem;
  font: inherit;
}
.field-row input::placeholder { color: var(--text-faint); }
.field-row input:focus-visible { border-color: var(--brand); outline-offset: 1px; }

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.95rem 1.5rem;
  background: var(--brand);
  color: var(--ink);
  transition: transform 0.08s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--brand-hi); color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.6; cursor: progress; }

.form-note {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-faint);
}
.form-msg {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  min-height: 1.2rem;
}
.form-msg[data-state="ok"] { color: #7bd88f; }
.form-msg[data-state="err"] { color: #ff8a7a; }

/* ---------- Scrolling image band ---------- */
.marquee {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-block: 0.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scroll-x 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.shot {
  position: relative;
  flex: none;
  width: clamp(280px, 42vw, 520px);
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  background: rgba(11, 11, 13, 0.72);
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* ---------- Content sections ---------- */
.section {
  padding-block: clamp(3rem, 8vw, 5.5rem);
  border-top: 1px solid var(--line);
}
.section h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  max-width: 18ch;
}
.section .intro {
  margin-top: 1rem;
  color: var(--text-dim);
  max-width: 58ch;
}

.cards {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.card .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  color: var(--brand);
  font-size: 1.1rem;
  border: 1px solid var(--brand);
  border-radius: 8px;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-dim); margin: 0; font-size: 0.97rem; }

/* ---------- Contact page ---------- */
.page-head { padding-top: clamp(2.5rem, 7vw, 4.5rem); padding-bottom: 0.5rem; }
.page-head h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
.page-head .lede { margin-top: 1rem; color: var(--text-dim); max-width: 52ch; }

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.form-grid { display: grid; gap: 1rem; }
label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.form-grid input, .form-grid textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
}
.form-grid textarea { min-height: 9rem; resize: vertical; }
.form-grid input:focus-visible, .form-grid textarea:focus-visible { border-color: var(--brand); outline-offset: 1px; }

.detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.5rem;
}
.detail h2 { font-size: 1.15rem; margin-bottom: 1rem; }
.detail dl { margin: 0; display: grid; gap: 1rem; }
.detail dt { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 0.15rem; }
.detail dd { margin: 0; }
.detail a { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-dim);
  font-size: 0.92rem;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer .foot-brand { max-width: 24rem; }
.site-footer .foot-brand p { margin-top: 0.75rem; color: var(--text-faint); }
.foot-links { display: grid; gap: 0.5rem; }
.foot-links a { color: var(--text-dim); }
.foot-links a:hover { color: var(--text); }
.legal { width: 100%; border-top: 1px solid var(--line); padding-top: 1.25rem; color: var(--text-faint); font-size: 0.82rem; }

/* ---------- Motion / reduced ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: none; }
  .status .dot { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Sister store (PetTags Online) ---------- */
.shop { border-top: 1px solid var(--line); }
.shop-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: center;
  background: #f7f3ec;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: clamp(1.6rem, 4vw, 3.25rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}
@media (max-width: 900px) {
  .shop-card { grid-template-columns: 1fr; }
}
.shop-logo { display: inline-block; }
.shop-logo img { width: clamp(190px, 42vw, 250px); height: auto; }
.shop-copy .eyebrow {
  margin: 1.35rem 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.shop-copy h2 {
  color: #17130f;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  max-width: 17ch;
}
.shop-copy p { color: #4a443d; margin-top: 1rem; max-width: 46ch; }
.shop-copy p strong { color: #17130f; }
.btn-lg {
  margin-top: 0.75rem;
  padding: 1.05rem 1.75rem;
  font-size: 1.02rem;
  white-space: normal;
  box-shadow: 0 12px 28px rgba(255, 106, 19, 0.32);
}
.shop-trust { font-size: 0.85rem; color: #8a8178; margin-top: 1.15rem; }

.shop-visual { position: relative; }
.shop-shot-main {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.shop-shot-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-shot-inset {
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  width: 43%;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}
.shop-shot-inset img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .shop-shot-main { aspect-ratio: 3 / 2; }
  .shop-shot-inset { position: static; width: 60%; margin: 1rem auto 0; }
}
