:root {
  --ink: #0b0d0c;
  --ink-soft: #151816;
  --paper: #f4f6f0;
  --white: #ffffff;
  --muted: #aeb5ad;
  --line: rgba(11, 13, 12, 0.16);
  --lime: #d9ff43;
  --blue: #5267ff;
  --pink: #ff51bd;
  --aqua: #48e8dc;
  --purple: #9b86ff;
  --radius: 1.4rem;
  --container: min(92vw, 1380px);
  --display: "League Spartan", "Arial Black", sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open,
body.drawer-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: 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;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--lime);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.intro-bar {
  position: relative;
  z-index: 90;
  min-height: 2.25rem;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-bar > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.25rem;
  padding: 0 3rem;
}

.intro-bar strong {
  font-weight: 800;
}

.intro-arrow {
  font-size: 1rem;
}

.intro-bar button {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 1.9rem;
  height: 1.9rem;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.intro-bar.closed {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  min-height: 4.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.25rem;
  padding: 0.75rem 4vw;
  background: rgba(244, 246, 240, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  min-height: 4.15rem;
  border-bottom-color: var(--line);
}

.wordmark,
.footer-logo {
  position: relative;
  display: inline-flex;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wordmark-dot {
  position: absolute;
  top: -0.15rem;
  right: -0.5rem;
  color: var(--pink);
  font-size: 0.42rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.86rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.75rem;
}

.cart-count {
  min-width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(217, 255, 67, 0);
}

.button-lime:hover {
  box-shadow: 0 10px 30px rgba(217, 255, 67, 0.22);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.25rem auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  padding: 7rem 6vw 3rem;
  background: var(--paper);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu > a:not(.button) {
  font-family: var(--display);
  font-size: clamp(2.25rem, 10vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(82vh, 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.96) 0%, rgba(7, 8, 8, 0.72) 38%, rgba(7, 8, 8, 0.1) 72%),
    linear-gradient(0deg, rgba(7, 8, 8, 0.82) 0%, transparent 46%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(72rem, 88vw);
  margin: 0 0 clamp(5rem, 10vh, 8rem) 6vw;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-lime {
  color: var(--lime);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.visit-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 8.5vw, 9rem);
}

.hero h1 em,
.section-heading h2 em,
.visit-copy h2 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 34rem;
  margin: 1.75rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.next-class {
  position: absolute;
  right: 4vw;
  bottom: 3.5rem;
  z-index: 3;
  width: min(25rem, 30vw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(12, 15, 13, 0.72);
  backdrop-filter: blur(18px);
}

.next-class-top {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.next-class-top span:last-child {
  margin-left: auto;
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 255, 67, 0.13);
}

.next-time {
  margin: 0;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.next-class h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.next-class div > p {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}

.circle-action {
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 180ms ease;
}

.circle-action:hover {
  transform: rotate(12deg) scale(1.06);
}

.hero-scroll {
  position: absolute;
  left: 1.5rem;
  bottom: 2.2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.hero-scroll span:first-child {
  writing-mode: vertical-rl;
}

.marquee {
  overflow: hidden;
  padding: 0.9rem 0 0.72rem;
  border-bottom: 1px solid var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  animation: marquee 24s linear infinite;
}

.marquee i {
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section > * {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2,
.visit-copy h2 {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
}

.section-lead,
.schedule-intro > p {
  margin: 0;
  color: rgba(11, 13, 12, 0.68);
  font-size: 1.05rem;
}

.schedule {
  background:
    radial-gradient(circle at 92% 10%, rgba(82, 103, 255, 0.12), transparent 26rem),
    var(--paper);
}

.schedule-heading {
  margin-bottom: 2.5rem;
}

.schedule-intro {
  display: grid;
  gap: 1.5rem;
}

.filter-field {
  display: grid;
  gap: 0.45rem;
}

.filter-field > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-field select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0 2.8rem 0 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.week-bar {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--ink);
  color: var(--white);
}

.week-bar > div {
  min-width: 16rem;
  display: grid;
  justify-items: center;
  line-height: 1.25;
}

.week-bar span {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.week-bar strong {
  font-size: 0.95rem;
}

.week-arrow {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.week-arrow:hover {
  background: var(--lime);
  color: var(--ink);
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.day-tab {
  min-height: 5.2rem;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.1rem;
  padding: 0.9rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.day-tab:last-child {
  border-right: 0;
}

.day-tab span {
  color: rgba(11, 13, 12, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.day-tab strong {
  font-family: var(--display);
  font-size: 1.15rem;
}

.day-tab:hover,
.day-tab[aria-selected="true"] {
  background: var(--lime);
  color: var(--ink);
}

.day-tab[aria-selected="true"] span {
  color: var(--ink);
}

.class-results {
  min-height: 21rem;
  border: 1px solid var(--ink);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.result-header h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
}

.result-header p {
  margin: 0;
  color: rgba(11, 13, 12, 0.58);
  font-size: 0.82rem;
}

.class-row {
  --class-accent: var(--blue);
  display: grid;
  grid-template-columns: 7rem minmax(12rem, 1.1fr) minmax(9rem, 0.8fr) minmax(9rem, 0.75fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

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

.class-time {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.class-title-wrap {
  position: relative;
  padding-left: 1rem;
}

.class-title-wrap::before {
  content: "";
  position: absolute;
  top: 0.1rem;
  bottom: 0.1rem;
  left: 0;
  width: 0.35rem;
  border-radius: 999px;
  background: var(--class-accent);
}

.class-title-wrap h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.class-title-wrap p,
.class-meta {
  margin: 0.16rem 0 0;
  color: rgba(11, 13, 12, 0.58);
  font-size: 0.82rem;
}

.capacity {
  display: grid;
  gap: 0.45rem;
}

.capacity p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.capacity-bar {
  height: 0.35rem;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e4de;
}

.capacity-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--class-accent);
}

.class-book {
  min-width: 8rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.class-book:hover {
  background: var(--lime);
  color: var(--ink);
}

.class-book.booked {
  background: var(--lime);
  color: var(--ink);
}

.class-book:disabled {
  border-color: transparent;
  background: #e6e8e3;
  color: #7f867e;
  cursor: not-allowed;
}

.empty-day {
  min-height: 20rem;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: 3rem;
  text-align: center;
}

.empty-day span {
  font-size: 2.2rem;
}

.empty-day h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.8rem;
}

.empty-day p {
  max-width: 28rem;
  margin: 0;
  color: rgba(11, 13, 12, 0.58);
}

.section-dark {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.classes-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.62;
  pointer-events: none;
}

.classes-orb-one {
  top: -15rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  background: var(--blue);
}

.classes-orb-two {
  bottom: -13rem;
  left: 18%;
  width: 24rem;
  height: 24rem;
  background: var(--pink);
  opacity: 0.22;
}

.class-type-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.class-type {
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.02);
  transition: background 240ms ease, color 240ms ease;
}

.class-type:hover {
  background: var(--type-color);
  color: var(--ink);
}

.class-type-index {
  font-size: 0.72rem;
  font-weight: 800;
}

.class-type h3 {
  max-width: 9ch;
  margin: auto 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

.class-type p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.class-type:hover p {
  color: rgba(11, 13, 12, 0.72);
}

.class-type-arrow {
  align-self: flex-end;
  margin-top: 1rem;
  font-size: 1.5rem;
}

.classes-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
}

.classes-cta p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.membership {
  background:
    radial-gradient(circle at 5% 90%, rgba(255, 81, 189, 0.11), transparent 28rem),
    var(--paper);
}

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

.membership-card {
  position: relative;
  grid-column: span 4;
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.membership-card.featured {
  background: var(--lime);
}

.membership-card.wide {
  grid-column: span 6;
  min-height: 27rem;
}

.membership-tag {
  align-self: flex-start;
  padding: 0.45rem 0.65rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-card h3 {
  max-width: 12ch;
  margin: 2.5rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.membership-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.3rem 0 1.8rem;
}

.membership-price strong {
  font-family: var(--display);
  font-size: 2.5rem;
  letter-spacing: -0.04em;
}

.membership-price span {
  color: rgba(11, 13, 12, 0.58);
  font-size: 0.82rem;
}

.membership-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.membership-card li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(11, 13, 12, 0.7);
  font-size: 0.88rem;
}

.membership-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 800;
}

.membership-card .button {
  width: 100%;
  margin-top: auto;
}

.membership-card.featured .button {
  background: var(--ink);
  color: var(--white);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 54rem;
  background: var(--ink);
  color: var(--white);
}

.about-image-wrap {
  position: relative;
  min-height: 46rem;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stamp {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 8rem;
  height: 8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  transform: rotate(8deg);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.about-copy h2 {
  max-width: 10ch;
  color: var(--lime);
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.about-big {
  max-width: 19ch;
  margin: 1.2rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.about-copy > p:not(.eyebrow):not(.about-big) {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.68);
}

.about-facts {
  display: grid;
  margin: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.about-facts div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.about-facts strong {
  color: var(--lime);
  font-size: 0.72rem;
}

.about-facts span {
  font-weight: 600;
}

.about-copy .text-link {
  align-self: flex-start;
}

.section-blue {
  background: var(--blue);
  color: var(--ink);
}

.section-blue .section-lead {
  color: rgba(11, 13, 12, 0.72);
}

.section-blue .section-heading h2 em {
  color: var(--white);
}

.events-list {
  display: grid;
  border-top: 1.5px solid var(--ink);
}

.event-row {
  display: grid;
  grid-template-columns: 5rem minmax(13rem, 1fr) minmax(15rem, 0.8fr) 9rem auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1.5px solid var(--ink);
}

.event-number {
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
}

.event-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.event-row p {
  margin: 0;
  font-size: 0.86rem;
}

.event-meta {
  display: grid;
  gap: 0.2rem;
}

.event-meta span {
  font-size: 0.78rem;
  font-weight: 700;
}

.event-price {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
}

.event-button {
  width: 3.3rem;
  height: 3.3rem;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 180ms ease;
}

.event-button:hover {
  transform: rotate(12deg) scale(1.06);
}

.shop {
  background: var(--paper);
}

.shop-feature {
  min-height: 34rem;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.15);
  background: var(--ink);
  color: var(--white);
}

.shop-feature > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
}

.shop-feature h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.shop-feature h2 em {
  color: var(--lime);
  font-style: normal;
}

.shop-feature p:not(.eyebrow) {
  max-width: 26rem;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.66);
}

.shop-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

.shop-toolbar p {
  margin: 0;
  color: rgba(11, 13, 12, 0.58);
  font-size: 0.86rem;
}

.shop-categories {
  display: flex;
  gap: 0.4rem;
}

.shop-filter {
  min-height: 2.6rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.shop-filter.active,
.shop-filter:hover {
  background: var(--ink);
  color: var(--white);
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(11, 13, 12, 0.11);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e7ebe5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.quick-view {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  font-size: 1.2rem;
  cursor: pointer;
  transform: translateY(0.4rem);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.product-card:hover .quick-view,
.quick-view:focus-visible {
  transform: translateY(0);
  opacity: 1;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 1rem;
}

.product-info h3 {
  margin: 0;
  font-size: 0.92rem;
}

.product-info p {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
}

.product-category {
  grid-column: 1 / -1;
  color: rgba(11, 13, 12, 0.48);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.visit {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(3rem, 10vw, 10rem);
  padding: clamp(5rem, 10vw, 9rem) 6vw;
  background: var(--lime);
}

.visit-copy h2 em {
  color: var(--blue);
}

.visit-links {
  display: grid;
  max-width: 38rem;
  margin-top: 3rem;
  border-top: 1.5px solid var(--ink);
}

.visit-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1.5px solid var(--ink);
  font-weight: 700;
}

.visit-links span {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.visit-links a:hover span {
  transform: rotate(12deg);
}

.visit-card {
  align-self: end;
  padding: 1.6rem;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
}

.visit-card > p {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visit-card ul {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.visit-card li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.visit-card li span {
  color: rgba(11, 13, 12, 0.52);
  font-size: 0.78rem;
}

.visit-card li strong {
  font-size: 0.86rem;
}

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

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3rem 4vw 1.5rem;
  background: var(--ink);
  color: var(--white);
}

.footer-logo {
  color: var(--lime);
  font-size: clamp(2rem, 5vw, 4.6rem);
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

dialog {
  width: min(94vw, 44rem);
  max-height: min(88vh, 58rem);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

dialog::backdrop {
  background: rgba(4, 5, 5, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-content {
  padding: clamp(1.5rem, 5vw, 3rem);
}

.dialog-kicker {
  margin: 0 0 0.7rem;
  color: rgba(11, 13, 12, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dialog-content h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}

.booking-summary div {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
}

.booking-summary span {
  display: block;
  color: rgba(11, 13, 12, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-summary strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  font-size: 0.75rem;
  font-weight: 800;
}

.field input,
.field select {
  min-height: 3.25rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--white);
}

.check-field {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.3rem 0;
  font-size: 0.82rem;
}

.check-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
}

.dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.dialog-note {
  margin: 1rem 0 0;
  color: rgba(11, 13, 12, 0.55);
  font-size: 0.78rem;
}

.success-state {
  min-height: 28rem;
  display: grid;
  place-content: center;
  justify-items: start;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--lime);
  font-size: 1.7rem;
}

.success-state p {
  max-width: 31rem;
  color: rgba(11, 13, 12, 0.62);
}

.product-dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-dialog-image {
  min-height: 34rem;
  background: #e7ebe5;
}

.product-dialog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#product-dialog {
  width: min(94vw, 62rem);
}

.product-dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.product-dialog-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.product-dialog-price {
  margin: 1rem 0 2rem;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
}

.quantity-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 1rem;
  margin-top: 1rem;
}

.quantity-control {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.quantity-control button {
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  min-width: 1.6rem;
  text-align: center;
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 5, 5, 0.68);
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 31rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

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

.cart-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.cart-close {
  position: static;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.35rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 0.75rem 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.8rem;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
}

.cart-item p {
  margin: 0;
  color: rgba(11, 13, 12, 0.52);
  font-size: 0.75rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.cart-item-actions button {
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.cart-remove {
  align-self: start;
  border: 0;
  background: transparent;
  color: rgba(11, 13, 12, 0.48);
  cursor: pointer;
}

.cart-empty {
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.cart-empty span {
  font-size: 2rem;
}

.cart-empty h3 {
  margin: 0.75rem 0 0.3rem;
  font-family: var(--display);
  font-size: 1.6rem;
}

.cart-empty p {
  max-width: 20rem;
  margin: 0;
  color: rgba(11, 13, 12, 0.55);
}

.cart-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-total strong:last-child {
  font-family: var(--display);
  font-size: 1.4rem;
}

.cart-footer .button {
  width: 100%;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 250;
  max-width: min(90vw, 32rem);
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translate(-50%, 1rem);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .next-class {
    width: min(25rem, 37vw);
  }

  .class-row {
    grid-template-columns: 6.5rem minmax(12rem, 1.2fr) minmax(8rem, 0.7fr) auto;
  }

  .class-row .class-meta {
    display: none;
  }

  .event-row {
    grid-template-columns: 3rem minmax(12rem, 1fr) minmax(13rem, 0.8fr) 7rem auto;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .site-header {
    min-height: 4.25rem;
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .desktop-nav,
  .header-book {
    display: none;
  }

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

  .menu-button {
    display: block;
  }

  .hero {
    min-height: calc(100svh - 4.25rem);
  }

  .hero-copy {
    margin-left: 5vw;
    margin-bottom: 5rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 13vw, 7rem);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 8, 0.9) 0%, rgba(7, 8, 8, 0.4) 70%, rgba(7, 8, 8, 0.12)),
      linear-gradient(0deg, rgba(7, 8, 8, 0.92) 0%, transparent 72%);
  }

  .next-class {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .section-lead,
  .schedule-intro > p {
    max-width: 34rem;
  }

  .day-tabs {
    grid-template-columns: repeat(7, minmax(7rem, 1fr));
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .class-row {
    grid-template-columns: 6rem 1fr auto;
    gap: 0.9rem;
  }

  .class-row .class-meta {
    display: block;
    grid-column: 2;
  }

  .class-row .capacity {
    grid-column: 2;
  }

  .class-row .class-book {
    grid-column: 3;
    grid-row: 1 / span 3;
  }

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

  .membership-card {
    grid-column: span 6;
  }

  .membership-card:last-child {
    grid-column: 1 / -1;
  }

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

  .about-image-wrap {
    min-height: 38rem;
  }

  .event-row {
    grid-template-columns: 2.5rem 1fr auto;
    align-items: start;
  }

  .event-row .event-meta {
    grid-column: 2;
  }

  .event-price {
    grid-column: 2;
  }

  .event-button {
    grid-column: 3;
    grid-row: 1 / span 3;
  }

  .shop-feature {
    grid-template-columns: 1fr;
  }

  .shop-feature > div {
    min-height: 28rem;
  }

  .shop-feature img {
    max-height: 35rem;
  }

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

  .quick-view {
    opacity: 1;
    transform: none;
  }

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

  .visit-card {
    max-width: 38rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .product-dialog-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-dialog-image {
    min-height: 31rem;
  }
}

@media (max-width: 640px) {
  .intro-bar {
    font-size: 0.68rem;
  }

  .intro-bar > a {
    gap: 0.35rem;
    padding: 0 2.6rem 0 0.8rem;
  }

  .intro-bar strong {
    display: none;
  }

  .site-header {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .cart-button > span:first-child {
    display: none;
  }

  .hero {
    min-height: min(800px, calc(100svh - 4.25rem));
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 8, 0.66), rgba(7, 8, 8, 0.15)),
      linear-gradient(0deg, rgba(7, 8, 8, 0.96) 0%, rgba(7, 8, 8, 0.78) 42%, transparent 78%);
  }

  .hero-copy {
    width: 90vw;
    margin-bottom: 3.8rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 5.4rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

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

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 5rem 0;
  }

  .section-heading h2,
  .visit-copy h2 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .week-bar {
    gap: 0.8rem;
  }

  .week-bar > div {
    min-width: 0;
    flex: 1;
  }

  .week-bar strong {
    font-size: 0.77rem;
    text-align: center;
  }

  .class-results {
    min-height: 17rem;
  }

  .result-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .class-row {
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 1.15rem;
  }

  .class-time {
    grid-column: 1;
    font-size: 1.1rem;
  }

  .class-title-wrap {
    grid-column: 1;
  }

  .class-row .class-meta,
  .class-row .capacity {
    grid-column: 1;
  }

  .class-row .class-book {
    grid-column: 2;
    grid-row: 1 / span 4;
    min-width: 5.4rem;
    padding: 0.65rem;
    font-size: 0.75rem;
  }

  .class-type-grid {
    grid-template-columns: 1fr;
  }

  .class-type {
    min-height: 18rem;
  }

  .classes-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .membership-card,
  .membership-card.wide,
  .membership-card:last-child {
    grid-column: 1;
    min-height: 28rem;
  }

  .about-image-wrap {
    min-height: 30rem;
  }

  .about-copy {
    padding: 4rem 5vw;
  }

  .about-copy h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .image-stamp {
    right: 1rem;
    bottom: 1rem;
    width: 6.5rem;
    height: 6.5rem;
    font-size: 0.82rem;
  }

  .event-row {
    grid-template-columns: 2rem 1fr auto;
    gap: 0.8rem;
  }

  .event-row h3 {
    font-size: 1.7rem;
  }

  .event-button {
    width: 2.8rem;
    height: 2.8rem;
  }

  .shop-feature > div {
    min-height: 26rem;
    padding: 2rem 1.3rem;
  }

  .shop-feature h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .product-info {
    grid-template-columns: 1fr;
    padding: 0.8rem;
  }

  .product-info p {
    grid-row: 2;
  }

  .product-category {
    display: none;
  }

  .visit {
    padding: 5rem 5vw;
  }

  .visit-card li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100svh - 1rem);
    border-radius: 1rem;
  }

  .dialog-content {
    padding: 4.2rem 1.2rem 1.5rem;
  }

  .booking-summary,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide,
  .check-field {
    grid-column: 1;
  }

  .booking-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .dialog-actions .button {
    width: 100%;
  }

  .product-dialog-grid {
    grid-template-columns: 1fr;
  }

  .product-dialog-image {
    min-height: 18rem;
    max-height: 35svh;
  }

  .product-dialog-copy {
    padding: 1.5rem 1.2rem;
  }

  .quantity-row {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    width: 100%;
  }
}
