:root {
  --bg: #0a1020;
  --bg-soft: #10182d;
  --panel: rgba(14, 21, 39, 0.82);
  --panel-solid: #111a2f;
  --panel-strong: #0f172a;
  --paper: #f7f0e4;
  --text: #f5f7fb;
  --muted: #aab5cb;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --hot: #ff6b2c;
  --hot-strong: #ff4f18;
  --sun: #ffd44f;
  --ice: #67e6ff;
  --success: #90f9aa;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.22);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 107, 44, 0.24), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(103, 230, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255, 212, 79, 0.08), transparent 30%),
    linear-gradient(180deg, #08101f 0%, #0a1122 35%, #09101d 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35));
}

body::after {
  background: linear-gradient(180deg, rgba(8, 13, 25, 0.12), rgba(8, 13, 25, 0.5));
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(7, 11, 22, 0.42);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 22, 0.72);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 12px 26px rgba(255, 107, 44, 0.32);
}

.logo-text {
  font-size: 1.02rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.main-nav a {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  color: #08101f;
  background: linear-gradient(135deg, var(--sun), #ffe8a1 45%, var(--hot));
  box-shadow: 0 16px 30px rgba(255, 107, 44, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 20px 34px rgba(255, 107, 44, 0.3);
}

.btn-light {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.btn-light:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--text);
  border-color: rgba(103, 230, 255, 0.28);
  background: linear-gradient(135deg, rgba(103, 230, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.btn-full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 212, 79, 0.26);
  border-radius: 999px;
  background: rgba(255, 212, 79, 0.08);
  color: #ffe59d;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 6px rgba(255, 212, 79, 0.1);
}

.eyebrow.light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f7f6f0;
}

.eyebrow.light::before {
  background: var(--ice);
  box-shadow: 0 0 0 6px rgba(103, 230, 255, 0.12);
}

.hero {
  padding: 5.6rem 0 4.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.hero-copy::before {
  content: "Ocio";
  position: absolute;
  top: -2rem;
  right: 0;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-copy h1,
.section-head h2,
.contact-copy h2,
.highlight h2,
.event-grid h2 {
  margin: 1rem 0 1rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  max-width: 9ch;
  text-wrap: balance;
}

.hero-text,
.section-head p,
.contact-copy p,
.event-grid > div > p,
.highlight p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.9rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #d4dced;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice), var(--sun));
  box-shadow: 0 0 0 8px rgba(103, 230, 255, 0.08);
}

.hero-card,
.machine-card,
.step-card,
.event-list article,
.faq-list details,
.contact-box {
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(255, 107, 44, 0.12), rgba(103, 230, 255, 0.06)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
}

.hero-card::before {
  width: 170px;
  height: 170px;
  top: -70px;
  right: -55px;
  background: radial-gradient(circle, rgba(255, 212, 79, 0.34), transparent 68%);
}

.hero-card::after {
  width: 140px;
  height: 140px;
  bottom: -70px;
  left: -30px;
  background: radial-gradient(circle, rgba(103, 230, 255, 0.24), transparent 70%);
}

.hero-product-media {
  position: relative;
  width: 100%;
  max-width: 360px;
  min-height: 360px;
  margin: 0 auto 1.7rem;
  padding: 1rem 1rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.hero-product-media::before {
  content: "";
  position: absolute;
  inset: 1.1rem 0.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 212, 79, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(255, 107, 44, 0.18), rgba(103, 230, 255, 0.08));
}

.hero-product-image {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.38));
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(103, 230, 255, 0.22);
  border-radius: 999px;
  background: rgba(103, 230, 255, 0.08);
  color: #c8f7ff;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ice);
}

.hero-card-content {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  margin: 0.9rem 0 0.7rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-card p {
  color: var(--muted);
}

.trust-strip {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 107, 44, 0.08), rgba(103, 230, 255, 0.08)),
    rgba(255, 255, 255, 0.02);
}

.trust-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.trust-inner p {
  margin: 0;
  color: #dde6f8;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2.8rem;
}

.section-head.narrow {
  max-width: 820px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.machine-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.machine-card::before {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.machine-card.featured {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.machine-visual {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 1.3rem;
  color: #08101f;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.machine-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
}

.machine-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.has-product-image {
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 2rem 1.5rem 1.3rem;
}

.machine-product-image {
  position: absolute;
  inset: 1.2rem 1.2rem 0;
  width: calc(100% - 2.4rem);
  height: calc(100% - 1.2rem);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.28));
}

.has-product-image span {
  align-self: flex-start;
}

.has-card-image {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 280px;
  padding: 1.1rem;
}

.machine-card-image {
  position: absolute;
  inset: 1rem 1rem 0;
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22));
}

.has-card-image span {
  align-self: flex-start;
}

.machine-card-image-foosball {
  inset: 1.6rem 1rem 0;
  height: calc(100% - 1.6rem);
}

.machine-card-image-air {
  inset: 1.2rem 0.75rem 0;
  width: calc(100% - 1.5rem);
}

.machine-card-image-darts {
  inset: 0.75rem 1.6rem 0;
  width: calc(100% - 3.2rem);
}

.visual-boxer {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #ff7d41 0%, #ffd45a 42%, #fff0b7 100%);
}

.visual-foosball {
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #72e39f 0%, #d4ff9d 100%);
}

.visual-air {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #67e6ff 0%, #74b5ff 100%);
}

.visual-darts {
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #ff6b2c 0%, #ff8c42 45%, #ffd44f 100%);
}

.machine-body {
  padding: 1.6rem;
}

.machine-body h3,
.step-card h3,
.event-list h3 {
  margin: 0 0 0.8rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.machine-body p,
.step-card p,
.event-list p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.machine-body ul {
  margin: 1.05rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
}

.machine-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.machine-body li::before {
  content: "+";
  color: var(--ice);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.step-card,
.event-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
    rgba(14, 21, 39, 0.76);
  box-shadow: var(--shadow-soft);
}

.step-card::before,
.event-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sun), var(--hot), var(--ice));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 36px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 212, 79, 0.1);
  color: #ffe59d;
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.event-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
  align-items: start;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.event-list article:nth-child(odd) {
  transform: rotate(-1deg);
}

.event-list article:nth-child(even) {
  transform: rotate(1deg);
}

.dark-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 212, 79, 0.15), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(103, 230, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #121a31 0%, #0a1020 100%);
  color: white;
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 1.2rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
    rgba(14, 21, 39, 0.78);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--sun);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  padding-top: 0.85rem;
}

.contact-box {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 212, 79, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
    rgba(14, 21, 39, 0.84);
  box-shadow: var(--shadow);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.contact-details a {
  width: fit-content;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-contact {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #dde5f6;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f8aa5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(103, 230, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(103, 230, 255, 0.08);
}

.site-footer {
  padding: 1.8rem 0 2.4rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .event-grid,
  .highlight-grid,
  .contact-box,
  .machine-card.featured {
    grid-template-columns: 1fr;
  }

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

  .machine-card {
    grid-column: span 6;
    transform: none;
  }

  .machine-card.featured {
    grid-column: span 12;
  }

  .hero-copy::before {
    right: auto;
    left: 0;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.8rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.95rem 0 1rem;
  }

  .logo {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .main-nav {
    order: 2;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 24px;
  }

  .main-nav a {
    flex: 1 1 120px;
    text-align: center;
    padding: 0.7rem 0.85rem;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-copy h1,
  .section-head h2,
  .contact-copy h2,
  .highlight h2,
  .event-grid h2 {
    line-height: 0.96;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-card,
  .contact-box {
    padding: 1.5rem;
  }

  .hero-product-media {
    min-height: 300px;
    max-width: 100%;
    margin-bottom: 1.3rem;
  }

  .hero-product-image {
    width: min(100%, 230px);
    max-height: 310px;
  }

  .has-product-image {
    min-height: 300px;
    padding-top: 1.4rem;
  }

  .machine-product-image {
    inset: 1rem 1rem 0;
    width: calc(100% - 2rem);
    height: calc(100% - 1rem);
  }

  .has-card-image {
    min-height: 240px;
  }

  .machine-card-image {
    inset: 1rem 1rem 0.35rem;
    width: calc(100% - 2rem);
    height: calc(100% - 1.35rem);
  }

  .machine-card-image-darts {
    inset: 0.85rem 1.35rem 0.35rem;
    width: calc(100% - 2.7rem);
  }

  .machine-grid,
  .steps-grid,
  .event-list {
    grid-template-columns: 1fr;
  }

  .machine-card {
    grid-column: span 12;
  }

  .event-list article {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
  }
}
