:root {
  --ink: #160f0d;
  --ink-2: #241915;
  --ink-3: #34241f;
  --cream: #f7ead4;
  --cream-2: #fff8ec;
  --cream-3: #ead6b7;
  --red: #b91f2e;
  --red-2: #7f101c;
  --red-3: #db3b48;
  --gold: #d8aa53;
  --gold-2: #f2d58a;
  --pink: #ffd9d8;
  --pink-2: #f1b8bd;
  --white: #fffdf7;
  --muted: rgba(22, 15, 13, 0.7);
  --line-dark: rgba(22, 15, 13, 0.16);
  --line-light: rgba(255, 248, 236, 0.2);
  --shadow-soft: 0 18px 46px rgba(22, 15, 13, 0.14);
  --shadow-hard: 0 9px 0 rgba(127, 16, 28, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(22, 15, 13, 0.025) 0, rgba(22, 15, 13, 0.025) 1px, transparent 1px, transparent 11px),
    linear-gradient(180deg, var(--cream-2) 0, var(--cream) 100%);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body:not(.age-locked) {
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
}

body.age-locked {
  overflow: hidden;
}

body.age-locked #siteContent {
  max-height: 100vh;
  overflow: hidden;
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--gold-2);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: calc(8px + env(safe-area-inset-top)) 14px 8px;
  background: rgba(22, 15, 13, 0.84);
  border-bottom: 1px solid rgba(216, 170, 83, 0.32);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(22, 15, 13, 0.96);
  padding-top: calc(7px + env(safe-area-inset-top));
  padding-bottom: 7px;
}

.brand {
  width: 152px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(216, 170, 83, 0.55);
  background: var(--cream);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 248, 236, 0.28);
  border-radius: 6px;
  background: rgba(255, 248, 236, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.visually-hidden) {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--cream-2);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  position: absolute;
  top: calc(100% + 6px);
  left: 14px;
  right: 14px;
  display: none;
  gap: 4px;
  padding: 10px;
  background: rgba(22, 15, 13, 0.98);
  border: 1px solid rgba(216, 170, 83, 0.35);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  max-height: calc(100svh - 104px);
  overflow-y: auto;
}

.nav-links.is-open {
  display: grid;
}

.nav-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--cream-2);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--gold-2);
}

.nav-cta {
  justify-content: center;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: end;
  padding: 104px 18px 28px;
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(127, 16, 28, 0.035) 0, rgba(127, 16, 28, 0.035) 1px, transparent 1px, transparent 14px),
    linear-gradient(135deg, var(--cream-2) 0, var(--cream) 54%, #ffdedd 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--red-2), var(--red), var(--gold));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 82px 12px 14px;
  border: 1px solid rgba(216, 170, 83, 0.42);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  gap: 26px;
  align-items: end;
}

.hero-copy-wrap {
  max-width: 820px;
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-cream .eyebrow,
.section-pink .eyebrow,
.age-frame .eyebrow {
  color: var(--red-2);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--cream-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 0.98;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 630px;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.88);
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-visual {
  display: none;
  position: relative;
  padding: 16px;
  border: 1px solid rgba(216, 170, 83, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.12) 0, rgba(255, 248, 236, 0.04) 100%),
    rgba(22, 15, 13, 0.58);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 248, 236, 0.12);
  pointer-events: none;
}

.hero-visual-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-visual-topline span,
.adult-note,
.contact-disclaimer {
  color: rgba(255, 248, 236, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual-topline strong {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.hero-machine-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.hero-machine {
  min-height: 104px;
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff2dc 0, #eecda9 100%);
  overflow: hidden;
}

.hero-machine-tall {
  grid-row: span 2;
}

.hero-machine img {
  align-self: center;
  justify-self: center;
  width: auto;
  max-width: 100%;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(22, 15, 13, 0.22));
}

.hero-machine-tall img {
  height: 212px;
}

.hero-machine figcaption {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-visual p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-actions,
.age-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-hard);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-3);
}

.button-light {
  color: var(--cream-2);
  border-color: rgba(255, 248, 236, 0.64);
  background: rgba(255, 248, 236, 0.08);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(22, 15, 13, 0.2);
  background: var(--cream-2);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hero-proof div {
  min-height: 70px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: 8px;
  background: rgba(22, 15, 13, 0.58);
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  display: block;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 253, 247, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.feature-ticker {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background: var(--red-2);
  color: var(--cream-2);
  border-top: 1px solid rgba(216, 170, 83, 0.35);
  border-bottom: 1px solid rgba(216, 170, 83, 0.35);
  overflow-x: auto;
  scrollbar-width: none;
}

.feature-ticker::-webkit-scrollbar {
  display: none;
}

.feature-ticker span {
  min-height: 42px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section {
  padding: 62px 18px;
}

.section-inner,
.contact-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-cream {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.78) 0, rgba(247, 234, 212, 0.92) 100%),
    var(--cream);
}

.section-dark {
  color: var(--cream-2);
  background:
    repeating-linear-gradient(0deg, rgba(255, 248, 236, 0.035) 0, rgba(255, 248, 236, 0.035) 1px, transparent 1px, transparent 9px),
    linear-gradient(135deg, var(--ink) 0, #211310 52%, #3a1719 100%);
}

.section-pink {
  background:
    linear-gradient(180deg, var(--pink) 0, #fff1e7 100%);
}

.section-kicker,
.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section h2,
.venue-band h2,
.contact-section h2,
.compliance-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.section-heading p,
.section-lead,
.contact-inner > p,
.compliance-layout p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-dark .section-heading p {
  color: rgba(255, 248, 236, 0.76);
}

.service-layout {
  display: grid;
  gap: 32px;
}

.copy-column {
  align-self: center;
}

.process-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.process-step {
  position: relative;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 248, 236, 0.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(185, 31, 46, 0.42);
  transform: rotate(45deg);
}

.process-step span,
.card-label,
.machine-copy span,
.contact-grid span {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--red-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.process-step h3,
.offer-card h3,
.machine-card h3,
.contact-grid h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.16;
}

.process-step p,
.offer-card p,
.machine-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-note,
.machine-callout,
.business-proof {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(185, 31, 46, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 12px 32px rgba(22, 15, 13, 0.08);
}

.service-note strong,
.machine-callout strong,
.business-proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
}

.service-note span,
.machine-callout span,
.business-proof span {
  color: var(--muted);
}

.flyer-showcase,
.poster-panel {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(22, 15, 13, 0.18);
  background: var(--cream-2);
  box-shadow: var(--shadow-soft);
}

.flyer-showcase {
  transform: none;
}

.flyer-showcase img,
.poster-panel img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(22, 15, 13, 0.12);
}

.flyer-showcase figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.venue-band {
  padding: 54px 18px;
  color: var(--cream-2);
  background:
    linear-gradient(90deg, var(--ink) 0, #301817 55%, var(--red-2) 100%);
}

.venue-band .section-inner {
  display: grid;
  gap: 22px;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.venue-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 248, 236, 0.22);
  background: rgba(255, 248, 236, 0.08);
  font-weight: 900;
  text-align: center;
}

.venue-note {
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
  font-weight: 800;
}

.offer-grid,
.machine-grid,
.contact-grid,
.check-grid {
  display: grid;
  gap: 14px;
}

.offer-card {
  position: relative;
  min-height: 0;
  padding: 20px;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08) 0, rgba(255, 248, 236, 0.025) 100%),
    #241915;
  overflow: hidden;
}

.offer-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-right: 1px solid rgba(216, 170, 83, 0.42);
  border-bottom: 1px solid rgba(216, 170, 83, 0.42);
}

.offer-card:nth-child(4n + 2) {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08) 0, rgba(255, 248, 236, 0.025) 100%),
    #341b20;
}

.offer-card:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08) 0, rgba(255, 248, 236, 0.025) 100%),
    #2d2419;
}

.offer-card .product-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(216, 170, 83, 0.55);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.offer-card.adult .product-mark {
  color: var(--pink);
  border-color: rgba(255, 217, 216, 0.7);
}

.offer-card .card-label {
  color: var(--gold-2);
}

.offer-card h3 {
  color: var(--cream-2);
}

.offer-card p {
  color: rgba(255, 248, 236, 0.76);
}

.adult-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 248, 236, 0.72);
}

.machine-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.machine-grid {
  align-items: stretch;
}

.machine-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  border: 1px solid rgba(22, 15, 13, 0.14);
  border-radius: 8px;
  background: var(--cream-2);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.machine-image {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, #fff5e6 0, #f1d8bc 100%);
  overflow: hidden;
}

.machine-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(185, 31, 46, 0.2);
}

.machine-image img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 88%;
  height: 88%;
  object-fit: contain;
  object-position: center 12%;
  filter: drop-shadow(0 16px 20px rgba(22, 15, 13, 0.22));
}

.machine-card:nth-child(2) .machine-image img {
  object-position: center 8%;
}

.machine-card:nth-child(3) .machine-image img {
  object-position: center 12%;
}

.machine-card:nth-child(4) .machine-image img {
  object-position: center 8%;
}

.machine-callout {
  margin-top: 22px;
  text-align: center;
}

.catalog-panel {
  margin-top: 34px;
  padding: 16px;
  border: 1px solid rgba(22, 15, 13, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.86) 0, rgba(247, 234, 212, 0.92) 100%);
  box-shadow: var(--shadow-soft);
}

.catalog-heading {
  max-width: 820px;
  margin-bottom: 18px;
}

.catalog-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.catalog-heading p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.catalog-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin: 20px -16px 20px;
  padding: 0 16px 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-filters::-webkit-scrollbar {
  display: none;
}

.catalog-filter {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(22, 15, 13, 0.16);
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.catalog-filter.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.catalog-card {
  display: grid;
  border: 1px solid rgba(22, 15, 13, 0.14);
  border-radius: 8px;
  background: var(--cream-2);
  box-shadow: 0 14px 36px rgba(22, 15, 13, 0.12);
  overflow: hidden;
}

.catalog-media {
  position: relative;
  min-height: 216px;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #fff3df 0, #edcfaa 100%);
}

.catalog-media img {
  width: auto;
  max-width: 100%;
  height: 204px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(22, 15, 13, 0.2));
}

.catalog-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold-2);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.catalog-copy span {
  color: var(--red-2);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-copy h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.12;
}

.catalog-copy p {
  margin: 0;
  color: var(--muted);
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-tags li {
  padding: 5px 8px;
  border: 1px solid rgba(22, 15, 13, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(22, 15, 13, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
}

.catalog-card .button {
  width: 100%;
  margin-top: 4px;
  min-height: 46px;
  font-size: 0.78rem;
  box-shadow: none;
}

.catalog-empty {
  padding: 24px;
  border: 1px dashed rgba(22, 15, 13, 0.24);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  font-weight: 900;
}

.machine-copy {
  padding: 18px;
}

.machine-copy span {
  color: var(--red);
}

.why-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.poster-panel {
  transform: rotate(-1deg);
}

.check-grid {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-grid li {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 15, 13, 0.14);
  background: rgba(255, 253, 247, 0.8);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(22, 15, 13, 0.08);
}

.check-grid li::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: var(--red);
  transform: rotate(45deg);
}

.business-proof {
  background: var(--ink);
  border-color: rgba(216, 170, 83, 0.28);
  color: var(--cream-2);
}

.business-proof span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.business-proof strong {
  color: var(--cream-2);
}

.compliance-section {
  padding: 54px 18px;
  color: var(--cream-2);
  background: var(--ink-2);
}

.compliance-layout {
  display: grid;
  gap: 18px;
  align-items: center;
}

.compliance-layout p {
  color: rgba(255, 248, 236, 0.78);
}

.contact-section {
  padding: 68px 18px;
  color: var(--white);
  text-align: center;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.035) 0, rgba(255, 248, 236, 0.035) 1px, transparent 1px, transparent 10px),
    linear-gradient(135deg, var(--red-2) 0, #4b1114 48%, var(--ink) 100%);
}

.contact-inner {
  position: relative;
}

.contact-inner::before,
.contact-inner::after {
  content: "";
  position: absolute;
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(216, 170, 83, 0.55);
  transform: rotate(45deg);
}

.contact-inner::before {
  top: 8px;
  left: 0;
}

.contact-inner::after {
  right: 0;
  bottom: 8px;
}

.contact-inner > p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 253, 247, 0.84);
}

.contact-grid {
  margin-top: 28px;
  text-align: left;
}

.contact-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 248, 236, 0.2);
  border-radius: 8px;
  background: var(--cream-2);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.contact-grid a {
  display: inline-block;
  margin-top: 10px;
  color: var(--red-2);
  font-size: 1.08rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-actions {
  justify-content: center;
}

.contact-disclaimer {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 248, 236, 0.72);
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 28px 18px calc(96px + env(safe-area-inset-bottom));
  color: var(--cream-2);
  background: var(--ink);
  border-top: 1px solid rgba(216, 170, 83, 0.28);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.site-footer span,
.site-footer p {
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
}

.site-footer p {
  font-size: 0.86rem;
}

.mobile-contact-bar {
  position: fixed;
  z-index: 35;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(216, 170, 83, 0.36);
  border-radius: 8px;
  background: rgba(22, 15, 13, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-contact-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-contact-bar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  border-radius: 6px;
  background: rgba(255, 248, 236, 0.08);
  color: var(--cream-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-contact-bar a:last-child {
  background: var(--red);
  color: var(--white);
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: max(14px, env(safe-area-inset-top)) 18px max(14px, env(safe-area-inset-bottom));
  background:
    linear-gradient(135deg, rgba(22, 15, 13, 0.98) 0, rgba(60, 17, 18, 0.96) 100%);
}

body:not(.age-locked) .age-gate {
  display: none;
}

.age-panel {
  width: min(530px, 100%);
  padding: 10px;
  border: 1px solid rgba(216, 170, 83, 0.62);
  background: rgba(255, 248, 236, 0.06);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
}

.age-frame {
  padding: 22px;
  background: var(--cream);
  border: 1px solid rgba(22, 15, 13, 0.16);
}

.age-logo {
  width: 248px;
  height: 128px;
  object-fit: cover;
  margin-bottom: 18px;
  border: 1px solid rgba(22, 15, 13, 0.14);
}

.age-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
  line-height: 1.08;
}

.age-panel p {
  margin: 14px 0 0;
}

.age-note {
  font-size: 0.82rem;
  color: rgba(22, 15, 13, 0.68);
}

.age-blocked {
  max-width: 620px;
  padding: 28px;
  border: 1px solid rgba(216, 170, 83, 0.62);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
}

.age-blocked h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.noscript-warning {
  position: fixed;
  z-index: 200;
  inset: auto 16px 16px;
  padding: 14px;
  background: var(--red-2);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    width: 176px;
  }

  .brand img {
    height: 58px;
  }

  .hero {
    padding-left: 28px;
    padding-right: 28px;
  }

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

  .hero-proof,
  .process-grid,
  .venue-grid,
  .machine-grid,
  .contact-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .site-header {
    padding: calc(12px + env(safe-area-inset-top)) 34px 12px;
  }

  .brand {
    width: 218px;
  }

  .brand img {
    height: 66px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-links a {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .nav-cta {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero {
    min-height: 84svh;
    padding: 112px 40px 28px;
    background-position: center;
  }

  .hero::after {
    inset: 96px 34px 28px;
  }

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

  .hero-copy {
    font-size: 1.22rem;
  }

  .hero-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-proof div {
    min-height: 76px;
    padding: 14px;
  }

  .hero-proof strong {
    font-size: 1.32rem;
  }

  .hero-proof span {
    font-size: 0.82rem;
  }

  .section {
    padding: 98px 34px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    align-items: end;
  }

  .hero-copy-wrap {
    padding-bottom: 8px;
  }

  .hero-visual {
    display: block;
  }

  .service-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
    align-items: center;
  }

  .section h2,
  .venue-band h2,
  .contact-section h2,
  .compliance-section h2 {
    font-size: 3.05rem;
  }

  .venue-band {
    padding: 68px 34px;
  }

  .venue-band .section-inner {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
  }

  .venue-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .venue-note {
    grid-column: 2;
  }

  .offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .machine-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .catalog-panel {
    padding: 24px;
  }

  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-layout {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.08fr);
  }

  .compliance-section {
    padding: 66px 34px;
  }

  .compliance-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  }

  .contact-section {
    padding: 102px 34px;
  }

  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-inner::before,
  .contact-inner::after {
    display: block;
  }

  .site-footer {
    grid-template-columns: 1fr 1.55fr;
    align-items: center;
    padding: 28px 34px;
  }

  body:not(.age-locked) {
    padding-bottom: 0;
  }

  .mobile-contact-bar {
    display: none;
  }
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 5.05rem;
  }

  .nav-links a {
    padding-left: 13px;
    padding-right: 13px;
    font-size: 0.84rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand {
    width: 144px;
  }

  .brand img {
    height: 48px;
  }

  .nav-links {
    left: 10px;
    right: 10px;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.45rem;
  }

  .hero-copy {
    max-width: none;
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-proof div {
    min-height: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
  }

  .hero-proof span {
    margin-top: 0;
  }

  .section-heading {
    text-align: left;
  }

  .flyer-showcase,
  .poster-panel {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .poster-panel {
    transform: none;
  }

  .machine-callout {
    text-align: left;
  }

  .contact-actions .button,
  .age-actions .button {
    width: 100%;
  }

  .contact-actions {
    margin-top: 22px;
  }

  .catalog-card .button {
    font-size: 0.76rem;
  }

  .age-panel {
    max-height: 100%;
    overflow-y: auto;
  }

  .age-frame {
    padding: 20px;
  }

  .age-logo {
    width: min(236px, 100%);
    height: auto;
    aspect-ratio: 236 / 122;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal,
  .site-header,
  .nav-toggle span {
    transition: none;
  }
}

/* Final responsive polish pass: keep decorative layers from crowding content. */
:root {
  --teal: #2f6f68;
  --teal-2: #164841;
}

.button-primary {
  box-shadow: 0 6px 0 rgba(127, 16, 28, 0.78);
}

.offer-card > *,
.process-step > * {
  position: relative;
  z-index: 1;
}

.offer-card::after,
.process-step::after {
  pointer-events: none;
  opacity: 0.55;
}

.mobile-contact-bar {
  z-index: 80;
}

@media (max-width: 639px) {
  body:not(.age-locked) {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .site-header {
    background: rgba(22, 15, 13, 0.95);
  }

  .brand {
    width: 150px;
  }

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

  .nav-links {
    position: fixed;
    top: calc(64px + env(safe-area-inset-top));
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 86px - env(safe-area-inset-top));
    padding: 8px;
  }

  .nav-links a {
    min-height: 48px;
    border-radius: 6px;
  }

  .hero {
    min-height: 82svh;
    padding: calc(94px + env(safe-area-inset-top)) 18px 34px;
    background-position: 55% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(22, 15, 13, 0.72) 0, rgba(22, 15, 13, 0.86) 42%, rgba(22, 15, 13, 0.96) 100%),
      linear-gradient(90deg, rgba(22, 15, 13, 0.88) 0, rgba(22, 15, 13, 0.5) 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-copy-wrap {
    max-width: 32rem;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
    font-size: 2.8rem;
    line-height: 0.9;
    font-weight: 700;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1.02rem;
  }

  .hero-actions,
  .contact-actions,
  .age-actions {
    gap: 14px;
  }

  .hero-actions {
    margin-top: 24px;
  }

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

  .hero-proof div {
    grid-template-columns: 5.5rem 1fr;
    padding: 12px;
  }

  .feature-ticker,
  .catalog-filters {
    overflow: visible;
  }

  .feature-ticker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }

  .feature-ticker span {
    justify-content: center;
    min-height: 40px;
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.72rem;
    text-align: center;
    white-space: normal;
  }

  .section {
    padding: 54px 16px;
  }

  .section-kicker,
  .section-heading {
    margin-bottom: 24px;
  }

  .section h2,
  .venue-band h2,
  .contact-section h2,
  .compliance-section h2 {
    font-size: 1.82rem;
    line-height: 1.12;
  }

  .process-step,
  .offer-card,
  .contact-grid article,
  .service-note,
  .machine-callout,
  .business-proof {
    box-shadow: 0 12px 28px rgba(22, 15, 13, 0.12);
  }

  .offer-card::after {
    width: 34px;
    height: 34px;
    right: 12px;
    bottom: 12px;
  }

  .machine-heading {
    text-align: left;
  }

  .machine-card {
    grid-template-rows: auto 1fr;
  }

  .machine-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .machine-image img {
    max-width: 82%;
    height: 82%;
  }

  .catalog-panel {
    margin-left: -4px;
    margin-right: -4px;
    padding: 16px;
  }

  .catalog-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0;
    padding: 0;
  }

  .catalog-filter {
    width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    line-height: 1.15;
    text-transform: none;
    white-space: normal;
  }

  .catalog-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .catalog-media img {
    height: 78%;
    max-height: 210px;
  }

  .catalog-card .button {
    white-space: normal;
  }

  .check-grid li {
    align-items: flex-start;
  }

  .contact-section {
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
  }

  .mobile-contact-bar {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .mobile-contact-bar a {
    min-height: 46px;
    font-size: 0.72rem;
    line-height: 1.1;
  }

  .age-gate {
    place-items: start center;
    overflow-y: auto;
  }

  .age-panel {
    margin: auto 0;
  }

  .age-frame {
    padding: 18px;
  }

  .age-panel h1 {
    font-size: 1.82rem;
  }
}

@media (max-width: 360px) {
  .brand {
    width: 136px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

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

  .hero-proof div {
    grid-template-columns: 4.8rem 1fr;
  }

  .catalog-filters,
  .feature-ticker {
    grid-template-columns: 1fr;
  }
}

/* Requested cleanup: remove the dark photo hero and protect catalog labels. */
.nav-toggle .visually-hidden {
  display: none !important;
}

.hero {
  min-height: 64svh;
  align-items: center;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(127, 16, 28, 0.035) 0, rgba(127, 16, 28, 0.035) 1px, transparent 1px, transparent 14px),
    linear-gradient(135deg, var(--cream-2) 0, var(--cream) 54%, #ffdedd 100%);
  background-image:
    repeating-linear-gradient(90deg, rgba(127, 16, 28, 0.035) 0, rgba(127, 16, 28, 0.035) 1px, transparent 1px, transparent 14px),
    linear-gradient(135deg, var(--cream-2) 0, var(--cream) 54%, #ffdedd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--red-2), var(--red), var(--gold));
}

.hero::after {
  inset: 96px 18px 22px;
  border-color: rgba(127, 16, 28, 0.22);
}

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

.hero-copy-wrap {
  max-width: 900px;
}

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

.hero h1 {
  max-width: 880px;
  color: var(--ink);
  text-shadow: none;
}

.hero-copy {
  max-width: 680px;
  color: rgba(22, 15, 13, 0.76);
}

.hero .button-light {
  color: var(--red-2);
  border-color: rgba(127, 16, 28, 0.34);
  background: rgba(255, 253, 247, 0.72);
}

.hero-proof div {
  border-color: rgba(127, 16, 28, 0.18);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 12px 28px rgba(22, 15, 13, 0.1);
}

.hero-proof strong {
  color: var(--red-2);
}

.hero-proof span {
  color: rgba(22, 15, 13, 0.68);
}

.hero-visual {
  display: none !important;
}

.catalog-card {
  grid-template-rows: auto 1fr;
}

.catalog-copy {
  align-content: start;
}

.catalog-tags {
  margin-bottom: 4px;
}

.catalog-tags li {
  line-height: 1.2;
}

.catalog-card .button {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  align-self: end;
}

@media (min-width: 920px) {
  .hero {
    min-height: 68svh;
  }

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

@media (max-width: 639px) {
  .hero {
    min-height: 0;
    padding: calc(96px + env(safe-area-inset-top)) 18px 38px;
    background:
      repeating-linear-gradient(90deg, rgba(127, 16, 28, 0.035) 0, rgba(127, 16, 28, 0.035) 1px, transparent 1px, transparent 14px),
      linear-gradient(160deg, var(--cream-2) 0, var(--cream) 58%, #ffdedd 100%);
    background-image:
      repeating-linear-gradient(90deg, rgba(127, 16, 28, 0.035) 0, rgba(127, 16, 28, 0.035) 1px, transparent 1px, transparent 14px),
      linear-gradient(160deg, var(--cream-2) 0, var(--cream) 58%, #ffdedd 100%);
  }

  .hero::before {
    display: block;
    background: linear-gradient(90deg, var(--red-2), var(--red), var(--gold));
  }

  .hero h1 {
    color: var(--ink);
    font-size: 2.35rem;
    line-height: 0.95;
    text-shadow: none;
  }

  .hero-copy {
    color: rgba(22, 15, 13, 0.76);
  }

  .catalog-copy {
    padding: 16px;
  }
}
