:root {
  --pink: #D93A92;
  --soft-pink: #ED9CC3;
  --cream: #EDE3C7;
  --blue: #045BA7;
  --ink: #045BA7;
  --white: #fffaf1;
  --font-main: "neulis-sans", "Neulis Sans", "NeulisSans", sans-serif;
  --font-script: "neulis-cursive", "Neulis Cursive", "NeulisCursive", "Snell Roundhand", "Apple Chancery", "Brush Script MT", cursive;
}

@font-face {
  font-family: "Neulis Sans";
  src:
    local("Neulis Sans"),
    local("neulis-sans"),
    local("NeulisSans");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neulis Cursive";
  src:
    local("Neulis Cursive"),
    local("neulis-cursive"),
    local("NeulisCursive");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neulis Sans";
  src:
    local("Neulis Sans Italic"),
    local("neulis-sans-italic"),
    local("NeulisSans-Italic");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: auto;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-main);
}

button,
input,
select,
textarea {
  font-family: var(--font-main);
  font: inherit;
}

.booking-shell {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: visible;
  background: var(--cream);
}

.site-header {
  position: absolute;
  z-index: 5;
  inset: 52px 78px auto 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.brand,
.site-header .pill-button {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  text-decoration: none;
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: clamp(142px, 10.2vw, 210px);
  height: auto;
}

.splash-logo {
  display: block;
  width: min(360px, 70vw);
  height: auto;
  margin-bottom: 22px;
}

.hero-image {
  position: fixed;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) scale(1.03);
  transition: opacity 260ms ease, transform 220ms ease-out;
  will-change: transform, opacity;
}

.hero-image.diagonal-fade {
  animation: diagonal-image-fade 1550ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.screen {
  position: relative;
  display: none;
  align-items: start;
  padding: 138px 8.8vw 60px;
  min-height: 100svh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.screen.active {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.landing-screen {
  padding: 0;
  cursor: pointer;
}

.landing-screen.active {
  display: block;
}

.landing-screen::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 34px;
  left: 42px;
  width: clamp(280px, 21vw, 420px);
  height: clamp(96px, 7vw, 145px);
  border-radius: 0;
  background: var(--cream);
  pointer-events: none;
}

.landing-hotspot {
  position: absolute;
  left: 9.5vw;
  top: 48vh;
  z-index: 4;
  width: clamp(240px, 20vw, 420px);
  height: clamp(90px, 8vw, 145px);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.landing-hotspot:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 6px;
}

.auth-copy {
  margin-block: auto;
  align-self: center;
}

.sign-in-panel {
  width: min(30vw, 590px);
  min-width: 520px;
  padding: 38px 48px 58px;
  border-width: 0;
  border-radius: 10px;
  text-align: center;
}

.auth-intro,
.auth-help {
  color: var(--cream);
  text-align: center;
  font-size: clamp(1rem, 1.25vw, 1.45rem);
  line-height: 1.18;
}

.auth-intro {
  margin-bottom: 28px;
}

.auth-help {
  margin-top: 72px;
  margin-bottom: 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}

.auth-tab {
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-weight: 900;
  font-size: clamp(1rem, 1.15vw, 1.3rem);
}

.auth-tab.active,
.auth-tab:hover,
.auth-tab:focus-visible {
  color: var(--soft-pink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.auth-input-label {
  width: 100%;
  margin: 0;
}

.auth-submit {
  display: flex;
  width: max-content;
  min-width: 162px;
  margin: 18px auto 0 !important;
  align-self: center;
  justify-self: center;
}

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

.copy-stack {
  position: relative;
  z-index: 2;
  width: min(43vw, 880px);
  min-width: 580px;
  animation: enter-copy 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.copy-stack.wide {
  width: min(46vw, 920px);
}

.booking-step-stack {
  width: min(54vw, 980px);
  min-width: 700px;
  padding-bottom: 40px;
}

.title {
  margin: 0 0 34px;
  max-width: 820px;
  color: var(--blue);
  font-size: clamp(4.9rem, 6.05vw, 8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.decor {
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.script-letter {
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 900;
  line-height: 0.82;
  transform: translateY(0.025em);
}

.decor::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-color: var(--pink);
  transform-origin: left center;
  opacity: 0;
}

.underline::after {
  left: -0.04em;
  right: -0.06em;
  bottom: -0.04em;
  border-bottom: 0.08em solid var(--pink);
  transform: scaleX(0) rotate(1.5deg);
  animation: draw-underline 820ms cubic-bezier(0.22, 0.78, 0.24, 1) 720ms both;
}

.circle::after {
  inset: -0.08em -0.12em -0.03em -0.16em;
  border: 0.07em solid var(--pink);
  border-radius: 50%;
  transform: scaleX(0) rotate(1deg);
  animation: draw-circle 980ms cubic-bezier(0.22, 0.78, 0.24, 1) 720ms both;
}

.compact::after {
  border-width: 0.09em;
}

.panel {
  width: min(100%, 860px);
  padding: 31px 34px;
  border: 27px solid var(--blue);
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 20px 38px rgb(4 91 167 / 0.16);
}

.panel h2 {
  margin: 0 0 10px;
  color: var(--soft-pink);
  font-size: clamp(1.5rem, 1.45vw, 2rem);
  line-height: 1;
}

.booking-card {
  border-width: 0;
  padding: clamp(28px, 3vw, 42px);
}

.booking-card h2 {
  text-align: center;
  color: var(--soft-pink);
  font-size: clamp(1.65rem, 2vw, 2.5rem);
}

.booking-card h3 {
  margin: 24px 0 12px;
  color: var(--cream);
  font-size: 1.05rem;
}

.booking-card h3 span {
  color: var(--soft-pink);
}

.step-section-title {
  grid-column: 1 / -1;
  color: var(--cream);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.address-step-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.booking-shell[data-current-screen="address"] .screen[data-screen="address"] {
  display: block;
  width: min(100vw, calc(100svh * 1559 / 1009));
  min-height: 0;
  aspect-ratio: 1559 / 1009;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: url("assets/address-page-final.png") center / 100% 100% no-repeat;
}

.booking-shell[data-current-screen="address"] .site-header {
  display: none;
}

.booking-shell[data-current-screen="address"] .hero-image {
  opacity: 0 !important;
}

.booking-shell[data-current-screen="address"] .booking-step-stack {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  min-width: 0;
  padding: 0;
}

.booking-shell[data-current-screen="address"] .title {
  display: none;
}

.booking-shell[data-current-screen="address"] .address-step-panel {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-shell[data-current-screen="address"] .screen[data-screen="address"]::after {
  display: none;
}

.booking-shell[data-current-screen="address"] .address-step-panel > * {
  animation: none !important;
}

.booking-shell[data-current-screen="address"] .panel-intro,
.booking-shell[data-current-screen="address"] .step-section-title {
  display: none;
}

.booking-shell[data-current-screen="address"] .address-choice-grid {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 10;
}

.booking-shell[data-current-screen="address"] .address-choice {
  position: absolute;
  min-height: 0;
  height: 8.6%;
  padding: 1.05% 1.2%;
  border: 4px solid transparent !important;
  border-radius: 10px;
  background: transparent;
  color: var(--blue) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  pointer-events: auto;
  cursor: pointer;
}

.booking-shell[data-current-screen="address"] .address-choice em,
.booking-shell[data-current-screen="address"] .address-choice.dashed span {
  color: transparent !important;
  opacity: 0 !important;
}

.booking-shell[data-current-screen="address"] .address-choice:nth-child(1) {
  top: 43.55%;
  left: 10.05%;
  width: 22.2%;
}

.booking-shell[data-current-screen="address"] .address-choice:nth-child(2) {
  top: 43.55%;
  left: 33.1%;
  width: 21.8%;
}

.booking-shell[data-current-screen="address"] .address-choice:nth-child(3) {
  top: 53.25%;
  left: 10.05%;
  width: 22.2%;
}

.booking-shell[data-current-screen="address"] .address-choice:nth-child(4) {
  top: 53.25%;
  left: 33.1%;
  width: 21.8%;
}

.booking-shell[data-current-screen="address"] .address-choice.selected {
  border-color: transparent !important;
  box-shadow: none !important;
}

.booking-shell[data-current-screen="address"] .address-choice.selected:not(:first-child) {
  border-color: var(--soft-pink) !important;
  box-shadow: 0 0 0 3px rgb(217 58 146 / 0.34) !important;
}

.booking-shell[data-current-screen="address"] .address-choice.dashed {
  display: grid;
  background: transparent;
  color: transparent !important;
  place-items: center;
}

.booking-shell[data-current-screen="address"] .different-address-panel {
  position: absolute;
  z-index: 4;
  top: 63.2%;
  left: 10.05%;
  width: 44.8%;
}

.booking-shell[data-current-screen="address"] .map-box {
  display: none;
}

.booking-shell[data-current-screen="address"] .map-search-wide {
  position: absolute;
  left: 10.05%;
  width: 44.8%;
  top: 75.45%;
  min-height: 6.15%;
  z-index: 30;
  border: 0 !important;
  background: transparent !important;
  color: transparent !important;
  box-shadow: none !important;
  opacity: 0 !important;
  pointer-events: auto;
}

.booking-shell[data-current-screen="address"] .success-strip {
  display: none;
}

.booking-shell[data-current-screen="address"] .address-step-panel > .pill-button[type="submit"] {
  position: absolute;
  left: 32.45%;
  transform: translateX(-50%);
  width: auto;
  top: 92.9%;
  min-width: 0;
  min-height: 3.9%;
  padding: 0.28% 2.7%;
  border: 3px solid var(--soft-pink) !important;
  border-radius: 999px;
  background: var(--pink) !important;
  color: var(--white) !important;
  box-shadow: 0 0 0 2px rgb(237 156 195 / 0.26) !important;
  opacity: 1 !important;
  z-index: 40;
  pointer-events: auto;
  font-size: clamp(0.78rem, 1vw, 1.05rem);
  line-height: 1;
}

.booking-shell[data-current-screen="address"] .address-choice strong,
.booking-shell[data-current-screen="address"] .address-choice span,
.booking-shell[data-current-screen="address"] .address-choice em {
  color: inherit;
  opacity: 1;
}

.booking-shell[data-current-screen="address"] .address-choice strong {
  font-size: clamp(0.78rem, 0.9vw, 1rem);
  line-height: 1.1;
}

.booking-shell[data-current-screen="address"] .address-choice span {
  margin-top: 0.45em;
  font-size: clamp(0.76rem, 0.86vw, 0.96rem);
  line-height: 1.1;
}

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

.address-choice {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 94px;
  padding: 18px;
  border: 3px solid transparent;
  border-radius: 10px;
  background: var(--cream);
  color: var(--blue);
  text-align: left;
  cursor: pointer;
}

.address-choice strong,
.address-choice span {
  display: block;
}

.address-choice em {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgb(4 91 167 / 0.12);
  color: var(--blue);
  font-style: normal;
}

.address-choice.selected {
  border-color: var(--soft-pink);
  box-shadow: 0 0 0 2px rgb(237 156 195 / 0.32);
}

.address-choice.dashed {
  place-items: center;
  border-style: dashed;
  background: transparent;
  color: var(--cream);
  text-align: center;
}

.different-address-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 0.8fr;
  gap: 12px;
  padding: 16px;
  border: 3px solid #ED9CC3;
  border-radius: 10px;
  background: #045BA7;
}

.different-address-panel[hidden] {
  display: none;
}

.different-address-panel label {
  color: #EDE3C7;
  font-weight: 900;
}

.map-search-button {
  min-height: 58px;
  align-self: end;
  border: 0;
  border-radius: 999px;
  background: #D93A92;
  color: #fffaf1;
  font-weight: 900;
  cursor: pointer;
}

.map-search-button:hover,
.map-search-button:focus-visible {
  background: #045BA7;
  outline: 3px solid #ED9CC3;
}

.rich-map {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(237 156 195 / 0.16) 1px, transparent 1px),
    linear-gradient(rgb(4 91 167 / 0.16) 1px, transparent 1px),
    linear-gradient(135deg, #dff5d3, #e6f7f1 42%, #f9f3db);
  background-size: 64px 64px, 64px 64px, 100% 100%;
  border: 4px solid #85d25f;
}

.map-pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--pink);
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgb(0 0 0 / 0.18);
}

.map-label {
  margin-top: 58px;
  font-weight: 900;
}

.success-strip {
  margin: 0;
  padding: 18px 20px;
  border: 4px solid #D93A92;
  border-radius: 8px;
  background: #EDE3C7;
  color: #045BA7 !important;
  font-weight: 900;
  font-size: 1.16rem;
  line-height: 1.2;
  box-shadow: 0 0 0 4px rgb(237 156 195 / 0.28);
}

.success-strip::before {
  content: "✓";
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  place-items: center;
  border-radius: 50%;
  background: #D93A92;
  color: #EDE3C7;
  font-size: 0.9rem;
}

.date-entry {
  max-width: 440px;
  margin: 0 auto 20px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin: 6px 0 20px;
  color: var(--cream);
  font-size: 1.25rem;
}

.calendar-header button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--cream);
  color: var(--blue);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin: 0 auto 28px;
  max-width: 560px;
}

.month-grid span,
.month-grid button {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-weight: 900;
}

.month-grid button {
  cursor: pointer;
}

.month-grid button:disabled {
  opacity: 0.28;
  cursor: default;
}

.month-grid .calendar-blank {
  min-height: 42px;
}

.month-grid .is-past {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgb(237 156 195 / 0.72);
}

.month-grid .is-today {
  box-shadow: 0 0 0 4px rgb(237 156 195 / 0.22);
}

.month-grid .selected {
  outline: 4px solid var(--soft-pink);
  background: var(--cream);
  color: var(--blue);
}

.duration-label {
  margin-bottom: 12px;
}

.duration-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  overflow-x: auto;
}

.duration-choice {
  flex: 0 0 52px;
  height: 52px;
  border: 3px solid rgb(237 227 199 / 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
}

.duration-choice.selected {
  border-color: var(--soft-pink);
  background: var(--pink);
  color: white;
}

.expanded-times {
  grid-template-columns: repeat(3, 1fr);
  max-height: 330px;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 8px;
  background: #EDE3C7;
  scrollbar-color: #D93A92 #EDE3C7;
}

.expanded-times::-webkit-scrollbar {
  width: 10px;
}

.expanded-times::-webkit-scrollbar-track {
  background: #EDE3C7;
}

.expanded-times::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #D93A92;
}

.availability-error,
.empty-slots {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  color: #EDE3C7;
  font-weight: 900;
  text-align: center;
}

.availability-error {
  color: #ED9CC3;
}

.panel p {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(1rem, 1.05vw, 1.35rem);
  font-weight: 800;
}

.sign-in-panel .auth-help {
  display: block;
  width: fit-content;
  max-width: 420px;
  margin: 22px auto 0;
  text-align: center;
  transform: translate(var(--auth-help-x, 0), var(--auth-help-y, 0)) scale(var(--auth-help-scale, 1));
  transform-origin: center;
}

.edit-panel {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  width: min(320px, calc(100vw - 36px));
  padding: 16px;
  border: 3px solid var(--pink);
  border-radius: 10px;
  background: var(--cream);
  color: var(--blue);
  box-shadow: 0 14px 34px rgb(0 0 0 / 0.22);
  font-weight: 900;
}

.edit-panel strong {
  font-size: 1rem;
}

.edit-panel label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
}

.edit-panel input {
  width: 100%;
  accent-color: var(--pink);
}

.edit-panel code {
  display: block;
  padding: 8px;
  border-radius: 6px;
  background: white;
  color: var(--blue);
  font-size: 0.76rem;
  white-space: normal;
}

.panel label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 900;
}

.panel input,
.panel select,
.panel textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 19px;
  border: 0;
  border-radius: 8px;
  outline: 0;
  background: var(--cream);
  color: var(--blue);
  font-weight: 900;
}

.panel textarea {
  min-height: 96px;
  padding-top: 16px;
  resize: vertical;
}

.panel input:focus,
.panel select:focus,
.panel textarea:focus {
  box-shadow: 0 0 0 4px var(--soft-pink);
}

.inline-options {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.inline-options legend {
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 900;
}

.inline-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.inline-options input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--pink);
}

.panel-auth {
  max-width: 620px;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  background: var(--blue);
  transform: translateY(-1px);
}

.pill-button-small {
  min-height: 40px;
  padding-inline: 26px;
  font-size: 0.92rem;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.address-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.95fr);
  gap: 22px;
}

.panel-intro,
.address-panel .pill-button {
  grid-column: 1 / -1;
  justify-self: start;
}

.address-field {
  margin: 0;
}

.map-box,
.calendar-grid,
.time-grid {
  border-radius: 8px;
  background: var(--cream);
  color: var(--blue);
}

.map-box {
  grid-row: span 4;
  display: grid;
  min-height: 100%;
  place-items: center;
  text-align: center;
  font-weight: 900;
  line-height: 1.05;
}

.select-panel h2 {
  margin-top: 22px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(2.2rem, 2.6vw, 3.4rem);
}

.calendar-grid,
.time-grid {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.calendar-grid {
  grid-template-columns: repeat(4, 1fr);
}

.time-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.day-choice,
.time-choice {
  min-height: 88px;
  border: 3px solid transparent;
  border-radius: 8px;
  background: color-mix(in srgb, var(--cream) 86%, white);
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.time-choice {
  min-height: 54px;
}

.day-choice.selected,
.time-choice.selected {
  border-color: var(--pink);
  background: var(--soft-pink);
}

.confirm-panel {
  max-height: calc(100svh - 210px);
  overflow: auto;
}

.review-table {
  display: grid;
  margin: 26px 0 30px;
  border: 2px solid rgb(237 227 199 / 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.review-table div {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  border-bottom: 2px solid rgb(237 227 199 / 0.22);
}

.review-table div:last-child {
  border-bottom: 0;
}

.review-table dt,
.review-table dd {
  margin: 0;
  padding: 15px 18px;
  font-weight: 900;
}

.review-table dt {
  background: rgb(237 227 199 / 0.1);
}

.review-table dd {
  color: var(--cream);
}

.price-lines {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgb(237 227 199 / 0.22);
}

.price-lines p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
}

.price-lines .total-line {
  padding-top: 14px;
  border-top: 2px solid rgb(237 227 199 / 0.18);
  font-size: 1.25rem;
}

.payment-choice,
.recurring-check {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px !important;
  padding: 16px;
  border: 2px solid rgb(237 227 199 / 0.26);
  border-radius: 8px;
  cursor: pointer;
}

.payment-choice.selected {
  border-color: var(--soft-pink);
  background: rgb(237 156 195 / 0.14);
}

.payment-choice input,
.recurring-check input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--pink);
}

.payment-choice span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgb(237 227 199 / 0.18);
  color: var(--cream);
  font-size: 0.85rem;
}

.language-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.language-choice {
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid rgb(237 227 199 / 0.35);
  background: var(--cream);
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
}

.language-choice:first-child {
  border-radius: 8px 0 0 8px;
}

.language-choice:last-child {
  border-radius: 0 8px 8px 0;
}

.language-choice.selected {
  background: var(--soft-pink);
  color: white;
}

.special-field {
  margin-top: 20px;
}

.success-card {
  text-align: center;
}

.success-card .review-table {
  text-align: left;
}

.success-check {
  display: inline-grid;
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: #78cf8e;
  color: white;
  font-size: 4rem;
  font-weight: 900;
}

.success-copy {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: clamp(2.3rem, 3.1vw, 4rem);
  font-weight: 900;
}

.letterhead-page {
  min-height: 100%;
  overflow: auto;
  background:
    linear-gradient(rgb(237 227 199 / 0.76), rgb(237 227 199 / 0.76)),
    url("assets/letterhead.png") center / cover fixed no-repeat;
}

.account-page {
  min-height: 100svh;
  padding: 48px clamp(22px, 5vw, 78px);
}

.account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(50px, 9vw, 110px);
}

.account-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.account-header a:not(.brand) {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.account-header a:not(.brand):hover,
.account-header a.active {
  background: var(--blue);
}

.account-panel {
  width: min(820px, 100%);
  margin-left: 6vw;
  padding: clamp(28px, 4vw, 52px);
  border: 24px solid var(--blue);
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
}

.account-title {
  margin: 0 0 28px;
  color: var(--cream);
  font-size: clamp(3rem, 5.6vw, 6.6rem);
  line-height: 0.95;
}

.account-title .decor {
  color: var(--cream);
  font-family: var(--font-main);
}

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

.account-grid label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
}

.account-grid input,
.account-grid select {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  outline: 0;
  background: var(--cream);
  color: var(--blue);
  font-weight: 900;
}

.saved-card {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--blue);
  font-weight: 900;
}

.saved-card span {
  color: var(--pink);
}

.reveal {
  animation: enter-copy 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.screen.active .panel > * {
  animation: enter-copy 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.screen.active .panel > *:nth-child(2) {
  animation-delay: 60ms;
}

.screen.active .panel > *:nth-child(3) {
  animation-delay: 110ms;
}

.screen.active .panel > *:nth-child(n + 4) {
  animation-delay: 150ms;
}

.delay-1 {
  animation-delay: 130ms;
}

.delay-2 {
  animation-delay: 240ms;
}

@keyframes enter-copy {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes draw-underline {
  from {
    opacity: 1;
    transform: scaleX(0) rotate(1.5deg);
  }
  to {
    opacity: 1;
    transform: scaleX(1) rotate(1.5deg);
  }
}

@keyframes draw-circle {
  0% {
    opacity: 1;
    transform: scaleX(0.08) rotate(-4deg);
  }
  60% {
    opacity: 1;
    transform: scaleX(1.04) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) rotate(1deg);
  }
}

@keyframes diagonal-image-fade {
  0% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    opacity: 0;
    clip-path: polygon(100% 0, 100% 0, 0 100%, 0 100%);
  }
}

@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  .booking-shell {
    min-height: 100svh;
  }

  .site-header {
    inset: 26px 24px auto;
  }

  .site-header .pill-button {
    display: none;
  }

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

  .landing-hotspot {
    left: 20px;
    top: 42vh;
    width: min(70vw, 320px);
    height: 110px;
  }

  .screen {
    position: relative;
    min-height: 100svh;
    padding: 118px 24px 42px;
    align-items: end;
    display: none;
  }

  .screen.active {
    display: grid;
  }

  .copy-stack,
  .copy-stack.wide,
  .booking-step-stack {
    width: 100%;
    min-width: 0;
  }

  .title {
    margin-bottom: 22px;
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

  .panel {
    padding: 20px;
    border-width: 16px;
  }

  .sign-in-panel,
  .booking-card {
    width: 100%;
    min-width: 0;
    padding: 22px;
  }

  .address-panel,
  .calendar-grid,
  .time-grid,
  .account-grid,
  .address-choice-grid,
  .expanded-times {
    grid-template-columns: 1fr;
  }

  .month-grid {
    gap: 4px;
  }

  .calendar-header {
    gap: 24px;
  }

  .confirm-panel {
    max-height: none;
  }

  .map-box {
    min-height: 128px;
    grid-row: auto;
  }

  .confirm-panel div {
    display: grid;
    gap: 4px;
  }

  .account-page {
    padding: 26px 22px 42px;
  }

  .account-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 44px;
  }

  .account-panel {
    margin-left: 0;
    padding: 20px;
    border-width: 16px;
  }
}

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

  .hero-image {
    transform: none;
  }
}
