@font-face {
  font-family: "Newyear Goo";
  src: url("https://res.cloudinary.com/daz8so5gl/raw/upload/v1767036106/Newyear_Goo_wmxkc3.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ================================
   THEME VARIABLES
================================ */
:root {
  --bg: #f16321;
  --bg2: #ff8a3d;
  --panel: rgba(18, 18, 18, 0.85);
  --text: #ffffff;
  --muted: #ffffff;
  --border: rgba(255, 255, 255, 0.28);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --brand: #ffffff;
  --brand2: #ffd6b8;
  --focus: 2px solid rgba(255, 255, 255, 0.75);
}



/* ================================
   BASE
================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Newyear Goo", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
  border-radius: 12px;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* ================================
   HEADER / NAV
================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f16321; /* solid comic-style nav */
  border-bottom: 3px solid rgba(0, 0, 0, 0.65);
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.55);
  backdrop-filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  height: 64px;
  position: relative;
}

.logo { display: flex; align-items: center; height: 100%; }

.logo img {
  height: 56px;
  width: auto;
  display: block;
  margin-top: -2px;
}

.brand-name {
  margin-left: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.6);
  border-radius: 14px;
  padding: 8px 14px;
  color: #fff;
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.55);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.nav-links a:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 7px 0 rgba(0, 0, 0, 0.85);
  background: rgba(255, 255, 255, 0.14);
}

.nav-links a:active {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.85);
}

.icon-btn {
  display: none;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  cursor: pointer;
}

/* ================================
   BUTTONS
================================ */
.btn {
  border: 2px solid rgba(0, 0, 0, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.55);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 7px 0 rgba(0, 0, 0, 0.85);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.85);
}

.btn.ghost { background: rgba(0, 0, 0, 0.25); }

/* ================================
   HERO
================================ */
.hero {
  /* your hero size stays the same */
  min-height: 74vh;
  padding: 68px 0 40px;

  position: relative;
  background-image: url("https://i.postimg.cc/Cx9RFFw9/Untitled-1.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;

  /* IMPORTANT: clip dog while it starts below */
  overflow: hidden;

  /* let next section overlay work */
  z-index: 1;
}

/* wider container ONLY inside hero */
.hero .container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.45fr;
  gap: 28px;

  /* IMPORTANT: stretch so dog can pin to hero bottom */
  align-items: stretch;
}

.hero-copy {
  width: 100%;
  max-width: none;
  margin: 0;

  padding: 24px 32px 20px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 24px;
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);

  /* ✅ smoother bouncy pop (replaces your old stiff one) */
  animation: heroCardPop 0.9s cubic-bezier(.2,.9,.25,1) forwards;
  animation-delay: 0.1s;
  transform-origin: center;
  will-change: transform;
}

.hero-copy * { text-align: center; }

.hero .hero-copy { margin-top: 20px; }

.hero-kicker { margin-bottom: 20px; }

h1 {
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 18px;
  text-shadow: 0 2px 0 #c24718, 0 4px 0 #a93c14, 0 6px 12px rgba(0, 0, 0, 0.35);
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
}

/* Character column */
.hero-art {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

/* Dog: same final resting spot as your current code */
.hero-dog {
  width: min(600px, 55vw);
  height: auto;
  filter: none;

  display: block;
  margin-top: auto;
  margin-bottom: -28px; /* your existing “lands here” offset */

  /* slide only (no fade) */
  animation: heroDogSlideUp 0.95s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: 0.25s;
  will-change: transform;
  transform-origin: bottom right;
}

/* start LOWER from “behind the next section”, end at SAME final spot */
@keyframes heroDogSlideUp {
  from { transform: translateY(420px); } /* increase to start lower */
  to   { transform: translateY(0); }
}

/* Make the section AFTER hero sit above it (covers the dog initially) */
.hero + .section,
.hero + .section.alt{
  position: relative;
  z-index: 5;
}

/* ✅ NEW: bouncy card pop keyframes (better than simple scale) */
@keyframes heroCardPop {
  0%   { transform: scale(0.86) translateY(10px); }
  55%  { transform: scale(1.05) translateY(-3px); }
  75%  { transform: scale(0.985) translateY(1px); }
  100% { transform: scale(1) translateY(0); }
}

/* ================================
   CONTRACT ADDRESS BONE
================================ */
.ca-box {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  text-align: center;
}

.ca-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ca-hint {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.75;
}

/* Clicky bone button */
.ca-bone {
  position: relative;
  width: 440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  transition: transform 0.1s ease;
}

.ca-bone svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(6px 7px 0 rgba(0, 0, 0, 0.75));
  transition: filter 0.1s ease;
}

.ca-bone:hover { transform: translate(-1px, -1px); }
.ca-bone:hover svg { filter: drop-shadow(8px 9px 0 rgba(0, 0, 0, 0.85)); }
.ca-bone:active { transform: translate(2px, 2px); }
.ca-bone:active svg { filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.85)); }

.bone-stroke {
  fill: none;
  stroke: rgba(0, 0, 0, 0.85);
  stroke-width: 4;
  stroke-linejoin: round;
}

.bone-fill { fill: #ffffff; }

.ca-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 56px;
  color: #000;

  font-family: "Newyear Goo", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-shadow: none;

  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ================================
   SECTIONS / CARDS
================================ */
.section { padding: 48px 0; }



h2 { font-size: 28px; margin: 0 0 10px; }
.muted { color: var(--muted); }

.grid-3 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 20px;
  padding: 18px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card h3 { margin: 0 0 8px; }

.card p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.split {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.mini-card {
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 20px;
  padding: 18px;
}

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
}

/* ================================
   FOOTER
================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.back-to-top {
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

/* ================================
   TOAST
================================ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
   z-index: 2147483646;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 820px) {
  .hero .container {
    width: min(1100px, calc(100% - 32px));
  }
  .ca-bone{
    width: 100%;
  }

  .hero-grid,
  .grid-3,
  .split {
    grid-template-columns: 1fr;
  }

  .icon-btn { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid rgba(0, 0, 0, 0.65);
    box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.55);
  }

  .nav-links.open { display: flex; }

  .hero-copy {
    margin: 0 auto;
    padding: 22px 22px 18px;
  }

  .hero-art {
    justify-content: center;
    margin-top: 22px;
  }

  .hero-dog {
    width: min(320px, 80vw);
    margin-bottom: -18px;
    animation: heroDogSlideUpMobile 0.85s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.2s;
    transform-origin: bottom center;
  }

  @keyframes heroDogSlideUpMobile {
    from { transform: translateY(260px); }
    to   { transform: translateY(0); }
  }
}

/* === micro micro hero adjust (slightly longer) === */
.hero{
  padding: 54px 0 28px !important; /* keep your exact padding */
}

.hero .hero-copy{
  margin-top: -10px !important;      /* keep your card position */
}

.hero-kicker{ margin-bottom: 14px !important; }
.hero h1{ margin-bottom: 12px !important; }
.hero .lead{ margin-bottom: 18px !important; }

.ca-box{
  margin-top: 16px !important;
  padding-top: 14px !important;
}
/* === FORCE hero card animation to actually be visible (paste at very bottom) === */
/* === CLEAN hero card animation (no bounce) === */
.hero-copy{
  opacity: 0;
  transform: scale(0.9) translateY(12px);
  transform-origin: center;
  will-change: transform, opacity;

  animation: heroCardIn 0.65s cubic-bezier(.25,.9,.25,1) forwards;
  animation-delay: 0.12s;
}

@keyframes heroCardIn{
  from {
    opacity: 0;
    transform: scale(0.9) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
/* ================================
   LORE SECTION
================================ */
.lore{
  min-height: 90vh;            /* 👈 makes it tall */
  padding: 120px 0 140px;      /* 👈 breathing room top & bottom */
  position: relative;
}

.lore > .container{
  position: relative;
  z-index: 2;
}
/* ================================
   LORE (image left, text right)
================================ */

.section.alt.lore{
  /* no dark filter */
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  /* make it taller */
  padding: 90px 0;
}

.lore .lore-grid{
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 44px;
  align-items: center;
}

.lore .lore-art{
  display: flex;
  justify-content: flex-start;
}

.lore .lore-art img{
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

.lore .lore-copy{
  max-width: 680px;
}

.lore .lore-copy p{
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.7;
}

.lore .lore-copy ul{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.lore .lore-copy li{
  font-size: 16px;
  line-height: 1.4;
}

/* Mobile: stack */
@media (max-width: 820px){
  .section.alt.lore{ padding: 60px 0; }

  .lore .lore-grid{
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .lore .lore-art{ justify-content: center; }
  .lore .lore-art img{ max-width: 360px; }
  .lore .lore-copy{ max-width: none; }
}
/* Lore heading sits above image + text */
.section.alt.lore h2{
  margin-bottom: 40px;   /* space between heading and content */
  text-align: left;
}

/* Keep heading centered on mobile */
@media (max-width: 820px){
  .section.alt.lore h2{
    text-align: center;
    margin-bottom: 28px;
  }
}
/* Lore title above the right text column */
.lore-title{
  margin: 0 0 18px;
  font-size: 32px;
  letter-spacing: 0.06em;
}

/* make sure lore copy spacing is clean */
.lore-copy p{
  margin: 0 0 14px;
  line-height: 1.65;
}

.lore-copy ul{
  margin: 14px 0 0;
  padding-left: 18px;
}
/* ================================
   PAW SCATTER – FINAL+ (MORE & STRONGER)
================================ */
.lore{
  position: relative;
  overflow: hidden;
}

.lore::after{
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png"),
    url("https://i.postimg.cc/Nfb4xGXZ/Dog-Paw-Print.png");

  background-repeat: no-repeat;

  background-size:
    120px,
    90px,
    150px,
    100px,
    130px,
    85px,
    110px,
    95px,
    140px,
    105px,
    88px,
    125px;

  background-position:
    5% 10%,
    82% 8%,
    48% 22%,
    20% 35%,
    75% 32%,
    10% 55%,
    55% 52%,
    30% 72%,
    88% 70%,
    15% 85%,
    60% 85%,
    42% 90%;

  opacity: 0.095; /* 👈 stronger but still classy */
  pointer-events: none;
  z-index: 0;
}

.lore > .container{
  position: relative;
  z-index: 2;
}
/* ================================
   HERO → LORE GRASS SPLITTER (SINGLE, BIG)
================================ */
.rope-divider{
  width: 100%;
  height: 220px;

  background-image: url("https://i.postimg.cc/635RqnjY/simple-grass-field-transparent-background.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;

  position: relative;

  margin-top: -220px; /* 👈 pulled UP */
  margin-bottom: 0;

  z-index: 9999;
  pointer-events: none;
}
/* === NAV MUST WIN === */
.header{
  position: sticky;
  top: 0;
  z-index: 2147483647 !important; /* max int */
  isolation: isolate;              /* prevents weird stacking leaks */
}
/* === GRASS MUST NEVER COVER NAV === */
/* if grass is an element */
.grass,
.hero-grass,
.section-splitter,
.splitter,
.rope,
.hero-splitter,
.hero-divider,
.hero-grass-img{
  position: absolute;
  z-index: 5 !important;  /* safely below header */
}

/* if grass is a pseudo-element on hero (MOST LIKELY) */
.hero::after,
.hero::before{
  z-index: 5 !important;  /* safely below header */
}

/* ensure hero itself can't sit above header in a weird stacking context */
.hero{
  position: relative;
  z-index: 1;
}
/* ================================
   LORE EXTRA IMAGE ROW
================================ */
.lore-extra-images{
  margin-top: 22px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lore-extra-images img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  display: block;
  border-radius: 18px;
    border: 3px solid #ffffff; /* 👈 white border */
  box-shadow: 6px 7px 0 rgba(0,0,0,0.45);
}

/* mobile: stack nicely */
@media (max-width: 820px){
  .lore-extra-images{
    grid-template-columns: 1fr;
  }

  .lore-extra-images img{
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 820px){
  .lore-extra-images img{
    aspect-ratio: auto;      /* let image decide height */
    height: auto;
    object-fit: contain;     /* 👈 NO CROPPING */
    background: rgba(0,0,0,0.15); /* fills empty space nicely */
    padding: 8px;            /* keeps white border clean */
  }
}

/* ================================
   IMAGE LIGHTBOX (DESKTOP ONLY)
================================ */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: flex-end;
padding-bottom: 25px;

  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;

  z-index: 999999;
}

.lightbox.open{
  opacity: 1;
  pointer-events: auto;
}

.lightbox img{
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  border-radius: 24px;
  border: 3px solid #fff;
  box-shadow: 10px 14px 0 rgba(0,0,0,0.6);
}

/* disable on mobile */
@media (max-width: 820px){
  .lightbox{ display: none; }
}
.ca-text{
  font-size: 12px;
  padding: 0 36px;
  letter-spacing: 0.03em;
}
/* === MOBILE FINAL OVERRIDES (copy from JSFiddle) === */
@media (max-width: 820px){

  /* make hero shorter on mobile */
  .hero{
    min-height: 0 !important;
    padding: 22px 0 0 !important;   /* trims from bottom */
  }

  /* bigger dog + pull it up */
  .hero-art{
    margin-top: -115px !important;
    align-items: flex-end !important;
  }

  .hero-dog{
    width: min(420px, 96vw) !important;
    margin-top: auto !important;
    margin-bottom: -6px !important;
    transform-origin: bottom center !important;
  }

  /* grass shorter but still looks chunky */
  .rope-divider{
    height: 110px !important;
    margin-top: -110px !important;

    background-size: 150% auto !important;
    background-position: center bottom !important;
  }
}
/* === MOBILE: FORCE HERO CARD TO BE SHORT === */
@media (max-width: 820px){

  /* shrink the whole hero section */
  .hero{
    padding: 12px 0 0 !important;
    min-height: 0 !important;
  }

  /* shrink the black card */
  .hero-copy{
    padding: 10px 12px 10px !important;
    margin-top: 0 !important;
    border-radius: 16px !important;
  }

  /* kill extra spacing */
  .hero-kicker{
    font-size: 10px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }

  h1{
    font-size: 36px !important;
    margin-bottom: 6px !important;
    line-height: 1 !important;
  }

  .lead{
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }

  .ca-box{
    margin-top: 8px !important;
    padding-top: 8px !important;
  }

  .ca-label{
    margin-bottom: 6px !important;
    font-size: 11px !important;
  }
}
/* === MOBILE: MOVE THE WHOLE HERO DOWN A BIT === */
@media (max-width: 820px){

  /* push everything in the hero down */
  .hero{
    padding-top: 26px !important;   /* increase to move whole hero down */
    padding-bottom: 18px !important;
  }

  /* stop pulling the dog section up so aggressively */
  .hero-art{
    margin-top: -60px !important;   /* was -115px (too high) */
  }

  /* keep dog landing nice */
  .hero-dog{
    margin-bottom: -10px !important;
  }

  /* keep grass aligned with the new hero position */
  .rope-divider{
    margin-top: -110px !important;  /* keep matched to its height */
  }
}
/* === MOBILE: FINE TUNE HERO ALIGNMENT === */
@media (max-width: 820px){

  /* A) Nudge hero text card slightly left */
  .hero-copy{
    transform: translateX(-10px) !important;  /* try -8px to -16px if needed */
  }

  /* B) Pull the dog + grass up (NOT the text) */
  .hero-art{
    margin-top: -85px !important;   /* lifts dog up */
  }

  .hero-dog{
    margin-bottom: -2px !important; /* brings dog closer to grass */
  }

  .rope-divider{
    height: 110px !important;
    margin-top: -125px !important;  /* pulls grass up into hero */
    background-size: 150% auto !important;
  }
}
/* === MOBILE: TRIM HERO BOTTOM (GitHub) === */
@media (max-width: 820px){
  .hero{
    min-height: 0 !important;
    padding: 22px 0 0 !important;  /* trims bottom */
  }

  .rope-divider{
    height: 110px !important;
    margin-top: -110px !important; /* pulls grass up */
  }

  .hero-art{ margin-top: -115px !important; }  /* pulls dog up */
  .hero-dog{ margin-bottom: -6px !important; } /* keeps dog tucked */
}
