:root {
  --ink: #15202b;
  --muted: #5d6773;
  --line: #e8edf2;
  --paper: #fffdf8;
  --cream: #fff5df;
  --yellow: #ffd23f;
  --orange: #f06f2f;
  --teal: #18a7a7;
  --green: #158463;
  --shadow: 0 18px 45px rgba(21, 32, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 30px rgba(21, 32, 43, 0.1);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 6px 6px 0 var(--teal);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  font-size: 0.72rem;
  opacity: 0.82;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-reserve {
  padding: 10px 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--yellow);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 19, 28, 0.86), rgba(4, 19, 28, 0.36) 52%, rgba(4, 19, 28, 0.08)),
    linear-gradient(0deg, rgba(4, 19, 28, 0.5), rgba(4, 19, 28, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.4rem, 9vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

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

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.button.secondary {
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
}

.notice-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.notice-bar div {
  padding: 24px clamp(18px, 4vw, 42px);
  background: #fff;
}

.notice-bar strong,
.notice-bar span {
  display: block;
}

.notice-bar strong {
  font-size: 0.85rem;
  color: var(--green);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro,
.access {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  color: var(--muted);
}

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

.feature-grid article,
.price-card,
.game-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-grid article {
  padding: 24px;
  min-height: 230px;
}

.feature-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.price-section {
  width: 100%;
  padding-inline: max(18px, calc((100% - 1120px) / 2));
  background: var(--cream);
}

.social-section {
  padding-top: 0;
}

.interior-section {
  padding-top: 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

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

.social-card {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
}

.social-card span {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-card h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.16;
}

.social-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.instagram-card {
  background:
    linear-gradient(135deg, rgba(240, 111, 47, 0.95), rgba(255, 210, 63, 0.76)),
    linear-gradient(45deg, rgba(21, 32, 43, 0.34), rgba(21, 32, 43, 0));
}

.google-card {
  background:
    linear-gradient(135deg, rgba(24, 167, 167, 0.94), rgba(21, 132, 99, 0.9)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.15) 18px 20px);
}

.social-card .button {
  width: fit-content;
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.photo-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.photo-card.large {
  min-height: 560px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(21, 32, 43, 0.78);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.price-card {
  padding: 28px;
  box-shadow: 0 8px 20px rgba(21, 32, 43, 0.06);
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.price {
  margin-bottom: 20px;
  font-weight: 900;
}

.price span {
  font-size: 2.8rem;
  line-height: 1;
}

ul {
  padding-left: 1.25rem;
  margin: 0;
  color: var(--muted);
}

.games {
  padding-bottom: 72px;
}

.games-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
  margin-bottom: 28px;
}

.games-layout .section-heading {
  margin-bottom: 0;
}

.games-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.game-list {
  display: grid;
  gap: 12px;
}

.game-list article {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
}

.game-list strong {
  color: var(--green);
  white-space: nowrap;
}

.game-list span {
  color: var(--muted);
  text-align: right;
}

.news {
  padding-top: 0;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--muted);
  font-weight: 700;
}

.news-list a {
  font-weight: 800;
}

.shop-info {
  margin: 24px 0 0;
}

.shop-info div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.shop-info dt {
  color: var(--green);
  font-weight: 900;
}

.shop-info dd {
  margin: 0;
  color: var(--muted);
}

.map-card {
  min-height: 440px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(24, 167, 167, 0.9), rgba(21, 132, 99, 0.88)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.18) 18px 20px);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.map-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(21, 32, 43, 0.2);
}

.map-card span {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.map-card strong {
  font-size: 2.2rem;
}

.reserve {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 96px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.reserve h2 {
  margin-bottom: 12px;
}

.reserve p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: #fff;
  background: #0d151d;
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    color: var(--ink);
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 680px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .notice-bar,
  .intro,
  .access,
  .price-grid,
  .photo-grid,
  .games-layout,
  .social-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .game-list article,
  .reserve,
  .site-footer {
    display: grid;
  }

  .game-list span {
    text-align: left;
  }

  .photo-card,
  .photo-card.large {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 4rem;
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .social-card .button {
    width: 100%;
  }

  .news-list article,
  .shop-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-card {
    min-height: 300px;
  }
}
