/* ClerkMinutes — /one-on-one, 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 .oo-* — this page only. It is a deliberate near-copy of
   /assets/site/office-hours/office-hours.css: the two pages are siblings (both book
   time with Atanas through Appointlet) and are meant to look like siblings, but they
   are kept as separate stylesheets so a change to one page's layout cannot silently
   restyle the other. The photographs are shared, from /assets/site/office-hours/.

   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 {
  --oo-ink: #0A0A0F;
  --oo-slate: #55555F;
  --oo-muted: #6E6E78;        /* the guide's #9A9AA4 fails WCAG AA at these sizes; darkened to 5.0:1 */
  --oo-paper: #FAFAFB;
  --oo-surface: #FFFFFF;
  --oo-border: #E8E8EC;
  --oo-divider: #F0F0F3;
  --oo-accent: #E94FA5;       /* decorative only (the badge dot) */
  --oo-accent-text: #CE2F86;  /* the same pink darkened to 4.8:1 so eyebrows and labels pass WCAG AA */
  --oo-faq-fill: #F0F6FE;
  --oo-faq-toggle: #5B8DEF;
  --oo-faq-answer: #3A3A44;
  --oo-gradient-soft: linear-gradient(160deg, #DFF6FF, #FFE3F1);
}

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

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

/* ---------- Hero: copy on the left, Atanas on the right ---------- */
.oo-hero { padding: 56px 24px; background: var(--oo-gradient-soft); }
.oo-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px; align-items: center;
}
.oo-hero h1 { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: -0.03em; margin-bottom: 18px; }
/* "one-on-one" must not break at one of its own hyphens; at every width it fits on a line. */
.oo-nb { white-space: nowrap; }
.oo-hero .oo-lead { margin: 0 0 16px; font-size: 18px; color: #3A3A44; max-width: 54ch; }
.oo-hero .oo-lead:last-of-type { margin-bottom: 0; }

.oo-portrait { margin: 0; justify-self: end; width: 100%; max-width: 360px; }
.oo-portrait__frame { position: relative; }
.oo-portrait__img {
  display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 24px; background: var(--oo-divider);
  box-shadow: 0 18px 48px rgba(10, 10, 15, 0.14);
}
/* Sign over the photo, the sibling of /office-hours' "on the air" badge. 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. */
.oo-sign {
  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(--oo-ink); color: #fff;
  box-shadow: 0 12px 30px rgba(10, 10, 15, 0.34);
}
.oo-sign__dot {
  width: 10px; height: 10px; border-radius: 50%; flex: none;
  background: var(--oo-accent); animation: oo-pulse 2.4s ease-out infinite;
}
.oo-sign__lines { display: block; }
.oo-sign strong {
  display: block; font-size: 13px; font-weight: 800; line-height: 1.1;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.oo-sign__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 oo-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) { .oo-sign__dot { animation: none; } }

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

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

/* Who-it-is-for line, called out inside the hero */
.oo-open {
  margin: 22px 0 0; padding: 15px 20px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(10, 10, 15, 0.07);
  border-left: 4px solid var(--oo-accent);
  font-size: 16px; font-weight: 700; line-height: 1.55; color: var(--oo-ink);
}

/* ---------- 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; } }
.oo-book { margin-top: 32px; }
.oo-book__frame {
  background: var(--oo-surface); border: 1px solid var(--oo-border); border-radius: 20px;
  padding: 16px; min-height: 520px;
}
.oo-book__fallback { margin-top: 20px; text-align: center; }

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