:root {
  color-scheme: light;
  --ink: #170d08;
  --muted: #76695e;
  --paper: #fff4dc;
  --panel: #fffaf0;
  --smoke: #d8c7a7;
  --charcoal: #090706;
  --charcoal-soft: #21130d;
  --ember: #d9230f;
  --flame: #f37a18;
  --cream: #fff0b8;
  --line: rgba(23, 13, 8, 0.16);
  --shadow: 0 24px 80px rgba(41, 17, 7, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff7e8 0, var(--paper) 38%, #fffaf0 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(255, 244, 220, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 800;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.hero {
  min-height: 86vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px, 6vw, 72px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 7, 6, 0.88), rgba(41, 17, 7, 0.62) 52%, rgba(217, 35, 15, 0.16)),
    linear-gradient(0deg, rgba(9, 7, 6, 0.72), transparent 44%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  color: #ffffff;
  padding-top: clamp(420px, 50vh, 500px);
}

.hero-logo-scene {
  position: absolute;
  z-index: 1;
  top: clamp(-34px, -2vh, -12px);
  left: clamp(-9px, -0.625vw, -2px);
  width: min(560px, 43vw);
  aspect-ratio: 1;
}

.hero-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0.95;
  filter: brightness(1.06) contrast(1.08) drop-shadow(0 20px 38px rgba(0, 0, 0, 0.46));
  animation: heatShimmer 2.8s ease-in-out infinite;
}

.logo-smoke {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: brightness(1.14) contrast(1.08);
  transform-origin: 42% 82%;
}

.smoker-smoke {
  left: 3.4%;
  top: 4.9%;
  width: 31.25%;
  height: auto;
  mask-image: radial-gradient(ellipse 68% 50% at 70% 56%, #000 0 45%, rgba(0, 0, 0, 0.78) 58%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 68% 50% at 70% 56%, #000 0 45%, rgba(0, 0, 0, 0.78) 58%, transparent 82%);
}

.cigar-smoke {
  left: 29.8%;
  top: 17.1%;
  width: 13.2%;
  height: auto;
  mask-image: radial-gradient(ellipse 58% 58% at 48% 48%, #000 0 48%, rgba(0, 0, 0, 0.64) 63%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse 58% 58% at 48% 48%, #000 0 48%, rgba(0, 0, 0, 0.64) 63%, transparent 86%);
}

.smoker-smoke.base {
  animation: smokerBreathe 3.6s ease-in-out infinite;
}

.smoker-smoke.wisp-a {
  animation: smokerWispA 4.4s ease-in-out infinite;
  opacity: 0.38;
}

.smoker-smoke.wisp-b {
  animation: smokerWispB 5.1s 0.7s ease-in-out infinite;
  opacity: 0.26;
}

.cigar-smoke.base {
  animation: cigarBreathe 2.8s ease-in-out infinite;
}

.cigar-smoke.wisp-a {
  animation: cigarWispA 3.3s 0.35s ease-in-out infinite;
  opacity: 0.35;
}

.cigar-smoke.wisp-b {
  animation: cigarWispB 3.9s 0.9s ease-in-out infinite;
  opacity: 0.24;
}

.hat-sparkle,
.hat-sparkle::before,
.hat-sparkle::after {
  position: absolute;
  display: block;
  pointer-events: none;
}

.hat-sparkle {
  z-index: 4;
  left: 45.6%;
  top: 12.2%;
  width: 42px;
  height: 42px;
  opacity: 0.24;
  transform: translate(-50%, -50%) scale(0.55) rotate(0deg);
  animation: starSparkle 2.2s ease-in-out infinite;
}

.hat-sparkle::before,
.hat-sparkle::after {
  content: "";
  inset: 50% auto auto 50%;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff8cf 35%, #ffffff 50%, #fff8cf 65%, transparent);
  box-shadow: 0 0 16px rgba(255, 240, 184, 0.96);
  transform: translate(-50%, -50%);
}

.hat-sparkle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.monkey-wink {
  position: absolute;
  z-index: 5;
  left: 44.4%;
  top: 19.6%;
  width: 15px;
  height: 6px;
  border-bottom: 5px solid #130904;
  border-radius: 0 0 999px 999px;
  background: transparent;
  box-shadow: 0 2px 0 rgba(255, 188, 88, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-8deg) scaleX(0.7);
  animation: monkeyWink 3.2s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cream);
}

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

h1 {
  margin-bottom: 20px;
  max-width: 960px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.3vw, 46px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.split p {
  color: inherit;
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 960px;
  color: rgba(255, 255, 255, 0.88);
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 240, 184, 0.64);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(9, 7, 6, 0.46);
}

.hero-rating {
  margin-top: 26px;
}

.swag-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(135deg, rgba(33, 19, 13, 0.96), rgba(9, 7, 6, 0.92)),
    url("/assets/bbq-hero.png") center / cover;
  color: #ffffff;
}

.swag-copy {
  max-width: 660px;
}

.swag-copy h1 {
  margin-bottom: 22px;
}

.swag-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.swag-copy .button {
  width: fit-content;
  margin-top: 12px;
}

.swag-preview {
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
  border: 2px solid rgba(255, 240, 184, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #432513, #150d08 44%, #8b4b1f);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.swag-preview img {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border: 1px solid rgba(255, 240, 184, 0.62);
  border-radius: 4px;
  background: #fffdf8;
}

.swag-preview figcaption {
  padding-top: 14px;
  color: #fff4dc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.summary-stars {
  color: var(--flame);
  font-size: 22px;
  line-height: 1;
}

.order-card,
.review-card {
  display: grid;
  gap: 14px;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(255, 240, 184, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 0 14px;
}

input,
select {
  min-height: 50px;
}

textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.button,
button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--ember);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  padding: 0 20px;
  white-space: nowrap;
}

.button:hover,
button:hover {
  background: #a9190a;
}

.section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 4vw, 58px);
  scroll-margin-top: 142px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p,
.split p {
  color: var(--muted);
}

.pit-master-section {
  background: #fff8e8;
}

.pit-master-profile {
  display: grid;
  grid-template-columns: minmax(360px, 760px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
}

.pit-master-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.pit-master-card {
  display: grid;
  gap: 18px;
  margin: 0;
  width: 100%;
}

.pit-master-frame {
  padding: 13px;
  background:
    linear-gradient(135deg, #3a2417, #0f0a07 42%, #74401d);
  border: 2px solid rgba(255, 240, 184, 0.78);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(41, 17, 7, 0.22);
}

.pit-master-frame img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 240, 184, 0.6);
  border-radius: 4px;
}

.pit-master-card figcaption {
  display: grid;
  gap: 6px;
  text-align: center;
}

.pit-master-card figcaption span {
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.pit-master-card figcaption strong {
  color: var(--charcoal);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

.pit-master-card figcaption em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pit-master-magic-card {
  align-self: center;
}

.pit-master-magic-card .pit-master-frame {
  background:
    linear-gradient(135deg, #6f3117, #170c07 44%, #d9230f);
}

.pit-master-magic-card figcaption strong {
  color: var(--ember);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.04;
}

.pit-master-copy {
  max-width: 680px;
}

.pit-master-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.party-gallery-section {
  overflow: hidden;
  background: #180f0a;
  color: #ffffff;
}

.party-gallery-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  max-width: 1180px;
}

.party-gallery-section .section-heading {
  margin-bottom: 0;
}

.party-gallery-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.party-gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(340px, 48vw, 560px);
  isolation: isolate;
}

.party-photo-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
  background:
    linear-gradient(135deg, #432513, #150d08 44%, #8b4b1f);
  border: 2px solid rgba(255, 240, 184, 0.76);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.party-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #0e0a07;
  border: 1px solid rgba(255, 240, 184, 0.62);
  border-radius: 4px;
}

.party-photo-card figcaption {
  min-height: 48px;
  padding: 14px 8px 2px;
  color: #fff4dc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.party-monkey {
  position: absolute;
  z-index: 2;
  left: clamp(-58px, -4vw, -24px);
  bottom: clamp(-30px, -1.8vw, -14px);
  width: clamp(170px, 24vw, 310px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.4));
}

.party-gallery-stage.is-pushing .party-photo-card {
  animation: partyPhotoPush 1200ms cubic-bezier(0.2, 0.78, 0.28, 1) both;
}

.party-gallery-stage.is-pushing .party-monkey {
  animation: partyMonkeyPush 1800ms ease-in-out both;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(112px, 13vw, 172px);
  background: #fff8e8;
}

.testimonials-section .section-heading,
.testimonial-grid {
  position: relative;
  z-index: 2;
}

.reviews-thumbs-monkey-scene {
  position: absolute;
  z-index: 1;
  left: clamp(8px, 2vw, 26px);
  bottom: clamp(8px, 1.6vw, 22px);
  width: clamp(150px, 16vw, 220px);
  pointer-events: none;
}

.reviews-thumbs-monkey {
  display: block;
  width: 100%;
  opacity: 0.9;
  filter: drop-shadow(0 18px 22px rgba(41, 17, 7, 0.24));
}

.reviews-glasses-sparkle {
  position: absolute;
  z-index: 2;
  display: block;
  width: 10%;
  aspect-ratio: 1;
  opacity: 0.24;
  transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
  animation: starSparkle 2.4s ease-in-out infinite;
}

.reviews-glasses-sparkle::before,
.reviews-glasses-sparkle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 12%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff8cf 35%, #ffffff 50%, #fff8cf 65%, transparent);
  box-shadow: 0 0 12px rgba(255, 240, 184, 0.9);
  transform: translate(-50%, -50%);
}

.reviews-glasses-sparkle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.reviews-glasses-sparkle-main {
  left: 45%;
  top: 27%;
}

.reviews-glasses-sparkle-small {
  left: 57.7%;
  top: 24.7%;
  animation-delay: 0.35s;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 26px);
  max-width: calc(1180px - clamp(170px, 18vw, 230px));
  margin-left: clamp(170px, 18vw, 230px);
  margin-bottom: 12px;
}

.testimonial-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 230px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(23, 13, 8, 0.14);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 44px rgba(41, 17, 7, 0.12);
}

.testimonial-stars {
  color: var(--flame);
  font-size: 22px;
  line-height: 1;
}

.testimonial-card p {
  margin: 0;
  color: var(--charcoal-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 800;
  line-height: 1.25;
}

.testimonial-card p::before {
  content: open-quote;
}

.testimonial-card p::after {
  content: close-quote;
}

.testimonial-empty {
  grid-column: 1 / -1;
  min-height: 160px;
}

.reviews-section {
  background: #21130d;
  color: #ffffff;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.reviews-section .section-heading {
  text-align: center;
}

.reviews-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.ratings-monkey-scene {
  position: relative;
  width: min(360px, 82vw);
  margin: clamp(8px, 2vw, 14px) auto 0;
}

.ratings-monkey {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.32));
}

.ratings-smoke {
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 1%;
  width: 32%;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at 35% 70%, rgba(255, 255, 245, 0.58), rgba(255, 255, 245, 0) 56%),
    radial-gradient(ellipse at 58% 42%, rgba(216, 199, 167, 0.38), rgba(216, 199, 167, 0) 58%),
    radial-gradient(ellipse at 72% 20%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 54%);
  border-radius: 50%;
  filter: blur(8px);
  mix-blend-mode: screen;
  transform-origin: 20% 85%;
}

.ratings-smoke-a {
  animation: ratingsSmokeFloat 4.8s ease-in-out infinite;
}

.ratings-smoke-b {
  top: 1%;
  right: -5%;
  width: 28%;
  animation: ratingsSmokeFloat 5.6s 1.2s ease-in-out infinite;
}

.ratings-smoke-c {
  top: 8%;
  right: 9%;
  width: 22%;
  animation: ratingsSmokeFloat 4.2s 2.1s ease-in-out infinite;
}

.ratings-lens-sparkle {
  position: absolute;
  z-index: 3;
  width: 30px;
  height: 30px;
  opacity: 0.24;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.55) rotate(0deg);
  animation: starSparkle 2.4s ease-in-out infinite;
}

.ratings-lens-sparkle::before,
.ratings-lens-sparkle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff8cf 35%, #ffffff 50%, #fff8cf 65%, transparent);
  box-shadow: 0 0 14px rgba(255, 240, 184, 0.88);
  transform: translate(-50%, -50%);
}

.ratings-lens-sparkle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ratings-lens-left {
  left: 43%;
  top: 28%;
}

.ratings-lens-right {
  left: 56%;
  top: 24%;
  animation-delay: 0.35s;
}

.ratings-cigar-ember {
  position: absolute;
  z-index: 4;
  left: 70.8%;
  top: 37.5%;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 54% 50%, rgba(255, 246, 176, 0.96) 0 14%, rgba(255, 132, 28, 0.9) 22%, rgba(217, 35, 15, 0.72) 38%, rgba(217, 35, 15, 0) 70%);
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: translate(-50%, -50%) scale(0.65);
  animation: cigarEmberPulse 5.4s ease-in-out infinite;
}

.review-card {
  padding: clamp(18px, 4vw, 32px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.review-rating {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-rating legend {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 0;
}

.stars {
  display: inline-flex;
  gap: 8px;
}

.stars label {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: #b8a17b;
  cursor: pointer;
}

.stars label span[aria-hidden="true"] {
  font-size: 30px;
  line-height: 1;
}

.stars label.is-active,
.stars label:hover {
  color: var(--flame);
  border-color: rgba(243, 122, 24, 0.72);
  background: #fff7dc;
}

.stars input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.stars label:focus-within {
  outline: 3px solid rgba(243, 122, 24, 0.34);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

article p,
li {
  color: var(--muted);
  line-height: 1.55;
}

ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding-left: 19px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  background: #f3e2bf;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 16px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--flame);
  color: #2a1004;
}

.steps span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.order-section {
  background: #fff0cf;
}

.order-card {
  grid-template-columns: repeat(2, 1fr);
  width: min(920px, 100%);
  padding: clamp(18px, 4vw, 32px);
}

.form-wide {
  grid-column: 1 / -1;
}

.confirmation {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--charcoal-soft);
  font-weight: 800;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(18px, 4vw, 58px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
}

footer strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

@keyframes heatShimmer {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.01);
  }
}

@keyframes smokerBreathe {
  0%,
  100% {
    opacity: 0.5;
    filter: blur(0) contrast(1);
    transform: scale(1);
  }
  46% {
    opacity: 0.96;
    filter: blur(0.8px) contrast(1.06);
    transform: scale(1.06);
  }
}

@keyframes smokerWispA {
  0%,
  100% {
    opacity: 0.14;
    filter: blur(1.8px);
    transform: translate3d(0, 0, 0) scale(0.98) rotate(0deg);
  }
  45% {
    opacity: 0.58;
    filter: blur(2.6px);
    transform: translate3d(-8px, -13px, 0) scale(1.13) rotate(-2deg);
  }
  74% {
    opacity: 0.24;
    filter: blur(4px);
    transform: translate3d(-15px, -24px, 0) scale(1.26) rotate(-4deg);
  }
}

@keyframes smokerWispB {
  0%,
  100% {
    opacity: 0.08;
    filter: blur(2.4px);
    transform: translate3d(0, 0, 0) scale(0.95) rotate(1deg);
  }
  52% {
    opacity: 0.42;
    filter: blur(4.2px);
    transform: translate3d(9px, -20px, 0) scale(1.22) rotate(4deg);
  }
  82% {
    opacity: 0.14;
    filter: blur(5.2px);
    transform: translate3d(16px, -36px, 0) scale(1.38) rotate(7deg);
  }
}

@keyframes cigarBreathe {
  0%,
  100% {
    opacity: 0.52;
    filter: blur(0) contrast(1.02);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    filter: blur(0.7px) contrast(1.06);
    transform: scale(1.1);
  }
}

@keyframes cigarWispA {
  0%,
  100% {
    opacity: 0.12;
    filter: blur(1.8px);
    transform: translate3d(0, 0, 0) scale(0.96) rotate(0deg);
  }
  50% {
    opacity: 0.58;
    filter: blur(2.8px);
    transform: translate3d(8px, -16px, 0) scale(1.24) rotate(7deg);
  }
  78% {
    opacity: 0.2;
    filter: blur(4px);
    transform: translate3d(15px, -28px, 0) scale(1.38) rotate(10deg);
  }
}

@keyframes cigarWispB {
  0%,
  100% {
    opacity: 0.08;
    filter: blur(2.2px);
    transform: translate3d(0, 0, 0) scale(0.92) rotate(-2deg);
  }
  48% {
    opacity: 0.36;
    filter: blur(3.4px);
    transform: translate3d(-4px, -18px, 0) scale(1.18) rotate(-8deg);
  }
  76% {
    opacity: 0.13;
    filter: blur(5px);
    transform: translate3d(-8px, -34px, 0) scale(1.36) rotate(-12deg);
  }
}

@keyframes starSparkle {
  0%,
  100% {
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
  }
  38% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(0.62) rotate(18deg);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.18) rotate(42deg);
  }
  62% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(0.86) rotate(76deg);
  }
  82% {
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(0.48) rotate(120deg);
  }
}

@keyframes monkeyWink {
  0%,
  34%,
  72%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-8deg) scaleX(0.7) scaleY(0.3);
  }
  42%,
  60% {
    opacity: 0.96;
    transform: translate(-50%, -50%) rotate(-8deg) scaleX(1) scaleY(1);
  }
}

@keyframes ratingsSmokeFloat {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.52) rotate(-8deg);
  }
  18% {
    opacity: 0.42;
  }
  48% {
    opacity: 0.62;
    transform: translate3d(12px, -18px, 0) scale(0.88) rotate(7deg);
  }
  78% {
    opacity: 0.12;
    transform: translate3d(28px, -44px, 0) scale(1.22) rotate(18deg);
  }
}

@keyframes cigarEmberPulse {
  0%,
  100% {
    opacity: 0.28;
    filter: blur(0.2px);
    transform: translate(-50%, -50%) scale(0.62);
  }
  28% {
    opacity: 0.36;
    filter: blur(0.25px);
    transform: translate(-50%, -50%) scale(0.72);
  }
  44% {
    opacity: 0.9;
    filter: blur(0.7px);
    transform: translate(-50%, -50%) scale(1.04);
  }
  56% {
    opacity: 1;
    filter: blur(1px);
    transform: translate(-50%, -50%) scale(1.18);
  }
  68% {
    opacity: 0.86;
    filter: blur(0.72px);
    transform: translate(-50%, -50%) scale(1.02);
  }
  78% {
    opacity: 0.48;
    filter: blur(0.35px);
    transform: translate(-50%, -50%) scale(0.82);
  }
}

@keyframes partyPhotoPush {
  0% {
    opacity: 0.4;
    transform: translateX(-118%) rotate(-4deg);
  }
  72% {
    opacity: 1;
    transform: translateX(2%) rotate(0.4deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes partyMonkeyPush {
  0% {
    opacity: 0;
    transform: translateX(-125%) translateY(8px) rotate(-5deg);
  }
  14% {
    opacity: 1;
  }
  54% {
    opacity: 1;
    transform: translateX(70%) translateY(0) rotate(1deg);
  }
  82% {
    opacity: 1;
    transform: translateX(155%) translateY(6px) rotate(5deg);
  }
  100% {
    opacity: 0;
    transform: translateX(230%) translateY(10px) rotate(8deg);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 92vh;
    padding: 28px 18px;
  }

  .hero-logo-scene {
    top: 120px;
    left: 7px;
    width: min(340px, 88vw);
  }

  .order-card,
  .party-gallery-layout,
  .pit-master-profile,
  .reviews-layout,
  .swag-hero,
  .split {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 1180px;
    margin-left: 0;
    margin-bottom: 132px;
  }

  .pit-master-profile {
    max-width: 620px;
  }

  .ratings-monkey {
    width: min(300px, 78vw);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 540px) {
  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy {
    padding-top: 455px;
  }

  .order-card {
    padding: 12px;
  }

  .pit-master-cards {
    grid-template-columns: 1fr;
  }

  .party-gallery-stage {
    min-height: 330px;
  }

  .party-monkey {
    left: -38px;
    bottom: -20px;
    width: 165px;
  }

  .stars {
    gap: 5px;
  }

  .stars label {
    width: 42px;
    height: 42px;
  }

  .reviews-thumbs-monkey-scene {
    left: 8px;
    bottom: 8px;
    width: 122px;
  }

  .reviews-thumbs-monkey {
    opacity: 0.86;
  }

  .section {
    padding: 52px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .party-gallery-stage.is-pushing .party-photo-card,
  .party-gallery-stage.is-pushing .party-monkey,
  .ratings-cigar-ember,
  .ratings-lens-sparkle,
  .ratings-smoke {
    animation: none;
  }
}
