:root {
  --color-bg: #0d0d0d;
  --color-surface: #161616;
  --color-surface-raised: #1b1b1b;
  --color-primary: #c92d2d;
  --color-primary-dark: #a92020;
  --color-text: #f5f3ef;
  --color-text-muted: #b9b5af;
  --color-border: #303030;
  --content-width: 1180px;
  --side-space: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(4.5rem, 10vw, 8.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:focus-visible {
  outline: 3px solid var(--color-text);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 11vw, 5.75rem);
  font-weight: 680;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.15rem, 7vw, 4.25rem);
  font-weight: 650;
}

h3 {
  font-size: 1.35rem;
}

p:last-child,
figure:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-inner,
.header-inner,
.hero-content {
  width: min(100% - (2 * var(--side-space)), var(--content-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section-bordered {
  border-top: 1px solid var(--color-border);
}

.eyebrow {
  margin-bottom: 1.1rem;
  color: #e05252;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 6.25rem;
  padding-block: 1rem 0.75rem;
  gap: 0.65rem 1.5rem;
}

.brand {
  display: block;
  width: min(11rem, 52vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-header nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: clamp(0.9rem, 4.5vw, 1.75rem);
}

.site-header nav a {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(29rem, 63svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  inset: 0;
}

.hero-image {
  object-fit: cover;
  object-position: 54% center;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgb(0 0 0 / 58%) 0%,
    rgb(0 0 0 / 36%) 25%,
    rgb(0 0 0 / 64%) 55%,
    rgb(0 0 0 / 72%) 100%
  );
}

.hero-content {
  align-self: center;
  padding-top: 7.5rem;
  padding-bottom: 1rem;
}

.hero-content h1 {
  max-width: none;
  font-size: clamp(2.05rem, 9.5vw, 2.6rem);
}

.hero-content > p:not(.eyebrow) {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: #e7e3df;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 22rem;
}

.hero-actions .button {
  padding-inline: 0.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--color-primary);
  color: #fff;
}

.button-primary:hover {
  background: var(--color-primary-dark);
}

.button-secondary {
  border-color: rgb(255 255 255 / 55%);
  color: #fff;
}

.button-secondary:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 8%);
}

.intro-layout > p {
  margin-bottom: 2rem;
}

.intro-layout h2 {
  max-width: 15ch;
}

.intro-layout div > p {
  max-width: 45rem;
  color: var(--color-text-muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.section-heading {
  margin-bottom: clamp(2.75rem, 7vw, 5rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 31rem;
  margin-top: 1.25rem;
  color: var(--color-text-muted);
}

.hours-grid {
  display: grid;
  gap: 4rem;
}

.hours-block {
  border-top: 2px solid var(--color-text);
  padding-top: 1.4rem;
}

.hours-label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 0.5rem 1rem;
}

.hours-label h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
}

.schedule {
  margin-bottom: 1.5rem;
}

.schedule div {
  display: grid;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--color-border);
  gap: 0.15rem;
}

.schedule dt {
  color: var(--color-text-muted);
}

.schedule dd {
  margin: 0;
  font-weight: 700;
}

.price-section {
  background: var(--color-surface);
}

.price-section .section-heading {
  margin-bottom: clamp(2.25rem, 6vw, 3.75rem);
}

.price-grid {
  display: grid;
  gap: 2.75rem;
}

.price-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  column-gap: 1.25rem;
}

.price-heading {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.main-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 0;
}

.main-price strong {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.main-price > span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.child-price {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.9rem;
  margin-bottom: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border);
  gap: 1rem;
}

.main-price + .child-price,
.main-price + .alternate-price {
  margin-top: 1.5rem;
}

.child-price span {
  color: var(--color-text-muted);
}

.child-price strong {
  flex: none;
  font-size: 1.3rem;
}

.alternate-price {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border);
  gap: 1rem;
}

.alternate-price span {
  color: var(--color-text-muted);
}

.alternate-price strong {
  flex: none;
  font-size: 1.3rem;
}

.process-intro h2 {
  max-width: 12ch;
}

.process-intro > p:last-child {
  max-width: 30rem;
  color: var(--color-text-muted);
}

.rules p {
  color: var(--color-text-muted);
}

.rules {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.rules h3 {
  margin-bottom: 1rem;
}

.gallery-section {
  background: var(--color-surface);
}

.gallery-slider {
  position: relative;
}

.gallery-track {
  display: flex;
  overflow: hidden;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.gallery-track:focus-visible {
  outline: 3px solid var(--color-text);
  outline-offset: 4px;
}

.gallery-slide {
  flex: 0 0 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 50%;
  background: rgb(13 13 13 / 68%);
  color: #fff;
  font: inherit;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-button[hidden] {
  display: none;
}

.gallery-button:hover {
  background: rgb(13 13 13 / 85%);
}

.gallery-button:focus-visible {
  outline: 3px solid var(--color-text);
  outline-offset: 3px;
}

.gallery-button span {
  margin-top: -0.1em;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
}

.gallery-button-previous {
  left: clamp(0.65rem, 2vw, 1.25rem);
}

.gallery-button-next {
  right: clamp(0.65rem, 2vw, 1.25rem);
}

.gallery-slider.is-enhanced .gallery-track {
  scrollbar-width: none;
}

.gallery-slider.is-enhanced .gallery-track::-webkit-scrollbar {
  display: none;
}

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

.menu-section {
  padding-block: clamp(3rem, 7vw, 5rem);
  border-block: 1px solid var(--color-border);
  background: var(--color-surface-raised);
}

.menu-layout {
  display: grid;
  gap: 1.5rem;
}

.menu-layout h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
}

.menu-layout > p {
  color: var(--color-text-muted);
}

.text-link {
  justify-self: start;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 0.35rem;
  color: #e05252;
}

.contact-section {
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.contact-layout {
  display: grid;
  gap: 4rem;
}

.contact-heading h2 {
  max-width: 12ch;
}

.contact-heading > p:last-child {
  color: var(--color-text-muted);
}

.contact-details {
  display: grid;
  font-style: normal;
  gap: 2.5rem;
}

.contact-details div {
  color: var(--color-text-muted);
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 0.45rem;
  color: #888;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong,
.contact-details a:not(.button) {
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-links {
  padding-top: 0.5rem;
}

.site-footer {
  padding-block: 1.75rem;
  border-top: 1px solid var(--color-border);
  color: #989898;
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner nav {
  display: flex;
  gap: 1.25rem;
}

.legal-page .site-header {
  position: static;
  background: var(--color-bg);
}

.legal-page .header-inner {
  justify-content: space-between;
  min-height: 5.5rem;
  padding-block: 1rem;
}

.legal-page .site-header nav {
  width: auto;
}

.legal-main {
  min-height: calc(100vh - 12rem);
}

.legal-content {
  max-width: 48rem;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 8vw, 4.8rem);
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.legal-content address {
  font-style: normal;
}

@media (min-width: 44rem) {
  .hero {
    min-height: max(46rem, 100svh);
  }

  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    min-height: 6rem;
    padding-block: 1rem;
  }

  .brand {
    width: 12rem;
  }

  .site-header nav {
    justify-content: flex-end;
    width: auto;
    gap: 2rem;
  }

  .site-header nav a {
    font-size: 0.85rem;
  }

  .hero-content {
    padding-top: 9rem;
    padding-bottom: clamp(4rem, 10vw, 7rem);
  }

  .hero-content h1 {
    max-width: 13ch;
    font-size: clamp(2.65rem, 11vw, 5.75rem);
  }

  .hero-shade {
    background:
      linear-gradient(to bottom, rgb(0 0 0 / 48%) 0%, transparent 28%, rgb(0 0 0 / 22%) 70%, rgb(0 0 0 / 60%) 100%),
      linear-gradient(to right, rgb(0 0 0 / 70%) 0%, rgb(0 0 0 / 48%) 52%, rgb(0 0 0 / 25%) 100%);
  }

  .hero-actions {
    display: flex;
    max-width: none;
  }

  .hero-actions .button {
    padding-inline: 1.25rem;
  }

  .intro-layout {
    display: grid;
    grid-template-columns: minmax(10rem, 0.65fr) minmax(0, 1.35fr);
    gap: 3rem;
  }

  .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
  }

  .section-heading > p {
    margin: 0 0 0.55rem;
  }

  .schedule div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
  }

  .schedule dd {
    text-align: right;
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .gallery-slide {
    aspect-ratio: 4 / 3;
  }

  .menu-layout {
    grid-template-columns: minmax(12rem, 0.8fr) minmax(12rem, 1fr) auto;
    align-items: end;
    gap: 2rem;
  }

  .menu-layout > p {
    margin-bottom: 0.25rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
    gap: clamp(4rem, 10vw, 9rem);
  }
}

@media (min-width: 64rem) {
  .hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3rem, 7vw, 6rem);
  }

  .process-layout {
    display: grid;
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(4rem, 10vw, 9rem);
  }

  .rules {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
}
