:root {
      --paper: #fff;
      --mist: #f3f3f1;
      --ink: #191817;
      --muted: #6f6c69;
      --wine: #87534d;
      --wine-dark: #6f403b;
      --line: #d8d5d1;
      --blue: #6798cf;
      --purple: #9b5dd2;
      --coey: #b57a73;
      --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
      --serif: Georgia, "Times New Roman", serif;
      --page: min(1180px, calc(100vw - 80px));
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }

    .pikapika-booking-content button,
    .pikapika-booking-content a { font: inherit; }

    .pikapika-booking-content a {
      color: inherit;
      text-decoration: none;
    }

    .pikapika-booking-content button { color: inherit; }

    .shell { width: var(--page); margin: 0 auto; }

    .booking-intro {
      padding: 94px 0 72px;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 9vw;
      align-items: end;
    }

    .booking-intro h1 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(62px, 7vw, 104px);
      font-style: italic;
      font-weight: 400;
      letter-spacing: -.055em;
      line-height: .9;
      white-space: nowrap;
    }

    .booking-intro h1 span {
      display: block;
      margin-top: 10px;
      font-family: var(--sans);
      font-style: normal;
      font-weight: 300;
    }

    .booking-intro-copy {
      max-width: 520px;
      padding-bottom: 7px;
      color: #4d4946;
      font-size: 18px;
      line-height: 1.8;
    }

    .booking-intro-copy p { margin: 0; }

    .availability-note {
      margin-top: 24px !important;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      color: var(--wine);
      font-family: var(--serif);
      font-style: italic;
    }

    .booking-area {
      padding: 76px 0 124px;
      background: var(--mist);
      border-top: 1px solid var(--line);
    }

    .booking-layout {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 72px;
      align-items: start;
    }

    .booking-layout > * { min-width: 0; }

    .booking-guide { padding-top: 6px; }

    .guide-title,
    .schedule-title {
      margin: 0;
      font-family: var(--serif);
      font-size: 32px;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -.02em;
    }

    .artist-key {
      margin: 30px 0 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid var(--line);
    }

    .artist-key li {
      display: grid;
      grid-template-columns: 18px minmax(88px, .38fr) minmax(0, 1fr);
      gap: 14px;
      align-items: start;
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
      transition: border-color .2s ease, color .2s ease;
    }

    .artist-key li:hover { border-bottom-color: var(--staff-color, var(--wine)); }

    .artist-key strong {
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -.01em;
      line-height: 1.45;
    }

    .artist-service-list {
      display: grid;
      gap: 4px;
      color: #615d59;
      font-size: 13px;
      line-height: 1.55;
    }

    .artist-service-list > span {
      position: relative;
      padding-left: 14px;
    }

    .artist-service-list > span::before {
      content: "—";
      position: absolute;
      left: 0;
      color: #9a9692;
    }

    .artist-key-empty {
      margin: 30px 0 0;
      padding: 22px 0;
      border-block: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--staff-color, var(--blue));
    }

    .artist-key .dot {
      width: 10px;
      height: 10px;
      margin-top: 5px;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, .75);
    }

    .guide-help {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 26px;
      padding: 16px 18px;
      border: 1px solid var(--line);
      color: var(--ink);
      font-size: 14px;
    }

    .guide-help:hover,
    .guide-help:focus-visible {
      border-color: var(--wine);
      color: var(--wine);
      outline: none;
    }

    .steps-title {
      margin: 34px 0 0;
      font-family: var(--serif);
      font-size: 18px;
      font-style: italic;
      font-weight: 400;
      color: var(--ink);
    }

    .ref {
      border-bottom: 1px solid currentColor;
    }

    .steps {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      counter-reset: step;
    }

    .steps li {
      counter-increment: step;
      display: grid;
      grid-template-columns: 26px minmax(0, 1fr);
      gap: 12px;
      margin-top: 16px;
      color: #55514e;
      font-size: 14px;
    }

    .steps li::before {
      content: counter(step, decimal-leading-zero);
      color: var(--wine);
      font-family: var(--serif);
      font-style: italic;
    }

    .schedule-panel { min-width: 0; background: var(--paper); border: 1px solid var(--line); }

    .schedule-toolbar {
      min-height: 96px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 22px 24px;
      background: #e7e6e4;
      border-bottom: 1px solid #aaa6a2;
    }

    .month-label {
      display: block;
      margin-bottom: 4px;
      color: var(--wine-dark);
      font-weight: 700;
    }

    .toolbar-copy { color: #55514e; font-size: 13px; }

    .week-controls { display: flex; gap: 8px; }

    .week-controls button {
      min-height: 40px;
      padding: 9px 15px;
      border: 1px solid #bdb9b5;
      background: transparent;
      cursor: pointer;
      font-size: 12px;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .week-controls button:hover,
    .week-controls button:focus-visible {
      border-color: var(--wine);
      color: var(--wine);
      outline: none;
    }

    .week-controls button:disabled {
      border-color: #d2cfcc;
      color: #aaa6a2;
      cursor: default;
    }

    .week-strip {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      border-bottom: 1px solid var(--line);
    }

    .day-button {
      min-width: 0;
      min-height: 114px;
      padding: 14px 7px 12px;
      border: 0;
      border-right: 1px solid var(--line);
      background: #fff;
      cursor: pointer;
      text-align: center;
    }

    .day-button:last-child { border-right: 0; }
    .day-button:hover { background: #faf9f8; }

    .day-button:focus-visible {
      position: relative;
      outline: 2px solid var(--wine);
      outline-offset: -3px;
      z-index: 1;
    }

    .day-button.selected { background: #e7e5e3; }
    .day-button.unavailable { color: #aaa6a2; cursor: default; }

    .weekday {
      display: block;
      margin-bottom: 3px;
      color: #77736f;
      font-size: 11px;
    }

    .day-number {
      display: block;
      font-family: var(--serif);
      font-size: 32px;
      line-height: 1.1;
    }

    .day-button.today .day-number { color: var(--wine); }

    .slot-dots {
      min-height: 10px;
      display: flex;
      justify-content: center;
      gap: 3px;
      margin-top: 11px;
    }

    .slot-dots .dot { width: 6px; height: 6px; margin: 0; }

    .slot-list { min-height: 316px; }

    .empty-state {
      min-height: 316px;
      display: grid;
      place-items: center;
      padding: 50px;
      color: var(--muted);
      text-align: center;
    }

    .slot-button {
      width: 100%;
      display: grid;
      grid-template-columns: 12px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 21px 24px;
      border: 0;
      border-bottom: 1px solid var(--line);
      background: #fff;
      cursor: pointer;
      text-align: left;
    }

    .slot-button:last-child { border-bottom: 0; }
    .slot-button:hover { background: #faf9f8; }

    .slot-button:focus-visible,
    .slot-button.selected {
      background: #f3eeed;
      outline: none;
      box-shadow: inset 3px 0 var(--wine);
    }

    .slot-main { display: grid; gap: 2px; }
    .slot-name { font-weight: 700; }
    .slot-date { color: #5d5956; font-size: 13px; }
    .slot-services {
      max-width: 380px;
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
      white-space: pre-line;
    }

    .slot-time {
      color: var(--wine);
      font-family: var(--serif);
      font-size: 24px;
      font-style: italic;
    }

    .selection {
      display: none;
      margin-top: 28px;
      padding: 34px;
      background: #252525;
      color: #fff;
    }

    .selection.visible { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }

    .selection h2 {
      margin: 0 0 18px;
      font-family: var(--serif);
      font-size: 34px;
      font-style: italic;
      font-weight: 400;
    }

    .selection p { margin: 3px 0; color: #dedbd8; }
    .selection .selected-name { color: #fff; font-size: 18px; font-weight: 700; }
    .selection .provided { margin-top: 18px; color: #bdb9b5; font-size: 13px; }

    .service-tags,
    .arrangement-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 9px;
    }

    .arrangement-options {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .service-choice,
    .arrangement-choice {
      padding: 5px 9px;
      border: 1px solid #5d5a57;
      background: transparent;
      color: #e6e3e0;
      cursor: pointer;
      font-size: 12px;
      line-height: 1.45;
      text-align: left;
      white-space: pre-line;
    }

    .service-choice:hover,
    .service-choice:focus-visible,
    .arrangement-choice:hover,
    .arrangement-choice:focus-visible {
      border-color: #e3b2ac;
      color: #fff;
      outline: none;
    }

    .service-choice.selected,
    .arrangement-choice.selected {
      border-color: #e3b2ac;
      background: #e3b2ac;
      color: #272322;
    }

    .arrangement-choice span {
      color: inherit;
    }

    .arrangement-choice {
      display: inline-grid;
      grid-template-columns: 16px auto;
      align-items: center;
      gap: 8px;
      padding: 2px 0;
      border: 0;
    }

    .arrangement-choice.selected {
      background: transparent;
      color: #fff;
    }

    .arrangement-check {
      display: inline-grid;
      width: 14px;
      height: 14px;
      align-items: center;
      justify-content: center;
      border: 1px solid #aaa6a2;
      color: #272322 !important;
      font-size: 11px;
      line-height: 1;
    }

    .arrangement-choice.selected .arrangement-check {
      border-color: #e3b2ac;
      background: #e3b2ac;
    }

    .arrangement-choice:focus-visible .arrangement-check {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }

    .arrangement-copy {
      display: block;
      font-size: 12px;
      font-weight: 400;
      white-space: nowrap;
    }

    .arrangement-copy small {
      display: inline;
      margin-left: 4px;
      font-size: inherit;
      font-weight: inherit;
      opacity: 1;
    }

    .whatsapp-button {
      display: inline-flex;
      min-height: 50px;
      align-items: center;
      justify-content: center;
      padding: 13px 20px;
      background: #e3b2ac;
      color: #272322;
      font-weight: 700;
      white-space: nowrap;
      transition: background-color .2s ease, transform .2s ease;
    }

    .whatsapp-button:hover { background: #efc5c0; transform: translateY(-1px); }
    .whatsapp-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

    .whatsapp-button[aria-disabled="true"] {
      background: #5a5754;
      color: #aaa6a2;
      cursor: not-allowed;
      transform: none;
    }

    .selection-note {
      grid-column: 1 / -1;
      margin-top: 2px !important;
      color: #aaa6a2 !important;
      font-size: 12px;
    }

    @media (max-width: 840px) {
      :root { --page: min(100% - 48px, 780px); }
      .booking-intro { gap: 54px; }
      .booking-layout { grid-template-columns: 1fr; gap: 58px; }
    }

    @media (max-width: 700px) {
      :root { --page: calc(100vw - 36px); }
      .booking-intro { display: block; padding: 70px 0 54px; }
      .booking-intro h1 { font-size: clamp(48px, 15vw, 68px); }
      .booking-intro-copy { margin-top: 38px; font-size: 16px; }
      .booking-area { padding: 54px 0 80px; }
      .booking-guide { display: block; }
      .artist-key { margin-top: 28px; }
      .artist-key li {
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 3px 12px;
        padding: 19px 0;
      }
      .artist-key .dot {
        grid-row: 1 / span 2;
      }
      .artist-service-list {
        grid-column: 2;
      }
      .schedule-toolbar {
        align-items: center;
        flex-direction: row;
      }
      .schedule-toolbar > div:first-child { min-width: 0; }
      .week-controls { flex: 0 0 auto; width: auto; }
      .week-controls button { flex: 0 0 auto; }
      .week-strip { overflow: hidden; grid-template-columns: repeat(7, minmax(0, 1fr)); }
      .day-button { min-height: 102px; padding: 12px 3px 10px; }
      .weekday { font-size: 10px; }
      .day-number { font-size: clamp(24px, 7vw, 30px); }
      .slot-dots { gap: 2px; margin-top: 9px; }
      .slot-dots .dot { width: 5px; height: 5px; }
      .slot-button { grid-template-columns: 10px 1fr auto; padding: 18px 16px; }
      .slot-date { max-width: 160px; }
      .selection.visible { grid-template-columns: 1fr; }
      .whatsapp-button { width: 100%; }
    }

    @media (max-width: 430px) {
      .schedule-toolbar {
        gap: 12px;
        padding-inline: 14px;
      }

      .week-controls button {
        width: 40px;
        padding-inline: 8px;
        font-size: 0;
      }

      .week-controls button::after {
        font-size: 16px;
        line-height: 1;
      }

      #pikapika-previous-dates::after { content: "<"; }
      #pikapika-next-dates::after { content: ">"; }
    }

    .production-booking-card {
      max-width: 760px;
      margin-inline: auto;
      padding: clamp(64px, 9vw, 120px) 0;
      text-align: center;
    }

    .production-booking-card h2 {
      margin: 0;
      color: var(--wine);
      font-family: var(--serif);
      font-size: clamp(42px, 5vw, 68px);
      font-style: italic;
      font-weight: 400;
      letter-spacing: -.035em;
      line-height: 1.05;
    }

    .production-booking-card > p:not(.whatsapp-button) {
      max-width: 620px;
      margin: 28px auto;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.8;
    }

    .production-booking-card .whatsapp-button {
      width: max-content;
      margin: 0 auto;
      padding: 0;
    }

    .production-booking-card .whatsapp-button a {
      display: block;
      padding: 13px 20px;
      color: inherit;
    }

    .booking-fee-entry {
      padding: clamp(68px, 8vw, 112px) 0;
      background: var(--wine-dark);
      color: #fff;
    }

    .booking-fee-entry-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
      gap: clamp(48px, 8vw, 112px);
      align-items: end;
    }

    .booking-fee-entry-copy {
      max-width: 720px;
    }

    .booking-fee-entry-kicker {
      margin: 0 0 18px;
      color: #efc5c0;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .booking-fee-entry h2 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(44px, 5.3vw, 76px);
      font-style: italic;
      font-weight: 400;
      letter-spacing: -.04em;
      line-height: 1.02;
    }

    .booking-fee-entry h2 span {
      display: block;
      font-family: var(--sans);
      font-style: normal;
      font-weight: 300;
    }

    .booking-fee-entry-copy > p:last-child {
      max-width: 610px;
      margin: 30px 0 0;
      color: #eadfdd;
      font-size: 17px;
      line-height: 1.75;
    }

    .booking-fee-entry-action {
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, .35);
    }

    .booking-fee-entry-price {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 24px;
      margin: 0 0 24px;
    }

    .booking-fee-entry-price span {
      color: #eadfdd;
      font-size: 13px;
    }

    .booking-fee-entry-price strong {
      font-family: var(--serif);
      font-size: 34px;
      font-style: italic;
      font-weight: 400;
    }

    .booking-fee-entry-button {
      margin: 0;
    }

    .booking-fee-entry-button a {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 18px;
      background: #e3b2ac;
      color: #272322;
      font-weight: 700;
      transition: background-color .2s ease, transform .2s ease;
    }

    .booking-fee-entry-button a:hover {
      background: #efc5c0;
      transform: translateY(-1px);
    }

    .booking-fee-entry-button a:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 3px;
    }

    .booking-fee-entry-note {
      margin: 13px 0 0;
      color: #d8c5c2;
      font-size: 12px;
    }

    @media (max-width: 700px) {
      .booking-fee-entry {
        padding: 64px 0 70px;
      }

      .booking-fee-entry-layout {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .booking-fee-entry-copy > p:last-child {
        margin-top: 24px;
        font-size: 16px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .whatsapp-button,
      .booking-fee-entry-button a { transition: none; }
    }
