/* Podcast Studio Miami — booking flow.
   Tokens lifted from the live site (assets/css/style.css) so the booking page
   reads as part of podcaststudio.miami rather than a bolted-on widget. */

:root {
  --ink:        #1B1117;
  --coral:      #FF6A58;
  --coral-dark: #E85340;
  --blue:       #22B0FC;
  --muted:      #60565C;
  --line:       #E6E1E3;
  --bg:         #F6FCFF;
  --card:       #FFFFFF;
  --ok:         #0F9D58;
  --warn:       #FCBF5B;

  --radius:     14px;
  --radius-sm:  10px;
  --shadow:     0 1px 2px rgba(27,17,23,.06), 0 8px 24px rgba(27,17,23,.06);
  --shadow-lg:  0 2px 6px rgba(27,17,23,.08), 0 18px 48px rgba(27,17,23,.10);

  --head: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --body: 'Maven Pro', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

body.psm-booking {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.psm-wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------------------------------------------------------------- header */

.psm-head { padding: 48px 0 28px; text-align: center; }
.psm-head h1 {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -.02em;
  margin: 0 0 10px;
}
.psm-head p { color: var(--muted); margin: 0; font-size: 17px; }
.psm-head p a {
  color: var(--coral); text-decoration: none;
  font-size: 15.5px; font-weight: 500;
  border-bottom: 1px solid rgba(255,106,88,.35);
}
.psm-head p a:hover { border-bottom-color: var(--coral); }

/* Step rail */
.psm-steps {
  display: flex; justify-content: center; gap: 8px;
  margin: 28px 0 36px; flex-wrap: wrap;
}
.psm-step {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--muted); font-weight: 500;
}
.psm-step + .psm-step::before {
  content: ''; width: 26px; height: 1px; background: var(--line); margin-right: 8px;
}
.psm-step i {
  display: grid; place-items: center;
  width: 25px; height: 25px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--line);
  font-style: normal; font-size: 12.5px; font-weight: 700;
  transition: .2s;
}
.psm-step.is-active { color: var(--ink); }
.psm-step.is-active i { background: var(--coral); border-color: var(--coral); color: #fff; }
.psm-step.is-done i   { background: var(--ink); border-color: var(--ink); color: #fff; }

/* On phones the three labels wrap to a second line and read as broken. Keep
   the numbered dots and show only the label for the step you are on. */
@media (max-width: 480px) {
  .psm-steps { gap: 4px; }
  .psm-step { font-size: 13.5px; gap: 6px; }
  .psm-step + .psm-step::before { width: 16px; margin-right: 4px; }
  .psm-step:not(.is-active) { font-size: 0; gap: 0; }
}

/* ---------------------------------------------------------------- panels */

.psm-panel { display: none; animation: psm-in .28s ease both; }
.psm-panel.is-active { display: block; }
@keyframes psm-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .psm-panel { animation: none; }
  * { transition: none !important; }
}

.psm-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

h2.psm-h { font-family: var(--head); font-size: 21px; font-weight: 600; margin: 0 0 4px; letter-spacing: -.01em; }
p.psm-sub { color: var(--muted); margin: 0 0 22px; font-size: 15px; }

/* -------------------------------------------------------- session tiers */

/* Sized so all five tiers sit on one row at full width — comparing them
   side by side is the whole job of this step. Wraps to 3, then 2, then 1. */
.psm-tiers { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(184px, 1fr)); }

.psm-tier {
  position: relative; text-align: left; cursor: pointer;
  background: var(--card); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 22px 20px;
  font: inherit; color: inherit;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.psm-tier:hover { border-color: var(--coral); transform: translateY(-2px); box-shadow: var(--shadow); }
.psm-tier:focus-visible { outline: 3px solid rgba(255,106,88,.4); outline-offset: 2px; }
.psm-tier[aria-pressed="true"] {
  border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,106,88,.14), var(--shadow);
}
.psm-tier h3 { font-family: var(--head); font-size: 17px; font-weight: 600; margin: 0 0 3px; }
.psm-tier .psm-price {
  font-family: var(--head); font-size: 30px; font-weight: 700;
  letter-spacing: -.02em; margin: 10px 0 2px; display: block;
}
.psm-tier .psm-tag { color: var(--muted); font-size: 14px; display: block; min-height: 42px; }
.psm-tier .psm-dur {
  display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--coral);
  background: rgba(255,106,88,.10); padding: 3px 9px; border-radius: 999px;
}

/* ------------------------------------------------------------- calendar */

.psm-cal-grid { display: grid; gap: 26px; grid-template-columns: minmax(0, 320px) 1fr; }
@media (max-width: 760px) { .psm-cal-grid { grid-template-columns: 1fr; } }

.psm-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.psm-cal-head strong { font-family: var(--head); font-size: 17px; font-weight: 600; }
.psm-nav { display: flex; gap: 6px; }
.psm-nav button {
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  font-size: 15px; line-height: 1; transition: .16s;
}
.psm-nav button:hover:not(:disabled) { border-color: var(--coral); color: var(--coral); }
.psm-nav button:disabled { opacity: .35; cursor: not-allowed; }

.psm-dow, .psm-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.psm-dow span {
  text-align: center; font-size: 11.5px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em; padding-bottom: 7px;
}
.psm-day {
  aspect-ratio: 1; border: 0; background: transparent; border-radius: 9px;
  font: inherit; font-size: 14.5px; font-weight: 500; color: var(--ink);
  cursor: pointer; position: relative; transition: .14s;
}
.psm-day:disabled { color: #C9C2C5; cursor: default; }
.psm-day.has-slots::after {
  content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--coral);
}
.psm-day:not(:disabled):hover { background: rgba(255,106,88,.10); }
.psm-day.is-selected { background: var(--coral); color: #fff; font-weight: 700; }
.psm-day.is-selected::after { background: #fff; }
.psm-day.is-empty { visibility: hidden; }

/* Weekend dates carry a premium — a different dot colour flags it on the grid
   without adding a legend the customer has to decode. The wording that
   actually explains it appears once a date is picked. */
.psm-day.is-premium::after { background: var(--blue); }
.psm-day.is-premium.is-selected::after { background: #fff; }

.psm-premium-note {
  background: rgba(34,176,252,.08);
  border: 1px solid rgba(34,176,252,.25);
  color: #075985;
  border-radius: var(--radius-sm);
  padding: 11px 13px; font-size: 13.5px; margin: 0 0 12px; line-height: 1.5;
}

/* Time chips */
.psm-slots { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
.psm-slot {
  padding: 11px 8px; border: 1.5px solid var(--line); background: #fff;
  border-radius: var(--radius-sm); font: inherit; font-size: 14.5px; font-weight: 500;
  cursor: pointer; transition: .16s; color: var(--ink);
}
.psm-slot:hover { border-color: var(--coral); color: var(--coral); }
.psm-slot[aria-pressed="true"] { background: var(--coral); border-color: var(--coral); color: #fff; font-weight: 600; }

.psm-empty { color: var(--muted); font-size: 15px; padding: 30px 0; text-align: center; }
.psm-tzline { font-size: 13px; color: var(--muted); margin-top: 14px; }

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

.psm-field { margin-bottom: 16px; }
.psm-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.psm-field .psm-hint { font-weight: 400; color: var(--muted); }

.psm-field input, .psm-field select, .psm-field textarea {
  width: 100%; padding: 11px 13px; font: inherit; font-size: 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink); transition: border-color .16s, box-shadow .16s;
}
.psm-field input:focus, .psm-field select:focus, .psm-field textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,106,88,.14);
}
.psm-field input[aria-invalid="true"] { border-color: #DC2626; }
.psm-err { color: #DC2626; font-size: 13px; margin-top: 5px; display: none; }
.psm-err.is-shown { display: block; }

.psm-2col { display: grid; gap: 0 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .psm-2col { grid-template-columns: 1fr; } }

/* Add-ons */
.psm-addon {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  padding: 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 9px; transition: .16s;
}
.psm-addon:hover { border-color: var(--coral); }
.psm-addon:has(input:checked) { border-color: var(--coral); background: rgba(255,106,88,.05); }
.psm-addon input { margin-top: 3px; accent-color: var(--coral); width: 17px; height: 17px; flex: none; }
.psm-addon .psm-an { font-weight: 600; font-size: 15px; }
.psm-addon .psm-ad { color: var(--muted); font-size: 13.5px; }
.psm-addon .psm-ad--list { margin: 5px 0 0; padding-left: 17px; }
.psm-addon .psm-ad--list li { margin-bottom: 3px; }
.psm-addon .psm-ad--list li::marker { color: var(--coral); }
.psm-addon .psm-ap { margin-left: auto; font-weight: 700; white-space: nowrap; font-family: var(--head); text-align: right; }
.psm-addon .psm-was { color: var(--muted); font-weight: 500; font-size: 13px; margin-right: 5px; }
.psm-save {
  display: inline-block; margin-left: 7px; padding: 2px 8px; border-radius: 999px;
  background: #E7F6EE; color: #0F7A45;
  font-family: var(--body); font-size: 11.5px; font-weight: 700;
  letter-spacing: .03em; text-transform: uppercase; vertical-align: 2px;
}

/* --------------------------------------------------------------- summary */

.psm-summary {
  position: sticky; top: 20px;
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px;
}
.psm-summary h3 { font-family: var(--head); font-size: 16px; font-weight: 600; margin: 0 0 14px; }
.psm-line { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; padding: 6px 0; }
.psm-line span:first-child { color: var(--muted); }
.psm-total {
  display: flex; justify-content: space-between; font-family: var(--head);
  font-size: 20px; font-weight: 700; padding-top: 13px; margin-top: 9px;
  border-top: 1px solid var(--line);
}
.psm-policy { font-size: 12.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }

.psm-layout { display: grid; gap: 22px; grid-template-columns: 1fr 320px; align-items: start; }
@media (max-width: 860px) {
  .psm-layout { grid-template-columns: 1fr; }
  .psm-summary { position: static; }
}

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

.psm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border: 0; border-radius: var(--radius-sm);
  font: inherit; font-size: 15.5px; font-weight: 600; cursor: pointer;
  background: var(--coral); color: #fff; transition: background .16s, transform .16s;
}
.psm-btn:hover:not(:disabled) { background: var(--coral-dark); }
.psm-btn:active:not(:disabled) { transform: translateY(1px); }
.psm-btn:disabled { opacity: .5; cursor: not-allowed; }
.psm-btn--block { width: 100%; }
.psm-btn--ghost { background: transparent; color: var(--muted); border: 1.5px solid var(--line); }
.psm-btn--ghost:hover:not(:disabled) { background: #fff; color: var(--ink); border-color: var(--ink); }

.psm-actions { display: flex; gap: 10px; align-items: center; margin-top: 22px; flex-wrap: wrap; }

/* Spinner inside the pay button */
.psm-spin {
  width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff; border-radius: 50%; animation: psm-rot .6s linear infinite;
}
@keyframes psm-rot { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------- notices */

.psm-note {
  padding: 13px 16px; border-radius: var(--radius-sm); font-size: 14.5px;
  margin-bottom: 18px; display: none;
}
.psm-note.is-shown { display: block; }
.psm-note--err  { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.psm-note--info { background: rgba(34,176,252,.08); color: #075985; border: 1px solid rgba(34,176,252,.25); }
.psm-note--ok   { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }

/* Skeleton while availability loads */
.psm-skel { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
.psm-skel i {
  display: block; height: 42px; border-radius: var(--radius-sm);
  background: linear-gradient(90deg, #EFEBED 25%, #F7F4F5 50%, #EFEBED 75%);
  background-size: 200% 100%; animation: psm-sh 1.3s infinite;
}
@keyframes psm-sh { to { background-position: -200% 0; } }

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

/* --------------------------------------------------------------- result */

.psm-result { max-width: 620px; margin: 0 auto; text-align: center; }
.psm-result .psm-icon {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 20px; font-size: 30px;
}
.psm-result .psm-icon--ok  { background: #F0FDF4; color: var(--ok); }
.psm-result .psm-icon--err { background: #FEF2F2; color: #DC2626; }
.psm-result h1 { font-family: var(--head); font-size: 27px; font-weight: 700; margin: 0 0 10px; }
.psm-result .psm-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 15px;
  background: #F4F1F2; padding: 4px 11px; border-radius: 7px; display: inline-block;
}
.psm-detail { text-align: left; margin-top: 26px; }
.psm-detail .psm-line { padding: 10px 0; border-bottom: 1px solid var(--line); }
.psm-detail .psm-line:last-child { border-bottom: 0; }

.psm-foot { text-align: center; color: var(--muted); font-size: 13.5px; padding: 40px 0 30px; }
.psm-foot a { color: var(--muted); }

/* ------------------------------------------------------- pricing page */

.psm-pricecard { padding: 6px 22px; }

.psm-ptable { width: 100%; border-collapse: collapse; }
.psm-ptable th, .psm-ptable td { text-align: left; padding: 16px 8px; vertical-align: middle; }
.psm-ptable thead th {
  font-family: var(--body); font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em; padding-bottom: 10px;
  border-bottom: 1.5px solid var(--line);
}
.psm-ptable tbody tr + tr th, .psm-ptable tbody tr + tr td { border-top: 1px solid var(--line); }
.psm-ptable tbody th { font-weight: 400; }

.psm-num { text-align: right !important; white-space: nowrap; }

.psm-pname { display: block; font-family: var(--head); font-size: 16.5px; font-weight: 600; }
.psm-ptag  { display: block; color: var(--muted); font-size: 13.5px; margin-top: 1px; }
.psm-pmoney { font-family: var(--head); font-size: 20px; font-weight: 700; letter-spacing: -.01em; }

/* Rate footnote, sitting inside the card under the table. */
.psm-pfoot {
  margin: 0; padding: 14px 8px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13.5px;
}

@media (max-width: 520px) {
  .psm-pricecard { padding: 6px 14px; }
  .psm-ptable th, .psm-ptable td { padding: 13px 4px; }
  .psm-pname { font-size: 15px; }
  .psm-ptag { display: none; }
  .psm-pmoney { font-size: 17px; }
}

/* Service cards */
.psm-services { display: grid; gap: 12px; }

.psm-service {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px 22px;
}
.psm-service--feature { box-shadow: 0 0 0 2px var(--coral), var(--shadow); }

.psm-service-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.psm-service h3 {
  font-family: var(--head); font-size: 17px; font-weight: 600; margin: 0;
}
.psm-service-price {
  font-family: var(--head); font-size: 21px; font-weight: 700;
  white-space: nowrap; letter-spacing: -.01em;
}
.psm-service-price .psm-per { font-size: 14px; font-weight: 500; color: var(--muted); }

.psm-service-desc { color: var(--muted); font-size: 14.5px; margin: 7px 0 0; }
.psm-service-list { color: var(--muted); font-size: 14.5px; margin: 9px 0 0; padding-left: 18px; }
.psm-service-list li { margin-bottom: 4px; }
.psm-service-list li::marker { color: var(--coral); }

/* Good-to-know grid */
.psm-facts { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.psm-fact {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px 22px;
}
.psm-fact h3 { font-family: var(--head); font-size: 15.5px; font-weight: 600; margin: 0 0 6px; }
.psm-fact p  { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ------------------------------------------------- site header & footer */
/* Rendered by SiteChrome. Two header modes: 'full' carries the nav, and
   'minimal' is logo-only for the booking funnel, where every nav link is an
   exit from a page someone is about to pay on. */

.psm-sh {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
}
.psm-sh-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  min-height: 132px;
}
.psm-sh--minimal .psm-sh-inner { justify-content: center; }

.psm-sh-logo { display: inline-flex; align-items: center; flex: none; }
.psm-sh-logo img {
  /* Source is 1650x530; height-constrained so the intrinsic size cannot
     shift layout while it loads. */
  height: 102px; width: auto; display: block;
}

.psm-sh-nav { display: flex; gap: 22px; margin-left: auto; }
.psm-sh-nav a {
  color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 500;
  white-space: nowrap; transition: color .16s;
}
.psm-sh-nav a:hover { color: var(--coral); }

.psm-sh-cta {
  flex: none; background: var(--coral); color: #fff; text-decoration: none;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 600; white-space: nowrap;
  transition: background .16s;
}
.psm-sh-cta:hover { background: var(--coral-dark); }

/* Below ~780px the nav would wrap onto its own line and push the logo
   around. Drop it and keep the logo plus the one action that matters. */
/* The logo is 3.11:1, so 102px tall is ~317px wide — wider than a phone once
   the Book now button is beside it. Step it down rather than let it wrap. */
@media (max-width: 780px) {
  .psm-sh-nav { display: none; }
  .psm-sh-cta { margin-left: auto; }
  .psm-sh-inner { min-height: 96px; }
  .psm-sh-logo img { height: 68px; }
}
@media (max-width: 480px) {
  .psm-sh-inner { min-height: 78px; gap: 12px; }
  .psm-sh-logo img { height: 52px; }
  .psm-sh-cta { padding: 8px 14px; font-size: 13.5px; }
}

.psm-sf {
  border-top: 1px solid var(--line);
  margin-top: 56px; padding: 34px 20px 40px;
  color: var(--muted); font-size: 14px; text-align: center;
}
.psm-sf-inner { max-width: 1080px; margin: 0 auto; }
.psm-sf p { margin: 0 0 7px; }
.psm-sf a { color: var(--muted); text-decoration: none; }
.psm-sf a:hover { color: var(--coral); text-decoration: underline; }
.psm-sf-name { font-family: var(--head); font-weight: 600; color: var(--ink); font-size: 15.5px; }
.psm-sf-sep { margin: 0 8px; opacity: .5; }
.psm-sf-social { margin-top: 14px; }
.psm-sf-social a { margin: 0 9px; }
.psm-sf-legal { margin-top: 14px; font-size: 13px; }
.psm-sf-copy { margin-top: 12px; font-size: 12.5px; opacity: .75; }
