:root {
  --bg: #e1eef9;
  --surface: #f0f7ff;
  --text: #0b1a2b;
  --muted: #304f6c;
  --line: #9ebad3;
  --accent: #145a8a;
  --accent-soft: #c7def1;
  --shadow: 0 8px 18px rgba(11, 38, 62, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Barlow", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 0% 0%, #edf6ff 0%, var(--bg) 52%), var(--bg);
  min-height: 100vh;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.15;
}

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--line);
  position: sticky;
  top: 0;
  backdrop-filter: blur(7px);
  background: rgba(225, 238, 249, 0.86);
  z-index: 10;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-family: "Teko", "Impact", sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

nav {
  display: flex;
  gap: 1.3rem;
}

nav a,
.cta-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}

.cta-link {
  border: 1px solid var(--text);
  padding: 0.52rem 0.85rem;
  border-radius: 2px;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.4rem 4rem;
}

.hero {
  padding: 3rem 0 2.5rem;
  max-width: 760px;
  animation: riseIn 700ms ease-out both;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Teko", "Impact", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.94;
  margin: 0.5rem 0 1rem;
}

.hero-copy {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.button {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  padding: 0.8rem 1.15rem;
  border-radius: 2px;
  border: 1px solid #0f456a;
  font: inherit;
  cursor: pointer;
}

.button.secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid #7ea5c4;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.trust-item strong {
  display: block;
  font-size: 1.3rem;
  font-family: "Teko", "Impact", sans-serif;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.25rem 0;
}

.section-head p:last-child {
  color: var(--muted);
  max-width: 60ch;
}

.gallery-section,
.games-section,
.pricing-section,
.products-section,
.testimonials-section,
.about-section,
.contact-section {
  margin-top: 4rem;
}

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

figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(16px);
  opacity: 0;
  animation: reveal 700ms ease forwards;
}

figure:nth-child(1),
figure:nth-child(2) {
  grid-column: span 6;
}

figure:nth-child(3),
figure:nth-child(4),
figure:nth-child(5),
figure:nth-child(6) {
  grid-column: span 3;
}

figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 360ms ease;
}

figure:hover img {
  transform: scale(1.04);
}

figcaption {
  padding: 0.72rem 0.8rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 1.2rem;
  align-items: start;
}

.pricing-list {
  display: grid;
  gap: 0.65rem;
}

.package-card {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow);
}

.package-card strong {
  font-size: 0.9rem;
}

.package-card.active {
  border-color: var(--accent);
  background: #dbeeff;
}

.package-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  min-height: 300px;
  animation: riseIn 550ms ease both;
}

.detail-label {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.package-detail h3 {
  font-size: clamp(1.55rem, 3.7vw, 2.35rem);
}

.price {
  margin: 0.5rem 0;
  font-weight: 600;
  font-size: 1.08rem;
}

.description,
.feature-list,
.addon-box p,
.contact-section p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-list {
  padding-left: 1.1rem;
}

.addon-box {
  margin-top: 1rem;
  background: #d9eaf8;
  border: 1px solid #98bddc;
  border-radius: 2px;
  padding: 0.8rem;
}

.contact-section {
  text-align: center;
  padding: 2.6rem 1rem;
  border-top: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  align-items: start;
  text-align: left;
}

.booking-box {
  margin: 1.2rem auto 0;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.booking-box p {
  margin: 0.35rem 0;
}

.booking-box .button {
  margin-top: 0.9rem;
}

.booking-box a {
  color: var(--accent);
}

.contact-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 0.45rem;
}

.admin-entry {
  margin: 2rem 0 0;
  text-align: center;
}

.admin-entry a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.about-photo-placeholder,
.about-text-placeholder {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 2px;
  min-height: 240px;
  padding: 1rem;
}

.about-photo-placeholder {
  display: grid;
  place-items: center;
  background: #dbeeff;
}

.about-photo-placeholder span {
  color: var(--muted);
  font-weight: 600;
}

.about-text-placeholder h3 {
  margin-bottom: 0.4rem;
}

.products-card {
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}

.product-row:last-child {
  border-bottom: 0;
}

.product-row span {
  color: var(--muted);
}

.product-row strong {
  color: var(--text);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.testimonial-card h3 {
  margin-top: 0.6rem;
  font-size: 1.1rem;
}

.external-slide {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: #dbeeff;
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
}

.external-slide span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.external-slide strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.2rem;
  font-family: "Teko", "Impact", sans-serif;
}

.inquiry-form {
  margin-top: 1.2rem;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.inquiry-form label {
  font-size: 0.82rem;
  color: var(--muted);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.62rem 0.7rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 110px;
}

.inquiry-form .button {
  justify-self: start;
  margin-top: 0.4rem;
}

@keyframes reveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes riseIn {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  figure:nth-child(1),
  figure:nth-child(2),
  figure:nth-child(3),
  figure:nth-child(4),
  figure:nth-child(5),
  figure:nth-child(6) {
    grid-column: span 6;
  }
}

@media (max-width: 660px) {
  .site-header {
    position: static;
    backdrop-filter: none;
    background: transparent;
  }

  .cta-link {
    display: none;
  }

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

  figure:nth-child(1),
  figure:nth-child(2),
  figure:nth-child(3),
  figure:nth-child(4),
  figure:nth-child(5),
  figure:nth-child(6) {
    grid-column: span 2;
  }

  figure img {
    height: 210px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
