/* Tulsa’s Spider-Man — one-page site for a local character performer.
   Poster energy, not startup: condensed headlines, red / ink / white, square-ish corners,
   big photos with diagonal cuts. */

:root {
  --paper: #ffffff;
  --paper-2: #f6f3ee;
  --ink: #14151b;
  --ink-2: #2a2b33;
  --muted: #5b5d66;
  --line: #e4e4ea;
  --red: #e11d2f;
  --red-dark: #bf1527;
  --red-tint: #fdeaec;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --wrap: min(72rem, 100% - 2.5rem);
  --dock-h: 4.9rem;
  --r: 4px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom));
}

[hidden] {
  display: none !important;
}

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

a {
  color: var(--red-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--red);
}

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

button {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--red);
  color: #fff;
}

.nowrap {
  white-space: nowrap;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 7vw, 3.4rem);
}

h3 {
  font-size: 1.5rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 0.9rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  font-weight: 700;
  text-decoration: none;
}

.skip:focus {
  top: 1rem;
}

/* ---------- buttons ---------- */

.btn {
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border: 2px solid var(--red);
  border-radius: var(--r);
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}

.btn:active {
  transform: translateY(1px);
}

.btn-lg {
  min-height: 3.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 1.25rem;
}

.btn-sm {
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-outline-red {
  background: #fff;
  color: var(--red-dark);
}

.btn-outline-red:hover {
  background: var(--red-tint);
  color: var(--red-dark);
  border-color: var(--red-dark);
}

/* ---------- top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-mark {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: var(--r);
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.topbar-cta {
  display: none;
}

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-areas:
    "photo"
    "slab";
  background: var(--ink);
}

.hero-photo {
  grid-area: photo;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink-2);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 30%;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 30% 70%, rgba(225, 29, 47, 0.55), transparent 70%),
    radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1.3px) 0 0 / 9px 9px,
    var(--ink-2);
}

.hero-photo.has-photo .hero-fallback {
  display: none;
}

.hero-slab {
  grid-area: slab;
  position: relative;
  color: #fff;
  background: var(--ink);
  margin-top: -2.6rem;
  clip-path: polygon(0 2.6rem, 100% 0, 100% 100%, 0 100%);
  padding: 4.2rem 0 2.4rem;
}

.hero-slab::before {
  /* faint halftone, fades out to the right */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1.4px) 0 0 / 9px 9px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 55%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 55%);
}

.hero-copy {
  position: relative;
  width: var(--wrap);
  margin-inline: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.tag::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
}

.hero h1 {
  margin-top: 0.9rem;
  font-size: clamp(3.6rem, 15vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: -0.005em;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-sub {
  margin-top: 1.1rem;
  font-size: clamp(1.15rem, 4.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  max-width: 34ch;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-note {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.hero-note b {
  color: #fff;
  font-weight: 700;
}

/* ---------- service strip ---------- */

.strip {
  background: var(--red);
  color: #fff;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.6rem;
  padding: 0.8rem 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.strip-inner span::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: #fff;
  opacity: 0.85;
}

/* ---------- sections ---------- */

.section {
  padding: 3.5rem 0 0;
}

.section-paper {
  margin-top: 3.5rem;
  padding: 3rem 0;
  background: var(--paper-2);
}

.section-paper + .section {
  padding-top: 3.5rem;
}

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

.section-head h2 {
  margin-top: 0.7rem;
}

.lead {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 54ch;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-block;
  padding: 0.32rem 0.55rem 0.28rem;
  background: var(--red);
  color: #fff;
  border-radius: 2px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  background: #fff;
  color: var(--red-dark);
}

.sub-title {
  margin-top: 2rem;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ---------- the visit ---------- */

.experience {
  display: grid;
  gap: 2rem;
}

.experience-copy h2 {
  margin-top: 0.7rem;
}

.visit-list {
  list-style: none;
  counter-reset: visit;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--ink-2);
}

.visit-list li {
  counter-increment: visit;
  position: relative;
  padding-left: 2.1rem;
  text-wrap: pretty;
}

.visit-list li::before {
  content: counter(visit);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--red);
}

.visit-list b {
  color: var(--ink);
  font-weight: 700;
}

.options-lead {
  margin-top: 1.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.event-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.event-link {
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.6rem;
  padding: 0.5rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  background: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.event-link::after {
  content: "→";
  color: var(--red);
}

.event-link:hover {
  background: var(--ink);
  color: #fff;
}

.event-link:hover::after {
  color: #fff;
}

.experience-photo {
  position: relative;
  margin: 0.5rem 0 0;
}

.experience-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 25%;
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
}

/* ---------- packages: a board, not cards ---------- */

.board {
  border-top: 3px solid var(--ink);
}

.plan {
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-items: start;
  padding: 1.05rem 0.2rem 1.1rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease;
}

.plan:hover {
  background: var(--paper-2);
}

.plan.is-usual:hover {
  background: var(--red-tint);
}

.plan-head {
  grid-column: 1;
  grid-row: 1;
  display: grid;
}

.plan-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 0.2rem;
}

.plan-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.plan-len {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}

.plan-price {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.plan.is-usual .plan-price {
  color: var(--red);
}

.plan-desc {
  grid-column: 1;
  grid-row: 2;
  color: var(--muted);
  font-size: 0.97rem;
  text-wrap: pretty;
}

.plan::after {
  content: "Book →";
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-dark);
  white-space: nowrap;
}

.plan:hover::after {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.extras {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.extras li {
  padding-left: 1.2rem;
  position: relative;
}

.extras li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
}

.extras b {
  color: var(--ink);
  font-weight: 700;
}

/* ---------- about ---------- */

.about {
  display: grid;
  gap: 1.75rem;
}

.about-photo {
  position: relative;
  margin: 0 0 0 0.9rem;
  max-width: 24rem;
}

.about-photo::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0.9rem;
  right: 0.9rem;
  bottom: -0.9rem;
  background: var(--ink);
  z-index: 0;
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: 50% 15%;
}

.about-copy h2 {
  margin-top: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
}

.about-copy > p {
  margin-top: 0.9rem;
  color: var(--ink-2);
  text-wrap: pretty;
}

.about-copy > p b {
  color: var(--ink);
  font-weight: 700;
}

.facts {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.98rem;
}

.facts li {
  position: relative;
  padding-left: 1.2rem;
}

.facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
}

/* ---------- faq ---------- */

.faq {
  border-top: 2px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  position: relative;
  padding: 1rem 2.6rem 1rem 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
  background: var(--ink);
  color: #fff;
}

.faq details p {
  padding: 0 0 1.1rem;
  color: var(--muted);
  max-width: 60ch;
  text-wrap: pretty;
}

/* ---------- book: band + form card ---------- */

.book {
  margin-top: 3.5rem;
}

.book-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 3.25rem 0 5.5rem;
}

.book-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1.4px) 0 0 / 9px 9px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 50%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 50%);
}

.band-web {
  position: absolute;
  top: -1%;
  right: -2%;
  width: min(70vw, 30rem);
  height: auto;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0.35;
  pointer-events: none;
}

.book-band-inner {
  position: relative;
}

.book-band h2 {
  margin-top: 0.8rem;
  max-width: 16ch;
}

.book-lead {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 50ch;
  text-wrap: pretty;
}

.book-card {
  position: relative;
  z-index: 1;
  margin-top: -3.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.4rem 1.1rem 1.4rem;
  box-shadow: 0 24px 60px rgba(20, 21, 27, 0.18);
}

/* ---------- form ---------- */

.form {
  display: grid;
  gap: 1.6rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

fieldset.field {
  gap: 0.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

fieldset.field:first-of-type {
  padding-top: 0;
  border-top: 0;
}

label,
legend,
.label-like {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0;
}

legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.step {
  width: 1.7rem;
  height: 1.7rem;
  background: var(--red);
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 2px;
  font-size: 1.05rem;
  font-weight: 800;
}

.opt {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

.hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: -0.4rem;
}

.field-sub {
  margin-top: 0.2rem;
}

input,
select,
textarea {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #cfd0d7;
  border-radius: var(--r);
  padding: 0.85rem 0.95rem;
  min-height: 3.2rem;
  font: 500 1.02rem/1.3 var(--body);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

textarea {
  resize: vertical;
  min-height: 5.5rem;
}

input::placeholder,
textarea::placeholder {
  color: #9a9ba5;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 29, 47, 0.18);
}

input:user-invalid {
  border-color: var(--red);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2.5px solid var(--muted);
  border-bottom: 2.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

select {
  padding-right: 2.6rem;
  cursor: pointer;
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.choice {
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  padding: 0.65rem 0.95rem;
  border: 1.5px solid #cfd0d7;
  border-radius: var(--r);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.choice:hover {
  border-color: var(--red);
}

.choice[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.grid-2 {
  display: grid;
  gap: 1rem;
}

/* --- day + time picker --- */

.picker {
  display: grid;
  gap: 1rem;
}

.cal {
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 0.9rem 0.9rem 0.8rem;
  background: #fff;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cal-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cal-nav {
  appearance: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--r);
  border: 1.5px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cal-nav:hover {
  border-color: var(--red);
}

.cal-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.cal-nav svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cal-dow,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
}

.cal-dow span {
  text-align: center;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.2rem 0 0.35rem;
}

.day {
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  aspect-ratio: 1;
  width: 100%;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
}

.day:hover:not(:disabled) {
  background: var(--red-tint);
}

.day:disabled {
  color: #c2c3cb;
  cursor: default;
  font-weight: 500;
}

.day.is-today::after {
  content: "";
  position: absolute;
  bottom: 0.28rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--red);
}

.day[aria-pressed="true"] {
  background: var(--red);
  color: #fff;
}

.day[aria-pressed="true"].is-today::after {
  background: #fff;
}

.day-empty {
  aspect-ratio: 1;
}

.cal-legend {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  text-wrap: pretty;
}

.times {
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 0.9rem 0.9rem 0.8rem;
  background: var(--paper-2);
}

.times-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

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

.time-list:empty {
  display: none;
}

.time {
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  min-height: 2.7rem;
  padding: 0.45rem 0.4rem;
  border: 1.5px solid #cfd0d7;
  border-radius: var(--r);
  background: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: grid;
  gap: 0.05rem;
  place-items: center;
  line-height: 1.1;
}

.time:hover {
  border-color: var(--red);
}

.time[aria-pressed="true"] {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.time small {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--red-dark);
  letter-spacing: 0.02em;
}

.time[aria-pressed="true"] small {
  color: rgba(255, 255, 255, 0.85);
}

.time.is-flex {
  grid-column: 1 / -1;
}

.times-note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-wrap: pretty;
}

.when-summary {
  padding: 0.7rem 0.95rem;
  border-left: 4px solid var(--red);
  background: var(--red-tint);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
}

.when-error {
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

/* --- deposit + submit --- */

.deposit-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--r);
  background: var(--paper-2);
}

.deposit-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.deposit-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}

.form-foot {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.btn[disabled] {
  opacity: 0.65;
  cursor: default;
}

.sent {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--red);
  background: var(--paper-2);
}

.sent-top {
  margin-bottom: 1.5rem;
}

.sent p {
  font-size: 0.95rem;
  color: var(--muted);
}

.sent-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink) !important;
  margin-bottom: 0.2rem;
}

.sent-summary {
  font-weight: 700;
  color: var(--ink) !important;
  margin-top: 0.35rem;
}

.copy {
  appearance: none;
  margin-left: 0.35rem;
  padding: 0.3rem 0.7rem;
  background: #fff;
  border: 1.5px solid #cfd0d7;
  border-radius: var(--r);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  vertical-align: middle;
}

.copy.is-done {
  border-color: var(--red);
  color: var(--red-dark);
}

/* ---------- footer ---------- */

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

.footer-inner {
  padding: 1.5rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.footer p + p {
  margin-top: 0.4rem;
}

.disclaimer {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- sticky dock (phones) ---------- */

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.dock.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

/* ---------- wider screens ---------- */

@media (min-width: 720px) {
  .plan {
    grid-template-columns: 13rem 1fr auto auto;
    align-items: center;
    column-gap: 1.5rem;
    padding: 1.2rem 0.4rem 1.2rem 0;
  }

  .plan-desc {
    grid-column: 2;
    grid-row: 1;
  }

  .plan-price {
    grid-column: 3;
    grid-row: 1;
    font-size: 3rem;
  }

  .plan::after {
    grid-column: 4;
    grid-row: 1;
    align-self: center;
  }

  .book-card {
    padding: 2rem 2rem 1.8rem;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }

  .picker {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

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

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .dock {
    display: none;
  }

  .topbar-cta {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-areas: "slab photo";
    min-height: min(46rem, 88vh);
  }

  .hero-slab {
    margin: 0;
    clip-path: none;
    display: flex;
    align-items: center;
    padding: 4rem 0;
  }

  .hero-copy {
    width: auto;
    margin: 0;
    padding-left: max(1.25rem, calc((100vw - 72rem) / 2));
    padding-right: 4.5rem;
    max-width: 40rem;
  }

  .hero h1 {
    font-size: clamp(5rem, 8.4vw, 7.6rem);
  }

  .hero-photo {
    aspect-ratio: auto;
    min-height: 100%;
    margin-left: -5rem;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
  }

  .section {
    padding-top: 5rem;
  }

  .section-paper {
    margin-top: 5rem;
    padding: 4.25rem 0;
  }

  .section-paper + .section {
    padding-top: 5rem;
  }

  .experience {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: start;
  }

  .experience-photo {
    margin-top: 2.5rem;
  }

  .experience-photo img {
    aspect-ratio: 4 / 4.6;
  }

  .about {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
  }

  .about-photo {
    max-width: none;
  }

  .faq-wrap {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }

  .faq-wrap .section-head {
    position: sticky;
    top: 5.5rem;
  }

  .book-band {
    padding: 4.5rem 0 7rem;
  }

  .book-card {
    margin-top: -4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
