:root {
  --bun: #fff4d7;
  --paper: #fffaf0;
  --mustard: #f5bd21;
  --mustard-deep: #d69800;
  --ketchup: #c93224;
  --relish: #2f8f65;
  --ink: #241813;
  --muted: #765b4e;
  --line: #e8c98c;
  --shadow: 0 18px 40px rgba(80, 42, 22, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bun);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18px 18px, rgba(201, 50, 36, 0.14) 0 3px, transparent 4px) 0 0 / 54px 54px,
    linear-gradient(180deg, #fff5d8 0%, #fffaf0 46%, #f7d98f 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 3px solid var(--ketchup);
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--paper);
  background: var(--ketchup);
  font-size: 0.74rem;
  line-height: 1;
}

.header-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.header-badges span,
.eyebrow,
.hero-stamp {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--mustard);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.header-badges span {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(62vh, 620px);
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  place-items: center start;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.hero-hotdog {
  position: absolute;
  right: clamp(-90px, -5vw, -24px);
  bottom: clamp(28px, 6vw, 74px);
  z-index: 1;
  width: min(58vw, 680px);
  filter: drop-shadow(0 22px 24px rgba(80, 42, 22, 0.2));
  pointer-events: none;
  transform: rotate(-7deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 10ch;
  font-size: clamp(4.2rem, 12vw, 9.8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.subtitle {
  max-width: 32rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 700;
}

.hero-stamp {
  position: absolute;
  right: clamp(18px, 8vw, 110px);
  top: clamp(92px, 16vw, 160px);
  z-index: 2;
  display: grid;
  width: clamp(92px, 13vw, 150px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  transform: rotate(8deg);
}

.hero-stamp span,
.hero-stamp strong {
  display: block;
  line-height: 1;
}

.hero-stamp span {
  align-self: end;
  color: var(--ketchup);
  font-size: clamp(0.56rem, 1vw, 0.74rem);
}

.hero-stamp strong {
  align-self: start;
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.menu-section {
  padding: 14px clamp(18px, 5vw, 72px) clamp(42px, 7vw, 86px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto 22px;
  max-width: 1180px;
}

.section-heading .eyebrow {
  margin: 0;
  background: var(--ketchup);
  color: var(--paper);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.dog-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.dog-card {
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.image-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 189, 33, 0.28), rgba(201, 50, 36, 0.18)),
    repeating-linear-gradient(-45deg, rgba(36, 24, 19, 0.08) 0 10px, transparent 10px 20px);
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-shell--warm img {
  object-position: center 45%;
}

.image-shell--red img {
  object-position: 44% 50%;
}

.image-shell--green img {
  object-position: 42% 50%;
}

.card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px 17px;
  border-top: 3px solid var(--ink);
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
}

.card-copy p {
  max-width: 22ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding-block: 12px;
  }

  .header-badges span {
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 630px;
    padding-top: 54px;
    place-items: start;
  }

  .hero-stamp {
    top: auto;
    right: 22px;
    bottom: 150px;
  }

  .hero-hotdog {
    right: -96px;
    bottom: 16px;
    width: 520px;
  }

  .subtitle {
    max-width: 21ch;
    line-height: 1.25;
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .card-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .card-copy p {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 8px;
    font-size: 1rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-badges {
    max-width: 96px;
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5rem);
  }

  .image-shell {
    aspect-ratio: 4 / 3;
  }
}
