/* ClerkMinutes — /office-hours, hand-built page.
   Loads after /assets/site/404/404.css, which supplies the shared hand-built chrome:
   the base typography, .cm-header / .cm-nav, .cm-footer, .cm-skip, and .cm-tel.

   Everything below is .oh-* — this page only. There are no CTA buttons: the booking
   calendar is the call to action.

   Brand values come from design-system/tokens/css/tokens.css: Ink #0A0A0F on Paper #FAFAFB,
   Plus Jakarta Sans, and the FAQ accordion spec (ice-blue #F0F6FE cards, 28px radius,
   #5B8DEF toggle). */

:root {
  --oh-ink: #0A0A0F;
  --oh-slate: #55555F;
  --oh-muted: #6E6E78;        /* the guide's #9A9AA4 fails WCAG AA at these sizes; darkened to 5.0:1 */
  --oh-paper: #FAFAFB;
  --oh-surface: #FFFFFF;
  --oh-border: #E8E8EC;
  --oh-divider: #F0F0F3;
  --oh-accent: #E94FA5;       /* decorative only (the badge dot) */
  --oh-accent-text: #CE2F86;  /* the same pink darkened to 4.8:1 so eyebrows and labels pass WCAG AA */
  --oh-cyan: #00C4FF;
  --oh-badge-bg: #E2F7FF;
  --oh-badge-text: #0A70AC;   /* the guide's #0A78B8 is 4.32:1 on the badge fill; this is 4.8:1 */
  --oh-faq-fill: #F0F6FE;
  --oh-faq-toggle: #5B8DEF;
  --oh-faq-answer: #3A3A44;
  --oh-gradient: linear-gradient(135deg, #00C4FF, #FF3EA5);
  --oh-gradient-soft: linear-gradient(160deg, #DFF6FF, #FFE3F1);
}

/* ---------- Page shell ---------- */
.oh-main { flex: 1 0 auto; width: 100%; color: var(--oh-ink); }
.oh-section { padding: 72px 24px; }
.oh-section--tint { background: var(--oh-paper); }
.oh-in { width: 100%; max-width: 1120px; margin: 0 auto; }
.oh-in--narrow { max-width: 820px; }
.oh-section > .oh-in > h2 { margin-bottom: 12px; }

.oh-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--oh-accent-text); margin: 0 0 14px;
}
.oh-lead { font-size: 19px; line-height: 1.6; color: var(--oh-slate); max-width: 62ch; }
.oh-note { font-size: 14px; line-height: 1.6; color: var(--oh-muted); }

/* ---------- Hero: copy on the left, Atanas on the right ---------- */
.oh-hero { padding: 56px 24px; background: var(--oh-gradient-soft); }
.oh-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px; align-items: center;
}
.oh-hero h1 { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -0.03em; margin-bottom: 18px; }
.oh-hero .oh-lead { margin: 0; font-size: 19px; color: #3A3A44; max-width: 54ch; }

.oh-portrait { margin: 0; justify-self: end; width: 100%; max-width: 360px; }
.oh-portrait__frame { position: relative; }
.oh-portrait__img {
  display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 24px; background: var(--oh-divider);
  box-shadow: 0 18px 48px rgba(10, 10, 15, 0.14);
}
/* Broadcast-style sign over the photo. Real text, so it is read out and stays sharp;
   it sits on the frame rather than the image so it survives the photo rotating. */
.oh-onair {
  position: absolute; left: -14px; bottom: 18px; margin: 0;
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 18px 11px 16px; border-radius: 14px;
  background: var(--oh-ink); color: #fff;
  box-shadow: 0 12px 30px rgba(10, 10, 15, 0.34);
}
.oh-onair__dot {
  width: 10px; height: 10px; border-radius: 50%; flex: none;
  background: var(--oh-accent); animation: oh-pulse 2.4s ease-out infinite;
}
.oh-onair__lines { display: block; }
.oh-onair strong {
  display: block; font-size: 13px; font-weight: 800; line-height: 1.1;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.oh-onair__lines > span {
  display: block; margin-top: 3px; font-size: 11px; font-weight: 600; line-height: 1.1;
  letter-spacing: 0.1em; text-transform: uppercase; color: #C9C9D2;
}
@keyframes oh-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 62, 165, 0.55); }
  70%  { box-shadow: 0 0 0 11px rgba(255, 62, 165, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 62, 165, 0); }
}
@media (prefers-reduced-motion: reduce) { .oh-onair__dot { animation: none; } }

.oh-portrait__cap { margin-top: 16px; text-align: center; }
.oh-portrait__cap strong { display: block; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.oh-portrait__cap span { display: block; font-size: 14px; font-weight: 600; color: var(--oh-accent-text); margin-top: 2px; }

@media (max-width: 900px) {
  .oh-hero__grid { grid-template-columns: 1fr; gap: 32px; justify-items: center; text-align: center; }
  .oh-hero .oh-lead { margin: 0 auto; }
  .oh-portrait { justify-self: center; max-width: 300px; order: 2; }
  .oh-onair { left: -8px; bottom: 14px; padding: 9px 15px 9px 13px; gap: 9px; }
  .oh-onair strong { font-size: 12px; }
}

/* ---------- When: one statement, not a wall of boxes ----------
   The Central line is always in the HTML. The script in the page adds a second line with
   the same two slots in the reader's own zone, so nobody has to do the arithmetic. */
.oh-when { text-align: center; padding-top: 64px; padding-bottom: 64px; }
.oh-when__day {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--oh-accent-text); margin: 0 0 10px;
}
.oh-when__time {
  font-size: clamp(38px, 6.4vw, 68px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.05; margin: 0; color: var(--oh-ink);
}
.oh-when__time em {
  font-style: normal; font-weight: 500; letter-spacing: -0.01em;
  font-size: 0.44em; color: var(--oh-slate); padding: 0 0.12em;
}
.oh-when__zone {
  font-size: 17px; font-weight: 600; color: var(--oh-slate); margin: 10px 0 0;
}
/* the gradient shows up here, where it is decoration rather than text colour */
.oh-when__zone::after {
  content: ""; display: block; width: 84px; height: 4px; border-radius: 999px;
  background: var(--oh-gradient); margin: 22px auto 0;
}
.oh-when__local {
  display: inline-block; margin: 22px 0 0; padding: 10px 20px; border-radius: 999px;
  background: var(--oh-badge-bg); color: var(--oh-badge-text);
  font-size: 16px; font-weight: 700;
}
.oh-when__local[hidden] { display: none; }
.oh-when__meta {
  font-size: 15px; color: var(--oh-slate); margin: 22px auto 0; max-width: 46ch;
}

/* ---------- Booking embed ----------
   The header is fixed (94px, 73px below 1200px), so the #book anchor needs the same
   scroll offset 404.css already gives #main. */
#book { scroll-margin-top: 110px; }
@media (max-width: 1199.98px) { #book { scroll-margin-top: 89px; } }
.oh-book { margin-top: 32px; }
.oh-book__frame {
  background: var(--oh-surface); border: 1px solid var(--oh-border); border-radius: 20px;
  padding: 16px; min-height: 520px;
}
.oh-book__fallback { margin-top: 20px; text-align: center; }

/* ---------- FAQ (style guide §05: ice-blue pill cards) ---------- */
.oh-faq-list { margin-top: 28px; }
.oh-faq {
  display: block; background: var(--oh-faq-fill); border-radius: 28px;
  padding: 24px 32px; margin: 0 0 16px;
}
.oh-faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 24px;
  font: 700 17px/1.3 var(--cm-font); color: var(--oh-ink); text-align: left;
}
.oh-faq summary::-webkit-details-marker { display: none; }
.oh-faq summary::after {
  content: "+"; flex: none; font-size: 22px; font-weight: 500; line-height: 1; color: var(--oh-faq-toggle);
}
.oh-faq[open] summary::after { content: "−"; }
.oh-faq summary:focus-visible { outline: 3px solid var(--oh-ink); outline-offset: 4px; border-radius: 6px; }
.oh-faq p { margin: 16px 0 0; font-size: 15px; line-height: 1.65; color: var(--oh-faq-answer); }
.oh-faq p:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .oh-faq { padding: 20px 22px; } }

