:root {
  --cream: #f7f1e8;
  --ivory: #fffaf3;
  --paper: #fffdf8;
  --sage: #8fa891;
  --sage-deep: #5f7663;
  --rose: #c98f8b;
  --rose-soft: #efd8d4;
  --taupe: #a59483;
  --taupe-deep: #75685c;
  --charcoal: #2f302d;
  --muted: #6e6a63;
  --line: rgba(47, 48, 45, 0.12);
  --shadow: 0 18px 50px rgba(83, 72, 60, 0.12);
  --soft-shadow: 0 10px 28px rgba(83, 72, 60, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.86), rgba(247, 241, 232, 0.96)),
    url("https://images.unsplash.com/photo-1604881988758-f76ad2f7aac1?auto=format&fit=crop&w=1800&q=80");
  background-attachment: fixed;
  background-size: cover;
  color: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

.app-shell {
  min-height: 100vh;
  background: rgba(247, 241, 232, 0.74);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(47, 48, 45, 0.08);
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.brand span:last-child {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav button,
.link-button {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--charcoal);
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
}

.nav button.active,
.nav button:hover,
.link-button:hover {
  border-color: rgba(95, 118, 99, 0.22);
  background: rgba(143, 168, 145, 0.13);
}

.main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  min-height: 620px;
  padding: 26px 0 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 9vw, 112px);
}

h2 {
  font-size: clamp(38px, 6vw, 68px);
}

h3 {
  font-size: 31px;
}

h4 {
  font-size: 24px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy > p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 18px;
}

.hero-actions,
.row,
.toolbar,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(47, 48, 45, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--charcoal);
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(83, 72, 60, 0.08);
}

.button.primary {
  border-color: var(--sage-deep);
  background: var(--sage-deep);
  color: #fffdf8;
}

.button.rose {
  border-color: var(--rose);
  background: var(--rose);
  color: #fffdf8;
}

.button.ghost {
  background: rgba(255, 253, 248, 0.52);
  box-shadow: none;
}

.button.small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.visual-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.visual-panel img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.section {
  margin-top: 42px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(47, 48, 45, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--soft-shadow);
}

.section.unframed {
  padding: 28px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.section-header p {
  max-width: 560px;
  margin: 10px 0 0;
}

.workshop-page-header {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  align-items: start;
  gap: 24px;
}

.workshop-page-header h3 {
  align-self: start;
  line-height: 1;
}

.grid {
  display: grid;
  gap: 18px;
}

.client-section-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 18px;
  align-items: start;
}

.client-section-stack > .section {
  margin-top: 0;
}

.client-section-stack > .section:not(.unframed) {
  padding: 38px 44px;
}

.month-workshop-header {
  align-items: center;
  margin-bottom: 18px;
}

.month-workshop-pager {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.month-workshop-pager span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.month-workshop-pager .button.small {
  width: 34px;
  min-height: 34px;
  padding: 0;
  font-size: 18px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

.month-workshop-cards {
  grid-template-columns: 1fr;
}

.month-workshop-cards .empty-state {
  grid-column: 1 / -1;
}

.workshop-card,
.booking-card,
.metric-card,
.profile-panel,
.detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(83, 72, 60, 0.08);
}

.workshop-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.month-workshop-cards .workshop-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  min-height: 0;
}

.workshop-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.month-workshop-cards .workshop-card > img {
  height: 100%;
  min-height: 98px;
}

.workshop-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.month-workshop-cards .workshop-card-body {
  gap: 6px;
  padding: 11px;
}

.month-workshop-cards .workshop-card-body h3 {
  font-size: 20px;
  line-height: 1.02;
}

.month-workshop-cards .workshop-card-body > p:not(.meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.workshop-people-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.workshop-person {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas: "avatar name";
  min-width: 150px;
  max-width: 240px;
  align-items: center;
  justify-items: start;
  gap: 3px 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
}

.workshop-person--guest {
  grid-template-columns: auto 46px minmax(0, 1fr);
  grid-template-areas: "prefix avatar name";
}

.workshop-person--has-topic {
  grid-template-areas:
    "avatar name"
    "avatar topic";
}

.workshop-person--guest.workshop-person--has-topic {
  grid-template-areas:
    "prefix avatar name"
    "prefix avatar topic";
}

.person-prefix {
  grid-area: prefix;
  align-self: center;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.person-avatar {
  grid-area: avatar;
  display: inline-grid;
}

.workshop-person img,
.person-initials {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(95, 118, 99, 0.22);
  border-radius: 50%;
  background: rgba(143, 168, 145, 0.13);
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 700;
  object-fit: cover;
}

.workshop-person .person-name {
  grid-area: name;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.workshop-person em {
  grid-area: topic;
  color: var(--muted);
  font-size: 11px;
  font-style: italic;
}

.profile-identity {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.profile-identity img,
.profile-identity .person-initials {
  width: 34px;
  height: 34px;
  font-size: 10px;
}

.profile-identity strong {
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-identity--header {
  grid-template-columns: 78px minmax(0, max-content);
  justify-content: start;
  margin-top: 0;
  gap: 13px;
}

.profile-identity--header img,
.profile-identity--header .person-initials {
  width: 78px;
  height: 78px;
  font-size: 12px;
}

.profile-identity--header strong {
  font-size: 14px;
}

.profile-section-header {
  display: block;
}

.profile-section-main {
  display: grid;
  gap: 18px;
}

.profile-section-main h2 {
  margin-bottom: 0;
}

.profile-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.profile-identity-stack {
  display: grid;
  grid-template-columns: 86px minmax(0, max-content);
  grid-template-rows: 1fr auto auto 1fr;
  grid-template-areas:
    "photo top"
    "photo name"
    "photo edit"
    "photo bottom";
  justify-content: start;
  column-gap: 18px;
  row-gap: 6px;
  margin-top: 0;
}

.profile-identity-stack .profile-identity {
  display: contents;
}

.profile-identity-stack .profile-identity img,
.profile-identity-stack .profile-identity .person-initials {
  grid-area: photo;
  width: 86px;
  height: 86px;
}

.profile-identity-stack .profile-identity strong {
  grid-area: name;
  align-self: end;
  font-size: 15px;
}

.profile-edit-button {
  grid-area: edit;
  justify-self: start;
  align-self: start;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--sage-deep);
  font-size: 10px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.card-topic-note {
  color: var(--muted);
}

.card-topic-note span {
  color: var(--charcoal);
  font-weight: 700;
}

.guest-speaker-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.workshop-team-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.month-workshop-cards .guest-speaker-note,
.month-workshop-cards .workshop-team-note {
  font-size: 12px;
}

.month-workshop-cards .workshop-people-row {
  gap: 10px;
  margin-top: 2px;
}

.month-workshop-cards .workshop-person {
  grid-template-columns: 30px minmax(0, 1fr);
  min-width: 96px;
  max-width: none;
  gap: 2px 6px;
  font-size: 9px;
}

.month-workshop-cards .workshop-person--guest {
  grid-template-columns: auto 30px minmax(0, 1fr);
  min-width: 0;
  flex: 1 1 220px;
}

.month-workshop-cards .person-prefix {
  font-size: 10px;
}

.month-workshop-cards .workshop-person img,
.month-workshop-cards .person-initials {
  width: 30px;
  height: 30px;
  font-size: 10px;
}

.month-workshop-cards .workshop-person .person-name {
  font-size: 10px;
}

.month-workshop-cards .meta {
  font-size: 11px;
  gap: 5px;
}

.month-workshop-cards .row {
  gap: 6px;
}

.month-workshop-cards .pill {
  min-height: 23px;
  padding: 4px 7px;
  font-size: 10px;
}

.month-workshop-cards .card-bottom {
  gap: 10px;
}

.month-workshop-cards .price-pair {
  gap: 1px;
  font-size: 12px;
}

.month-workshop-cards .button.small {
  min-height: 32px;
  padding: 7px 10px;
  font-size: 12px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  color: var(--taupe-deep);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  border: 1px solid rgba(95, 118, 99, 0.2);
  border-radius: 999px;
  background: rgba(143, 168, 145, 0.12);
  color: var(--sage-deep);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pill.rose {
  border-color: rgba(201, 143, 139, 0.25);
  background: rgba(239, 216, 212, 0.64);
  color: #925d5a;
}

.pill.taupe {
  border-color: rgba(165, 148, 131, 0.28);
  background: rgba(165, 148, 131, 0.14);
  color: var(--taupe-deep);
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.card-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.price {
  color: var(--charcoal);
  font-size: 22px;
  font-weight: 800;
}

.price-pair {
  display: grid;
  gap: 3px;
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.25;
}

.price-pair strong {
  font-weight: 800;
}

.calendar-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.compact-calendar-shell {
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  align-items: start;
}

.compact-calendar-shell.calendar-only {
  grid-template-columns: minmax(320px, 760px);
}

.calendar-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(143, 168, 145, 0.1);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekday,
.day {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.weekday:nth-child(7n),
.day:nth-child(7n) {
  border-right: 0;
}

.weekday {
  padding: 11px 8px;
  color: var(--taupe-deep);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.day {
  position: relative;
  min-height: 138px;
  padding: 10px;
  background: rgba(255, 253, 248, 0.76);
}

.day.muted {
  background: rgba(165, 148, 131, 0.07);
  color: rgba(47, 48, 45, 0.38);
}

.day.today {
  box-shadow: inset 0 0 0 2px rgba(201, 143, 139, 0.36);
}

.day-number {
  display: flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.day-events {
  display: grid;
  gap: 7px;
  margin-top: 8px;
}

.event-chip {
  width: 100%;
  border: 1px solid rgba(95, 118, 99, 0.16);
  border-radius: var(--radius);
  background: rgba(143, 168, 145, 0.15);
  color: var(--charcoal);
  padding: 8px;
  text-align: left;
}

.event-chip strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.25;
  min-height: 30px;
  overflow-wrap: anywhere;
  word-break: normal;
  font-size: 12px;
}

.event-chip span {
  display: block;
  margin-top: 3px;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 800;
}

.compact-calendar .calendar-head {
  padding: 10px 12px;
}

.compact-calendar .calendar-head h3 {
  font-size: 21px;
}

.compact-calendar .weekday {
  padding: 6px 3px;
  font-size: 9px;
}

.compact-calendar .day {
  min-height: 42px;
  padding: 4px;
}

.compact-calendar .day-number {
  width: 20px;
  height: 20px;
  font-size: 10px;
}

.compact-calendar .day-events {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 3px;
}

.compact-calendar .event-chip {
  width: 13px;
  height: 13px;
  min-height: 0;
  border-radius: 999px;
  padding: 0;
  background: var(--sage-deep);
  text-indent: -999px;
  overflow: hidden;
}

.compact-calendar .event-chip:hover,
.compact-calendar .event-chip:focus-visible {
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(201, 143, 139, 0.18);
}

.compact-calendar .event-chip strong {
  display: none;
}

.compact-calendar .event-chip span {
  display: none;
}

.side-list {
  display: grid;
  gap: 12px;
}

.compact-calendar-shell .side-list {
  gap: 12px;
  align-self: start;
}

.side-list-body {
  display: grid;
  gap: 12px;
}

.compact-calendar-shell .calendar-board,
.compact-calendar-shell .side-list {
  margin-top: 0;
}

.mini-event {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px;
}

.mini-event button {
  margin-top: 10px;
}

.detail-layout,
.form-layout,
.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.form-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  margin-top: 42px;
}

.admin-login-layout {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.detail-layout {
  margin-top: 42px;
}

.form-layout > .section,
.form-layout > .profile-panel,
.detail-layout > .section,
.detail-layout > .booking-card,
.detail-layout > .detail-panel {
  margin-top: 0;
}

.form-layout > .section h2 {
  max-width: 720px;
  font-size: clamp(40px, 5vw, 60px);
}

.form-layout > .profile-panel {
  align-self: start;
  padding: clamp(22px, 3vw, 30px);
}

.form-layout > .profile-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.form-layout > .profile-panel p {
  max-width: 31ch;
  margin-bottom: 22px;
  line-height: 1.55;
}

.payment-section {
  padding: clamp(26px, 5vw, 48px);
}

.payment-section h2 {
  max-width: 560px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.95;
}

.payment-lede {
  max-width: 680px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.payment-instructions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 10px;
  margin-top: 24px;
}

.payment-instructions > div,
.payment-memo-card {
  border: 1px solid rgba(47, 48, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 241, 232, 0.38);
  padding: 14px 16px;
}

.payment-instructions span,
.payment-memo-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.payment-instructions strong,
.payment-memo-card strong {
  display: block;
  margin-top: 5px;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.25;
}

.payment-instructions small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.payment-memo-card {
  margin-top: 12px;
  background: rgba(239, 216, 212, 0.28);
}

.payment-memo-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.detail-panel {
  overflow: hidden;
}

.detail-panel img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.detail-body,
.booking-card,
.profile-panel {
  padding: clamp(20px, 4vw, 34px);
}

.map-panel {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.map-panel .section-header {
  margin: 0;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  filter: saturate(0.72) sepia(0.08);
}

.event-info-card {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.58);
}

.event-info-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 22px;
  padding: 10px 0 18px;
}

.event-info-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.location-column {
  border-left: 1px solid rgba(47, 48, 45, 0.12);
  padding-left: 22px;
}

.event-info-column h3 {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.event-info-card .detail-people-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 14px;
  padding: 0 0 18px;
}

.detail-people-row {
  gap: 22px;
}

.detail-people-row .workshop-person {
  position: relative;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-areas: "avatar name";
  max-width: none;
  min-width: 0;
  align-items: center;
  justify-items: start;
  gap: 3px 12px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.62);
  padding: 14px 16px;
  text-align: left;
}

.detail-people-row .workshop-person--guest {
  grid-template-columns: auto 58px minmax(0, 1fr);
  grid-template-areas: "prefix avatar name";
}

.detail-people-row .workshop-person--has-topic {
  grid-template-areas:
    "avatar name"
    "avatar topic";
}

.detail-people-row .workshop-person--guest.workshop-person--has-topic {
  grid-template-areas:
    "prefix avatar name"
    "prefix avatar topic";
}

.detail-people-row .workshop-person img,
.detail-people-row .person-initials {
  width: 50px;
  height: 50px;
  font-size: 14px;
}

.detail-people-row .person-prefix {
  font-size: 13px;
}

.detail-people-row .workshop-person .person-name {
  grid-area: name;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.detail-people-row .workshop-person em {
  grid-area: topic;
  color: var(--muted);
  font-size: 12px;
}

.event-info-map {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: var(--radius);
  filter: saturate(0.72) sepia(0.08);
}

.event-support-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border: 1px solid rgba(47, 48, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.66);
  padding: 16px 18px;
}

.event-support-card p {
  margin: 0;
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.6;
}

.event-support-card strong {
  font-weight: 800;
}

.eventbrite-line {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.eventbrite-line strong,
.eventbrite-line em {
  display: block;
  font-style: normal;
}

.eventbrite-line em {
  margin-top: 8px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.eventbrite-line:hover span {
  text-decoration: underline;
  text-decoration-color: rgba(95, 118, 99, 0.45);
  text-underline-offset: 5px;
}

.eventbrite-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--charcoal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.event-info-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(47, 48, 45, 0.09);
}

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

.event-info-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-info-row strong,
.event-info-row a {
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.event-info-row a {
  text-decoration-color: rgba(95, 118, 99, 0.45);
  text-underline-offset: 4px;
}

.eventbrite-detail-sections {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.eventbrite-section {
  border-top: 1px solid rgba(47, 48, 45, 0.1);
  padding-top: 18px;
}

.eventbrite-section h3 {
  margin-bottom: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.eventbrite-section p,
.eventbrite-section li {
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.7;
}

.eventbrite-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.event-agenda,
.event-faq {
  display: grid;
  gap: 10px;
}

.agenda-section {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding-top: 18px;
}

.event-agenda {
  gap: 12px;
}

.event-agenda .agenda-item,
.event-faq details {
  border: 1px solid rgba(47, 48, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.66);
  padding: 16px 18px;
}

.event-agenda .agenda-item {
  border: 0;
  border-left: 3px solid var(--sage-deep);
}

.agenda-tone-1 {
  background: rgba(239, 216, 212, 0.22);
  border-left-color: rgba(201, 143, 139, 0.72);
}

.agenda-tone-2 {
  background: rgba(143, 168, 145, 0.11);
  border-left-color: rgba(95, 118, 99, 0.72);
}

.agenda-tone-3 {
  background: rgba(165, 148, 131, 0.1);
  border-left-color: rgba(165, 148, 131, 0.52);
}

.event-agenda strong,
.event-agenda span {
  display: block;
}

.event-agenda strong,
.event-faq summary {
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.event-agenda span,
.event-faq p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.event-faq p {
  margin: 5px 0 0;
  font-size: 14px;
}

.event-faq details {
  padding: 0;
}

.event-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
}

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

.event-faq summary::after {
  color: var(--sage-deep);
  content: "›";
  font-size: 30px;
  font-weight: 800;
  transition: transform 0.18s ease;
}

.event-faq details[open] summary::after {
  transform: rotate(90deg);
}

.event-faq details p {
  margin: 0;
  padding: 0 20px 18px;
}

.info-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 14px;
}

.info-item,
.metric-card {
  padding: 16px;
}

.info-item {
  border: 1px solid rgba(47, 48, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 241, 232, 0.45);
}

.info-item span,
.metric-card span,
label span,
.field-hint {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-item strong,
.metric-card strong {
  display: block;
  margin-top: 5px;
  color: var(--charcoal);
  font-size: 17px;
}

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

.workshop-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 18px;
  align-items: start;
}

.workshop-form-panel {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 14px;
  box-shadow: 0 10px 30px rgba(83, 72, 60, 0.08);
}

.workshop-calendar-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}

.workshop-list-table {
  box-shadow: 0 10px 30px rgba(83, 72, 60, 0.06);
}

.live-duplicate-editor {
  margin-bottom: 20px;
}

.live-duplicate-editor .section-header {
  margin-bottom: 12px;
}

.live-duplicate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 16px;
  align-items: start;
}

.workshop-list-table table {
  min-width: 620px;
}

.workshop-list-table th,
.workshop-list-table td {
  padding: 11px 12px;
  font-size: 12px;
}

.workshop-list-table .button.small {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 12px;
}

.workshop-list-table .row {
  gap: 8px;
}

.live-workshop-team {
  display: grid;
  gap: 3px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.compact-admin-form {
  grid-template-columns: 1fr;
  gap: 9px;
  font-size: 12px;
}

.compact-admin-form label {
  gap: 6px;
}

.compact-admin-form input,
.compact-admin-form select,
.compact-admin-form textarea {
  padding: 9px 10px;
  font-size: 12px;
}

.compact-admin-form textarea {
  min-height: 72px;
}

.admin-form-group {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(47, 48, 45, 0.09);
  border-radius: var(--radius);
  background: rgba(247, 241, 232, 0.24);
  padding: 11px;
}

.admin-form-group legend {
  margin-bottom: 0;
  padding: 0 4px;
}

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

.image-upload-preview {
  display: grid;
  min-height: 76px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(95, 118, 99, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.image-upload-preview img {
  width: 100%;
  height: 76px;
  object-fit: cover;
}

.compact-admin-form .button {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 12px;
}

.compact-admin-form .option-group {
  gap: 7px;
  padding: 12px;
}

.compact-admin-form .radio-row,
.compact-admin-form .check-row {
  min-height: 26px;
  font-size: 12px;
}

.compact-admin-form .field-hint {
  font-size: 11px;
  line-height: 1.4;
}

.selected-dates-display {
  min-height: 36px;
  border: 1px solid rgba(47, 48, 45, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  color: var(--charcoal);
  padding: 9px 10px;
  line-height: 1.45;
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 700;
}

fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

legend {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.full {
  grid-column: 1 / -1;
}

.promo-code-field {
  display: grid;
  gap: 8px;
}

.promo-total-preview {
  border: 1px solid rgba(95, 118, 99, 0.18);
  border-radius: var(--radius);
  background: rgba(143, 168, 145, 0.09);
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  padding: 10px 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(47, 48, 45, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  color: var(--charcoal);
  font-weight: 400;
  padding: 13px 14px;
  outline: 0;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  font-weight: 400;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(95, 118, 99, 0.62);
  box-shadow: 0 0 0 4px rgba(143, 168, 145, 0.14);
}

.check-row,
.radio-row {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.check-row input,
.radio-row input {
  flex: 0 0 auto;
  width: auto;
  margin: 0;
}

.notice {
  border: 1px solid rgba(201, 143, 139, 0.24);
  border-radius: var(--radius);
  background: rgba(239, 216, 212, 0.38);
  padding: 16px;
  color: var(--charcoal);
}

.notice.sage {
  border-color: rgba(95, 118, 99, 0.22);
  background: rgba(143, 168, 145, 0.13);
}

.custom-form-section {
  grid-column: 1 / -1;
  padding-bottom: 4px;
}

.custom-form-section h3 {
  font-size: 30px;
}

.custom-form-copy {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.structured-form-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.final-save-info-spacer {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding-top: 10px;
}

.final-save-info-spacer .check-row {
  margin-bottom: 0;
}

.refund-policy-row {
  align-items: flex-start;
}

.refund-policy-row span {
  display: grid;
  gap: 6px;
}

.refund-policy-row small {
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  text-transform: none;
}

.conditional-form-section[data-condition-field] {
  display: none;
}

form:has([name="payment_method"][value="Venmo"]:checked) .conditional-form-section[data-condition-field="payment_method"][data-condition-value="Venmo"],
form:has([name="payment_method"][value="Zelle"]:checked) .conditional-form-section[data-condition-field="payment_method"][data-condition-value="Zelle"] {
  display: grid;
}

.option-group {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(47, 48, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 241, 232, 0.28);
  padding: 16px;
}

.option-group .radio-row,
.option-group .check-row {
  min-height: 32px;
  align-items: center;
}

.option-group .radio-row input,
.option-group .check-row input {
  margin-top: 0;
}

.event-page-fields textarea {
  min-height: 96px;
}

.proposal-list {
  display: grid;
  gap: 16px;
}

.instructor-link-note {
  margin-bottom: 16px;
}

.instructor-login-section {
  width: min(960px, 100%);
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 38px);
}

.instructor-login-section .section-header {
  margin-bottom: 24px;
}

.instructor-login-section .section-header h2 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}

.instructor-login-section .section-header p {
  max-width: 640px;
  font-size: 14px;
  line-height: 1.55;
}

.instructor-login-layout {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(260px, 360px);
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

.instructor-login-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.instructor-login-card h3,
.instructor-login-aside h3 {
  font-size: 29px;
  line-height: 1.05;
}

.instructor-login-card .form-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.instructor-create-note {
  display: grid;
  gap: 8px;
  padding: 13px;
}

.instructor-create-note .button {
  justify-self: start;
}

.instructor-profile-create-form {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.profile-photo-editor {
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
}

.profile-photo-editor .form-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  align-items: end;
  gap: 12px;
}

.profile-photo-editor .full {
  grid-column: auto;
}

.profile-save-button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 220px;
  margin-top: 4px;
}

.upload-field {
  position: relative;
}

.upload-field input[type="file"] {
  padding-right: 54px;
}

.upload-status {
  display: none;
  position: absolute;
  right: 14px;
  bottom: 14px;
  pointer-events: none;
  color: var(--sage-deep);
}

.upload-status.is-uploading,
.upload-status.is-complete,
.upload-status.is-error {
  display: grid;
}

.upload-check {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(95, 118, 99, 0.24);
  border-radius: 999px;
  background: rgba(143, 168, 145, 0.12);
  color: transparent;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
}

.upload-status.is-complete .upload-check::before {
  content: "\2713";
  color: var(--sage-deep);
  font-size: 14px;
}

.upload-status.is-uploading .upload-check::before {
  content: "...";
  color: var(--sage-deep);
  font-size: 11px;
  letter-spacing: 0;
}

.upload-status.is-error {
  color: #9f4f45;
}

.upload-status.is-error .upload-check {
  border-color: rgba(159, 79, 69, 0.26);
  background: rgba(159, 79, 69, 0.1);
}

.upload-status.is-error .upload-check::before {
  content: "!";
  color: #9f4f45;
  font-size: 13px;
}

.upload-status-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.photo-cropper {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(95, 118, 99, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
}

.photo-crop-frame {
  width: 92px;
  height: 92px;
  overflow: hidden;
  border: 1px solid rgba(95, 118, 99, 0.22);
  border-radius: 50%;
  background: rgba(143, 168, 145, 0.1);
  cursor: grab;
  touch-action: none;
}

.photo-crop-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.12s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.photo-crop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.photo-cropper small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.instructor-login-aside {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(143, 168, 145, 0.1);
  padding: 24px;
}

.instructor-login-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.instructor-admin-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.instructor-profile-list {
  padding: 14px;
}

.instructor-profile-rows {
  display: grid;
  gap: 8px;
}

.instructor-profile-row {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(95, 118, 99, 0.18);
  border-radius: var(--radius);
  background: rgba(143, 168, 145, 0.1);
  padding: 10px;
}

.instructor-profile-row strong {
  color: var(--charcoal);
  font-size: 12px;
}

.instructor-profile-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.instructor-profile-row .button {
  justify-self: start;
  margin-top: 4px;
  min-height: 24px;
  padding: 4px 7px;
  font-size: 11px;
}

.client-profile-list {
  display: grid;
  gap: 14px;
}

.client-profile-search {
  display: grid;
  max-width: 520px;
  margin: 0 0 16px;
}

.client-profile-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  padding: 16px;
}

.client-profile-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: start;
}

.client-profile-summary h3 {
  font-size: 28px;
  line-height: 1;
}

.client-profile-summary h3 button {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.client-profile-summary h3 button:hover {
  color: var(--sage-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.client-profile-summary p {
  margin: 8px 0 0;
  font-size: 13px;
}

.client-profile-stats {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.client-delete-button {
  min-height: 26px;
  margin-top: 4px;
  padding: 5px 8px;
  font-size: 11px;
}

.client-registration-list {
  display: grid;
  gap: 8px;
}

.client-registration-item {
  display: grid;
  gap: 8px;
}

.client-registration-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) max-content minmax(150px, 0.5fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(95, 118, 99, 0.16);
  border-radius: var(--radius);
  background: rgba(143, 168, 145, 0.08);
  padding: 11px 12px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.client-registration-row:hover,
.client-registration-row.active {
  border-color: rgba(95, 118, 99, 0.34);
  background: rgba(143, 168, 145, 0.14);
}

.client-registration-row strong,
.client-registration-row span {
  display: block;
}

.client-registration-row strong {
  color: var(--charcoal);
  font-size: 13px;
}

.client-registration-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.client-registration-detail,
.client-submitted-forms {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.client-submitted-forms h4 {
  margin: 0;
  font-size: 18px;
}

.client-submitted-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(47, 48, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  padding: 14px;
}

.client-submitted-form h5 {
  margin: 0;
  font-size: 18px;
}

.client-submitted-form p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.client-submitted-answer-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(47, 48, 45, 0.1);
}

.client-submitted-answer-grid div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid rgba(47, 48, 45, 0.08);
  padding: 9px 0;
}

.client-submitted-answer-grid span,
.client-submitted-answer-grid strong {
  display: block;
  line-height: 1.35;
}

.client-submitted-answer-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.client-submitted-answer-grid strong {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
}

.attendance-workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 14px;
}

.attendance-workshop-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(83, 72, 60, 0.08);
}

.attendance-workshop-thumb {
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  background: rgba(143, 168, 145, 0.1);
  color: var(--sage-deep);
  font-weight: 800;
}

.attendance-workshop-thumb img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.attendance-workshop-body {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.attendance-workshop-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.attendance-workshop-head h3 {
  margin-top: 4px;
  font-size: 24px;
  line-height: 1;
}

.attendance-workshop-head p:not(.meta) {
  margin: 8px 0 0;
  font-size: 12px;
}

.attendance-list {
  display: grid;
  gap: 8px;
}

.attendance-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(95, 118, 99, 0.16);
  border-radius: var(--radius);
  background: rgba(143, 168, 145, 0.08);
  padding: 9px 10px;
}

.attendance-row input {
  width: auto;
  margin: 0;
}

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

.attendance-row strong {
  font-size: 13px;
}

.attendance-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.guest-speaker-admin-list {
  padding: 14px;
}

.status-list {
  display: grid;
  gap: 8px;
}

.status-list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(47, 48, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  padding: 10px 12px;
}

.status-list-row > div {
  display: grid;
  gap: 4px;
}

.status-list-row > div:last-child {
  justify-items: end;
}

.status-list-row strong {
  color: var(--charcoal);
  font-size: 12px;
}

.status-list-row span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.instructor-date-list table {
  min-width: 660px;
}

.instructor-date-list th,
.instructor-date-list td {
  padding: 8px 10px;
  font-size: 11px;
  line-height: 1.3;
}

.instructor-date-list strong {
  font-size: 12px;
}

.instructor-date-list .pill {
  min-height: 23px;
  padding: 4px 7px;
  font-size: 10px;
}

.instructor-date-list .button.small {
  min-height: 30px;
  padding: 6px 9px;
  font-size: 11px;
}

.instructor-date-list .row {
  gap: 6px;
}

.table-note {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.visible-note {
  margin-top: 0;
  color: var(--charcoal);
}

.muted-note {
  display: inline-block;
  margin-top: 0;
  color: rgba(110, 106, 99, 0.72);
}

.proposal-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: clamp(18px, 4vw, 26px);
  box-shadow: 0 10px 30px rgba(83, 72, 60, 0.08);
}

.proposal-card.locked {
  background: rgba(143, 168, 145, 0.1);
}

.instructor-availability-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 18px;
  align-items: start;
}

.instructor-availability-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(83, 72, 60, 0.08);
}

.instructor-availability-body {
  display: grid;
  gap: 11px;
  padding: 15px;
}

.instructor-availability-body h3 {
  overflow: hidden;
  font-size: 20px;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.instructor-availability-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.instructor-availability-card textarea {
  min-height: 82px;
}

.instructor-availability-card .response-buttons {
  gap: 8px;
}

.instructor-availability-card .response-option {
  min-height: 36px;
  padding: 8px 10px;
  font-size: 11px;
}

.guest-speaker-workshop-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 14px;
  align-items: start;
}

.guest-speaker-workshop-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(83, 72, 60, 0.08);
}

.guest-speaker-workshop-body {
  display: grid;
  gap: 9px;
  padding: 12px;
}

.guest-speaker-workshop-body h3 {
  font-size: 22px;
  line-height: 1.02;
}

.guest-speaker-workshop-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.guest-speaker-workshop-body .guest-speaker-workshop-meta {
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 800;
}

.guest-speaker-workshop-body .notice {
  padding: 11px;
  font-size: 12px;
}

.compact-claim-form {
  grid-template-columns: 1fr;
  gap: 8px;
}

.compact-claim-form textarea {
  min-height: 58px;
}

.compact-claim-form .button {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 12px;
}

.compact-claim-form .check-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
}

.proposal-status-row,
.response-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.response-option {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 48, 45, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  color: var(--charcoal);
  padding: 10px 14px;
  font-weight: 800;
}

.response-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.response-option.selected,
.response-option:has(input:checked) {
  border-color: var(--sage-deep);
  background: rgba(143, 168, 145, 0.22);
  color: var(--sage-deep);
}

.response-option.availability-available:hover,
.response-option.availability-available:focus-within,
.response-option.availability-available.selected,
.response-option.availability-available:has(input:checked) {
  border-color: #5f7663;
  background: rgba(143, 168, 145, 0.26);
  color: #4f6654;
}

.response-option.availability-not-available:hover,
.response-option.availability-not-available:focus-within,
.response-option.availability-not-available.selected,
.response-option.availability-not-available:has(input:checked) {
  border-color: #b56c67;
  background: rgba(239, 216, 212, 0.72);
  color: #925d5a;
}

.response-option.availability-maybe:hover,
.response-option.availability-maybe:focus-within,
.response-option.availability-maybe.selected,
.response-option.availability-maybe:has(input:checked) {
  border-color: #c4955f;
  background: rgba(232, 190, 135, 0.32);
  color: #8a6538;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.spaced-table {
  margin-top: 20px;
}

.admin-calendar {
  margin-top: 0;
  overflow: hidden;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(83, 72, 60, 0.08);
}

.admin-day {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(47, 48, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.74);
  color: var(--charcoal);
  padding: 8px;
  text-align: left;
}

.compact-admin-calendar .calendar-head {
  min-height: 58px;
  padding: 9px 12px;
}

.compact-admin-calendar .calendar-head h3 {
  font-size: 20px;
}

.compact-admin-calendar .weekday {
  padding: 6px 3px;
  font-size: 9px;
}

.compact-admin-calendar .day {
  min-height: 46px;
  padding: 4px;
}

.compact-admin-calendar .admin-day {
  display: grid;
  min-height: 38px;
  place-items: center;
  padding: 3px;
  font-size: 11px;
}

.compact-admin-calendar .admin-day:hover,
.compact-admin-calendar .admin-day:focus-visible {
  border-color: var(--sage-deep);
  background: rgba(143, 168, 145, 0.2);
}

.compact-admin-calendar .admin-day.selected {
  border-color: var(--rose);
  background: rgba(239, 216, 212, 0.72);
  box-shadow: inset 0 0 0 2px rgba(201, 143, 139, 0.32);
}

.compact-admin-calendar .admin-day span {
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 999px;
  background: var(--sage-deep);
  color: var(--paper);
  font-size: 9px;
}

.compact-admin-calendar .admin-day span:empty {
  display: none;
}

.admin-day.has-event {
  background: rgba(143, 168, 145, 0.14);
}

.admin-day span {
  display: block;
  color: var(--sage-deep);
  font-size: 11px;
  font-weight: 800;
}

.compact-admin-calendar .admin-day span {
  display: grid;
  color: var(--paper);
  font-size: 9px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--taupe-deep);
  font-size: 12px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.booking-name-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--charcoal);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.booking-name-button:hover {
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.booking-table-wrap {
  max-width: 1180px;
}

.booking-management-table {
  min-width: 960px;
}

.booking-management-table th,
.booking-management-table td {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.25;
  vertical-align: middle;
}

.booking-management-table th:nth-child(1),
.booking-management-table td:nth-child(1) {
  width: 210px;
}

.booking-management-table th:nth-child(2),
.booking-management-table td:nth-child(2) {
  width: 330px;
}

.booking-management-table th:nth-child(3),
.booking-management-table td:nth-child(3) {
  width: 170px;
  text-align: center;
}

.booking-management-table th:nth-child(4),
.booking-management-table td:nth-child(4) {
  width: 95px;
}

.booking-management-table th:nth-child(5),
.booking-management-table td:nth-child(5) {
  width: 220px;
}

.booking-management-table .pill {
  min-height: 24px;
  min-width: 132px;
  justify-content: center;
  padding: 4px 9px;
  font-size: 11px;
  line-height: 1.1;
  white-space: nowrap;
}

.booking-management-table .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(82px, 1fr));
  gap: 7px;
  align-items: stretch;
  max-width: 190px;
}

.booking-management-table .button.small {
  min-height: 31px;
  width: 100%;
  padding: 6px 9px;
  font-size: 12px;
}

.booking-form-detail-row td,
.booking-transfer-row td {
  background: rgba(255, 253, 248, 0.72);
  padding: 12px 16px 18px;
}

.booking-form-detail-row .client-submitted-form {
  border: 0;
  background: transparent;
  padding: 0;
}

.booking-transfer-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) max-content;
  gap: 10px;
  align-items: end;
  max-width: 760px;
}

.booking-transfer-form label {
  gap: 5px;
}

.admin-tabs,
.view-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.page-back-row {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 14px;
}

.page-back-button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(95, 118, 99, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--charcoal);
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 800;
}

.page-back-button::before {
  content: "‹";
  margin-right: 6px;
  font-size: 16px;
  line-height: 1;
}

.page-back-button:hover {
  border-color: rgba(95, 118, 99, 0.32);
  background: rgba(143, 168, 145, 0.13);
}

.admin-tabs button,
.admin-tab-dropdown summary,
.view-tabs button {
  border: 1px solid rgba(47, 48, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  padding: 10px 14px;
  color: var(--charcoal);
  font-weight: 800;
}

.admin-tabs button.active,
.admin-tab-dropdown summary.active,
.view-tabs button.active {
  border-color: rgba(95, 118, 99, 0.32);
  background: rgba(143, 168, 145, 0.18);
  color: var(--sage-deep);
}

.admin-tab-dropdown {
  position: relative;
}

.admin-tab-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.admin-tab-dropdown summary::-webkit-details-marker {
  display: none;
}

.admin-tab-dropdown summary::after {
  content: "⌄";
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.admin-tab-dropdown[open] summary::after {
  content: "⌃";
}

.admin-tab-dropdown > div {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 220px;
  gap: 6px;
  border: 1px solid rgba(47, 48, 45, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
  padding: 8px;
}

.admin-tab-dropdown > div button {
  width: 100%;
  border-radius: 8px;
  text-align: left;
}

.chart-wrap {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.pie {
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--sage) 0 55%, var(--rose) 55% 76%, var(--taupe) 76% 100%);
  box-shadow: inset 0 0 0 28px var(--paper), var(--soft-shadow);
}

.legend {
  display: grid;
  gap: 10px;
}

.legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.custom-answer-list {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.custom-answer-list span {
  display: block;
}

.custom-answer-list strong {
  color: var(--charcoal);
  font-weight: 700;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sage);
}

.dot.rose {
  background: var(--rose);
}

.dot.taupe {
  background: var(--taupe);
}

.empty-state {
  border: 1px dashed rgba(117, 104, 92, 0.36);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 253, 248, 0.48);
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(420px, calc(100% - 36px));
  border: 1px solid rgba(95, 118, 99, 0.24);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--paper);
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.toast p {
  margin: 0;
  color: var(--paper);
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero,
  .calendar-shell,
  .client-section-stack,
  .workshop-page-header,
  .detail-layout,
  .form-layout,
  .admin-layout,
  .workshop-admin-grid,
  .live-duplicate-grid,
  .instructor-login-layout,
  .instructor-admin-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .visual-panel img {
    height: 360px;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  }

  .month-workshop-cards {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .main {
    width: min(100% - 22px, 1180px);
    padding-top: 16px;
  }

  .section,
  .detail-body,
  .booking-card,
  .profile-panel {
    padding: 20px;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .cards,
  .form-grid,
  .mini-form-grid,
  .structured-form-section,
  .info-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .event-info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .event-info-top,
  .event-info-card .detail-people-row {
    grid-template-columns: 1fr;
  }

  .event-info-top {
    padding-right: 0;
  }

  .location-column {
    border-left: 0;
    border-top: 1px solid rgba(47, 48, 45, 0.12);
    padding-top: 20px;
    padding-left: 0;
  }

  .month-workshop-cards .workshop-card {
    grid-template-columns: 1fr;
  }

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

  .client-profile-summary,
  .client-registration-row,
  .attendance-workshop-card,
  .attendance-workshop-head {
    grid-template-columns: 1fr;
  }

  .attendance-workshop-thumb img {
    min-height: 150px;
  }

  .client-profile-stats {
    justify-items: start;
  }

  .status-list-row > div:last-child {
    justify-items: start;
  }

  .guest-speaker-workshop-list {
    grid-template-columns: 1fr;
  }

  .month-workshop-cards .workshop-card > img {
    height: 170px;
    min-height: 0;
  }

  .calendar-board {
    border-radius: 0;
    margin-inline: -11px;
  }

  .compact-calendar {
    margin-inline: 0;
    border-radius: var(--radius);
  }

  .calendar-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .weekday {
    font-size: 10px;
    padding: 9px 2px;
  }

  .day {
    min-height: 96px;
    padding: 6px;
  }

  .compact-calendar .day {
    min-height: 42px;
    padding: 4px;
  }

  .event-chip {
    padding: 6px;
  }

  .event-chip strong {
    min-height: auto;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .detail-panel img {
    height: 260px;
  }

  .chart-wrap {
    grid-template-columns: 1fr;
  }

  .profile-photo-editor .form-grid {
    grid-template-columns: 1fr;
  }

  .profile-save-button {
    width: min(100%, 260px);
    min-width: 0;
  }

  .profile-identity-stack {
    grid-template-columns: 72px minmax(0, max-content);
  }

  .profile-identity-stack .profile-identity img,
  .profile-identity-stack .profile-identity .person-initials {
    width: 72px;
    height: 72px;
  }
}
