:root {
  color: #17201d;
  background: #f3efe5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #17201d;
  --forest: #17352e;
  --forest-soft: #31554c;
  --paper: #f3efe5;
  --paper-deep: #e8e0d2;
  --white: #fffdf8;
  --gold: #d1a84a;
  --oxblood: #8a3f35;
  --sky: #b8cfda;
  --line: #cfc6b7;
  --muted: #67706b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--paper);
}

.app-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--forest);
}

.app-loading p {
  margin: 0;
  color: var(--muted);
}

.loader {
  width: 32px;
  height: 32px;
  border: 3px solid var(--paper-deep);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: agora-spin 0.8s linear infinite;
}

@keyframes agora-spin {
  to { transform: rotate(360deg); }
}

button,
input,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

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

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

h1,
h2,
.event-card h3,
.featured-copy strong,
.table-copy > strong,
.ticket h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.overline,
.event-label {
  margin-bottom: 10px;
  color: var(--oxblood);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.overline.light {
  color: #f1dca4;
}

.button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.primary:hover {
  background: #ddb75c;
}

.button.secondary {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

.button.full {
  width: 100%;
}

.button:disabled {
  background: #d6d1c6;
  color: #777b77;
  transform: none;
}

.text-link,
.back-link {
  border: 0;
  background: transparent;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  font-weight: 750;
}

.text-link:hover,
.back-link:hover {
  color: var(--oxblood);
}

.field {
  display: grid;
  gap: 7px;
}

.field > span {
  color: #4f5955;
  font-size: 0.78rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea,
.search-field {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0 13px;
  outline: 0;
}

.field textarea {
  min-height: 82px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
  line-height: 1.45;
}

.field > span small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
}

.password-input-wrap {
  position: relative;
  display: block;
  color: var(--forest);
  font-size: inherit;
  font-weight: inherit;
}

.password-input-wrap input {
  padding-right: 52px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 38px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #59645f;
  background: transparent;
  border: 0;
  border-radius: 4px;
  transform: translateY(-50%);
  cursor: pointer;
}

.password-toggle:hover,
.password-toggle:focus-visible,
.password-toggle[aria-pressed="true"] {
  color: var(--forest);
  background: rgba(49, 85, 76, 0.1);
  outline: none;
}

.password-eye {
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 75% 15%;
  transform: rotate(45deg);
}

.password-eye::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-field:focus-within {
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 3px rgba(49, 85, 76, 0.13);
}

/* Authentication */

.auth-screen {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  align-items: end;
  gap: 56px;
  padding: 40px 5vw 52px;
  background: var(--forest);
}

.auth-image,
.auth-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.auth-image {
  object-fit: cover;
  object-position: 67% center;
}

.auth-shade {
  background: rgba(9, 24, 19, 0.58);
}

.auth-error {
  margin: 0;
  padding: 11px 13px;
  color: #7d221d;
  background: #f8e3df;
  border-left: 3px solid #b9574d;
  border-radius: 3px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.auth-brand {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 5vw;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.auth-brand span {
  margin-left: 8px;
  color: #f1dca4;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
}

.auth-intro {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-bottom: 8px;
  color: #fffdf8;
}

.auth-intro h1 {
  margin-bottom: 18px;
  font-size: 6.3rem;
  line-height: 0.9;
}

.auth-intro > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  color: #f2ede4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.45;
}

.auth-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - 82px);
  overflow-y: auto;
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.23);
  padding: 12px 32px 32px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 -20px 28px;
  padding: 4px;
  border-radius: 4px;
  background: #e8e3d9;
}

.auth-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #59615d;
  font-size: 0.86rem;
  font-weight: 750;
}

.auth-tabs button.active {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 1px 4px rgba(24, 32, 29, 0.12);
}

.auth-tabs button.create-account-tab,
.auth-tabs button.create-account-tab.active {
  background: var(--oxblood);
  color: #fffdf8;
  box-shadow: none;
}

.auth-tabs button.create-account-tab:hover,
.auth-tabs button.create-account-tab:focus-visible {
  background: #741f2b;
  outline: none;
}

.auth-heading h2 {
  max-width: 360px;
  margin-bottom: 24px;
  font-size: 2.4rem;
  line-height: 1.02;
}

.community-cta {
  width: min(100%, 560px);
  min-height: 58px;
  margin: 0 0 28px;
  padding: 11px 16px;
  border: 1px solid #c7a354;
  border-radius: 10px;
  background: #ead8a9;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.community-home-cta {
  box-shadow: 0 5px 14px rgba(23, 53, 46, .08);
}

.community-cta:hover,
.community-cta:focus-visible {
  background: #dfc77f;
  border-color: #a9802f;
  transform: translateY(-1px);
  outline: none;
}

.community-cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(209, 168, 74, 0.28);
}

.community-cta span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.community-cta small {
  color: var(--forest-soft);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.community-cta strong {
  color: inherit;
  font-size: 1rem;
  line-height: 1.1;
}

.community-cta b {
  flex: 0 0 auto;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
  transition: transform 160ms ease;
}

.community-cta:hover b,
.community-cta:focus-visible b {
  transform: translateX(4px);
}

.auth-form {
  display: grid;
  gap: 15px;
}

.avatar-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}

.directory-privacy-toggle {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--forest);
  background: #edf1eb;
  border: 1px solid #c9d4cd;
  border-radius: 5px;
  cursor: pointer;
}

.directory-privacy-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.directory-privacy-toggle > span:last-child {
  display: grid;
  gap: 3px;
}

.directory-privacy-toggle strong { font-size: 0.78rem; }
.directory-privacy-toggle small { color: var(--muted); font-size: 0.68rem; line-height: 1.45; }
.directory-privacy-toggle input:checked + .toggle { background: var(--forest); }
.directory-privacy-toggle input:checked + .toggle::after { transform: translateX(20px); }
.directory-privacy-toggle input:focus-visible + .toggle { outline: 3px solid rgba(49, 85, 76, 0.18); outline-offset: 2px; }
.profile-game-fields { display: grid; gap: 16px; margin: 8px 0 22px; padding: 22px; border: 1px solid var(--line); border-radius: 7px; }
.profile-game-fields legend { padding: 0 8px; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 700; }
.profile-game-fields legend small { margin-left: 7px; color: var(--muted); font-family: inherit; font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.profile-game-fields > p { margin: -5px 0 2px; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.profile-game-fields .field { margin: 0; }
.newsletter-opt-in { display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: start; gap: 12px; margin-top: 4px; padding: 16px; cursor: pointer; background: #f4eee3; border: 1px solid var(--line); border-radius: 5px; }
.newsletter-opt-in input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.newsletter-opt-in > span:last-child { display: grid; gap: 5px; }
.newsletter-opt-in strong { color: var(--forest); font-size: .78rem; }
.newsletter-opt-in small { color: var(--muted); font-size: .68rem; line-height: 1.45; }
.newsletter-opt-in input:checked + .toggle { background: var(--forest); }
.newsletter-opt-in input:checked + .toggle::after { transform: translateX(20px); }
.newsletter-opt-in input:focus-visible + .toggle { outline: 3px solid rgba(49,85,76,.18); outline-offset: 2px; }

.avatar {
  border-radius: 50%;
  background: var(--sky);
  color: var(--forest);
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

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

.avatar-large {
  width: 62px;
  height: 62px;
  border: 1px dashed #89958f;
  background: #ece8df;
  font-size: 1.4rem;
}

.avatar-small {
  width: 38px;
  height: 38px;
  font-size: 0.78rem;
}

.upload-button {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
}

.upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Shared app chrome */

.app-shell {
  min-height: 100vh;
  min-height: 100dvh;
}

.app-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: calc(72px + env(safe-area-inset-top));
  border-bottom: 1px solid rgba(207, 198, 183, 0.8);
  background: rgba(243, 239, 229, 0.96);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: env(safe-area-inset-top) max(24px, calc((100vw - 1240px) / 2)) 0;
}

.wordmark {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--forest);
  padding: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
}

.wordmark span {
  color: var(--oxblood);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 850;
}

.main-nav {
  height: 72px;
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.main-nav button {
  position: relative;
  border: 0;
  background: transparent;
  color: #67706b;
  padding: 0 4px;
  font-size: 0.84rem;
  font-weight: 750;
}

.main-nav button.active,
.main-nav button:hover {
  color: var(--forest);
}

.main-nav button.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--oxblood);
}

.profile-chip {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid #c4bbac;
  border-radius: 4px;
  object-fit: cover;
}

.profile-chip div {
  min-width: 0;
}

.profile-chip strong,
.profile-chip span {
  display: block;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-chip strong {
  font-size: 0.78rem;
}

.profile-chip div span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.icon-control {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--forest);
  font-size: 1rem;
  transform: rotate(180deg);
}

.icon-control:hover {
  background: var(--paper-deep);
}

.mobile-directory-link { display: none; }
.edit-profile-button { min-height: 36px; padding: 0 10px; color: var(--forest); background: transparent; border: 1px solid var(--line); border-radius: 4px; font-size: .66rem; font-weight: 800; white-space: nowrap; }
.edit-profile-button:hover, .edit-profile-button:focus-visible { color: var(--white); background: var(--forest); border-color: var(--forest); }

.page {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 80px;
}

.toast {
  position: fixed;
  z-index: 60;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: var(--forest);
  color: #fffdf8;
  padding: 14px 18px;
  box-shadow: 0 12px 35px rgba(23, 32, 29, 0.24);
}

/* Event directory */

/* Member directory */

.member-directory-page { padding-top: 72px; }
.directory-hero { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: end; gap: 72px; margin-bottom: 48px; }
.directory-hero h1 { margin-bottom: 0; color: var(--forest); font-size: clamp(3.5rem, 7vw, 5.7rem); line-height: .94; }
.directory-hero > p { margin-bottom: 6px; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; line-height: 1.6; }
.private-profile-note { display: flex; align-items: center; gap: 13px; margin-bottom: 28px; padding: 15px 18px; color: var(--forest); background: #eee6d2; border-left: 4px solid var(--gold); border-radius: 4px; }
.private-profile-note span { color: var(--muted); font-size: .82rem; }
.member-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.member-card { min-height: 390px; display: flex; flex-direction: column; padding: 26px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 7px; box-shadow: 0 12px 35px rgba(23, 53, 46, .06); }
.member-card header { display: flex; align-items: center; gap: 16px; padding-bottom: 23px; border-bottom: 1px solid var(--paper-deep); }
.member-card header > div { min-width: 0; }
.member-card h2 { margin: 0 0 4px; color: var(--forest); font-size: 1.75rem; overflow-wrap: anywhere; }
.member-card header p { margin: 0; color: var(--oxblood); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.member-avatar { width: 76px; height: 76px; flex-basis: 76px; font-size: 1.2rem; }
.member-answer { flex: 1; padding: 22px 0; }
.member-answer + .member-answer { border-top: 1px solid var(--paper-deep); }
.member-answer span { display: block; margin-bottom: 9px; color: var(--muted); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.member-answer p { margin: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; line-height: 1.5; }
.true-answer span { color: var(--oxblood); }
.not-true-answer span { color: var(--muted); }
.unanswered-question span { color: #9a742d; }
.truths-and-lie-game { padding: 22px 0; }
.truths-and-lie-heading { margin-bottom: 13px; }
.truths-and-lie-heading span { display: block; color: var(--oxblood); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.truths-and-lie-heading p { margin: 5px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.45; }
.truths-and-lie-statements { display: grid; gap: 9px; }
.truths-and-lie-statement { width: 100%; display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 10px; padding: 12px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 5px; text-align: left; transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease; }
.truths-and-lie-statement:hover { transform: translateY(-1px); border-color: var(--forest); }
.truths-and-lie-statement:focus-visible { outline: 3px solid rgba(132, 37, 50, .2); outline-offset: 2px; }
.truths-and-lie-statement > span { width: 27px; height: 27px; display: grid; place-items: center; margin: 0; color: var(--forest); background: var(--white); border: 1px solid currentColor; border-radius: 50%; font-size: .68rem; font-weight: 850; }
.truths-and-lie-statement strong { font-family: Georgia, "Times New Roman", serif; font-size: .98rem; font-weight: 400; line-height: 1.4; }
.truths-and-lie-statement.is-truth { color: #fff; background: #2f6b4f; border-color: #2f6b4f; }
.truths-and-lie-statement.is-lie { color: #fff; background: #9b2f3f; border-color: #9b2f3f; }
.truths-and-lie-statement.is-truth > span, .truths-and-lie-statement.is-lie > span { color: inherit; background: transparent; }
.truths-and-lie-feedback { min-height: 18px; margin: 10px 0 0; color: var(--muted); font-size: .7rem; line-height: 1.45; }
.truths-and-lie-feedback.is-truth { color: #2f6b4f; font-weight: 800; }
.truths-and-lie-feedback.is-lie { color: #9b2f3f; font-weight: 800; }
.member-work-link { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 2px; padding-top: 17px; color: var(--oxblood); border-top: 1px solid var(--paper-deep); font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.member-work-link span { font-size: 1.1rem; transition: transform .2s ease; }
.member-work-link:hover span, .member-work-link:focus-visible span { transform: translate(3px, -3px); }
.member-contact-button { min-height: 48px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 0; padding: 17px 0 0; color: var(--forest); background: transparent; border: 0; border-top: 1px solid var(--paper-deep); font-size: .72rem; font-weight: 850; letter-spacing: .06em; text-align: left; text-transform: uppercase; }
.member-contact-button span { font-size: 1rem; transition: transform .2s ease; }
.member-contact-button:hover span, .member-contact-button:focus-visible span { transform: translateX(4px); }
.contact-request-dialog { width: min(570px, calc(100vw - 28px)); max-height: calc(100vh - 28px); padding: 30px; overflow: auto; color: var(--ink); background: var(--white); border: 0; border-radius: 9px; box-shadow: 0 30px 100px rgba(10,30,24,.38); }
.contact-request-dialog::backdrop { background: rgba(9,24,19,.74); backdrop-filter: blur(4px); }
.contact-request-dialog > p { color: var(--muted); line-height: 1.6; }
.contact-dialog-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.contact-dialog-heading h2 { margin: 5px 0 0; color: var(--forest); font-size: 2.15rem; }
.contact-dialog-heading .icon-control { flex: 0 0 auto; transform: none; }
.contact-request-dialog form { margin-top: 24px; }
.contact-request-error { padding: 12px 14px; color: #752331 !important; background: #f6e1df; border-left: 4px solid var(--oxblood); }
.contact-dialog-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; }
.directory-loading, .directory-empty { min-height: 300px; display: grid; place-items: center; align-content: center; gap: 14px; padding: 40px; color: var(--muted); background: rgba(255,253,248,.5); border: 1px dashed var(--line); border-radius: 7px; text-align: center; }
.directory-loading p, .directory-empty p { margin: 0; }
.directory-empty h2 { margin: 0; color: var(--forest); font-size: 2.5rem; }
.edit-profile-page { max-width: 1000px; }
.edit-profile-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); align-items: end; gap: 60px; margin-bottom: 38px; }
.edit-profile-heading h1 { margin: 5px 0 0; color: var(--forest); font-size: clamp(3.4rem, 7vw, 5.2rem); line-height: .95; }
.edit-profile-heading > p { margin: 0 0 7px; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; line-height: 1.6; }
.edit-profile-panel { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 14px 40px rgba(23,53,46,.06); }
.edit-profile-panel form { display: grid; gap: 22px; }
.edit-profile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.edit-profile-actions { display: flex; justify-content: flex-end; gap: 12px; padding-top: 8px; }
.delete-profile-zone { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; padding-top: 28px; border-top: 1px solid #d9b9b7; }
.delete-profile-zone h2 { margin: 0 0 6px; color: #752331; font-family: var(--sans); font-size: 1rem; }
.delete-profile-zone p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.delete-profile-button, .delete-profile-confirm { min-height: 44px; padding: 0 18px; color: #fff; background: #8e2432; border: 1px solid #8e2432; border-radius: 4px; font-weight: 800; white-space: nowrap; }
.delete-profile-button:hover, .delete-profile-button:focus-visible, .delete-profile-confirm:hover, .delete-profile-confirm:focus-visible { background: #671a25; border-color: #671a25; }
.delete-profile-dialog { width: min(520px, calc(100vw - 28px)); padding: 32px; color: var(--ink); background: var(--white); border: 0; border-top: 7px solid #8e2432; border-radius: 8px; box-shadow: 0 30px 100px rgba(10,30,24,.4); }
.delete-profile-dialog::backdrop { background: rgba(9,24,19,.78); backdrop-filter: blur(4px); }
.delete-profile-dialog h2 { margin: 7px 0 14px; color: #752331; font-size: 2.2rem; }
.delete-profile-dialog > p:not(.overline) { color: var(--muted); line-height: 1.65; }
.delete-profile-dialog > div { display: flex; justify-content: flex-end; gap: 10px; margin-top: 26px; }
.member-photo-crop-dialog { width: min(560px, calc(100vw - 28px)); max-height: calc(100vh - 28px); padding: 0; overflow: auto; color: var(--ink); background: var(--white); border: 0; border-radius: 10px; box-shadow: 0 28px 90px rgba(15,36,30,.34); }
.member-photo-crop-dialog::backdrop { background: rgba(13,31,26,.72); backdrop-filter: blur(4px); }
.member-photo-crop-card { padding: clamp(22px, 5vw, 36px); }
.member-photo-crop-card > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.member-photo-crop-card h2 { margin: 4px 0 0; color: var(--forest); font-size: 2.2rem; }
.member-photo-crop-card > p { margin: 12px 0 22px; color: var(--muted); font-size: .86rem; line-height: 1.6; }
.member-crop-close { width: 38px; height: 38px; flex: 0 0 38px; color: var(--forest); background: var(--paper-deep); border: 0; border-radius: 50%; font-size: 25px; line-height: 1; }
.member-photo-crop-stage { width: min(390px, 100%); aspect-ratio: 1; margin: 0 auto 24px; overflow: hidden; background: var(--paper-deep); border: 6px solid var(--paper-deep); border-radius: 50%; box-shadow: 0 0 0 1px var(--line); touch-action: none; }
.member-photo-crop-stage canvas { width: 100%; height: 100%; display: block; cursor: grab; touch-action: none; }
.member-photo-crop-stage canvas.dragging { cursor: grabbing; }
.member-crop-zoom { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 16px; color: var(--forest); font-size: .78rem; font-weight: 850; }
.member-crop-zoom input { width: 100%; accent-color: var(--forest); cursor: pointer; }
.member-photo-crop-card > footer { display: flex; justify-content: flex-end; gap: 10px; margin-top: 25px; }

.events-page {
  padding-top: 72px;
}

.welcome-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 54px;
}

.welcome-band h1 {
  margin-bottom: 0;
  font-size: 5rem;
  line-height: 0.95;
}

.welcome-copy {
  margin-bottom: 5px;
  color: #4e5853;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.55;
}

.featured-event {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: var(--forest);
  display: block;
  padding: 0;
  color: #fffdf8;
  text-align: left;
}

.featured-event > img,
.featured-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.featured-event > img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.featured-event:hover > img {
  transform: scale(1.018);
}

.featured-shade {
  background: rgba(9, 24, 19, 0.42);
}

.featured-date,
.date-tile {
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-transform: uppercase;
}

.featured-date {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 76px;
  height: 82px;
}

.featured-date strong,
.date-tile strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.featured-date,
.date-tile {
  font-size: 0.62rem;
  font-weight: 850;
}

.featured-copy {
  position: absolute;
  right: 104px;
  bottom: 42px;
  left: 38px;
  display: grid;
  gap: 8px;
}

.featured-copy .event-label {
  color: #f1dca4;
}

.featured-copy strong {
  max-width: 760px;
  font-size: 3.2rem;
  line-height: 1.02;
}

.featured-copy > span:last-child {
  font-size: 0.86rem;
}

.round-arrow {
  position: absolute;
  right: 32px;
  bottom: 34px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.events-directory {
  margin-top: 76px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 2.6rem;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.search-field {
  width: min(360px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
}

.search-field > span {
  width: 22px;
  height: 22px;
  border: 1px solid #83908a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 850;
}

.search-field input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.event-image-button {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  background: var(--forest);
  padding: 0;
}

.event-image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.event-image-button:hover img {
  transform: scale(1.025);
}

.date-tile {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 56px;
  height: 61px;
}

.date-tile strong {
  font-size: 1.45rem;
}

.event-card-body {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.event-card-body > p {
  margin-bottom: 12px;
  color: var(--oxblood);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-card h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  line-height: 1.08;
}

.event-card-body > span {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.45;
}

.event-card .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px 0;
  color: var(--muted);
}

/* Detail */

.progress {
  max-width: 620px;
  margin: 0 auto 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #8a8e89;
  font-size: 0.67rem;
  font-weight: 750;
}

.progress li::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 14px;
  right: 50%;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.progress li:first-child::before {
  content: none;
}

.progress li span {
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
}

.progress li.active {
  color: var(--forest);
}

.progress li.active::before {
  background: var(--forest-soft);
}

.progress li.active span {
  border-color: var(--forest);
  background: var(--forest);
  color: #fffdf8;
}

.progress li.current span {
  outline: 4px solid rgba(209, 168, 74, 0.28);
}

.detail-page .back-link,
.booking-page .back-link {
  margin-bottom: 22px;
}

.detail-hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--forest);
  color: #fffdf8;
}

.detail-hero > img,
.detail-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-hero > img {
  object-fit: cover;
}

.detail-shade {
  background: rgba(9, 24, 19, 0.5);
}

.detail-hero-copy {
  position: absolute;
  right: 40px;
  bottom: 42px;
  left: 40px;
}

.detail-hero-copy p {
  margin-bottom: 14px;
  color: #f1dca4;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-hero-copy h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: 4.6rem;
  line-height: 0.94;
}

.detail-hero-copy > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 80px;
  align-items: start;
  padding-top: 64px;
}

.detail-main > h2 {
  margin-bottom: 24px;
  font-size: 3.25rem;
  line-height: 1;
}

.large-copy {
  max-width: 720px;
  color: #45504b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  line-height: 1.7;
}

.description-reader {
  max-width: 720px;
}

.description-reader .large-copy {
  min-height: 17.3em;
  margin-bottom: 0;
}

.description-reader .large-copy p {
  margin: 0;
}

.description-reader .large-copy p + p {
  margin-top: 1.45em;
}

.description-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.description-pager > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.description-pager .text-link {
  min-height: 42px;
}

.description-pager .text-link:disabled {
  color: #9ca39f;
  cursor: not-allowed;
}

.description-pager .text-link:disabled:hover {
  color: #9ca39f;
}

.speaker-section {
  margin-top: 60px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.speaker-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.speaker {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.speaker-portrait,
.leader-avatar {
  border-radius: 50%;
  background: var(--sky);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  overflow: hidden;
}

.speaker-portrait {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
}

.leader-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.speaker-portrait img,
.leader-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.speaker:nth-child(2) .speaker-portrait {
  background: #dfc3ba;
  color: #632f28;
}

.speaker:nth-child(3) .speaker-portrait {
  background: #d9cfa5;
  color: #483c18;
}

.speaker strong,
.speaker span,
.leader-line b,
.leader-line small {
  display: block;
}

.speaker strong {
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.2;
}

.speaker div span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
  white-space: pre-line;
}

.speaker-talk {
  margin: 12px 0 0;
  color: #4f5955;
  font-size: 0.86rem;
  line-height: 1.6;
}

.booking-panel,
.seat-summary,
.order-summary {
  border-top: 5px solid var(--oxblood);
  border-radius: 4px;
  background: var(--forest);
  color: #fffdf8;
  padding: 30px;
}

.booking-panel dl,
.seat-summary dl,
.order-summary dl {
  margin: 0 0 28px;
}

.booking-panel dl > div,
.seat-summary dl > div,
.order-summary dl > div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-panel dt,
.seat-summary dt,
.order-summary dt {
  margin-bottom: 6px;
  color: #b9c9c4;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-panel dd,
.seat-summary dd,
.order-summary dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  line-height: 1.35;
}

.booking-panel dd span,
.order-summary dd span {
  display: block;
  margin-top: 4px;
  color: #b9c9c4;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
}

.map-address-button {
  width: 100%;
  display: grid;
  gap: 7px;
  margin-top: 4px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
}

.map-address-button > span { margin-top: 0; text-decoration: underline; text-decoration-color: rgba(209,168,74,.6); text-underline-offset: 4px; }
.map-address-button small { color: var(--gold); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: .66rem; font-weight: 800; }
.map-address-button:hover > span, .map-address-button:focus-visible > span { color: #fff; text-decoration-color: var(--gold); }
.map-address-button:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; border-radius: 2px; }

.event-map-dialog { width: min(780px, calc(100vw - 28px)); max-height: calc(100vh - 28px); padding: 0; overflow: auto; color: var(--ink); background: var(--white); border: 0; border-radius: 9px; box-shadow: 0 30px 100px rgba(10,30,24,.38); }
.event-map-dialog::backdrop { background: rgba(9,24,19,.74); backdrop-filter: blur(4px); }
.event-map-card { padding: clamp(20px, 4vw, 32px); }
.event-map-card > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; }
.event-map-card h2 { margin: 0 0 7px; color: var(--forest); font-size: clamp(2rem, 5vw, 3rem); }
.event-map-card header p:last-child { margin: 0; color: var(--muted); line-height: 1.5; }
.map-close-button { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; color: var(--forest); background: var(--paper-deep); border: 0; border-radius: 50%; font-size: 1.7rem; line-height: 1; }
.map-close-button:hover, .map-close-button:focus-visible { color: var(--white); background: var(--forest); outline: none; }
.event-map-frame { aspect-ratio: 16 / 9; margin: 25px 0 20px; overflow: hidden; background: var(--paper-deep); border: 1px solid var(--line); border-radius: 5px; }
.event-map-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.event-map-card footer { display: flex; justify-content: flex-end; }

.fine-print {
  margin: 14px 0 0;
  color: #b9c9c4;
  font-size: 0.7rem;
  text-align: center;
}

/* Table selection */

.booking-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin: 26px 0 44px;
}

.booking-heading h1,
.seat-heading h1,
.checkout-heading h1 {
  margin-bottom: 0;
  font-size: 4.4rem;
  line-height: 0.95;
}

.booking-heading > p,
.checkout-heading > p {
  margin-bottom: 4px;
  color: #4f5955;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.55;
}

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

.table-option {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-columns: 74px 1fr 26px;
  gap: 18px;
  padding: 26px;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.table-option:hover {
  border-color: #8e9a94;
  transform: translateY(-2px);
}

.table-option.selected {
  border-color: var(--forest);
  box-shadow: inset 0 0 0 2px var(--forest);
}

.table-number {
  color: var(--oxblood);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.9rem;
  line-height: 0.9;
}

.table-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.availability {
  margin-bottom: 12px;
  color: var(--forest-soft);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.table-copy > strong {
  max-width: 440px;
  font-size: 1.7rem;
  line-height: 1.13;
}

.table-description {
  display: block;
  margin-top: 12px;
  color: #58625d;
  font-size: 0.78rem;
  line-height: 1.55;
}

.table-questions {
  display: block;
  width: 100%;
  margin-top: 18px;
  border-top: 1px solid var(--paper-deep);
  padding-top: 14px;
}

.table-questions-label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-soft);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.table-question-list {
  display: grid;
  gap: 7px;
  counter-reset: table-question;
}

.table-question-list > span {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  color: #4f5955;
  font-size: 0.73rem;
  line-height: 1.45;
}

.table-question-list > span::before {
  counter-increment: table-question;
  content: counter(table-question) ".";
  color: var(--oxblood);
  font-weight: 850;
}

.leader-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
}

.leader-avatar {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  font-size: 0.7rem;
}

.leader-line b {
  margin: 2px 0;
  color: var(--ink);
}

.leader-line small {
  color: var(--muted);
}

.radio-mark {
  width: 22px;
  height: 22px;
  border: 1px solid #929b96;
  border-radius: 50%;
}

.table-option.selected .radio-mark {
  border: 6px solid var(--forest);
}

.sticky-action {
  position: sticky;
  z-index: 10;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(760px, calc(100% - 24px));
  min-height: 76px;
  margin: 28px auto 0;
  border: 1px solid #9dac9f;
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 12px 32px rgba(23, 32, 29, 0.17);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px;
  padding-left: 22px;
}

.sticky-action div {
  min-width: 0;
}

.sticky-action span,
.sticky-action strong {
  display: block;
}

.sticky-action span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.sticky-action strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.8rem;
}

/* Seat map */

.seat-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin: 26px 0 36px;
}

.seat-heading h1 {
  font-size: 4.8rem;
}

.seat-legend {
  display: flex;
  gap: 18px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.seat-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  position: relative;
  display: inline-block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--forest);
  border-radius: 50%;
}

.legend-dot.selected {
  background: var(--gold);
}

.legend-dot.taken {
  border-color: #a6aaa6;
  background: #d4d2cd;
}

.legend-dot.taken::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #8c8f8b;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.seat-layout {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
}

.seat-map-panel {
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
}

.seat-map {
  position: relative;
  width: min(540px, 100%);
  aspect-ratio: 1;
  animation: map-in 500ms ease both;
}

.round-table {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 265px;
  height: 265px;
  border: 10px solid #b58650;
  border-radius: 50%;
  background: #9a6738;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18), 0 20px 28px rgba(77, 49, 28, 0.2);
  color: #fffdf8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.round-table .leader-avatar.large {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  aspect-ratio: 1;
  margin-bottom: 10px;
  background: #f0e7d7;
  color: var(--forest);
}

.round-table strong {
  font-size: 0.8rem;
}

.round-table small {
  margin-top: 3px;
  color: #efe2cf;
  font-size: 0.64rem;
}

.seat {
  --seat-angle: 0deg;
  --seat-delay: 0ms;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-weight: 850;
  transform: translate(-50%, -50%) rotate(var(--seat-angle)) translateY(-217px);
  animation: seat-in 380ms ease both;
  animation-delay: var(--seat-delay);
  transition: background 140ms ease, box-shadow 140ms ease;
}

.seat span {
  transform: rotate(calc(0deg - var(--seat-angle)));
}

.seat:not(:disabled):hover {
  background: #ecdfbd;
  box-shadow: 0 0 0 5px rgba(209, 168, 74, 0.2);
}

.seat.selected {
  border-color: #745719;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 0 7px rgba(209, 168, 74, 0.22);
}

.seat.taken {
  border-color: #b1b2ae;
  background: #d5d3ce;
  color: #8c8f8b;
}

.seat.taken::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background: #8c8f8b;
  transform: rotate(45deg);
}

.seat-summary {
  display: flex;
  flex-direction: column;
}

.seat-summary .overline,
.order-summary .overline {
  color: #f1dca4;
}

.seat-summary h2,
.order-summary h2 {
  margin-bottom: 22px;
  font-size: 2rem;
  line-height: 1.06;
}

.seat-theme { margin: -8px 0 18px; color: #d6e0dc; font-size: 0.76rem; line-height: 1.55; }
.seat-questions { margin: 0 0 20px; padding: 14px 15px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 5px; }
.seat-questions > span { display: block; margin-bottom: 8px; color: #f1dca4; font-size: 0.62rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.seat-questions ol { display: grid; gap: 6px; margin: 0; padding-left: 18px; color: #e5ece9; font-size: 0.68rem; line-height: 1.45; }

.leader-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.leader-summary span,
.leader-summary strong {
  display: block;
}

.leader-summary div span {
  margin-bottom: 3px;
  color: #b9c9c4;
  font-size: 0.65rem;
}

.leader-summary strong {
  font-size: 0.78rem;
}

.seat-summary .button {
  margin-top: auto;
}

@keyframes map-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

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

/* Checkout */

.checkout-heading {
  max-width: 760px;
  margin: 24px auto 48px;
  text-align: center;
}

.checkout-heading h1 {
  margin-bottom: 18px;
  font-size: 4.8rem;
}

.checkout-heading > p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  align-items: start;
}

.checkout-main {
  min-width: 0;
}

.seat-type-fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.seat-type-fieldset legend {
  width: 100%;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.seat-type {
  position: relative;
  min-height: 106px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  display: grid;
  grid-template-columns: 52px 1fr 22px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
}

.seat-type.selected {
  border-color: var(--forest);
  box-shadow: inset 0 0 0 2px var(--forest);
}

.seat-type input,
.calendar-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.seat-type-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e2c98f;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.seat-type-icon.sponsored {
  background: var(--sky);
}

.seat-type strong,
.seat-type small {
  display: block;
}

.seat-type strong {
  margin-bottom: 5px;
}

.seat-type small {
  color: var(--muted);
  line-height: 1.4;
}

.seat-type > i {
  width: 22px;
  height: 22px;
  border: 1px solid #929b96;
  border-radius: 50%;
}

.seat-type.selected > i {
  border: 6px solid var(--forest);
}

.donation-control,
.sponsor-note,
.confirmation-fields {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.donation-control > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 750;
}

.donation-control output {
  color: var(--oxblood);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.donation-control input[type="range"] {
  width: 100%;
  height: 7px;
  border-radius: 4px;
  accent-color: var(--forest);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.sponsor-note {
  display: grid;
  gap: 5px;
  color: var(--forest);
}

.sponsor-note span {
  color: var(--muted);
  font-size: 0.84rem;
}

.sponsored-application {
  margin-top: 22px;
  padding: 26px;
  color: var(--ink);
  background: #f7f1e7;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.sponsored-application > .overline { margin: 0 0 7px; }
.sponsored-application h2 { margin: 0 0 10px; color: var(--forest); font-size: 2rem; }
.sponsored-application > p:not(.overline) { margin: 0; color: var(--muted); line-height: 1.65; }
.sponsored-application-fields { display: grid; gap: 18px; margin-top: 24px; }

.sponsored-review-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 11px;
  padding: 15px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

.sponsored-review-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--forest);
}

.confirmation-fields {
  display: grid;
  gap: 18px;
}

.toggle-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.toggle-row input {
  position: absolute;
  opacity: 0;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 20px;
  background: #b8bbb7;
  transition: background 140ms ease;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 140ms ease;
}

.toggle-row input:checked + .toggle {
  background: var(--forest);
}

.toggle-row input:checked + .toggle::after {
  transform: translateX(20px);
}

.toggle-row strong,
.toggle-row small {
  display: block;
}

.toggle-row strong {
  margin-bottom: 3px;
  font-size: 0.8rem;
}

.toggle-row small {
  color: var(--muted);
}

.calendar-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.calendar-option {
  position: relative;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 750;
}

.calendar-option.selected {
  border-color: var(--forest);
  color: var(--forest);
}

.calendar-option b {
  position: absolute;
  top: -8px;
  right: 8px;
  border-radius: 3px;
  background: var(--gold);
  color: var(--ink);
  padding: 2px 5px;
  font-size: 0.54rem;
  text-transform: uppercase;
}

.discount-code {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.discount-code > label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 800;
}

.discount-code > label small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.discount-code > div { display: flex; gap: 8px; }
.discount-code input { min-width: 0; flex: 1; border: 1px solid var(--line); border-radius: 4px; background: var(--white); padding: 10px 12px; }
.discount-code button { border: 1px solid var(--forest); border-radius: 4px; background: var(--forest); color: var(--white); padding: 9px 16px; font-weight: 800; }
.discount-code.applied input { border-color: var(--forest); background: #edf2e8; }
.discount-code.applied button { background: var(--gold); color: var(--ink); }
.discount-code p { margin: 8px 0 0; color: var(--forest); font-size: 0.72rem; font-weight: 750; }

.order-summary {
  position: sticky;
  top: 96px;
}

.order-total {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-total span {
  color: #b9c9c4;
  font-size: 0.78rem;
}

.order-total strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.payment-error {
  margin: -8px 0 18px;
  border-left: 3px solid #e7a89f;
  background: rgba(138, 63, 53, 0.28);
  color: #ffe9e5;
  padding: 11px 12px;
  font-size: 0.75rem;
  line-height: 1.45;
}

.payment-return-page {
  min-height: calc(100vh - 72px);
  background: var(--forest);
  color: #fffdf8;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.payment-return-panel {
  width: min(720px, 100%);
  text-align: center;
}

.payment-return-panel h1 {
  margin-bottom: 20px;
  font-size: 4.4rem;
  line-height: 0.96;
}

.payment-return-panel > p:not(.overline) {
  max-width: 520px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: #c9d6d2;
  line-height: 1.55;
}

.paypal-button-container {
  width: min(420px, 100%);
  min-height: 150px;
  margin: 0 auto 22px;
}

.paypal-button-container iframe {
  border-radius: 4px;
}

.payment-spinner,
.payment-return-mark {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border-radius: 50%;
}

.payment-spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--gold);
  animation: payment-spin 850ms linear infinite;
}

.payment-return-mark {
  background: #b65d50;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

@keyframes payment-spin {
  to { transform: rotate(360deg); }
}

.sponsored-application-confirmation {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 30px;
  margin: 0 auto;
  padding: 78px 32px;
}

.sponsored-application-confirmation > section {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
  color: var(--white);
  background: var(--forest);
  border-top: 7px solid var(--gold);
}

.application-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--forest);
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 900;
}

.sponsored-application-confirmation h1 {
  margin: 8px 0 24px;
  color: var(--white);
  font-size: clamp(3.4rem, 6vw, 5.5rem);
  line-height: .94;
}

.sponsored-application-confirmation > section > p:last-child {
  max-width: 590px;
  margin: 0;
  color: #d7e1dd;
  font-size: 1.05rem;
  line-height: 1.7;
}

.sponsored-application-confirmation aside {
  align-self: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(23, 53, 46, .09);
}

.sponsored-application-confirmation aside h2 { margin: 8px 0 22px; color: var(--forest); font-size: 2.15rem; }
.sponsored-application-confirmation aside dl { margin: 0; }
.sponsored-application-confirmation aside dl > div { display: grid; grid-template-columns: 112px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--paper-deep); }
.sponsored-application-confirmation aside dt { color: var(--muted); font-size: .67rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.sponsored-application-confirmation aside dd { margin: 0; color: var(--forest); font-weight: 800; }
.sponsored-application-confirmation aside dd span { display: block; margin-top: 4px; color: var(--muted); font-size: .76rem; font-weight: 500; line-height: 1.45; }
.sponsored-application-confirmation aside > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.sponsored-application-confirmation > .button { grid-column: 1 / -1; justify-self: start; }

/* Confirmation */

.confirmation-page {
  min-height: calc(100vh - 72px);
  padding-bottom: 80px;
}

.confirmation-hero {
  min-height: 430px;
  background: var(--forest);
  color: #fffdf8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 100px;
  text-align: center;
}

.confirmation-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  animation: confirm-in 460ms ease both;
}

.confirmation-hero h1 {
  margin-bottom: 18px;
  font-size: 4.7rem;
  line-height: 0.94;
}

.confirmation-hero > p:last-child {
  margin-bottom: 0;
  color: #c9d6d2;
}

.ticket {
  width: min(980px, calc(100% - 48px));
  min-height: 350px;
  margin: -58px auto 48px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(23, 32, 29, 0.2);
  display: grid;
  grid-template-columns: 1fr 165px;
  overflow: hidden;
}

.ticket-main {
  padding: 32px 36px;
}

.ticket-main header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 850;
}

.ticket-title {
  padding: 25px 0;
}

.ticket-title p {
  margin-bottom: 7px;
  color: var(--oxblood);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-title h2 {
  margin-bottom: 0;
  font-size: 2.4rem;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ticket-grid span,
.ticket-topic span,
.ticket-grid strong,
.ticket-topic strong {
  display: block;
}

.ticket-grid span,
.ticket-topic span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-grid strong {
  font-size: 0.78rem;
  line-height: 1.4;
}

.ticket-topic {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.ticket-topic strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.ticket-stub {
  position: relative;
  border-left: 1px dashed #a99f90;
  background: #e5c66e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  left: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper);
}

.ticket-stub::before { top: -15px; }
.ticket-stub::after { bottom: -15px; }

.ticket-stub span {
  margin-top: 18px;
  font-size: 0.62rem;
  font-weight: 850;
}

.ticket-stub strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
}

.calendar-actions {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.calendar-actions h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.calendar-actions > div:last-child {
  display: flex;
  gap: 10px;
}

.confirmation-home {
  margin: 48px auto 0;
  display: flex;
}

.empty-rsvp-page {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-rsvp-page h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 4rem;
  line-height: 1;
}

@keyframes confirm-in {
  from { opacity: 0; transform: scale(0.6) rotate(-14deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@media (max-width: 1050px) {
  .auth-intro h1 { font-size: 5rem; }
  .welcome-band h1 { font-size: 4.2rem; }
  .detail-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 42px; }
  .speaker-list { grid-template-columns: 1fr; }
  .seat-layout { grid-template-columns: minmax(500px, 1fr) 300px; }
  .checkout-layout { grid-template-columns: minmax(0, 1fr) 340px; }
}

@media (max-width: 860px) {
  .auth-screen {
    grid-template-columns: 1fr;
    align-items: center;
    padding: calc(96px + env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) calc(32px + env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  }

  .auth-intro { display: none; }
  .auth-panel { justify-self: end; max-width: 500px; }

  .app-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .main-nav { display: none; }
  .profile-chip div { display: none; }
  .edit-profile-button { min-height: 38px; }
  .mobile-directory-link { display: inline-flex; min-height: 38px; align-items: center; padding: 0 10px; color: var(--forest); background: transparent; border: 1px solid var(--line); border-radius: 4px; font-size: .7rem; font-weight: 800; }

  .page { width: min(100% - 32px, 720px); padding-top: 38px; }
  .events-page { padding-top: 50px; }

  .welcome-band,
  .booking-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .welcome-band h1,
  .booking-heading h1,
  .seat-heading h1,
  .checkout-heading h1 { font-size: 3.7rem; }

  .featured-event { height: 400px; }
  .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-hero { grid-template-columns: 1fr; gap: 24px; }
  .edit-profile-heading { grid-template-columns: 1fr; gap: 20px; }
  .member-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .detail-hero { min-height: 470px; }
  .detail-hero-copy h1 { font-size: 3.7rem; }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-panel { position: static; }

  .table-grid { grid-template-columns: 1fr; }
  .table-option { min-height: 230px; }

  .seat-heading { align-items: flex-start; flex-direction: column; }
  .seat-layout { grid-template-columns: 1fr; }
  .seat-map-panel { min-height: 590px; }
  .seat-summary { min-height: 390px; }

  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .sponsored-application-confirmation { grid-template-columns: 1fr; padding: 48px 24px; }
  .sponsored-application-confirmation > section { min-height: 400px; }

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

@media (max-width: 600px) {
  .auth-screen { padding: calc(82px + env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) calc(12px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left)); }
  .auth-brand { top: calc(24px + env(safe-area-inset-top)); left: max(20px, env(safe-area-inset-left)); }
  .auth-panel { max-height: calc(100dvh - 94px - env(safe-area-inset-top) - env(safe-area-inset-bottom)); padding: 10px 20px calc(24px + env(safe-area-inset-bottom)); }
  .auth-tabs { margin-right: -10px; margin-left: -10px; }
  .auth-heading h2 { font-size: 2rem; }
  .community-cta { min-height: 54px; padding: 10px 14px; }
  .community-cta strong { font-size: 0.95rem; }
  .community-cta b { font-size: 1.3rem; }

  .app-header { min-height: 64px; }
  .header-logo { width: 46px; height: 46px; flex-basis: 46px; }
  .wordmark { font-size: 1.2rem; }

  .page { width: min(100% - 24px, 560px); padding-bottom: 56px; }
  .progress { margin-bottom: 34px; }
  .progress li { font-size: 0.58rem; }

  .welcome-band { margin-bottom: 34px; }
  .welcome-band h1,
  .booking-heading h1,
  .seat-heading h1,
  .checkout-heading h1 { font-size: 3rem; }
  .welcome-copy { font-size: 1rem; }

  .featured-event { height: 390px; }
  .featured-date { top: 18px; left: 18px; }
  .featured-copy { right: 24px; bottom: 74px; left: 22px; }
  .featured-copy strong { font-size: 2.4rem; }
  .round-arrow { right: 20px; bottom: 18px; width: 48px; height: 48px; }

  .events-directory { margin-top: 56px; }
  .section-heading { align-items: stretch; flex-direction: column; gap: 18px; }
  .section-heading h2 { font-size: 2.15rem; }
  .search-field { width: 100%; }
  .event-grid { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: 1fr; }
  .member-card { min-height: 0; }
  .private-profile-note { align-items: flex-start; flex-direction: column; }
  .edit-profile-panel { padding: 24px 18px; }
  .edit-profile-grid { grid-template-columns: 1fr; }
  .edit-profile-actions { align-items: stretch; flex-direction: column-reverse; }
  .delete-profile-zone { align-items: stretch; flex-direction: column; }
  .delete-profile-dialog > div { align-items: stretch; flex-direction: column-reverse; }
  .member-photo-crop-card > footer { align-items: stretch; flex-direction: column-reverse; }
  .event-card-body { min-height: 210px; }
  .description-reader .large-copy { min-height: 0; }
  .description-pager { align-items: stretch; flex-direction: column; }
  .description-pager > span { order: -1; }
  .sponsored-application { padding: 21px 17px; }
  .sponsored-application-confirmation { padding: 28px 12px 56px; }
  .sponsored-application-confirmation > section { min-height: 390px; padding: 34px 24px; }
  .sponsored-application-confirmation aside { padding: 24px 20px; }
  .sponsored-application-confirmation aside dl > div { grid-template-columns: 92px 1fr; }

  .detail-hero { min-height: 480px; }
  .detail-hero-copy { right: 22px; bottom: 28px; left: 22px; }
  .detail-hero-copy h1 { font-size: 3rem; }
  .detail-main > h2 { font-size: 2.65rem; }
  .large-copy { font-size: 1.08rem; }
  .booking-panel, .seat-summary, .order-summary { padding: 24px; }
  .event-map-frame { aspect-ratio: 4 / 5; }
  .event-map-card footer .button { width: 100%; }

  .booking-heading { margin-bottom: 30px; }
  .table-option { grid-template-columns: 50px 1fr 22px; min-height: 245px; padding: 20px; }
  .table-number { font-size: 2.25rem; }
  .table-copy > strong { font-size: 1.45rem; }
  .table-questions { margin-top: 15px; padding-top: 12px; }
  .table-question-list > span { font-size: 0.7rem; }
  .sticky-action { width: 100%; flex-direction: column; align-items: stretch; padding: 12px; }
  .sticky-action div { padding: 2px 4px; }

  .seat-legend { width: 100%; flex-wrap: wrap; gap: 10px 16px; }
  .seat-map-panel { min-height: 390px; padding: 8px; }
  .seat-map { width: min(360px, 100%); }
  .round-table { width: 176px; height: 176px; border-width: 7px; }
  .round-table .leader-avatar.large { width: 44px; height: 44px; flex-basis: 44px; }
  .round-table strong { font-size: 0.68rem; }
  .seat { width: 42px; height: 42px; transform: translate(-50%, -50%) rotate(var(--seat-angle)) translateY(-145px); font-size: 0.72rem; }
  .seat.taken::after { width: 52px; }

  .seat-type { grid-template-columns: 44px 1fr 20px; padding: 16px; }
  .seat-type-icon { width: 44px; height: 44px; }
  .calendar-choice { grid-template-columns: 1fr; }
  .discount-code > label { align-items: flex-start; flex-direction: column; gap: 3px; }

  .confirmation-hero { min-height: 400px; padding-bottom: 88px; }
  .confirmation-hero h1 { font-size: 3.5rem; }
  .payment-return-panel h1 { font-size: 3.3rem; }
  .ticket { width: calc(100% - 24px); grid-template-columns: 1fr; }
  .ticket-main { padding: 24px 20px; }
  .ticket-main header { flex-direction: column; gap: 6px; }
  .ticket-title h2 { font-size: 2rem; }
  .ticket-grid { grid-template-columns: 1fr 1fr; }
  .ticket-stub { min-height: 130px; border-top: 1px dashed #a99f90; border-left: 0; flex-direction: row; gap: 12px; }
  .ticket-stub::before, .ticket-stub::after { top: -15px; }
  .ticket-stub::before { left: -15px; }
  .ticket-stub::after { right: -15px; bottom: auto; left: auto; }
  .ticket-stub span { margin-top: 0; }
  .ticket-stub strong { font-size: 2.5rem; }
  .calendar-actions { width: calc(100% - 24px); align-items: stretch; flex-direction: column; }
  .calendar-actions > div:last-child { flex-direction: column; }
  .empty-rsvp-page h1 { font-size: 3rem; }
}

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