/* ===========================================================
   Moto Mutts — modern responsive theme
   MX number-plate dog tags. Red / black / white racing brand.
   =========================================================== */

:root {
  --red:        #d6131b;
  --red-dark:   #a50e15;
  --ink:        #15171a;
  --ink-soft:   #2a2d33;
  --yellow:     #ffce00;
  --muted:      #5d636b;
  --line:       #e4e6e9;
  --bg:         #f4f5f7;
  --card:       #ffffff;
  --shadow:     0 6px 24px rgba(20, 22, 26, .10);
  --shadow-sm:  0 2px 10px rgba(20, 22, 26, .08);
  --radius:     14px;
  --maxw:       1160px;
  --header-h:   108px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.2rem; letter-spacing: .3px; }

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.script { font-family: "Caveat", cursive; text-transform: none; letter-spacing: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 16px rgba(214,19,27,.35); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.nav {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 20px; min-height: var(--header-h);
}
.brand { display: flex; align-items: center; }
.brand img { height: 84px; width: auto; }
.brand:hover { text-decoration: none; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: "Oswald", sans-serif;
  font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
  font-size: .98rem; color: var(--ink);
  padding: 10px 14px; border-radius: 8px; display: block;
}
.nav-links a:hover { background: var(--bg); text-decoration: none; color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: ""; display: block; height: 3px; background: var(--red);
  border-radius: 3px; margin-top: 4px;
}
.nav-links .cta a { background: var(--red); color: #fff; }
.nav-links .cta a:hover { background: var(--red-dark); }

.nav-toggle { display: none; }
.nav-burger {
  display: none; cursor: pointer; font-size: 1.6rem; line-height: 1;
  padding: 8px 12px; border-radius: 8px; color: var(--ink); user-select: none;
}
.nav-burger:hover { background: var(--bg); }

@media (max-width: 820px) {
  .nav-burger { display: block; }
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow); padding: 8px;
    max-height: 0; overflow: hidden; transform: scaleY(.98);
    opacity: 0; pointer-events: none; transition: all .2s ease;
  }
  .nav-toggle:checked ~ .nav-links {
    max-height: 480px; opacity: 1; pointer-events: auto; transform: none;
    padding: 8px;
  }
  .nav-links a { padding: 14px; border-radius: 8px; }
  .nav-links a.active::after { display: none; }
  .nav-links .cta a { text-align: center; margin-top: 4px; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 60%, #3a0608 100%);
  color: #fff; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 40px;
  padding: 60px 20px;
}
.hero-copy .kicker {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 3px;
  color: var(--yellow); font-weight: 600; font-size: .95rem; margin-bottom: 10px;
}
.hero-copy h1 { color: #fff; }
.hero-copy h1 .accent { color: var(--red); }
.hero-tag { font-size: clamp(1.5rem, 3.2vw, 2.1rem); color: #fff; opacity: .95; margin: 4px 0 18px; }
.hero-copy p.lead { color: #d4d6da; font-size: 1.08rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.45); transform: rotate(1.2deg);
  border: 5px solid #fff;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.price-badge {
  position: absolute; top: 14px; right: -6px; transform: rotate(6deg);
  background: var(--red); color: #fff; font-family: "Oswald", sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 10px 18px; border-radius: 8px; box-shadow: var(--shadow);
  font-size: 1.05rem; line-height: 1.1; text-align: center;
}
.price-badge small { display: block; font-size: .62rem; letter-spacing: 2px; opacity: .9; }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px; text-align: center; }
  .hero-copy p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-media { transform: none; max-width: 460px; margin: 0 auto; }
}

/* ---------- Inner page hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 70%, #3a0608 100%);
  color: #fff; text-align: center; padding: 56px 20px;
  border-bottom: 4px solid var(--red);
}
.page-hero .eyebrow {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 3px;
  color: var(--yellow); font-weight: 600; font-size: .9rem; display: block; margin-bottom: 10px;
}
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { color: #c9ccd2; max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section.alt { background: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-head .eyebrow {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 3px;
  color: var(--red); font-weight: 600; font-size: .9rem; display: block; margin-bottom: 8px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* Feature row (image + text) */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.feature.reverse .feature-media { order: 2; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.feature-body h2 { margin-bottom: .4em; }
.feature-body p { color: var(--muted); }
.feature-list { list-style: none; padding: 0; margin: 18px 0 0; }
.feature-list li {
  padding: 7px 0; color: var(--ink-soft); font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 0; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 26px; }
  .feature.reverse .feature-media { order: 0; }
}

/* Steps / how it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--card); border-radius: var(--radius); padding: 26px 22px;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--red);
}
.step .num {
  font-family: "Oswald", sans-serif; font-weight: 700; font-size: 1.4rem;
  color: #fff; background: var(--ink); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { margin-bottom: .3em; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure {
  margin: 0; border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); position: relative;
}
.gallery figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .35s ease;
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  color: #fff; font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: 1px; font-size: .9rem; padding: 26px 14px 12px;
}
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }

/* Strip of small framed gallery thumbs */
.thumb-strip {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.thumb-strip img {
  width: 170px; border-radius: 10px; box-shadow: var(--shadow-sm);
  border: 3px solid #fff;
}

/* Video */
.video-wrap {
  position: relative; padding-top: 56.25%; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); max-width: 860px; margin: 0 auto;
  background: #000;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; text-align: center; padding: 56px 20px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.1rem; max-width: 600px; margin: 0 auto 22px; }

/* Info cards (pricing / contact) */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.info-card {
  background: var(--card); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); text-align: center; border-top: 4px solid var(--red);
}
.info-card .big { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 2.6rem; color: var(--red); line-height: 1; }
.info-card .label { color: var(--muted); text-transform: uppercase; letter-spacing: 2px; font-size: .85rem; font-family: "Oswald", sans-serif; }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Shop / PayPal order forms ---------- */
.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 720px) { .order-grid { grid-template-columns: 1fr; } }

.order-form {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 26px; border-top: 4px solid var(--ink);
}
.order-form.featured { border-top-color: var(--red); }
.order-form h3 { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.order-form h3 .price { color: var(--red); font-size: 1.5rem; }
.order-form .ship { color: var(--muted); font-size: .9rem; margin: -6px 0 16px; }
.field { margin-bottom: 14px; }
.field label {
  display: block; font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: .5px; font-size: .85rem; color: var(--ink); margin-bottom: 6px;
}
.field select, .field input, .field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px;
  font-size: 1rem; background: #fff; color: var(--ink); font-family: inherit;
}
.field select:focus, .field input:focus, .field textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
.field textarea { resize: vertical; min-height: 64px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.order-form .paypal-btn { margin-top: 8px; }
.order-form .paypal-btn input[type="image"] { display: inline-block; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 32px 24px; text-align: center; border-top: 4px solid var(--red);
}
.contact-card .ic { font-size: 2rem; margin-bottom: 10px; }
.contact-card h3 { margin-bottom: .35em; }
.contact-card a { font-size: 1.1rem; font-weight: 600; word-break: break-word; }
.contact-card p { color: var(--muted); margin: 0; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c4c8cf; padding: 50px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; align-items: start;
}
.site-footer h4 {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; font-size: 1rem; margin: 0 0 14px;
}
.site-footer a { color: #c4c8cf; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-logo {
  background: #fff; border-radius: 12px; padding: 14px 20px; display: inline-block; margin-bottom: 14px;
}
.footer-logo img { height: 82px; }
.footer-brand p { color: #9aa0a8; max-width: 34ch; font-size: .95rem; }
.fb-link {
  display: inline-flex; align-items: center; gap: 8px; background: #1877f2; color: #fff;
  padding: 9px 16px; border-radius: 8px; font-family: "Oswald", sans-serif; letter-spacing: .5px;
}
.fb-link:hover { background: #0f5fd0; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #2c2f35; margin-top: 34px; padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  color: #8a9098; font-size: .88rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Zelle order ---------- */
.zelle-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 26px; align-items: start; }
@media (max-width: 820px) { .zelle-grid { grid-template-columns: 1fr; } }

.zelle-pay {
  background: linear-gradient(160deg, #6d1ad6 0%, #4a12a6 100%);
  color: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
}
.zelle-pay h3 { color: #fff; }
.zelle-pay p { color: rgba(255,255,255,.92); }
.zelle-pay a { color: #fff; text-decoration: underline; }
.zelle-amount { font-family: "Oswald", sans-serif; font-weight: 700; font-size: 2.2rem; line-height: 1; margin: 6px 0; }
.zelle-amount span { font-size: 1rem; font-weight: 500; opacity: .85; }
.zelle-amount.sm { font-size: 1.3rem; margin-top: 0; }
.zelle-handle {
  background: rgba(255,255,255,.16); border: 1px dashed rgba(255,255,255,.55);
  border-radius: 10px; padding: 12px 14px; font-weight: 700; font-size: 1.05rem;
  word-break: break-word; text-align: center; margin: 12px 0 8px;
}
.zelle-payee { text-align: center; margin: 0 0 16px; font-size: .95rem; color: rgba(255,255,255,.88); }
.zelle-payee strong { color: #fff; }
.zelle-steps { margin: 0 0 14px; padding-left: 20px; }
.zelle-steps li { margin-bottom: 8px; color: rgba(255,255,255,.95); }
.zelle-note { font-size: .9rem; }
.zelle-qr-wrap { text-align: center; margin: 4px 0 16px; }
.zelle-qr { display: block; margin: 0 auto; background: #fff; padding: 10px; border-radius: 12px; }
.zelle-qr-wrap span {
  display: block; margin-top: 8px; font-family: "Oswald", sans-serif;
  text-transform: uppercase; letter-spacing: 1.5px; font-size: .8rem; color: rgba(255,255,255,.9);
}

.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-weight: 500; }
.form-status.ok  { background: #e7f7ec; color: #15703b; border: 1px solid #b6e3c5; }
.form-status.err { background: #fdeaea; color: #a3232b; border: 1px solid #f3c2c5; }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.12rem; }
