/* ============================================================
   D'Amelio Dog Pack — dameliodogpack.com
   Tokens (from the Claude Design handoff, high-fidelity):
   cream #F4EEE3 · ink #191410 · orange #E4572E (hover #C43F1B)
   body muted #4A443A · muted gray #7A7264 · muted-on-dark #A79E8F
   dark UI: input #241E17, divider #33291F, input border #4A443A
   Baloo 2 display / Archivo body · pills 999px · cells 18px · cards 20px
   borders 2px ink · hard shadow 6px 6px 0 orange · sections 100px 72px
   ============================================================ */

:root {
  --cream: #F4EEE3;
  --ink: #191410;
  --orange: #E4572E;
  --orange-hover: #C43F1B;
  --body-muted: #4A443A;
  --muted: #7A7264;
  --muted-dark: #A79E8F;
  --input-bg: #241E17;
  --divider: #33291F;
  --input-border: #4A443A;
  --display: 'Baloo 2', sans-serif;
  --body: 'Archivo', sans-serif;
  --pad-x: clamp(20px, 5vw, 72px);
  --pad-y: clamp(64px, 9vw, 100px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--cream); font-family: var(--body); color: var(--ink); }
img { max-width: 100%; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--orange); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  padding: 16px 36px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.btn--orange { background: var(--orange); color: var(--cream); font-size: 17px; padding: 10px 26px; }
.btn--orange:hover { background: var(--orange-hover); color: var(--cream); }
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--orange); color: var(--cream); }
.btn--outline { border: 2px solid var(--ink); padding: 14px 36px; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }

/* ---- Announcement bar ---- */
.announce {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 20px;
}

/* ---- Nav ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(20px, 4vw, 48px);
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand:hover { color: var(--ink); }
.nav__nose { width: 44px; height: auto; }
.nav__wordmark { font-family: var(--display); font-size: 24px; font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 36px; font-size: 16px; font-weight: 700; }

/* ---- Hero ---- */
.hero { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; background: var(--cream); overflow: hidden; }
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: clamp(48px, 7vw, 90px) clamp(24px, 4vw, 60px) clamp(48px, 7vw, 90px) var(--pad-x);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero__eyebrow img { width: 26px; height: auto; }
.hero__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 84px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.hero__sub { margin: 0; font-size: 21px; line-height: 1.55; color: var(--body-muted); max-width: 520px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__photo { position: relative; min-height: 640px; overflow: hidden; }
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Marquee ---- */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee {
  background: var(--orange);
  color: var(--cream);
  overflow: hidden;
  padding: 14px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee__track { display: flex; gap: 0; white-space: nowrap; animation: marquee 22s linear infinite; width: max-content; }
.marquee__track span { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: .06em; }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---- Sections ---- */
.section { display: flex; flex-direction: column; gap: 48px; padding: var(--pad-y) var(--pad-x); background: var(--cream); }
.section--dark { background: var(--ink); color: var(--cream); }
.section__head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.h2 { margin: 0; font-family: var(--display); font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; letter-spacing: -.02em; }
.kicker { font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.kicker--dark { color: var(--muted-dark); }

/* ---- Meet the pack ---- */
.pack__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px; }
.dogcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 28px 18px;
  min-width: 0;
  transition: transform .15s ease, box-shadow .15s ease;
}
.dogcard:hover { transform: translateY(-6px); box-shadow: 6px 6px 0 var(--orange); }
.dogcard__photo { width: 100%; max-width: 150px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; display: block; }
.dogcard__name { font-family: var(--display); font-size: 28px; font-weight: 800; }
.dogcard__bio { font-size: 15px; color: var(--muted); line-height: 1.45; }

/* ---- Camera roll ---- */
.roll {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: calc((100vw - 2*var(--pad-x) - 60px) / 4);
  grid-auto-flow: dense;
  gap: 20px;
}
.roll__cell { border-radius: 18px; overflow: hidden; }
.roll__cell--tall { grid-row: span 2; }
.roll__cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Watch ---- */
.watch__links { display: flex; gap: 28px; font-size: 16px; font-weight: 700; flex-wrap: wrap; }
.watch__links a { display: flex; align-items: center; gap: 8px; padding: 10px 0; margin: -10px 0; }
.watch__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.watch__grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 18px; border: 2px solid var(--ink); display: block; }

/* ---- Rescue ---- */
.rescue {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--orange);
  color: var(--cream);
  overflow: hidden;
}
.rescue__photo { position: relative; min-height: 520px; min-width: 0; overflow: hidden; }
.rescue__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.rescue__copy { display: flex; flex-direction: column; justify-content: center; gap: 24px; padding: clamp(48px, 7vw, 90px) var(--pad-x); }
.rescue__nose { width: 64px; height: auto; }
.rescue__title { margin: 0; font-family: var(--display); font-size: clamp(36px, 4vw, 52px); font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
.rescue__body { margin: 0; font-size: 20px; line-height: 1.6; max-width: 520px; }
.btn--rescue { align-self: flex-start; }
.btn--rescue:hover { background: var(--cream); color: var(--ink); }

/* ---- For brands ---- */
.brands__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.brandcard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 36px 32px;
}
.brandcard--dark { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.brandcard__title { font-family: var(--display); font-size: 26px; font-weight: 800; }
.brandcard__body { font-size: 16px; color: var(--muted); line-height: 1.5; }
.brandcard--dark .brandcard__body { color: var(--muted-dark); }
.brandcard__link { color: var(--orange); font-weight: 800; font-size: 17px; }
.brandcard__link:hover { color: var(--cream); }

/* ---- Footer ---- */
.footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--pad-x) 40px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 16px; }
.footer__col a { color: var(--cream); }
.footer__col a:hover { color: var(--orange); }
.footer__badge { width: 110px; height: auto; }
.footer__blurb { font-size: 15px; color: var(--muted-dark); line-height: 1.5; max-width: 280px; }
.footer__label { font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; color: var(--muted); }
.footer__form { display: flex; gap: 10px; }
.footer__hp { display: none; }
.footer__input {
  flex: 1;
  min-width: 0;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--cream);
  font-family: var(--body);
  font-size: 15px;
}
.footer__input::placeholder { color: var(--muted); }
.footer__input:focus { outline: none; border-color: var(--cream); }
.footer__btn { border: none; font-size: 16px; padding: 12px 26px; cursor: pointer; font-family: var(--display); font-weight: 800; }
.footer__formnote { font-size: 14px; color: var(--muted-dark); min-height: 1.2em; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--divider);
  padding-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--orange); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .nav__links { display: none; }
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__photo { min-height: 55vh; }
  .rescue { grid-template-columns: 1fr; }
  .rescue__photo { min-height: 45vh; }
  .roll { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: calc((100vw - 2*var(--pad-x) - 20px) / 2); }
  .watch__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .nav { flex-wrap: wrap; row-gap: 12px; }
  .nav__cta { order: 3; flex: 1 1 100%; text-align: center; }
  .nav__wordmark { font-size: 19px; }
  .nav__nose { width: 36px; }
  .hero__sub { font-size: 18px; }
  .pack__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .dogcard { padding: 20px 12px; }
  .dogcard__name { font-size: 22px; }
  .roll { gap: 12px; grid-auto-rows: calc((100vw - 2*var(--pad-x) - 12px) / 2); }
  .watch__grid { gap: 14px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---- Spot-light nomination page ---- */
.spothero { background: var(--orange); color: var(--cream); padding: clamp(56px, 8vw, 96px) var(--pad-x); border-bottom: 2px solid var(--ink); }
.spothero__nose { width: 56px; height: auto; margin-bottom: 18px; }
.spothero__title { margin: 0 0 18px; font-family: var(--display); font-size: clamp(44px, 6vw, 72px); font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.spothero__lead { margin: 0; font-size: 20px; line-height: 1.6; max-width: 640px; }
.spotform-wrap { background: var(--cream); padding: clamp(40px, 6vw, 72px) var(--pad-x); }
.spotform { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.spotcard { background: #FFFFFF; border: 2px solid var(--ink); border-radius: 20px; padding: 28px 28px 32px; margin: 0; }
.spotcard__title { font-family: var(--display); font-size: 24px; font-weight: 800; padding: 0 10px; }
.spotgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.spotfield { display: flex; flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 7px 5px; font-size: 15px; font-weight: 700; min-width: 0; }
.spotfield--wide { grid-column: 1 / -1; }
.spotfield input[type="text"], .spotfield input[type="email"], .spotfield input[type="tel"], .spotfield input[type="url"], .spotfield select, .spotfield textarea {
  font-family: var(--body); font-size: 15px; font-weight: 400; color: var(--ink);
  background: var(--cream); border: 1.5px solid #C9C1B2; border-radius: 12px; padding: 11px 14px; width: 100%;
}
.spotfield input:focus, .spotfield select:focus, .spotfield textarea:focus { outline: none; border-color: var(--ink); }
.spotfield textarea { resize: vertical; }
.spotfield input[type="file"] { font-size: 14px; font-weight: 400; padding: 10px 0; }
.spotlabel { display: block; }
.spothint { font-size: 13px; font-weight: 400; color: var(--muted); }
.req { color: var(--orange); }
.spotchecks { display: flex; flex-wrap: wrap; gap: 10px 22px; font-weight: 400; font-size: 15px; padding-top: 4px; }
.spotchecks label { display: flex; align-items: center; gap: 8px; }
.spotconsent { display: flex; gap: 12px; align-items: flex-start; font-weight: 400; font-size: 14px; line-height: 1.55; background: var(--cream); border-radius: 12px; padding: 14px 16px; }
.spotconsent input { margin-top: 3px; flex-shrink: 0; }
.spotsubmit { text-align: center; padding: 8px 0 24px; }
@media (max-width: 640px) { .spotgrid { grid-template-columns: 1fr; } }
.btn--rescue-ghost { border: 2px solid var(--cream); color: var(--cream); padding: 14px 36px; font-family: var(--display); font-weight: 800; font-size: 19px; border-radius: 999px; display: inline-block; }
.btn--rescue-ghost:hover { background: var(--cream); color: var(--ink); }
