:root {
  --teal: #00c7c8;
  --teal-dark: #009b9d;
  --black: #050505;
  --cream: #f6f2ec;
  --white: #ffffff;
  --pink: #ec2c8d;
  --green: #99d600;
  --muted: #d8d2c8;
  --shadow: 0 20px 50px rgba(0, 0, 0, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.mobile-only {
    display: none;
}

.gift-bar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--black);
font-size: clamp(.62rem, 1vw, .86rem);
font-weight: 900;
letter-spacing: .12em;
text-transform: uppercase;
  overflow: hidden;
    white-space: nowrap;
}

.gift-track {
  display: flex;
  width: max-content;
  gap: 4rem;
}

.gift-track span {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  padding: 0 clamp(1rem, 4vw, 5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.logo {
  width: 105px;
  height: 105px;
  margin-top: -14px;
  display: block;
  position: relative;
  z-index: 2;
}

.logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo-small {
  display: block;
  font-size: 1rem;
  letter-spacing: .08em;
  font-weight: 400;
}

.logo-large {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
}

.main-nav a {
  position: relative;
  padding: 1.8rem .2rem 1.4rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--teal);
}

.socials {
  display: flex;
  gap: 1.1rem;
  font-size: 1.6rem;
  color: var(--teal);
  font-weight: 900;
}

.socials img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 445px;
  display: grid;
  grid-template-columns: 52% 48%;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-panel {
  min-height: 445px;
  position: relative;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}

.hero-left::after {
  background: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.58), rgba(0,0,0,.15));
}

.hero-copy {
  position: absolute;
  left: clamp(1.5rem, 4.5vw, 5rem);
  top: 50%;
  transform: translateY(-48%);
  max-width: 560px;
  color: var(--white);
  text-shadow: 0 4px 18px rgba(0,0,0,.45);
}

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}

.hero h1,
.section-intro h2,
.visit-card h2 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: .95;
}

.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.9rem);
}

.hero h2 {
  margin: .2rem 0 1rem;
  font-family: "Permanent Marker", cursive;
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
}

.hero-text {
  margin: 0 0 1.4rem;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.42;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 2rem;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--teal);
  color: var(--black);
}

.btn.secondary {
  border-color: var(--white);
  color: var(--white);
  background: rgba(0,0,0,.25);
}

.btn.outline {
  border-color: var(--teal);
  color: var(--black);
  background: transparent;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.info-item {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-right: 1px solid rgba(255,255,255,.35);
}

.info-item:last-child {
  border-right: none;
}

.icon {
  color: var(--teal);
  font-size: 2.2rem;
  font-weight: 900;
}

.icon img {
  width: 48px;
  height: 48px;
}

.icon.pink {
  color: var(--pink);
}

.icon.green {
  color: var(--green);
}

.info-item p {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.25;
}

.menu-strip {
  display: grid;
  grid-template-columns: 320px repeat(4, 1fr);
  gap: clamp(.7rem, 1.1vw, 1.4rem);
  padding: 1.1rem clamp(1rem, 4vw, 5rem);
  align-items: stretch;
  background: var(--cream);
}

.section-intro {
  align-self: center;
}

.pink-text {
  color: var(--pink);
}

.section-intro h2 {
  font-size: clamp(2.5rem, 3.6vw, 4rem);
  margin-bottom: 1rem;
}

.menu-card {
  min-height: 170px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.menu-card img {
  transition: transform .35s ease;
}

.menu-card:hover img {
  transform: scale(1.06);
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
}

.menu-card span {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: .75rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--white);
  font-family: Oswald, Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 1.7vw, 2rem);
  letter-spacing: .04em;
}

.menu-card b {
  color: var(--teal);
}

.visit-grid {
  display: grid;
  grid-template-columns: 320px 300px 360px 240px 360px;
width: fit-content;
margin: 0 auto;
  min-height: 210px;
  background: var(--cream);
}

.dog-photo,
.store-photo {
  min-height: 210px;
}

.visit-card {
  padding: 1.6rem 2rem;
}

.visit-card.dark {
  background: var(--black);
  color: var(--white);
}

.visit-card h2 {
  font-size: clamp(1.8rem, 2vw, 2.55rem);
  margin-bottom: 1rem;
}

.visit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.visit-card li {
  margin-top: .55rem;
  font-weight: 600;
}

.hours-card {
  padding: 1.5rem 1.8rem;
  background: var(--cream);
}

.hours-card .eyebrow {
  font-size: 1.65rem;
}

.hours-row {
  padding: .75rem 0;
  border-top: 2px solid var(--pink);
  text-transform: uppercase;
  font-weight: 900;
}

.hours-row strong,
.hours-row span {
  display: block;
}

.hours-card .btn {
  min-height: 40px;
  padding: 0 1rem;
  margin-top: .5rem;
  font-size: .85rem;
}

.google-map {
width: 100%;
height: 100%;
min-height: 260px;
overflow: hidden;
}

.google.map iframe {
width: 100%;
height: 100%;
border: 0;
display: block;
}

.map-card {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #edf5f5;
  color: var(--black);
  font-size: 1.3rem;
  text-align: center;
}

.map-lines {
  position: absolute;
  inset: -80px;
  opacity: .6;
  background:
    linear-gradient(35deg, transparent 47%, #c9d8d8 48%, #c9d8d8 50%, transparent 51%) 0 0 / 180px 110px,
    linear-gradient(-8deg, transparent 47%, #d8e4e4 48%, #d8e4e4 50%, transparent 51%) 0 0 / 260px 90px;
}

.map-pin {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--black);
  display: grid;
  place-items: center;
  margin-bottom: .5rem;
}

.map-pin .logo-dog {
  transform: rotate(45deg);
}

.map-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 5.5rem;
}

.site-footer {
  min-height: 55px;
  padding: .8rem clamp(1rem, 4vw, 5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  background: var(--black);
  color: var(--white);
  font-size: .9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.site-footer strong {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-footer nav {
  display: flex;
  gap: 2rem;
  text-transform: uppercase;
  font-weight: 900;
}

.site-footer img {
  width: 20%;
  height: 20%;
}

.mini-dog {
  display: inline-block;
  margin-left: .5rem;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    height: 3px;
    background: var(--teal);
  }

  .main-nav,
  .socials {
    display: none;
  }

  .main-nav.open {
    grid-column: 1 / -1;
    display: grid;
    gap: .6rem;
    padding: 1rem 0 1.5rem;
  }

  .main-nav.open a {
    padding: .6rem 0;
  }

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

  .hero-right {
    display: none;
  }

  .quick-info,
  .menu-strip,
  .visit-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .info-item {
    justify-content: flex-start;
    padding-left: 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
  }

  .menu-strip {
    padding: 1.2rem;
  }

  .menu-card {
    min-height: 220px;
  }

  .site-footer,
  .site-footer p:last-child {
    justify-items: start;
    justify-self: start;
  }
}

@media (max-width: 650px) {
    .mobile-only {
        display: inline;
    }
  .gift-bar {
    justify-content: flex-start;
  }

  .gift-track {
    width: max-content;
    animation: gift-marquee 20s linear infinite;
  }

  .gift-track span {
    padding-right: 3rem;
  }

  @keyframes gift-marquee {
      from {
          transform: translateX(0%);
      }

      to {
          transform: translateX(-49.5%);
      }
  }

  .hero {
    min-height: 570px;
  }

  .hero-panel {
    min-height: 570px;
  }

  .hero-copy {
    left: 1.2rem;
    right: 1.2rem;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
