:root {
  --bg: #000;
  --bg-elevated: #111111;
  --ink: #f5f5f5;
  --ink-muted: rgba(245, 245, 245, 0.62);
  --line: rgba(255, 255, 255, 0.12);
  --red: #e31c23;
  --red-deep: #b01018;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  background: #000;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100dvh;
  background: #000;
}

body.booking-open {
  overflow: hidden;
}

.site-menu {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 40;
}

.menu-toggle {
  appearance: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.2s ease;
}

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

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

.menu-toggle:hover {
  border-color: rgba(227, 28, 35, 0.55);
}

.menu-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.site-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  flex-direction: column;
  min-width: 168px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.site-menu__panel.is-open {
  display: flex;
}

.site-menu__panel a {
  padding: 0.75rem 0.9rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-menu__panel a:hover,
.site-menu__panel a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.social-ig {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 245, 0.45);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: color 0.2s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.social-ig.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.social-ig:hover {
  color: #fff;
}

.social-ig:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 56px;
  background: #000;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.logo-wrap {
  position: relative;
  width: min(72vw, 340px);
  aspect-ratio: 1;
  cursor: default;
}

.logo-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%) scale(0.92);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(227, 28, 35, 0.45) 0%,
    rgba(176, 16, 24, 0.28) 40%,
    rgba(227, 28, 35, 0.1) 62%,
    transparent 75%
  );
  opacity: 0;
  filter: blur(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

.logo-wrap:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
}

.logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transition: filter 0.45s ease;
}

.logo-wrap:hover .logo {
  filter: drop-shadow(0 0 16px rgba(227, 28, 35, 0.55))
    drop-shadow(0 0 36px rgba(227, 28, 35, 0.4))
    drop-shadow(0 0 60px rgba(176, 16, 24, 0.3))
    brightness(1.06);
}

.tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0;
  animation: rise-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.book-btn {
  appearance: none;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 55%, #8a0c14 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  padding: 0.85rem 2.4rem 0.7rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow:
    0 10px 28px rgba(227, 28, 35, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  opacity: 0;
  animation: rise-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.book-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 14px 34px rgba(227, 28, 35, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.book-btn:active {
  transform: translateY(0);
}

.book-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.book-btn:disabled {
  opacity: 0.65;
  cursor: default;
  transform: none;
  filter: none;
}

.book-btn--submit {
  width: 100%;
  margin-top: 4px;
  opacity: 1;
  animation: none;
}

/* Booking modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fade-in 0.25s ease;
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: min(92dvh, 760px);
  overflow: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 28px 24px 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  animation: panel-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.booking-modal__close:hover {
  color: #fff;
}

.booking-modal__header {
  margin-bottom: 22px;
  padding-right: 28px;
}

.booking-modal__eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 6px;
}

.booking-modal__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.35rem);
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.booking-modal__lede {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field span em {
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0;
}

.field textarea {
  resize: vertical;
  min-height: 84px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9a9a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(227, 28, 35, 0.55);
  box-shadow: 0 0 0 3px rgba(227, 28, 35, 0.15);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 245, 245, 0.28);
}

.booking-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.booking-status {
  min-height: 1.2em;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.booking-status.is-success {
  color: #7ddea0;
}

.booking-status.is-error {
  color: #ff8b8b;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 48px;
}

.slot-grid__hint {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.4;
  padding: 10px 0 2px;
}

.slot-grid__hint--error {
  color: #ff8b8b;
}

.slot-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.7rem 0.4rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.slot-btn:hover {
  border-color: rgba(227, 28, 35, 0.55);
  color: #fff;
}

.slot-btn.is-selected {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
}

.slot-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 520px) {
  .logo-wrap {
    width: min(82vw, 280px);
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

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

  .booking-modal__panel {
    padding: 24px 18px 20px;
  }

  .tagline {
    font-size: 0.82rem;
  }

  .book-btn {
    font-size: 1.2rem;
    padding: 0.8rem 2rem 0.65rem;
  }

  .site-menu {
    top: 14px;
    right: 14px;
  }

  .tee-viewer {
    grid-template-columns: 36px 1fr 36px;
  }

  .tee-viewer__arrow {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .tagline,
  .book-btn,
  .booking-modal__backdrop,
  .booking-modal__panel {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Shop — tee product viewer */
.page-shop {
  min-height: 100dvh;
  background: #000;
}

.shop-stage {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 24px 56px;
}

.tee-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(100%, 640px);
  text-align: center;
}

.tee-product__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.15rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.tee-viewer {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.tee-viewer__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: visible;
  background: #fff;
}

.tee-viewer__img {
  width: 100%;
  height: auto;
  max-height: min(62vh, 480px);
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
  image-rendering: auto;
}

.tee-viewer__img[hidden] {
  display: none;
}

.tee-viewer__arrow {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  font-size: 2.4rem;
  line-height: 1;
  padding: 8px 4px;
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.tee-viewer__arrow:hover {
  color: #fff;
  transform: scale(1.08);
}

.tee-viewer__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.tee-viewer__side {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.tee-product__soon {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* Availability — Google Calendar-style month view */
.page-availability {
  min-height: 100dvh;
  background: #000;
}

.avail-stage {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 88px 20px 56px;
  width: min(100%, 420px);
  margin: 0 auto;
}

.avail-header {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.avail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.8rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.avail-lede {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.avail-service {
  width: 100%;
  margin-bottom: 20px;
}

.gcal {
  width: 100%;
  background: #111;
  border: 1px solid var(--line);
  padding: 14px 12px 16px;
}

.gcal__toolbar {
  display: grid;
  grid-template-columns: 40px 1fr 40px auto;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.gcal__month {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.gcal__nav,
.gcal__today {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.gcal__nav {
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.gcal__today {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  margin-left: 4px;
}

.gcal__nav:hover,
.gcal__today:hover {
  border-color: rgba(227, 28, 35, 0.55);
  color: #fff;
}

.gcal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.gcal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.gcal__day {
  appearance: none;
  border: none;
  background: transparent;
  color: #fff;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  position: relative;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}

.gcal__day-num {
  line-height: 1;
}

.gcal__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.gcal__day.is-outside {
  color: rgba(245, 245, 245, 0.28);
}

.gcal__day.is-outside .gcal__dot {
  opacity: 0.45;
}

.gcal__day.is-past {
  color: rgba(245, 245, 245, 0.28);
  cursor: default;
}

.gcal__day.is-past .gcal__dot {
  display: none;
}

.gcal__day.is-today .gcal__day-num {
  color: var(--red);
  font-weight: 700;
}

.gcal__day.is-selected {
  background: var(--red);
  color: #fff;
}

.gcal__day.is-selected .gcal__day-num {
  color: #fff;
}

.gcal__day.is-selected .gcal__dot {
  background: #fff;
}

.gcal__day:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.08);
}

.gcal__day.is-selected:hover {
  background: var(--red);
}

.gcal__day:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.gcal-day {
  width: 100%;
  margin-top: 22px;
}

.gcal-day__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 12px;
  color: #fff;
}

.gcal-day__slots {
  min-height: 48px;
}

.avail-empty {
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding: 4px 0 8px;
}

.avail-status--error {
  color: #ff8b8b;
}

a.slot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
}
