: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 22px 55px rgba(22, 15, 13, 0.16);
  --shadow-hard: 0 14px 0 rgba(127, 16, 28, 0.9);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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;
}

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;
}

.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: 10px 14px;
  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: 8px;
  padding-bottom: 8px;
}

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

.brand img {
  width: 100%;
  height: 58px;
  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: 46px;
  height: 46px;
  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% + 8px);
  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);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

.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 {
  color: var(--gold-2);
}

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

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 112px 18px 22px;
  color: var(--white);
  background-image: url("assets/hero-machines.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 15, 13, 0.92) 0, rgba(22, 15, 13, 0.82) 38%, rgba(22, 15, 13, 0.54) 100%),
    linear-gradient(180deg, rgba(22, 15, 13, 0.16) 0, rgba(22, 15, 13, 0.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 78px 18px 18px;
  border: 1px solid rgba(216, 170, 83, 0.55);
  pointer-events: none;
}

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

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

.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;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--cream-2);
  font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
  font-size: 2.7rem;
  line-height: 0.92;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

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

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

.button {
  min-height: 50px;
  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(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-proof div {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 248, 236, 0.24);
  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: wrap;
  justify-content: center;
  gap: 0;
  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);
}

.feature-ticker span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 9px 16px;
  border-right: 1px solid rgba(255, 248, 236, 0.18);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section {
  padding: 74px 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: 34px;
}

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

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

.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: 14px;
  margin-top: 30px;
}

.process-step {
  position: relative;
  min-height: 158px;
  padding: 20px;
  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);
}

.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: rotate(1deg);
}

.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: 58px 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: 28px;
}

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

.venue-grid span {
  min-height: 50px;
  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;
}

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

.offer-card {
  position: relative;
  min-height: 236px;
  padding: 22px;
  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: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  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);
}

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

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

.machine-card {
  display: grid;
  grid-template-rows: 300px 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: 18px;
  border: 1px solid rgba(185, 31, 46, 0.2);
}

.machine-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.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-copy {
  padding: 20px;
}

.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: 58px;
  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);
}

.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: 78px 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: 34px;
  text-align: left;
}

.contact-grid article {
  padding: 22px;
  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;
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 28px 18px;
  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;
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  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(560px, 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: 24px;
  background: var(--cream);
  border: 1px solid rgba(22, 15, 13, 0.16);
}

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

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

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

.age-note {
  font-size: 0.84rem;
  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;
  }

  .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(3, minmax(0, 1fr));
  }

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

@media (min-width: 920px) {
  .site-header {
    padding: 12px 34px;
  }

  .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: 124px 40px 30px;
    background-position: center;
  }

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

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

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

  .hero-proof {
    grid-template-columns: repeat(3, 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;
  }

  .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));
  }

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

  .machine-grid {
    grid-template-columns: repeat(4, 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-left: 34px;
    padding-right: 34px;
  }
}

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

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

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.48rem;
  }

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

  .age-logo {
    width: 236px;
    height: 122px;
  }
}

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

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