:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-soft: #fbf8f2;
  --ink: #17211e;
  --muted: #66726c;
  --line: #e7ddd0;
  --accent: #d96e34;
  --accent-dark: #ba5823;
  --accent-soft: #f2c564;
  --shadow-sm: 0 8px 24px rgba(28, 23, 17, 0.06);
  --shadow-md: 0 18px 50px rgba(28, 23, 17, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
  scroll-margin-top: 86px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 48px);
  background: rgba(12, 18, 16, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-solid {
  background: rgba(17, 25, 23, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(28, 23, 17, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 176px;
  max-width: 38vw;
  height: 62px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.header-cta {
  justify-self: end;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(223, 110, 47, 0.24);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #0e1513;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 16, 14, 0.22), rgba(10, 16, 14, 0.58)),
    linear-gradient(90deg, rgba(10, 16, 14, 0.8) 0%, rgba(10, 16, 14, 0.58) 35%, rgba(10, 16, 14, 0.34) 65%, rgba(10, 16, 14, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 112px 0 72px;
}

.hero-copy {
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #f3cf84;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 100%;
  margin-bottom: 18px;
  color: #fff;
  font-size: 5.15rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 62ch;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

@media (min-width: 900px) {
  .hero h1 {
    white-space: nowrap;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

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

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.package-card,
.rental-card,
.step-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.package-card {
  overflow: hidden;
}

.package-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-meta strong {
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.package-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.package-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--accent);
  border-radius: 999px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
}

.section-muted {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rental-card {
  display: grid;
  align-content: start;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
}

.rental-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--surface-soft);
}

.rental-card img.rental-image-contain {
  padding: 16px;
  object-fit: contain;
}

.rental-card > div:last-child {
  padding: 18px;
}

.rental-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.rental-card .rental-price {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
}

.rental-visual {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 198, 101, 0.14), rgba(223, 110, 47, 0.06)),
    #f8efe2;
}

.rental-visual::before,
.rental-visual::after,
.rental-visual span,
.rental-visual span::before,
.rental-visual span::after {
  position: absolute;
  content: "";
}

.rental-visual-tent span {
  bottom: 30px;
  left: 50%;
  width: 68%;
  height: 58px;
  background: #fff;
  border: 4px solid var(--ink);
  border-top: 0;
  transform: translateX(-50%);
}

.rental-visual-tent span::before {
  left: 50%;
  bottom: 58px;
  width: 74%;
  height: 72px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.rental-visual-tent span::after {
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 90px;
  background: var(--ink);
  transform: translateX(-50%);
}

.rental-visual-darts span {
  inset: 0;
  margin: auto;
  width: 122px;
  height: 122px;
  background:
    radial-gradient(circle, var(--accent) 0 12px, #fff 13px 25px, var(--ink) 26px 30px, #fff 31px 46px, var(--accent-soft) 47px 61px);
  border: 6px solid var(--ink);
  border-radius: 50%;
}

.rental-visual-darts span::before {
  right: -32px;
  bottom: 12px;
  width: 52px;
  height: 52px;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.rental-visual-chairs span {
  bottom: 34px;
  left: 18%;
  width: 60px;
  height: 72px;
  border: 5px solid var(--ink);
  border-bottom: 12px solid var(--ink);
  border-radius: 10px 10px 4px 4px;
}

.rental-visual-chairs span::before {
  left: 82px;
  bottom: -12px;
  width: 60px;
  height: 72px;
  border: 5px solid var(--ink);
  border-bottom: 12px solid var(--ink);
  border-radius: 10px 10px 4px 4px;
}

.rental-visual-table span {
  inset: 0;
  margin: auto;
  width: 160px;
  height: 22px;
  background: var(--ink);
  border-radius: 999px;
}

.rental-visual-table span::before,
.rental-visual-table span::after {
  top: 21px;
  width: 12px;
  height: 70px;
  background: var(--accent);
  border-radius: 999px;
}

.rental-visual-table span::before {
  left: 24px;
}

.rental-visual-table span::after {
  right: 24px;
}

.rental-visual-grill span {
  inset: 0;
  margin: auto;
  width: 124px;
  height: 74px;
  background: var(--ink);
  border-radius: 18px 18px 40px 40px;
}

.rental-visual-grill span::before {
  top: -36px;
  left: 16px;
  width: 92px;
  height: 44px;
  border: 5px solid var(--accent);
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
}

.rental-visual-grill span::after {
  left: 22px;
  bottom: -48px;
  width: 80px;
  height: 46px;
  background: linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 36px, var(--ink) 36px 44px, transparent 44px 72px, var(--ink) 72px);
}

.rental-visual-bounce span {
  bottom: 30px;
  left: 50%;
  width: 156px;
  height: 82px;
  background: var(--accent);
  border: 5px solid var(--ink);
  border-radius: 28px 28px 16px 16px;
  transform: translateX(-50%);
}

.rental-visual-bounce span::before,
.rental-visual-bounce span::after {
  top: -42px;
  width: 42px;
  height: 66px;
  background: #fff;
  border: 5px solid var(--ink);
  border-radius: 24px 24px 8px 8px;
}

.rental-visual-bounce span::before {
  left: 18px;
}

.rental-visual-bounce span::after {
  right: 18px;
}

.rental-visual-lights::before {
  top: 42px;
  left: 10%;
  width: 80%;
  height: 42px;
  border-top: 4px solid var(--ink);
  border-radius: 50%;
}

.rental-visual-lights span,
.rental-visual-lights span::before,
.rental-visual-lights span::after {
  top: 72px;
  width: 20px;
  height: 30px;
  background: var(--accent-soft);
  border: 4px solid var(--ink);
  border-radius: 0 0 999px 999px;
}

.rental-visual-lights span {
  left: 28%;
}

.rental-visual-lights span::before {
  top: -8px;
  left: 54px;
}

.rental-visual-lights span::after {
  top: -18px;
  left: 108px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  padding: 22px;
}

.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 800;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.booking-phone {
  max-width: 34ch;
  margin-top: 22px;
}

.booking-phone a {
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-form textarea {
  min-height: 136px;
  padding-top: 12px;
  resize: vertical;
}

.contact-message,
.contact-form .btn,
.form-status {
  grid-column: 1 / -1;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status[data-status="success"] {
  color: #147a42;
}

.form-status[data-status="error"] {
  color: #b42318;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #111917;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1fr 0.9fr;
  gap: 28px;
}

.footer-logo {
  width: 188px;
  height: 66px;
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}

.site-footer a {
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-footer .social-links a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.site-footer .social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-company {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.5rem;
  }

  .package-grid,
  .rental-grid,
  .steps,
  .contact-layout,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 60px 0;
  }

  .site-header {
    padding: 14px;
  }

  .header-cta {
    min-height: 46px;
    padding-inline: 18px;
  }

  .hero-content {
    align-items: flex-end;
    padding: 108px 0 48px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: 4.25rem;
    max-width: 10ch;
  }

  .hero-actions,
  .contact-form {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .package-grid,
  .rental-grid,
  .steps,
  .contact-layout,
  .contact-form,
  .footer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 92svh;
  }

  .hero-content {
    min-height: 92svh;
  }

  .logo {
    width: 142px;
    height: 50px;
    max-width: 44vw;
  }

  h1 {
    font-size: 3.35rem;
  }

  .header-cta {
    font-size: 0.95rem;
  }
}
