/* vanilla base reset (no framework) */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--po5sy-font, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif); line-height: 1.5; color: var(--po5sy-ink, #111); background: var(--po5sy-bg, #fff); }
h1, h2, h3, h4, h5, h6 { font-family: var(--po5sy-font-display, var(--po5sy-font, system-ui, sans-serif)); }
img, svg, video, canvas { max-width: 100%; height: auto; }
a { color: inherit; }
*:focus-visible { outline: 2px solid var(--po5sy-primary, #2563eb); outline-offset: 2px; }
/* visibility shim for framework toggles */
.hidden { display: none !important; }

/* design tokens */
:root {
  --po5sy-primary: #5B7A6A;
  --po5sy-secondary: #C8892F;
  --po5sy-accent: #5B7A6A;
  --po5sy-ink: #121212;
  --po5sy-slate: #5A5A5A;
  --po5sy-mist: #E9E1D2;
  --po5sy-border: #E4DDD2;
  --po5sy-surface: #FFFFFF;
  --po5sy-bg: #F7F3EC;
  --po5sy-text: #121212;
  --po5sy-font: Georgia, Cambria, 'Times New Roman', serif;
  --po5sy-font-display: 'Hoefler Text', 'Baskerville Old Face', Garamond, Georgia, serif;
}

/* state utilities */
.is-open { display: block !important; }
.is-active { display: block !important; }
[hidden] { display: none !important; }

/* framework-injected components (vanilla) */
[data-po5sy-ui="cookie-banner"] { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 9999; margin: 0 auto; max-width: 56rem; border: 1px solid var(--po5sy-border, #e5e7eb); background: var(--po5sy-surface, #fff); border-radius: 1rem; padding: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
[data-po5sy-ui="cookie-banner"] > div { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-start; justify-content: space-between; }
[data-po5sy-ui="cookie-banner"] > div > div:last-child { display: flex; flex-wrap: wrap; gap: .5rem; }
[data-po5sy-ui="cookie-banner"] a { text-decoration: underline; }
[data-po5sy-cs-action], [data-po5sy-ag-action] { cursor: pointer; border-radius: .5rem; padding: .5rem .9rem; font-size: .8rem; border: 1px solid var(--po5sy-border, #d1d5db); background: transparent; color: var(--po5sy-ink, #111); }
[data-po5sy-cs-action="accept-all"], [data-po5sy-cs-action="save"], [data-po5sy-ag-action="confirm"] { background: var(--po5sy-primary, #2563eb); color: #fff; border-color: transparent; font-weight: 600; }
[data-po5sy-cs-action="reject-all"] { background: var(--po5sy-ink, #111); color: #fff; border-color: transparent; font-weight: 600; }
[data-po5sy-cs-panel] { margin-top: 1rem; border: 1px solid var(--po5sy-border, #e5e7eb); background: var(--po5sy-surface, #fff); border-radius: .75rem; padding: 1rem; font-size: .875rem; }
[data-po5sy-cs-panel] > div { display: flex; flex-wrap: wrap; gap: .75rem; }
[data-po5sy-ui="cookie-banner"] label { display: inline-flex; align-items: center; gap: .5rem; }
[data-po5sy-ui="age-gate-overlay"] { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.8); }
[data-po5sy-ui="age-gate-overlay"] > div { width: 100%; max-width: 28rem; margin: 0 1rem; background: var(--po5sy-surface, #1a1a2e); color: var(--po5sy-ink, #fff); border-radius: 1rem; padding: 2rem; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
[data-po5sy-ui="age-gate-overlay"] > div > div:last-of-type { display: flex; flex-direction: column; gap: .75rem; }
[data-po5sy-ag-action] { padding: .75rem 1.5rem; }

/* sections */
/* po5sy:header */
/* po5sy:header */
#header.site-header{position:sticky;top:0;z-index:50;background:var(--po5sy-surface);border-bottom:1px solid var(--po5sy-border)}
#header .header-inner{max-width:72rem;margin:0 auto;padding:14px var(--header-gutter, clamp(1rem, 4vw, 3rem));display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:14px}
#header .brand{display:flex;align-items:center;gap:10px;justify-self:start;text-decoration:none;color:var(--po5sy-ink)}
#header .brand-mark{width:34px;height:34px;border-radius:var(--radius-sm,10px);display:inline-flex;align-items:center;justify-content:center;background:var(--po5sy-bg);border:1px solid var(--po5sy-border);font-size:16px;color:var(--po5sy-accent)}
#header .brand-text{font-family:var(--font-serif, Georgia, Cambria, 'Times New Roman', serif);font-weight:700;letter-spacing:-0.01em;font-size:1.05rem}
#header .nav{display:flex;gap:18px;justify-self:center;align-items:center;flex-wrap:wrap}
#header .nav-link{font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:0.98rem;color:var(--po5sy-slate);text-decoration:none;position:relative;padding:8px 0}
#header .nav-link::after{content:"";position:absolute;left:0;bottom:3px;height:2px;width:100%;background:var(--po5sy-primary);transform:scaleX(0);transform-origin:left;transition:transform 150ms ease}
#header .nav-link:hover::after,#header .nav-link:focus-visible::after{transform:scaleX(1)}
#header .nav-link:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:4px;border-radius:8px}
#header .header-cta{justify-self:end;display:flex;align-items:center;gap:12px}
#header .btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;border-radius:var(--radius-md,14px);padding:12px 16px;text-decoration:none;font-weight:700;font-size:1rem;line-height:1.1}
#header .btn-primary{background:var(--po5sy-primary);color:var(--po5sy-surface);border:1px solid var(--po5sy-primary);box-shadow:0 10px 28px rgba(91,122,106,.18)}
#header .btn-primary:hover{filter:brightness(0.99)}
#header .btn-primary:focus-visible{outline:3px solid rgba(200,137,47,.35);outline-offset:3px}
#header .menu-toggle{display:none;align-items:center;justify-content:center;width:44px;height:44px;border-radius:var(--radius-md,14px);border:1px solid var(--po5sy-border);background:var(--po5sy-surface);color:var(--po5sy-ink);font-size:20px}
#header .menu-toggle:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:3px}
#header .mobile-menu{display:none}
#header ::selection{background:rgba(200,137,47,.35)}

@media (max-width: 1024px){#header .header-inner{grid-template-columns:1fr auto;}
#header .nav{display:none}
#header .menu-toggle{display:inline-flex}
#header .header-cta{grid-column:2/3}
#header .mobile-menu{display:none}
}

@media (max-width: 640px){#header .header-inner{padding:12px var(--header-gutter, 16px)}
#header .brand-text{font-size:1rem}
}

/* Mobile menu without custom JS: keep it visible only when using theme menu script; default is hidden */
@media (max-width: 1024px){
  #header [data-po5sy-mt="#header-menu"]{ }
  /* rely on theme-provided toggle behavior; this CSS provides base styling */
  #header-menu.mobile-menu{position:absolute;left:0;right:0;top:100%;background:var(--po5sy-surface);border-bottom:1px solid var(--po5sy-border);padding:14px var(--header-gutter, 16px);display:block;max-height:0;overflow:hidden;transition:max-height 200ms ease}
  #header-menu.mobile-menu a,.mobile-menu .btn{width:100%}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){#header .nav-link::after{transition:none}#header-menu.mobile-menu{transition:none}}

/* po5sy:footer */
/* po5sy:footer */
#footer{background:var(--po5sy-bg);color:var(--po5sy-text);padding:clamp(2.5rem,5vw,5rem) 0 2.5rem;}
#footer .footer-shell{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);}
#footer .footer-top{display:grid;grid-template-columns:1fr;gap:2.25rem;align-items:start;}
#footer .footer-rail{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-md);padding:1.2rem;}
#footer .footer-brand{display:flex;gap:0.9rem;align-items:flex-start;}
#footer .brand-mark{width:34px;height:34px;border-radius:10px;display:flex;align-items:center;justify-content:center;background:color-mix(in srgb,var(--po5sy-primary) 10%, var(--po5sy-surface));color:var(--po5sy-primary);font-size:18px;line-height:1;flex:0 0 auto;}
#footer .brand-name{margin:0;font-family:var(--font-serif);font-size:1.35rem;letter-spacing:-0.01em;}
#footer .brand-sub{margin:0.35rem 0 0;color:var(--po5sy-slate);font-size:0.95rem;max-width:55ch;}
#footer .footer-nav{padding:0;border:0;background:transparent;}
#footer .footer-details{padding:1.2rem;}
#footer .footer-heading{margin:0 0 0.9rem;font-family:var(--font-serif);font-size:1.05rem;letter-spacing:-0.01em;}
#footer .footer-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.65rem;}
#footer .footer-link{color:var(--po5sy-ink);text-decoration:none;display:inline-flex;align-items:center;gap:0.55rem;position:relative;padding:0.15rem 0;}
#footer .footer-link::after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:var(--po5sy-primary);transform:scaleX(0);transform-origin:left;transition:transform 150ms ease;}
#footer .footer-link:hover::after,#footer .footer-link:focus-visible::after{transform:scaleX(1);}
#footer .footer-link:focus-visible{outline:2px solid color-mix(in srgb,var(--po5sy-primary) 45%, transparent);outline-offset:3px;border-radius:6px;}
#footer .details-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.95rem;}
#footer .detail-label{display:block;font-size:0.8rem;letter-spacing:0.01em;text-transform:none;color:var(--po5sy-slate);margin-bottom:0.15rem;}
#footer .detail-value{display:block;font-size:0.98rem;color:var(--po5sy-ink);}
#footer .detail-link{color:var(--po5sy-ink);}
#footer .footer-mid{margin-top:1.5rem;display:grid;grid-template-columns:1fr;gap:1.5rem;}
#footer .disclaimer{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-md);padding:1.4rem 1.2rem;}
#footer .disclaimer-text{margin:0;color:var(--po5sy-slate);max-width:65ch;line-height:1.65;}
#footer .footer-policies{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-md);padding:1.2rem;}
#footer .policy-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.65rem;}
#footer .footer-bottom{margin-top:2rem;padding-top:1.25rem;border-top:1px solid var(--po5sy-border);display:flex;flex-direction:column;gap:0.6rem;}
#footer .copyright{margin:0;color:var(--po5sy-slate);font-size:0.92rem;}
#footer .build-note{margin:0;color:var(--po5sy-ink);font-size:0.95rem;}
#footer ::selection{background:color-mix(in srgb,var(--po5sy-primary) 35%, white);color:var(--po5sy-ink);}
@media (min-width:768px){
  #footer .footer-top{grid-template-columns:2fr 1.2fr 2fr;gap:2rem;}
  #footer .footer-rail{padding:1.3rem;}
  #footer .footer-mid{grid-template-columns:1.6fr 1fr;}
  #footer .footer-bottom{flex-direction:row;justify-content:space-between;align-items:center;}
}
@media (prefers-reduced-motion:reduce){
  #footer .footer-link::after{transition:none;}
}

/* po5sy:hero */
/* po5sy:hero */
#hero.hero-wrapper{background:var(--po5sy-bg);color:var(--po5sy-text);padding:clamp(1.5rem,4vw,3rem) 0;position:relative;overflow:hidden}
#hero.hero-wrapper::selection{background:rgba(200,137,47,.25)}
#hero.hero-wrapper .hero-shell{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem)}
#hero.hero-wrapper .hero-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:clamp(1.25rem,3vw,2.5rem);align-items:start}
#hero.hero-wrapper .hero-text{grid-column:2/6}
#hero.hero-wrapper .hero-media{grid-column:7/12}
#hero.hero-wrapper .hero-title{font-family:var(--po5sy-serif, Georgia, Cambria, 'Times New Roman', serif);font-size:clamp(2.25rem,4.6vw,4.4rem);line-height:1.03;letter-spacing:-0.02em;margin:0 0 .9rem;text-wrap:balance}
#hero.hero-wrapper .hero-subhead{font-family:Georgia, Cambria, 'Times New Roman', serif;max-width:65ch;font-size:1.06rem;line-height:1.5;margin:0 0 1.15rem;color:var(--po5sy-ink)}
#hero.hero-wrapper .micro-trust{display:flex;flex-wrap:wrap;gap:.6rem;margin:0 0 1.2rem}
#hero.hero-wrapper .chip{display:inline-flex;align-items:center;gap:.5rem;padding:.55rem .8rem;border:1px solid var(--po5sy-border);border-radius:999px;background:var(--po5sy-surface);font-size:.92rem;line-height:1;white-space:nowrap}
#hero.hero-wrapper .hero-cta-row{display:flex;flex-direction:column;gap:.75rem;align-items:flex-start;margin:0 0 1rem}
#hero.hero-wrapper .btn{display:inline-flex;align-items:center;justify-content:center;gap:.65rem;min-height:44px;padding:.95rem 1.1rem;border-radius:var(--po5sy-radius-md,14px);text-decoration:none;font-weight:700;letter-spacing:.01em;transition:transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease, text-decoration-color .15s ease}
#hero.hero-wrapper .btn:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:3px}
#hero.hero-wrapper .btn-primary{background:var(--po5sy-primary);color:#fff;border:1px solid rgba(0,0,0,.06);box-shadow:0 10px 26px rgba(91,122,106,.22)}
#hero.hero-wrapper .btn-primary:hover{transform:translateY(-1px)}
#hero.hero-wrapper .btn-ghost{background:var(--po5sy-surface);color:var(--po5sy-ink);border:2px solid var(--po5sy-primary)}
#hero.hero-wrapper .btn-ghost:hover{transform:translateY(-1px);background:rgba(91,122,106,.06)}
#hero.hero-wrapper .trust-footnote{display:flex;align-items:flex-start;gap:.65rem;margin-top:.55rem;color:var(--po5sy-slate)}
#hero.hero-wrapper .trust-dot{color:var(--po5sy-secondary);font-weight:900;line-height:1.2;transform:translateY(1px)}
#hero.hero-wrapper .trust-text{font-size:.95rem;line-height:1.45;max-width:60ch}

#hero.hero-wrapper .stack{display:flex;flex-direction:column;gap:1rem}
#hero.hero-wrapper .stack-card{background:rgba(255,255,255,.84);border:1px solid var(--po5sy-border);border-radius:var(--po5sy-radius-lg,18px);box-shadow:0 18px 48px rgba(18,18,18,.06);padding:1rem 1rem 1.05rem;backdrop-filter:supports(backdrop-filter: blur(6px));}
#hero.hero-wrapper .stack-card--top{padding:1.05rem 1rem 1.1rem}
#hero.hero-wrapper .stack-card--bottom{padding:1.05rem 1rem 1.15rem}
#hero.hero-wrapper .stack-head{display:flex;align-items:baseline;gap:.7rem;margin-bottom:.85rem}
#hero.hero-wrapper .stack-kicker{font-size:.95rem;font-weight:800;color:var(--po5sy-ink)}
#hero.hero-wrapper .stack-divider{height:1px;flex:1;background:linear-gradient(90deg, var(--po5sy-border), rgba(228,221,210,0));transform:translateY(-.15rem)}
#hero.hero-wrapper .stack-number{font-variant-numeric:tabular-nums;font-size:.88rem;color:var(--po5sy-slate);font-weight:700}

#hero.hero-wrapper .class-chips{display:flex;flex-direction:column;gap:.75rem}
#hero.hero-wrapper .class-chip{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;padding:.85rem .9rem;border-radius:14px;border:1px solid var(--po5sy-border);background:var(--po5sy-surface)}
#hero.hero-wrapper .class-chip-title{font-weight:900;letter-spacing:-.01em;margin:0 0 .35rem;font-size:1.02rem}
#hero.hero-wrapper .class-chip-meta{color:var(--po5sy-slate);font-size:.93rem;line-height:1.25}
#hero.hero-wrapper .class-chip-link{color:var(--po5sy-primary);font-weight:900;text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:4px;min-height:36px;align-self:flex-start}
#hero.hero-wrapper .class-chip-link:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:4px;border-radius:10px}
#hero.hero-wrapper .bullets{margin:.1rem 0 0;padding-left:1.1rem;color:var(--po5sy-ink);display:flex;flex-direction:column;gap:.55rem}
#hero.hero-wrapper .bullets li{color:var(--po5sy-ink);line-height:1.4;font-size:.98rem}
#hero.hero-wrapper .bullets strong{color:var(--po5sy-primary)}

#hero.hero-wrapper .first-class{display:flex;flex-direction:column;gap:.85rem}
#hero.hero-wrapper .first-class-row{display:flex;gap:.8rem;align-items:flex-start}
#hero.hero-wrapper .first-badge{width:30px;height:30px;border-radius:999px;background:rgba(200,137,47,.14);border:1px solid rgba(200,137,47,.38);display:flex;align-items:center;justify-content:center;font-weight:900;color:var(--po5sy-secondary);font-variant-numeric:tabular-nums;margin-top:.05rem}
#hero.hero-wrapper .first-title{font-weight:900;letter-spacing:-.01em;margin:0 0 .25rem}
#hero.hero-wrapper .first-desc{color:var(--po5sy-slate);font-size:.95rem;line-height:1.35}

@media (max-width: 1024px){
  #hero.hero-wrapper .hero-text{grid-column:1/8}
  #hero.hero-wrapper .hero-media{grid-column:8/13}
}
@media (max-width: 768px){
  #hero.hero-wrapper .hero-grid{grid-template-columns:1fr;gap:1.25rem}
  #hero.hero-wrapper .hero-text{grid-column:auto}
  #hero.hero-wrapper .hero-media{grid-column:auto}
  #hero.hero-wrapper .hero-subhead{font-size:1.02rem}
  #hero.hero-wrapper .hero-cta-row{align-items:stretch}
  #hero.hero-wrapper .btn{width:100%}
  #hero.hero-wrapper .trust-footnote{margin-top:.8rem}
}
@media (prefers-reduced-motion: reduce){
  #hero.hero-wrapper *{transition:none!important;scroll-behavior:auto!important}
}

/* po5sy:schedule-proof */
/* po5sy:schedule-proof */
#schedule-proof.schedule-proof{background:var(--po5sy-bg);color:var(--po5sy-ink);padding:clamp(2.5rem,6vw,5.5rem) 0;}
#schedule-proof .sp-shell{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);display:block;}
#schedule-proof .sp-rail{display:block;}
#schedule-proof .sp-rail-text{max-width:65ch;}
#schedule-proof .sp-kicker{display:flex;align-items:baseline;gap:.55rem;margin:0 0 .9rem 0;}
#schedule-proof .sp-kicker-num{font-family:var(--font-serif);font-weight:700;letter-spacing:-.02em;font-size:1rem;color:var(--po5sy-primary);}
#schedule-proof .sp-kicker-slash{font-size:.95rem;color:var(--po5sy-slate);font-weight:600;}
#schedule-proof .sp-title{font-family:var(--font-serif);font-weight:800;letter-spacing:-.03em;line-height:1.05;margin:0 0 .9rem 0;font-size:clamp(1.6rem,3.4vw,2.3rem);text-wrap:balance;}
#schedule-proof .sp-sub{margin:0;font-size:1rem;line-height:1.6;color:var(--po5sy-slate);max-width:65ch;}
#schedule-proof .sp-rail-cards{margin-top:1.8rem;display:grid;grid-template-columns:1fr;gap:1rem;}
#schedule-proof .sp-class-card{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-md,14px);padding:1.05rem 1.05rem;display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;box-shadow:0 1px 0 rgba(18,18,18,.05);}
#schedule-proof .sp-class-meta{min-width:0;}
#schedule-proof .sp-class-top{margin:0 0 .35rem 0;font-weight:800;font-size:1.02rem;letter-spacing:-.01em;}
#schedule-proof .sp-class-mid{margin:0 0 .55rem 0;color:var(--po5sy-primary);font-weight:800;letter-spacing:-.01em;}
#schedule-proof .sp-class-bot{margin:0;display:flex;flex-wrap:wrap;gap:.55rem;}
#schedule-proof .sp-pill{display:inline-flex;align-items:center;gap:.35rem;padding:.35rem .6rem;border-radius:999px;border:1px solid var(--po5sy-border);font-weight:800;font-size:.875rem;color:var(--po5sy-ink);font-variant-numeric:tabular-nums;}
#schedule-proof .sp-pill-muted{color:var(--po5sy-slate);font-weight:700;}
#schedule-proof .sp-book-link{display:inline-flex;align-items:center;gap:.55rem;white-space:nowrap;margin-top:.1rem;font-weight:900;color:var(--po5sy-primary);text-decoration:none;border:1px solid var(--po5sy-primary);padding:.7rem 1rem;border-radius:999px;min-height:44px;}
#schedule-proof .sp-book-link:focus-visible{outline:3px solid color-mix(in srgb,var(--po5sy-primary) 45%, white);outline-offset:2px;}
#schedule-proof .sp-book-link:hover{background:color-mix(in srgb,var(--po5sy-primary) 10%, white);}
#schedule-proof .sp-book-arrow{display:inline-block;transform:translateX(0);transition:transform 150ms ease;}
#schedule-proof .sp-book-link:hover .sp-book-arrow{transform:translateX(2px);}
#schedule-proof ::selection{background:color-mix(in srgb,var(--po5sy-primary) 25%, white);color:var(--po5sy-ink);} 
@media (min-width: 768px){
  #schedule-proof .sp-shell{display:grid;grid-template-columns:repeat(12,1fr);column-gap:clamp(1.2rem,3vw,2.2rem);align-items:start;}
  #schedule-proof .sp-rail-text{grid-column:2 / 7;}
  #schedule-proof .sp-rail-cards{grid-column:7 / 13;margin-top:0;}
  #schedule-proof .sp-class-card{padding:1.15rem 1.15rem;}
}
@media (prefers-reduced-motion: reduce){
  #schedule-proof *{transition:none !important;animation:none !important;}
}

/* po5sy:what-to-expect */
/* po5sy:what-to-expect */
#what-to-expect.what-to-expect{background:var(--po5sy-bg);color:var(--po5sy-text);padding:clamp(2.5rem,6vw,5.5rem) 0;}
#what-to-expect .container{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);}
#what-to-expect .rail-title{max-width:46rem;margin-bottom:clamp(1.5rem,3.5vw,2.5rem);}
#what-to-expect .section-kicker{display:inline-flex;align-items:center;gap:.6rem;font:700 .875rem/1.1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);letter-spacing:.06em;color:var(--po5sy-secondary);text-transform:uppercase;}
#what-to-expect .section-title{margin:.6rem 0 .9rem;font:700 clamp(1.6rem,3.2vw,2.3rem)/1.08 var(--font-serif, 'Hoefler Text', Baskerville Old Face, Garamond, Georgia, serif);letter-spacing:-.02em;word-break:normal;text-wrap:balance;}
#what-to-expect .section-lead{margin:0;max-width:65ch;font:400 1rem/1.7 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);}
#what-to-expect .steps{list-style:none;margin:0;padding:0;display:grid;gap:1rem;}
#what-to-expect .step-block{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-md);padding:1.2rem 1.2rem 1.1rem;box-shadow:0 1px 0 rgba(0,0,0,.03);}
#what-to-expect .step-block:nth-child(1),#what-to-expect .step-block:nth-child(2),#what-to-expect .step-block:nth-child(3){position:relative;}
#what-to-expect .step-block::before{content:"";position:absolute;left:1.2rem;top:1.05rem;width:1.1rem;height:1px;background:var(--po5sy-border);}
#what-to-expect .step-title{margin:0 0 .55rem;padding-left:0;font:700 1.125rem/1.2 var(--font-serif, 'Hoefler Text', Baskerville Old Face, Garamond, Georgia, serif);letter-spacing:-.01em;}
#what-to-expect .step-copy{margin:0 0 .85rem;max-width:65ch;font:400 1rem/1.65 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);}
#what-to-expect .step-list{margin:0;padding:0;list-style:none;display:grid;gap:.55rem;}
#what-to-expect .step-list li{display:flex;align-items:flex-start;gap:.65rem;}
#what-to-expect .dot{width:.55rem;height:.55rem;border-radius:50%;background:var(--po5sy-primary);margin-top:.55rem;flex:0 0 auto;box-shadow:0 0 0 4px rgba(91,122,106,.12);}
#what-to-expect .step-list span{display:inline-block;font:400 1rem/1.55 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-text);}
#what-to-expect .bottom-cta{margin-top:clamp(1.5rem,4.2vw,3.2rem);}
#what-to-expect .bottom-cta-card{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-lg);padding:1.3rem 1.1rem;display:flex;flex-direction:column;gap:1rem;}
#what-to-expect .bottom-cta-heading{margin:0 0 .35rem;font:700 1.2rem/1.25 var(--font-serif, 'Hoefler Text', Baskerville Old Face, Garamond, Georgia, serif);letter-spacing:-.015em;}
#what-to-expect .bottom-cta-copy{margin:0;font:400 1rem/1.6 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);max-width:65ch;}
#what-to-expect .btn{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:.8rem 1rem;border-radius:var(--radius-md);border:2px solid var(--po5sy-primary);background:var(--po5sy-primary);color:var(--po5sy-surface);font:700 1rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);text-decoration:none;}
#what-to-expect .btn:focus-visible{outline:3px solid rgba(200,137,47,.55);outline-offset:3px;}
#what-to-expect .btn:hover{background:color-mix(in srgb, var(--po5sy-primary) 88%, #ffffff 12%);border-color:color-mix(in srgb, var(--po5sy-primary) 88%, #ffffff 12%);}
#what-to-expect .fineprint{margin:1rem 0 0;max-width:65ch;color:var(--po5sy-slate);font:400 .95rem/1.6 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);}
#what-to-expect ::selection{background:rgba(200,137,47,.35);}
@media (min-width: 768px){
  #what-to-expect .steps{gap:1.2rem;grid-template-columns:repeat(3,1fr);}
  #what-to-expect .rail-title{max-width:60ch;margin-bottom:2rem;}
  #what-to-expect .step-block{padding:1.35rem 1.35rem 1.25rem;}
  #what-to-expect .bottom-cta-card{flex-direction:row;align-items:center;justify-content:space-between;padding:1.45rem 1.35rem;}
  #what-to-expect .btn{width:240px;}
}
@media (prefers-reduced-motion: reduce){
  #what-to-expect .btn{transition:none;}
}

/* po5sy:teachers */
/* po5sy:teachers */
#teachers.teachers{background:var(--po5sy-bg);color:var(--po5sy-ink);padding:clamp(2.5rem,5vw,5rem) 0;}
#teachers .container{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);}
#teachers .section-header{display:block;max-width:70ch;margin-bottom:1.9rem;}
#teachers .kicker{display:inline-flex;align-items:center;gap:.6rem;font:700 0.875rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-primary);letter-spacing:.02em;}
#teachers .title{margin:.55rem 0 .75rem 0;font:800 clamp(1.65rem,3.2vw,2.45rem)/1.08 var(--font-serif,'Hoefler Text',Baskerville Old Face, Garamond, Georgia, serif);letter-spacing:-.01em;text-wrap:balance;}
#teachers .lede{margin:0;max-width:65ch;font:400 1rem/1.65 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);}
#teachers .instructor-grid{display:grid;grid-template-columns:1fr;gap:1.25rem;}
#teachers .instructor-card{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-md,14px);overflow:hidden;box-shadow:0 10px 30px rgba(18,18,18,.04);}
#teachers .instructor-media{background:linear-gradient(180deg, rgba(91,122,106,.08), rgba(255,255,255,0));border-bottom:1px solid var(--po5sy-border);display:flex;justify-content:center;align-items:center;padding:1.1rem 1rem;}
#teachers .instructor-media img{width:180px;height:180px;border-radius:50%;object-fit:cover;border:1px solid rgba(18,18,18,.08);}
#teachers .instructor-body{padding:1.15rem 1.15rem 1.2rem 1.15rem;}
#teachers .instructor-name{margin:.15rem 0 .65rem 0;font:800 1.25rem/1.2 var(--font-serif,'Hoefler Text',Baskerville Old Face, Garamond, Georgia, serif);letter-spacing:-.01em;}
#teachers .tag-row{display:flex;flex-wrap:wrap;gap:.5rem;margin:.1rem 0 .85rem 0;}
#teachers .tag{display:inline-flex;align-items:center;padding:.42rem .6rem;border-radius:999px;border:1px solid var(--po5sy-border);background:rgba(233,225,210,.35);font:600 .85rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-primary);}
#teachers .instructor-bio{margin:0 0 .95rem 0;max-width:65ch;font:400 1rem/1.65 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);}
#teachers .meet-link{display:inline-flex;align-items:center;gap:.6rem;color:var(--po5sy-primary);font:700 1rem/1.2 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);text-decoration:none;padding:.6rem 0;border-bottom:2px solid rgba(91,122,106,.35);transition:border-color 150ms ease, transform 150ms ease, color 150ms ease;}
#teachers .meet-link::after{content:"→";display:inline-block;transform:translateY(-.02em);}
#teachers .meet-link:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:3px;border-bottom-color:var(--po5sy-primary);}
#teachers .meet-link:hover{border-bottom-color:var(--po5sy-primary);color:var(--po5sy-primary);transform:translateY(-1px);} 
@media (min-width: 768px){
  #teachers .instructor-grid{grid-template-columns:1fr 1fr;gap:1.5rem;}
  #teachers .instructor-body{padding:1.25rem 1.25rem 1.35rem 1.25rem;}
  #teachers .instructor-media img{width:210px;height:210px;}
}
@media (prefers-reduced-motion: reduce){
  #teachers .meet-link{transition:none;}
  #teachers .meet-link:hover{transform:none;}
}
#teachers ::selection{background:rgba(200,137,47,.25);color:var(--po5sy-ink);} 
/* po5sy:contacts */
/* po5sy:contacts */
#contacts{background:var(--po5sy-bg);color:var(--po5sy-text);padding:clamp(2.2rem,5vw,5rem) 0;}
#contacts .contacts__container{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);}
#contacts .contacts__header{margin-bottom:clamp(1.6rem,3.2vw,2.6rem);}
#contacts .contacts__kicker{font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);letter-spacing:.08em;text-transform:uppercase;font-size:.75rem;color:var(--po5sy-slate);margin-bottom:.75rem;}
#contacts .contacts__title{font-family:var(--font-serif,'Hoefler Text',Baskerville Old Face,Garamond,Georgia,serif);font-weight:700;font-size:clamp(1.7rem,2.7vw,2.3rem);line-height:1.12;letter-spacing:-.02em;text-wrap:balance;margin:0 0 .7rem 0;}
#contacts .contacts__subhead{max-width:65ch;font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:1rem;line-height:1.65;margin:0;color:var(--po5sy-slate);}
#contacts .contacts__grid{display:grid;grid-template-columns:1fr;gap:1.2rem;align-items:start;}
#contacts .contacts__card{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-md,14px);padding:1.25rem;box-shadow:0 10px 30px rgba(18,18,18,.04);}
#contacts .contacts__card--summary{position:relative;}
#contacts .contacts__cardTitle{font-family:var(--font-serif,'Hoefler Text',Baskerville Old Face,Garamond,Georgia,serif);font-size:1.2rem;line-height:1.25;margin:0 0 .85rem 0;color:var(--po5sy-ink);}
#contacts .contacts__list{list-style:none;padding:0;margin:.4rem 0 0 0;display:grid;gap:.8rem;}
#contacts .contacts__listItem{display:grid;gap:.35rem;}
#contacts .contacts__label{font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:.875rem;color:var(--po5sy-slate);}
#contacts .contacts__value{font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:1rem;line-height:1.55;}
#contacts .contacts__link{color:var(--po5sy-primary);text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:.18em;}
#contacts .contacts__link:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:2px;border-radius:8px;}
#contacts .contacts__divider{height:1px;background:var(--po5sy-border);margin:1.25rem 0;}
#contacts .contacts__bullets{margin:.2rem 0 0 0;padding-left:1.05rem;}
#contacts .contacts__bullets li{font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);font-size:1rem;line-height:1.65;margin:.55rem 0;}
#contacts .contacts__ctaRow{display:flex;flex-direction:column;gap:.75rem;margin-top:1.1rem;}
#contacts .btn{display:inline-flex;align-items:center;justify-content:center;gap:.55rem;min-height:44px;padding:.85rem 1rem;border-radius:12px;font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);font-weight:700;font-size:1rem;text-decoration:none;cursor:pointer;}
#contacts .btn--primary{background:var(--po5sy-primary);color:var(--po5sy-surface);border:1px solid var(--po5sy-primary);box-shadow:0 12px 30px rgba(91,122,106,.18);}
#contacts .btn--primary:hover{filter:brightness(1.02);} 
#contacts .btn--primary:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:3px;}
#contacts .btn--ghost{background:var(--po5sy-surface);color:var(--po5sy-primary);border:2px solid var(--po5sy-primary);}
#contacts .btn--ghost:hover{background:rgba(91,122,106,.05);} 
#contacts .btn--ghost:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:3px;}
#contacts .btn--submit{width:100%;margin-top:.95rem;}
#contacts .messageForm{margin-top:.35rem;}
#contacts .field{margin:.85rem 0;}
#contacts .field__label{display:block;font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:.95rem;color:var(--po5sy-slate);margin-bottom:.5rem;}
#contacts .field__input,#contacts .field__textarea{width:100%;border-radius:12px;border:1px solid var(--po5sy-border);background:var(--po5sy-surface);color:var(--po5sy-ink);padding:.9rem .95rem;font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:1rem;line-height:1.4;}
#contacts .field__input::placeholder,#contacts .field__textarea::placeholder{color:rgba(18,18,18,.55);} 
#contacts .field__input:focus-visible,#contacts .field__textarea:focus-visible{outline:3px solid rgba(91,122,106,.28);outline-offset:2px;border-color:rgba(91,122,106,.55);} 
#contacts .field__textarea{resize:vertical;min-height:140px;}
#contacts .formHint{margin:.75rem 0 0 0;font-size:.875rem;color:var(--po5sy-slate);line-height:1.5;max-width:65ch;}
#contacts .contacts__card--form .contacts__cardTitle{margin-top:0;}
@media (min-width:768px){
  #contacts .contacts__grid{grid-template-columns:1.05fr .95fr;gap:1.4rem;}
  #contacts .contacts__card{padding:1.35rem;}
  #contacts .contacts__ctaRow{flex-direction:row;}
  #contacts .btn--submit{width:auto;}
}
@media (prefers-reduced-motion: reduce){
  #contacts *{scroll-behavior:auto;}
}
#contacts ::selection{background:rgba(200,137,47,.22);}

/* po5sy:schedule-intro */
/* po5sy:schedule-intro */
#schedule-intro{background:var(--po5sy-bg);color:var(--po5sy-text);padding:clamp(2.5rem,6vw,5rem) 0;}
#schedule-intro .container{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);display:grid;grid-template-columns:1fr;gap:clamp(1.5rem,4vw,2.5rem);align-items:start;}
#schedule-intro .rail{max-width:65ch;}
#schedule-intro .section-eyebrow{font-family:var(--po5sy-mono);font-size:.875rem;letter-spacing:.02em;color:var(--po5sy-secondary);text-transform:none;margin:0 0 .75rem 0;}
#schedule-intro .section-title{font-family:var(--po5sy-serif);font-size:clamp(1.5rem,3vw,2.5rem);line-height:1.08;margin:0 0 .85rem 0;letter-spacing:-.02em;text-wrap:balance;}
#schedule-intro .section-lede{margin:0 0 1.5rem 0;font-size:1rem;line-height:1.65;color:var(--po5sy-slate);}
#schedule-intro .first-visit-summary{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--po5sy-radius-md,14px);padding:1.25rem 1.25rem 1.1rem 1.25rem;}
#schedule-intro .first-visit-title{margin:0 0 .75rem 0;font-size:1.05rem;letter-spacing:-.01em;}
#schedule-intro .bullets{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.75rem;}
#schedule-intro .bullets li{display:flex;gap:.65rem;align-items:flex-start;line-height:1.5;color:var(--po5sy-slate);}
#schedule-intro .bullet-mark{width:20px;height:20px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:rgba(91,122,106,.12);color:var(--po5sy-primary);font-weight:700;font-size:.9rem;flex:0 0 20px;margin-top:.05rem;}
#schedule-intintro .bullets li span{font-size:1rem;}
#schedule-intro .proof{display:flex;flex-direction:column;gap:1.15rem;}
#schedule-intro .proof-head{display:flex;flex-direction:column;gap:.35rem;padding-top:.2rem;}
#schedule-intro .proof-title{font-family:var(--po5sy-serif);font-size:clamp(1.35rem,2.5vw,2.2rem);margin:0;letter-spacing:-.02em;}
#schedule-intro .proof-sub{margin:0;color:var(--po5sy-slate);font-size:1rem;line-height:1.6;}
#schedule-intro .class-list{display:flex;flex-direction:column;gap:.75rem;}
#schedule-intro .class-row{display:flex;justify-content:space-between;gap:1rem;align-items:center;background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--po5sy-radius-lg,18px);padding:1rem 1rem;}
#schedule-intro .class-meta{display:flex;flex-direction:column;gap:.35rem;min-width:0;}
#schedule-intro .class-top{display:flex;gap:.75rem;align-items:center;flex-wrap:wrap;}
#schedule-intro .class-day{font-weight:700;color:var(--po5sy-ink);}
#schedule-intro .class-level{font-size:.9rem;color:var(--po5sy-primary);border:1px solid rgba(91,122,106,.25);padding:.15rem .55rem;border-radius:999px;}
#schedule-intro .class-bottom{display:flex;gap:.7rem;align-items:baseline;flex-wrap:wrap;}
#schedule-intro .class-time{font-variant-numeric:tabular-nums;font-weight:700;color:var(--po5sy-ink);}
#schedule-intro .class-duration{color:var(--po5sy-slate);font-size:.95rem;}
#schedule-intro .class-tag{color:var(--po5sy-secondary);font-weight:700;font-size:.95rem;}
#schedule-intro .book-link{display:inline-flex;align-items:center;justify-content:center;min-width:104px;height:44px;padding:0 .95rem;border-radius:var(--po5sy-radius-md,14px);border:1px solid var(--po5sy-primary);color:var(--po5sy-primary);text-decoration:none;font-weight:700;letter-spacing:.01em;background:rgba(91,122,106,.06);}
#schedule-intro .book-link:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:2px;}
#schedule-intro .book-link:hover{background:rgba(91,122,106,.12);}
#schedule-intro .expect{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--po5sy-radius-lg,18px);padding:1.1rem 1.1rem 1rem 1.1rem;}
#schedule-intro .expect-title{margin:0 0 .85rem 0;font-size:1.05rem;}
#schedule-intro .steps{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.9rem;}
#schedule-intro .steps li{display:flex;gap:.85rem;align-items:flex-start;}
#schedule-intro .step-num{width:30px;height:30px;border-radius:999px;background:rgba(200,137,47,.14);color:var(--po5sy-secondary);display:flex;align-items:center;justify-content:center;font-weight:800;flex:0 0 30px;margin-top:.05rem;}
#schedule-intro .step-text{display:flex;flex-direction:column;gap:.1rem;}
#schedule-intro .step-label{font-weight:800;color:var(--po5sy-ink);}
#schedule-intro .step-desc{color:var(--po5sy-slate);line-height:1.55;}
#schedule-intro .schedule-note{display:flex;gap:.85rem;align-items:flex-start;background:rgba(233,225,210,.45);border:1px solid var(--po5sy-border);border-radius:var(--po5sy-radius-lg,18px);padding:1rem 1rem;}
#schedule-intro .schedule-note-mark{width:34px;height:34px;border-radius:999px;background:rgba(200,137,47,.18);color:var(--po5sy-secondary);display:flex;align-items:center;justify-content:center;font-weight:900;flex:0 0 34px;}
#schedule-intro .schedule-note-text{margin:0;color:var(--po5sy-slate);line-height:1.6;max-width:60ch;}
#schedule-intro .inline-cta{max-width:72rem;margin:1.25rem auto 0 auto;padding:0 clamp(1rem,4vw,3rem);display:flex;gap:.75rem;flex-direction:column;}
#schedule-intro .primary-cta{display:inline-flex;align-items:center;justify-content:center;min-height:50px;padding:0 1rem;border-radius:var(--po5sy-radius-lg,18px);background:var(--po5sy-primary);color:var(--po5sy-surface);text-decoration:none;font-weight:800;letter-spacing:.01em;border:1px solid var(--po5sy-primary);}
#schedule-intro .primary-cta:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:2px;}
#schedule-intro .primary-cta:hover{background:rgba(91,122,106,.92);}
#schedule-intro .ghost-cta{display:inline-flex;align-items:center;justify-content:center;min-height:50px;padding:0 1rem;border-radius:var(--po5sy-radius-lg,18px);background:var(--po5sy-surface);border:1px solid var(--po5sy-border);color:var(--po5sy-ink);text-decoration:none;font-weight:800;letter-spacing:.01em;}
#schedule-intro .ghost-cta:focus-visible{outline:3px solid rgba(18,18,18,.25);outline-offset:2px;}
#schedule-intro .ghost-cta:hover{border-color:rgba(18,18,18,.28);}
#schedule-intro ::selection{background:rgba(91,122,106,.22);}
@media (min-width:768px){
  #schedule-intro .container{grid-template-columns:repeat(12,1fr);gap:clamp(1.75rem,4vw,3.25rem);}
  #schedule-intro .rail{grid-column:2/6;}
  #schedule-intro .proof{grid-column:7/12;}
  #schedule-intro .inline-cta{flex-direction:row;}
  #schedule-intro .primary-cta,#schedule-intro .ghost-cta{flex:1;}
}
@media (prefers-reduced-motion:reduce){
  #schedule-intro .book-link,#schedule-intro .primary-cta,#schedule-intro .ghost-cta{transition:none !important;}
}

/* po5sy:classes-list */
/* po5sy:classes-list */
#classes-list{--s-pad:clamp(1.25rem,3vw,2.25rem);--rail-gap:clamp(1.25rem,3vw,2rem);background:var(--po5sy-bg);color:var(--po5sy-text);padding:var(--s-pad) 0;}
#classes-list .section-shell{max-width:72rem;margin:0 auto; padding:0 var(--s-pad); display:grid; grid-template-columns: 1fr; gap:var(--rail-gap);}
#classes-list .section-rail{border-top:1px solid var(--po5sy-border); padding-top:1.25rem;}
#classes-list .section-kicker{display:flex; align-items:center; gap:.75rem; margin-bottom:.75rem;}
#classes-list .section-index{display:inline-flex; align-items:center; justify-content:center; width:2.25rem; height:2.25rem; border-radius:var(--radius-sm,10px); background:var(--po5sy-surface); border:1px solid var(--po5sy-border); color:var(--po5sy-ink); font-weight:700; font-family:inherit;}
#classes-list .section-kicker-text{font-family:var(--font-sans, Georgia, Cambria, 'Times New Roman', serif); color:var(--po5sy-slate); font-size:.95rem;}
#classes-list .section-title{font-family:var(--font-serif, 'Hoefler Text', Baskerville Old Face, Garamond, Georgia, serif); letter-spacing:-.02em; line-height:1.08; font-size:clamp(1.6rem,2.6vw,2.35rem); margin:0 0 .75rem; text-wrap:balance;}
#classes-list .section-lead{max-width:65ch; margin:0 0 1rem; color:var(--po5sy-slate); font-size:1rem; line-height:1.65;}
#classes-list .micro-row{display:flex; flex-wrap:wrap; gap:.6rem; margin-top:.75rem;}
#classes-list .chip{display:inline-flex; align-items:center; padding:.5rem .75rem; border-radius:999px; border:1px solid var(--po5sy-border); background:var(--po5sy-surface); color:var(--po5sy-ink); font-size:.875rem; font-weight:600;}

#classes-list .schedule-main{padding-top:1rem;}
#classes-list .filter-bar{display:flex; flex-wrap:wrap; gap:.6rem; align-items:center; margin:0 0 1rem;}
#classes-list .filter-btn{appearance:none; border:1px solid var(--po5sy-border); background:var(--po5sy-surface); color:var(--po5sy-ink); border-radius:999px; padding:.65rem .9rem; font-weight:700; cursor:pointer; min-height:44px;}
#classes-list .filter-btn.is-active{border-color:var(--po5sy-primary); background:color-mix(in srgb, var(--po5sy-primary) 12%, var(--po5sy-surface));}
#classes-list .filter-btn:focus-visible{outline:3px solid color-mix(in srgb, var(--po5sy-primary) 45%, transparent); outline-offset:2px;}

#classes-list .class-list{display:grid; gap:1rem; position:relative;}
#classes-list .class-card{background:var(--po5sy-surface); border:1px solid var(--po5sy-border); border-radius:var(--radius-md,14px); overflow:hidden;}
#classes-list .card-main{display:grid; grid-template-columns: 1fr; gap:1rem; padding:1.05rem 1rem;}
#classes-list .card-meta{display:flex; gap:1rem; align-items:flex-start; padding-bottom:.25rem;}
#classes-list .card-day{font-weight:900; letter-spacing:-.01em; font-size:1.05rem;}
#classes-list .card-time{font-weight:900; font-size:1.15rem; color:var(--po5sy-primary); font-variant-numeric:tabular-nums;}
#classes-list .card-duration{font-size:.95rem; color:var(--po5sy-slate);}
#classes-list .card-copy{padding-right:.25rem;}
#classes-list .card-title{margin:.05rem 0 .4rem; font-family:var(--font-serif, 'Hoefler Text', Baskerville Old Face, Garamond, Georgia, serif); letter-spacing:-.01em; font-size:1.35rem; line-height:1.2; text-wrap:balance;}
#classes-list .card-desc{margin:0 0 .8rem; color:var(--po5sy-slate); line-height:1.6; max-width:65ch;}
#classes-list .card-tags{display:flex; flex-wrap:wrap; gap:.5rem;}
#classes-list .tag{display:inline-flex; padding:.35rem .6rem; border-radius:999px; background:color-mix(in srgb, var(--po5sy-mist) 65%, var(--po5sy-surface)); border:1px solid var(--po5sy-border); color:var(--po5sy-ink); font-size:.8rem; font-weight:700;}
#classes-list .card-actions{padding:0 1rem 1.1rem; display:flex; justify-content:flex-start;}
#classes-list .primary-btn{min-height:44px; border-radius:999px; border:1px solid color-mix(in srgb, var(--po5sy-primary) 70%, var(--po5sy-border)); background:var(--po5sy-primary); color:var(--po5sy-surface); font-weight:900; padding:.78rem 1.05rem; cursor:pointer; text-decoration:none; white-space:nowrap;}
#classes-list .primary-btn:hover{filter:saturate(1.03);}
#classes-list .primary-btn:active{transform:translateY(1px);}
#classes-list .primary-btn:focus-visible{outline:3px solid color-mix(in srgb, var(--po5sy-primary) 55%, transparent); outline-offset:2px;}

#classes-list .schedule-cta-row{display:flex; flex-direction:column; gap:.35rem; align-items:flex-start; margin-top:1.25rem; padding-top:1.1rem; border-top:1px solid var(--po5sy-border);}
#classes-list .ghost-link{color:var(--po5sy-primary); font-weight:900; text-decoration:underline; text-underline-offset:3px;}
#classes-list .ghost-link:focus-visible{outline:3px solid color-mix(in srgb, var(--po5sy-primary) 45%, transparent); outline-offset:3px; border-radius:8px;}
#classes-list .cta-help{color:var(--po5sy-slate); line-height:1.6; max-width:65ch; font-size:.95rem;}

@media (min-width: 768px){
  #classes-list .section-shell{grid-template-columns: repeat(12, 1fr);}
  #classes-list .section-rail{grid-column: 2 / span 5; border-top:none; padding-top:0;}
  #classes-list .schedule-main{grid-column: 7 / span 6; padding-top:0;}
  #classes-list .card-main{grid-template-columns: 170px 1fr; align-items:start;}
  #classes-list .card-meta{flex-direction:column; gap:.45rem; padding-bottom:0;}
  #classes-list .card-actions{justify-content:flex-end; padding:0 1rem 1.1rem;}
  #classes-list .primary-btn{padding:.82rem 1.15rem; min-width:220px;}
  #classes-list .schedule-cta-row{flex-direction:row; align-items:center; justify-content:space-between;}
}
@media (prefers-reduced-motion: reduce){
  #classes-list *{scroll-behavior:auto; transition:none !important; animation:none !important;}
}
#classes-list ::selection{background:color-mix(in srgb, var(--po5sy-primary) 25%, transparent);}

/* po5sy:booking-modal */
/* po5sy:booking-modal */
#booking-modal{--r:var(--po5sy-primary);--b:var(--po5sy-border);--bg:var(--po5sy-bg);--ink:var(--po5sy-ink);position:relative;isolation:isolate;display:block;max-width:100%}
#booking-modal.booking-modal{padding:0;margin:0}
#booking-modal .booking-modal__overlay{position:fixed;inset:0;background:rgba(18,18,18,.55);z-index:20}
#booking-modal .booking-modal__panel{position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);z-index:30;width:min(920px,calc(100vw - 2rem));background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--po5sy-radius-lg,18px);box-shadow:0 22px 55px rgba(91,122,106,.22);overflow:hidden}
#booking-modal .booking-modal__header{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;padding:1.25rem 1.25rem 0.5rem 1.25rem}
#booking-modal .booking-modal__kicker{display:inline-flex;align-items:center;gap:.5rem;padding:.4rem .75rem;border:1px solid var(--po5sy-border);border-radius:999px;background:var(--po5sy-bg);color:var(--po5sy-slate);font:600 0.875rem/1.1 var(--font-ui,inherit)}
#booking-modal .booking-modal__title{margin:.55rem 0 0 0;font-family:var(--font-serif,Georgia,serif);font-weight:700;letter-spacing:-.02em;line-height:1.08;font-size:clamp(1.35rem,2.2vw,2rem)}
#booking-modal .booking-modal__close{appearance:none;background:transparent;border:1px solid var(--po5sy-border);color:var(--po5sy-ink);border-radius:12px;min-height:44px;min-width:44px;font-size:1.6rem;line-height:1;display:flex;align-items:center;justify-content:center;cursor:pointer}
#booking-modal .booking-modal__close:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:2px}
#booking-modal .booking-modal__body{padding:0.5rem 1.25rem 1.1rem 1.25rem}
#booking-modal .booking-modal__desc{margin:0 auto 1rem auto;max-width:65ch;color:var(--po5sy-slate);font-size:1rem;line-height:1.6}
#booking-modal .booking-modal__proof{display:grid;grid-template-columns:1.05fr 1fr;gap:1.1rem;align-items:start}
#booking-modal .proof-card{border:1px solid var(--po5sy-border);border-radius:var(--po5sy-radius-md,14px);background:var(--po5sy-bg);padding:1rem}
#booking-modal .proof-card__title{margin:0 0 .65rem 0;font:700 1.0rem/1.2 var(--font-sans,Georgia,Cambria,'Times New Roman',serif)}
#booking-modal .proof-card__grid{display:grid;grid-template-columns:1fr;gap:.6rem}
#booking-modal .proof-row{display:flex;gap:.75rem;align-items:baseline;justify-content:space-between;border-bottom:1px dashed rgba(228,221,210,.9);padding-bottom:.55rem}
#booking-modal .proof-row:last-child{border-bottom:none;padding-bottom:0}
#booking-modal .proof-row__label{color:var(--po5sy-slate);font-size:.95rem}
#booking-modal .proof-row__value{color:var(--po5sy-ink);font-size:1rem;font-variant-numeric:tabular-nums}
#booking-modal .proof-card__tagrow{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.85rem}
#booking-modal .tag{display:inline-flex;align-items:center;padding:.38rem .72rem;border-radius:999px;border:1px solid var(--po5sy-border);background:var(--po5sy-surface);color:var(--po5sy-slate);font-weight:700;font-size:.875rem}
#booking-modal .tag--limited{border-color:rgba(200,137,47,.35);background:rgba(200,137,47,.08);color:var(--po5sy-accent)}
#booking-modal .proof-steps{display:flex;flex-direction:column;gap:.75rem}
#booking-modal .step{display:grid;grid-template-columns:auto 1fr;gap:.85rem;align-items:flex-start;padding:.85rem .85rem;border:1px solid var(--po5sy-border);border-radius:var(--po5sy-radius-md,14px);background:var(--po5sy-surface)}
#booking-modal .step__num{width:44px;height:44px;border-radius:14px;border:1px solid rgba(91,122,106,.35);display:flex;align-items:center;justify-content:center;color:var(--po5sy-primary);font-weight:800;font-size:.95rem}
#booking-modal .step__title{margin:0 0 .35rem 0;font-size:1rem;letter-spacing:-.01em}
#booking-modal .step__list{margin:0;padding-left:1.15rem;color:var(--po5sy-slate);line-height:1.55}
#booking-modal .step__list li{margin:.25rem 0}
#booking-modal .booking-modal__note{border-top:1px solid var(--po5sy-border);padding-top:1rem}
#booking-modal .booking-modal__note p{margin:0 auto;max-width:65ch;color:var(--po5sy-slate);line-height:1.6}
#booking-modal .booking-modal__footer{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.25rem;background:rgba(247,243,236,.65);border-top:1px solid var(--po5sy-border)}
#booking-modal .booking-modal__link{color:var(--po5sy-primary);text-decoration:none;font-weight:800}
#booking-modal .booking-modal__link:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:3px;border-radius:8px}
#booking-modal .booking-modal__link:hover{text-decoration:underline}
#booking-modal .booking-modal__actions{display:flex;justify-content:flex-end;flex:1}
#booking-modal .button{display:inline-flex;align-items:center;justify-content:center;min-height:44px;min-width:160px;padding:.75rem 1rem;border-radius:14px;border:1px solid rgba(91,122,106,.35);text-decoration:none;font-weight:800;cursor:pointer}
#booking-modal .button--primary{background:var(--po5sy-primary);color:var(--po5sy-surface);border-color:rgba(91,122,106,.55);box-shadow:0 12px 28px rgba(91,122,106,.18)}
#booking-modal .button--primary:hover{filter:brightness(1.02)}
#booking-modal .button--primary:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:3px}
#booking-modal ::selection{background:rgba(200,137,47,.25)}
@media (prefers-reduced-motion:reduce){#booking-modal *{scroll-behavior:auto;transition:none !important;animation:none !important}}
@media (max-width:900px){#booking-modal .booking-modal__proof{grid-template-columns:1fr;gap:1rem}#booking-modal .booking-modal__footer{flex-direction:column;align-items:stretch}#booking-modal .booking-modal__actions{justify-content:stretch}#booking-modal .button{width:100%}}
@media (max-width:640px){#booking-modal .booking-modal__panel{width:calc(100vw - 1.2rem)}#booking-modal .booking-modal__header{padding:1rem 1rem .5rem 1rem}#booking-modal .booking-modal__body{padding:0.5rem 1rem 1rem 1rem}#booking-modal .step{padding:.8rem .8rem}#booking-modal .step__num{width:42px;height:42px;border-radius:13px}}

/* po5sy:faq-short */
/* po5sy:faq-short */
#faq-short.faq-short{background:var(--po5sy-bg);color:var(--po5sy-text);padding:clamp(2.5rem,6vw,5rem) 0}
#faq-short.faq-short .faq-short__inner{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem)}
#faq-short.faq-short .faq-short__head{max-width:65ch;margin-bottom:1.75rem}
#faq-short.faq-short .faq-short__kicker{display:inline-flex;align-items:center;gap:.5rem;padding:.35rem .7rem;border:1px solid var(--po5sy-border);background:var(--po5sy-surface);border-radius:var(--po5sy-radius-sm,10px);font-family:var(--po5sy-font-sans,Georgia,serif);font-size:.875rem;letter-spacing:.02em}
#faq-short.faq-short .faq-short__title{margin:.85rem 0 .75rem;font-family:var(--po5sy-font-serif,'Hoefler Text',Baskerville Old Face,Gar amond,Georgia,serif);font-size:clamp(1.5rem,3vw,2.4rem);line-height:1.15;letter-spacing:-.02em;text-wrap:balance}
#faq-short.faq-short .faq-short__sub{margin:0;color:var(--po5sy-slate);font-size:1rem;line-height:1.6}
#faq-short.faq-short .faq-short__accordion{display:grid;gap:.75rem}
#faq-short.faq-short .faq-short__item{border:1px solid var(--po5sy-border);background:var(--po5sy-surface);border-radius:var(--po5sy-radius-md,14px);overflow:hidden}
#faq-short.faq-short .faq-short__trigger{width:100%;text-align:left;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.05rem;border:0;background:transparent;cursor:pointer;font-family:var(--po5sy-font-sans,Georgia,serif);color:var(--po5sy-ink);font-size:1rem;line-height:1.3}
#faq-short.faq-short .faq-short__trigger:focus-visible{outline:3px solid color-mix(in srgb, var(--po5sy-primary) 60%, white 40%);outline-offset:2px}
#faq-short.faq-short .faq-short__q{font-weight:700}
#faq-short.faq-short .faq-short__icon{flex:0 0 auto;width:34px;height:34px;border-radius:10px;border:1px solid var(--po5sy-border);display:grid;place-items:center;color:var(--po5sy-slate);font-size:1.25rem;line-height:1}
#faq-short.faq-short .faq-short__item[aria-expanded="true"] .faq-short__icon,#faq-short.faq-short .faq-short__trigger[aria-expanded="true"] .faq-short__icon{color:var(--po5sy-primary);border-color:color-mix(in srgb, var(--po5sy-primary) 35%, var(--po5sy-border) 65%)}
#faq-short.faq-short .faq-short__panel{padding:0 1.05rem 1rem 1.05rem}
#faq-short.faq-short .faq-short__a{margin:.35rem 0 0;color:var(--po5sy-slate);line-height:1.7;max-width:65ch}
#faq-short.faq-short__cta{margin-top:1.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
#faq-short.faq-short__ctaText{margin:0;color:var(--po5sy-slate)}
#faq-short.faq-short .faq-short__link{display:inline-flex;align-items:center;gap:.6rem;justify-content:center;text-decoration:none;border:1px solid var(--po5sy-primary);color:var(--po5sy-primary);background:var(--po5sy-surface);padding:.8rem 1rem;border-radius:var(--po5sy-radius-md,14px);font-weight:700}
#faq-short.faq-short .faq-short__link:focus-visible{outline:3px solid color-mix(in srgb, var(--po5sy-primary) 65%, white 35%);outline-offset:3px}
#faq-short.faq-short .faq-short__link:hover{background:color-mix(in srgb, var(--po5sy-primary) 10%, var(--po5sy-surface) 90%)}
#faq-short.faq-short ::selection{background:color-mix(in srgb, var(--po5sy-secondary) 28%, white 72%);color:var(--po5sy-ink)}
@media (max-width:640px){#faq-short.faq-short .faq-short__cta{justify-content:flex-start}#faq-short.faq-short .faq-short__ctaText{width:100%}#faq-short.faq-short .faq-short__link{width:100%}}
@media (prefers-reduced-motion:reduce){#faq-short.faq-short *{scroll-behavior:auto;transition:none !important;animation:none !important}}
/* po5sy:pricing-intro */
/* po5sy:pricing-intro */
#pricing-intro.pricing-intro{background:var(--po5sy-bg);color:var(--po5sy-text);padding:clamp(2.5rem,6vw,7rem) 0;}
#pricing-intro .container{max-width:72rem;margin:0 auto; padding:0 clamp(1rem,4vw,3rem);display:grid;grid-template-columns: repeat(12, 1fr);gap:clamp(1.25rem,3vw,2.5rem);} 
#pricing-intro .rail{grid-column:2/7;min-width:0;}
#pricing-intro .proof{grid-column:7/13;min-width:0;}
#pricing-intro .kicker{font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);letter-spacing:.08em;text-transform:uppercase;font-size:.875rem;margin-bottom:1rem;}
#pricing-intro .title{font-family:var(--font-family-serif, 'Hoefler Text', Baskerville Old Face, Garamond, Georgia, serif);font-size:clamp(2.1rem,4vw,4rem);line-height:1.06;letter-spacing:-0.02em;margin:0 0 0.75rem;text-wrap:balance;}
#pricing-intro .subhead{font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:1rem;line-height:1.65;max-width:65ch;margin:0 0 1.25rem;color:var(--po5sy-slate);} 
#pricing-intro .micro-trust{display:flex;flex-wrap:wrap;gap:.6rem;margin:0 0 1.35rem;}
#pricing-intro .chip{display:inline-flex;align-items:center;gap:.5rem;padding:.55rem .75rem;border:1px solid var(--po5sy-border);border-radius:999px;background:var(--po5sy-surface);font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:.95rem;color:var(--po5sy-ink);} 
#pricing-intro .cta-row{display:flex;gap:.9rem;align-items:center;flex-wrap:wrap;margin:0 0 1.6rem;}
#pricing-intro .btn{display:inline-flex;align-items:center;justify-content:center;height:44px;padding:0 1.05rem;border-radius:var(--radius-md, 14px);text-decoration:none;font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);font-weight:600;letter-spacing:-0.01em;transition:transform 120ms ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease, text-decoration-color 150ms ease;}
#pricing-intro .btn.primary{background:var(--po5sy-primary);border:1px solid var(--po5sy-primary);color:var(--po5sy-surface);box-shadow:0 10px 25px rgba(91,122,106,.18);} 
#pricing-intro .btn.secondary{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);color:var(--po5sy-ink);} 
#pricing-intro .btn.primary:hover{transform:translateY(-1px);} 
#pricing-intro .btn.secondary:hover{border-color:var(--po5sy-primary);} 
#pricing-intro .btn:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:2px;}
#pricing-intro .first-visit{margin-top:1rem;padding-top:1.15rem;border-top:1px solid var(--po5sy-border);} 
#pricing-intro .first-visit-title{margin:0 0 .6rem;font-size:1.15rem;line-height:1.25;font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);}
#pricing-intro .list{list-style:none;margin:0;padding:0;display:grid;gap:.65rem;max-width:62ch;} 
#pricing-intro .list li{display:flex;gap:.65rem;align-items:flex-start;color:var(--po5sy-slate);line-height:1.55;font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);} 
#pricing-intro .dot{color:var(--po5sy-primary);font-size:1.25rem;line-height:1;transform:translateY(-1px);} 
#pricing-intro .proof-header{padding:1.1rem 1.15rem;border:1px solid var(--po5sy-border);border-radius:var(--radius-lg, 18px);background:rgba(255,255,255,.7);} 
#pricing-intro .proof-title{margin:0 0 .55rem;font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:1.25rem;letter-spacing:-0.01em;}
#pricing-intro .proof-sub{margin:0;color:var(--po5sy-slate);line-height:1.6;max-width:58ch;font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);} 
#pricing-intro .class-row-list{display:grid;gap:.75rem;margin-top:.95rem;}
#pricing-intro .class-row{display:grid;grid-template-columns: 92px 1fr auto;gap:1rem;align-items:center;padding:1rem 1.1rem;border:1px solid var(--po5sy-border);border-radius:var(--radius-lg, 18px);background:var(--po5sy-surface);box-shadow:0 8px 20px rgba(18,18,18,.05);} 
#pricing-intro .class-row:hover{transform:translateY(-2px);} 
#pricing-intro .class-row{transition:transform 150ms ease, box-shadow 150ms ease;} 
#pricing-intro .class-meta{font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);}
#pricing-intro .day{font-weight:700;letter-spacing:-0.01em;color:var(--po5sy-ink);}
#pricing-intro .time{margin-top:.2rem;font-variant-numeric:tabular-nums;font-weight:700;color:var(--po5sy-primary);}
#pricing-intro .class-main{min-width:0;}
#pricing-intro .class-name{font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);font-weight:700;margin:0 0 .25rem;letter-spacing:-0.01em;}
#pricing-intro .class-desc{font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);line-height:1.55;max-width:52ch;font-size:.98rem;}
#pricing-intro .class-side{display:flex;flex-direction:column;align-items:flex-end;gap:.55rem;}
#pricing-intro .level{font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);font-size:.9rem;color:var(--po5sy-slate);border:1px solid var(--po5sy-border);padding:.25rem .6rem;border-radius:999px;background:rgba(233,225,210,.35);} 
#pricing-intro .book-link{font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);font-weight:700;color:var(--po5sy-primary);text-decoration:underline;text-decoration-color:rgba(91,122,106,.35);text-underline-offset:3px;transition:text-decoration-color 150ms ease,color 150ms ease;}
#pricing-intro .class-row:hover .book-link{text-decoration-color:rgba(91,122,106,1);}
#pricing-intro .book-link:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:3px;border-radius:8px;}
#pricing-intro .proof-foot{margin-top:1rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;} 
#pricing-intro .proof-tag{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);font-weight:700;color:var(--po5sy-ink);border:1px solid var(--po5sy-border);background:rgba(200,137,47,.12);padding:.6rem .8rem;border-radius:999px;}
#pricing-intro .inline-link{font-family:var(--font-family-sans, Georgia, Cambria, 'Times New Roman', serif);font-weight:700;color:var(--po5sy-primary);text-decoration:underline;text-decoration-color:rgba(91,122,106,.35);text-underline-offset:3px;} 
#pricing-intro .inline-link:hover{text-decoration-color:rgba(91,122,106,1);} 
#pricing-intro .inline-link:focus-visible{outline:3px solid rgba(91,122,106,.35);outline-offset:3px;border-radius:10px;}
#pricing-intro ::selection{background:rgba(91,122,106,.25);} 
@media (max-width: 1024px){#pricing-intro .rail{grid-column:1/8;}#pricing-intro .proof{grid-column:8/13;}}
@media (max-width: 768px){#pricing-intro .container{grid-template-columns:1fr;gap:1.25rem;}#pricing-intro .rail,#pricing-intro .proof{grid-column:auto;}#pricing-intro .cta-row{flex-direction:column;align-items:stretch;}#pricing-intro .btn{width:100%;}#pricing-intro .class-row{grid-template-columns: 84px 1fr;grid-template-rows:auto auto;}
#pricing-intro .class-side{grid-column:1/3;flex-direction:row;justify-content:space-between;align-items:center;}
#pricing-intro .proof-header{padding:1rem;}}
@media (prefers-reduced-motion: reduce){#pricing-intro .btn,#pricing-intro .class-row,#pricing-intro .book-link{transition:none !important;} }

/* po5sy:pricing-table */
/* po5sy:pricing-table */
#pricing-table{background:var(--po5sy-bg);color:var(--po5sy-text);padding:clamp(1.5rem,4vw,3.5rem) 0;}
#pricing-table .wrap{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);display:grid;grid-template-columns:1fr;gap:1.5rem;}
#pricing-table .rail-left{max-width:70ch;}
#pricing-table .rail-right{display:flex;flex-direction:column;gap:1.2rem;}
#pricing-table .section-kicker{font:700 0.875rem/1.2 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);letter-spacing:0.02em;color:var(--po5sy-slate);} 
#pricing-table .section-title{font:700 clamp(1.6rem,2.5vw,2.3rem)/1.1 var(--font-serif, 'Hoefler Text', Baskerville Old Face, Garamond, Georgia, serif);letter-spacing:-0.02em;margin:0.35rem 0 0.6rem;}
#pricing-table .section-subtitle{font:400 1rem/1.6 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);margin:0 0 1.2rem;max-width:65ch;}
#pricing-table .schedule-preview{border:1px solid var(--po5sy-border);background:var(--po5sy-surface);border-radius:var(--radius-md, 14px);padding:1rem;}
#pricing-table .preview-header{display:flex;align-items:flex-end;justify-content:space-between;gap:0.75rem;margin-bottom:0.75rem;}
#pricing-table .preview-label{font:700 0.875rem/1.1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-ink);}
#pricing-table .preview-note{font:400 0.875rem/1.2 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);}
#pricing-table .preview-list{display:flex;flex-direction:column;gap:0.5rem;}
#pricing-table .preview-row{display:grid;grid-template-columns:1fr auto auto;gap:0.75rem;align-items:center;padding:0.75rem;border:1px solid var(--po5sy-border);border-radius:var(--radius-sm, 10px);background:var(--po5sy-bg);}
#pricing-table .preview-day{font:800 0.95rem/1.1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-ink);}
#pricing-table .preview-time{font:400 0.875rem/1.2 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);margin-top:0.15rem;}
#pricing-table .preview-level{font:600 0.95rem/1.2 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-ink);justify-self:start;}
#pricing-table .preview-link{display:inline-flex;align-items:center;justify-content:center;padding:0.55rem 0.85rem;border-radius:999px;border:1px solid var(--po5sy-primary);color:var(--po5sy-primary);background:var(--po5sy-surface);text-decoration:none;font:700 0.9rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);min-width:92px;}
#pricing-table .preview-link:focus-visible{outline:3px solid color-mix(in oklab, var(--po5sy-primary) 55%, white);outline-offset:3px;}
#pricing-table .preview-link:hover{background:color-mix(in oklab, var(--po5sy-primary) 10%, var(--po5sy-surface));}

#pricing-table .card{border-radius:var(--radius-md, 14px);border:1px solid var(--po5sy-border);background:var(--po5sy-surface);}
#pricing-table .card-first-visit{padding:1.1rem;}
#pricing-table .card-topline{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:0.8rem;}
#pricing-table .card-flag{font:700 0.85rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-ink);border:1px solid var(--po5sy-border);padding:0.45rem 0.7rem;border-radius:999px;background:var(--po5sy-bg);} 
#pricing-table .card-limited{font:800 0.85rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-ink);background:color-mix(in oklab, var(--po5sy-secondary) 18%, var(--po5sy-surface));border:1px solid color-mix(in oklab, var(--po5sy-secondary) 35%, var(--po5sy-border));padding:0.45rem 0.7rem;border-radius:999px;}
#pricing-table .card-title{font:700 1.1rem/1.25 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);margin:0 0 0.75rem;}
#pricing-table .bullets{margin:0;padding-left:1.1rem;display:flex;flex-direction:column;gap:0.45rem;}
#pricing-table .bullets li{color:var(--po5sy-slate);font:400 0.95rem/1.45 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);} 
#pricing-table .bullets strong{color:var(--po5sy-ink);font-weight:800;}
#pricing-table .primary-cta{display:inline-flex;align-items:center;justify-content:center;width:100%;padding:0.95rem 1rem;border-radius:999px;background:var(--po5sy-primary);color:var(--po5sy-surface);text-decoration:none;font:800 1rem/1.1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);border:1px solid var(--po5sy-primary);margin-top:0.9rem;}
#pricing-table .primary-cta:hover{filter:saturate(1.05);}
#pricing-table .primary-cta:focus-visible{outline:3px solid color-mix(in oklab, var(--po5sy-primary) 50%, white);outline-offset:3px;}
#pricing-table .micro-chips{display:flex;flex-wrap:wrap;gap:0.5rem;margin-top:0.85rem;}
#pricing-table .chip{display:inline-flex;align-items:center;gap:0.4rem;padding:0.45rem 0.7rem;border-radius:999px;border:1px solid var(--po5sy-border);background:var(--po5sy-bg);color:var(--po5sy-ink);font:700 0.85rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);} 

#pricing-table .pricing-grid{display:grid;grid-template-columns:1fr;gap:1rem;}
#pricing-table .price-plan{padding:1.1rem;border:1px solid var(--po5sy-border);background:var(--po5sy-surface);border-radius:var(--radius-md, 14px);position:relative;}
#pricing-table .price-plan-highlight{border-color:color-mix(in oklab, var(--po5sy-primary) 45%, var(--po5sy-border));background:color-mix(in oklab, var(--po5sy-primary) 6%, var(--po5sy-surface));}
#pricing-table .plan-head{margin-bottom:0.9rem;}
#pricing-table .plan-kicker{font:800 0.85rem/1.1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);letter-spacing:0.01em;color:var(--po5sy-slate);margin-bottom:0.35rem;}
#pricing-table .plan-title{font:800 1.25rem/1.15 var(--font-serif, 'Hoefler Text', Baskerville Old Face, Garamond, Georgia, serif);letter-spacing:-0.01em;margin:0 0 0.6rem;}
#pricing-table .plan-price{display:flex;align-items:baseline;gap:0.35rem;flex-wrap:wrap;}
#pricing-table .plan-currency{font:800 0.95rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);} 
#pricing-table .plan-amount{font:900 2rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);letter-spacing:-0.02em;font-variant-numeric:tabular-nums;color:var(--po5sy-ink);} 
#pricing-table .plan-period{font:700 0.95rem/1.2 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);} 
#pricing-table .plan-list{margin:0;padding-left:1.1rem;display:flex;flex-direction:column;gap:0.5rem;}
#pricing-table .plan-list li{font:400 0.95rem/1.45 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);} 
#pricing-table .plan-button{display:inline-flex;align-items:center;justify-content:center;width:100%;padding:0.85rem 1rem;border-radius:999px;background:var(--po5sy-primary);color:var(--po5sy-surface);text-decoration:none;font:900 1rem/1.1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);border:1px solid var(--po5sy-primary);margin-top:1rem;}
#pricing-table .price-plan:not(.price-plan-highlight) .plan-button{background:var(--po5sy-surface);color:var(--po5sy-primary);border-color:var(--po5sy-primary);} 
#pricing-table .plan-button:hover{text-decoration:none;}
#pricing-table .plan-button:focus-visible{outline:3px solid color-mix(in oklab, var(--po5sy-primary) 50%, white);outline-offset:3px;}
#pricing-table .plan-button.ghost{background:var(--po5sy-surface);color:var(--po5sy-primary);border:1px solid var(--po5sy-primary);} 

#pricing-table .repeat-proof{border:1px solid var(--po5sy-border);background:var(--po5sy-surface);border-radius:var(--radius-md, 14px);padding:1rem;}
#pricing-table .repeat-head{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;margin-bottom:0.75rem;}
#pricing-table .repeat-title{font:900 1.05rem/1.2 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);margin:0;}
#pricing-table .repeat-link{color:var(--po5sy-primary);font:800 0.95rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);text-decoration:none;border-bottom:2px solid color-mix(in oklab, var(--po5sy-primary) 35%, transparent);}
#pricing-table .repeat-link:hover{border-bottom-color:var(--po5sy-primary);} 
#pricing-table .repeat-list{display:flex;flex-direction:column;gap:0.6rem;}
#pricing-table .repeat-item{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:0.75rem;border:1px solid var(--po5sy-border);border-radius:var(--radius-sm, 10px);background:var(--po5sy-bg);} 
#pricing-table .repeat-day{font:900 0.95rem/1.1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-ink);} 
#pricing-table .repeat-desc{font:400 0.9rem/1.35 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);color:var(--po5sy-slate);margin-top:0.2rem;}
#pricing-table .repeat-action{display:inline-flex;align-items:center;justify-content:center;min-width:86px;padding:0.5rem 0.75rem;border-radius:999px;border:1px solid var(--po5sy-primary);background:var(--po5sy-surface);color:var(--po5sy-primary);text-decoration:none;font:900 0.9rem/1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);} 
#pricing-table .repeat-action:focus-visible{outline:3px solid color-mix(in oklab, var(--po5sy-primary) 50%, white);outline-offset:3px;}

#pricing-table .cta-foot{border-radius:var(--radius-md, 14px);border:1px solid var(--po5sy-border);background:var(--po5sy-surface);padding:1.1rem;}
#pricing-table .cta-title{font:900 1.2rem/1.2 var(--font-serif, 'Hoefler Text', Baskerville Old Face, Garamond, Georgia, serif);letter-spacing:-0.01em;margin:0 0 0.5rem;}
#pricing-table .cta-text{margin:0;color:var(--po5sy-slate);font:400 0.98rem/1.6 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);max-width:65ch;}
#pricing-table .cta-actions{display:flex;flex-direction:column;gap:0.7rem;margin-top:0.95rem;}
#pricing-table .secondary-cta{display:inline-flex;align-items:center;justify-content:center;width:100%;padding:0.85rem 1rem;border-radius:999px;border:1px solid var(--po5sy-primary);color:var(--po5sy-primary);text-decoration:none;background:var(--po5sy-surface);font:900 0.98rem/1.1 var(--font-sans, Georgia, Cambria, 'Times New Roman', serif);} 
#pricing-table .secondary-cta:hover{background:color-mix(in oklab, var(--po5sy-primary) 10%, var(--po5sy-surface));}
#pricing-table .secondary-cta:focus-visible{outline:3px solid color-mix(in oklab, var(--po5sy-primary) 50%, white);outline-offset:3px;}

#pricing-table *::selection{background:color-mix(in oklab, var(--po5sy-primary) 25%, white);}
@media (min-width: 640px){
  #pricing-table .wrap{grid-template-columns:repeat(12, 1fr);gap:2rem;align-items:start;}
  #pricing-table .rail-left{grid-column:2 / span 5;}
  #pricing-table .rail-right{grid-column:7 / span 6;}
  #pricing-table .cta-actions{flex-direction:row;align-items:center;}
  #pricing-table .secondary-cta{width:auto;flex:1;}
  #pricing-table .primary-cta{width:auto;flex:1;}
  #pricing-table .pricing-grid{grid-template-columns:1fr 1fr;}
}
@media (prefers-reduced-motion: reduce){
  #pricing-table .preview-link,#pricing-table .primary-cta,#pricing-table .plan-button,#pricing-table .secondary-cta,#pricing-table .repeat-action{transition:none !important;}
}

/* po5sy:studio-values */
/* po5sy:studio-values */
#studio-values{--sv-accent:var(--po5sy-primary);--sv-ink:var(--po5sy-ink);--sv-muted:var(--po5sy-slate);--sv-bg:var(--po5sy-bg);--sv-surface:var(--po5sy-surface);--sv-border:var(--po5sy-border);
background:var(--sv-bg);color:var(--sv-ink);padding:clamp(2.5rem,5vw,5rem) 0;}
#studio-values *{box-sizing:border-box;}
#studio-values .sv-shell{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);}
#studio-values .sv-rail{display:flex;flex-direction:column;gap:.75rem;}
#studio-values .sv-rail-label{max-width:42rem;}
#studio-values .sv-kicker{font-family:var(--font-sans, inherit);font-size:0.875rem;color:var(--sv-muted);letter-spacing:.08em;text-transform:uppercase;}
#studio-values .sv-title{font-family:var(--font-serif, Georgia, serif);font-size:clamp(1.5rem,3vw,2.5rem);line-height:1.12;margin:0;letter-spacing:-0.02em;text-wrap:balance;}
#studio-values .sv-grid{margin-top:clamp(1.5rem,3vw,2.5rem);display:grid;grid-template-columns:1fr;gap:1.25rem;align-items:start;}
#studio-values .sv-card{background:var(--sv-surface);border:1px solid var(--sv-border);border-radius:var(--radius-md,14px);padding:1.2rem 1.15rem;}
#studio-values .sv-card-emphasis{border-color:rgba(91,122,106,.35);box-shadow:0 10px 25px rgba(91,122,106,.12);}
#studio-values .sv-card-title{margin:0 0 .6rem 0;font-size:1.125rem;line-height:1.25;font-family:var(--font-sans, inherit);font-weight:700;color:var(--sv-ink);}
#studio-values .sv-card-body{margin:0 0 .9rem 0;max-width:65ch;color:var(--sv-muted);font-size:1rem;line-height:1.65;}
#studio-values .sv-bullets{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.5rem;}
#studio-values .sv-bullets-compact{gap:.45rem;}
#studio-values .sv-bullets li{display:flex;gap:.65rem;align-items:flex-start;color:var(--sv-ink);font-size:0.98rem;line-height:1.45;}
#studio-values .sv-bullet-mark{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:999px;background:rgba(91,122,106,.12);color:var(--po5sy-primary);border:1px solid rgba(91,122,106,.25);font-size:0.95rem;flex:0 0 auto;margin-top:.05rem;}
#studio-values .sv-divider{height:1px;background:var(--sv-border);margin:1rem 0;}
#studio-values .sv-bottom{margin-top:1.75rem;background:rgba(233,225,210,.55);border:1px solid var(--sv-border);border-radius:var(--radius-lg,18px);padding:1.25rem 1.15rem;display:flex;flex-direction:column;gap:1.15rem;}
#studio-values .sv-bottom-badge{display:inline-flex;align-items:center;gap:.55rem;font-size:0.875rem;letter-spacing:.02em;font-weight:700;color:var(--sv-ink);}
#studio-values .sv-bottom-note{max-width:68ch;}
#studio-values .sv-bottom-text{margin:.55rem 0 0 0;color:var(--sv-muted);font-size:1rem;line-height:1.65;}
#studio-values .sv-bottom-cta{display:flex;flex-direction:column;gap:.7rem;}
#studio-values .sv-link-btn{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:.85rem 1rem;border-radius:var(--radius-md,14px);background:var(--po5sy-primary);color:#fff;text-decoration:none;font-family:var(--font-sans, inherit);font-weight:700;letter-spacing:.01em;position:relative;}
#studio-values .sv-link-btn::after{content:"";position:absolute;left:18px;right:18px;bottom:12px;height:2px;background:rgba(255,255,255,.95);transform:scaleX(.9);transform-origin:left;transition:transform 150ms ease;}
#studio-values .sv-link-btn:hover::after{transform:scaleX(1);}
#studio-values .sv-ghost-btn{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:.85rem 1rem;border-radius:var(--radius-md,14px);border:2px solid rgba(91,122,106,.35);background:var(--sv-surface);color:var(--po5sy-primary);text-decoration:none;font-family:var(--font-sans, inherit);font-weight:700;}
#studio-values .sv-link-btn:focus-visible,#studio-values .sv-ghost-btn:focus-visible{outline:3px solid rgba(200,137,47,.45);outline-offset:3px;}
#studio-values .sv-ghost-btn:hover{border-color:rgba(200,137,47,.7);color:var(--sv-ink);}
#studio-values .sv-link-btn:active,#studio-values .sv-ghost-btn:active{transform:translateY(1px);}
#studio-values ::selection{background:rgba(200,137,47,.35);}
@media (min-width:768px){
  #studio-values .sv-rail{max-width:none;}
  #studio-values .sv-title{max-width:42rem;}
  #studio-values .sv-grid{grid-template-columns:1fr 1fr;gap:1.4rem;}
  #studio-values .sv-card:nth-child(3){grid-column:1 / -1;}
  #studio-values .sv-bottom{flex-direction:row;align-items:center;justify-content:space-between;}
  #studio-values .sv-bottom-cta{flex-direction:row;gap:1rem;}
  #studio-values .sv-link-btn,#studio-values .sv-ghost-btn{min-width:220px;}
}
@media (min-width:1024px){
  #studio-values{padding:clamp(3.25rem,6vw,7rem) 0;}
  #studio-values .sv-grid{grid-template-columns:repeat(12,1fr);}
  #studio-values .sv-card{grid-column:span 4;}
  #studio-values .sv-card-emphasis{grid-column:span 4;}
  #studio-values .sv-card:nth-child(3){grid-column:span 4;}
  #studio-values .sv-bottom{padding:1.35rem 1.2rem;}
  #studio-values .sv-bottom-note{max-width:68ch;}
}
@media (prefers-reduced-motion:reduce){
  #studio-values .sv-link-btn::after{transition:none;}
  #studio-values .sv-link-btn:active,#studio-values .sv-ghost-btn:active{transform:none;}
}

/* po5sy:cta-book */
/* po5sy:cta-book */
#cta-book.cta-band{background:var(--po5sy-bg);border-top:1px solid var(--po5sy-border);padding:clamp(1.75rem,4vw,3rem) 0;}
#cta-book.cta-band .cta-band__inner{max-width:72rem;margin:0 auto;padding:0 clamp(1rem,4vw,3rem);display:grid;grid-template-columns:1fr;gap:1.25rem;align-items:start;}
#cta-book.cta-band .cta-band__copy{max-width:65ch;}
#cta-book.cta-band .cta-band__title{font-family:var(--section-serif, 'Hoefler Text, Baskerville Old Face, Garamond, Georgia, serif');font-size:clamp(1.6rem,3vw,2.25rem);line-height:1.08;letter-spacing:-0.02em;margin:0 0 0.6rem 0;color:var(--po5sy-ink);text-wrap:balance;}
#cta-book.cta-band .cta-band__text{margin:0;color:var(--po5sy-text);font-size:1rem;line-height:1.6;}
#cta-book.cta-band .cta-band__trust{display:flex;flex-wrap:wrap;gap:0.5rem;margin-top:1rem;}
#cta-book.cta-band .chip{display:inline-flex;align-items:center;gap:0.5rem;padding:0.55rem 0.75rem;border-radius:999px;border:1px solid var(--po5sy-border);background:var(--po5sy-surface);color:var(--po5sy-text);font-size:0.875rem;line-height:1;}
#cta-book.cta-band .cta-band__actions{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius,14px);padding:1.1rem;}
#cta-book.cta-band .primary-button{display:inline-block;width:100%;text-align:center;padding:0.95rem 1rem;border-radius:var(--radius,14px);background:var(--po5sy-primary);color:#fff;font-family:inherit;text-decoration:none;font-weight:700;letter-spacing:0.01em;border:1px solid var(--po5sy-primary);}
#cta-book.cta-band .primary-button:focus-visible{outline:3px solid color-mix(in srgb, var(--po5sy-secondary) 45%, transparent);outline-offset:2px;}
#cta-book.cta-band .primary-button:hover{background:color-mix(in srgb, var(--po5sy-primary) 88%, #000 12%);}
#cta-book.cta-band .primary-button{position:relative;}
#cta-book.cta-band .primary-button::after{content:"";position:absolute;left:18px;right:18px;bottom:14px;height:2px;background:rgba(255,255,255,0.85);transform:scaleX(0);transform-origin:left;transition:transform 150ms ease;}
#cta-book.cta-band .primary-button:hover::after,#cta-book.cta-band .primary-button:focus-visible::after{transform:scaleX(1);}
#cta-book.cta-band .secondary-button{display:inline-block;margin-top:0.75rem;width:100%;text-align:center;padding:0.85rem 1rem;border-radius:var(--radius,14px);border:1px solid var(--po5sy-primary);background:transparent;color:var(--po5sy-primary);text-decoration:none;font-weight:700;}
#cta-book.cta-band .secondary-button:focus-visible{outline:3px solid color-mix(in srgb, var(--po5sy-secondary) 45%, transparent);outline-offset:2px;}
#cta-book.cta-band .secondary-button:hover{background:color-mix(in srgb, var(--po5sy-primary) 10%, var(--po5sy-surface));}
#cta-book.cta-band .cta-band__micro{margin:0.75rem 0 0 0;color:var(--po5sy-slate);font-size:0.875rem;line-height:1.5;}
#cta-book.cta-band .cta-band__actions{position:relative;}
#cta-book.cta-band .cta-band__actions::before{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;border:2px solid transparent;}
#cta-book.cta-band .cta-band__actions:focus-within{box-shadow:0 0 0 4px color-mix(in srgb, var(--po5sy-primary) 22%, transparent);} 
@media (min-width:768px){
  #cta-book.cta-band .cta-band__inner{grid-template-columns:repeat(12,1fr);gap:1.5rem;}
  #cta-book.cta-band .cta-band__copy{grid-column:2/7;}
  #cta-book.cta-band .cta-band__actions{grid-column:7/13;align-self:center;padding:1.25rem;}
}
@media (prefers-reduced-motion:reduce){
  #cta-book.cta-band .primary-button::after{transition:none;}
}
#cta-book.cta-band ::selection{background:color-mix(in srgb, var(--po5sy-secondary) 30%, transparent);}

/* Design system variables */
.policy-page{background:var(--po5sy-bg);color:var(--po5sy-text);font-family:var(--po5sy-font);} 
.policy-wrap{max-width:920px;margin:0 auto;padding:28px 18px 40px 18px;}
.policy-header{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-lg);padding:22px 20px;margin-bottom:18px;}
.policy-title{margin:0 0 10px 0;font-family:var(--po5sy-font-display);font-size:34px;line-height:1.15;color:var(--po5sy-ink);}
.policy-lead{margin:0;font-size:16px;line-height:1.6;color:var(--po5sy-slate);} 
.policy-section{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-md);padding:18px 18px;margin:14px 0;}
.policy-h2{margin:0 0 10px 0;font-size:20px;line-height:1.3;color:var(--po5sy-ink);}
.policy-p{margin:10px 0 0 0;font-size:15px;line-height:1.7;color:var(--po5sy-text);} 
.policy-strong{font-weight:700;color:var(--po5sy-ink);} 
.policy-list{margin:10px 0 0 18px;padding:0;color:var(--po5sy-text);} 
.policy-list li{margin:6px 0;font-size:15px;line-height:1.7;} 
.policy-label{font-weight:700;color:var(--po5sy-slate);} 
.policy-link{color:var(--po5sy-primary);text-decoration:underline;}
.policy-link:hover{color:var(--po5sy-secondary);} 
.policy-footer{margin-top:18px;background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-lg);padding:18px 18px;}
.policy-footer-inner{padding:6px 0 2px 0;}
.policy-footer-title{margin:0 0 10px 0;font-size:18px;line-height:1.3;color:var(--po5sy-ink);} 
.policy-footer-p{margin:8px 0 0 0;font-size:14.5px;}
@media (max-width:520px){.policy-title{font-size:28px;}.policy-section{padding:16px 14px;}.policy-header{padding:18px 14px;}.policy-wrap{padding:22px 14px 34px 14px;}}
.policy-page{background:var(--po5sy-bg);color:var(--po5sy-text);padding:24px 14px;font-family:var(--po5sy-font)}
.policy-container{max-width:980px;margin:0 auto;padding:18px 18px 26px 18px;background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-lg);box-shadow:0 1px 0 rgba(0,0,0,0.03)}
.policy-header{padding:6px 2px 14px 2px;border-bottom:1px solid var(--po5sy-border)}
.policy-title{margin:0 0 8px 0;font-size:30px;line-height:1.15;color:var(--po5sy-ink);font-family:var(--po5sy-font-display);font-weight:700}
.policy-lead{margin:0;color:var(--po5sy-slate);font-size:15.5px;line-height:1.55}
.policy-section{padding:14px 2px;border-bottom:1px solid var(--po5sy-border)}
.policy-section:last-of-type{border-bottom:none}
.policy-h2{margin:0 0 8px 0;font-size:18px;line-height:1.3;color:var(--po5sy-ink);font-family:var(--po5sy-font-display);font-weight:700}
.policy-p{margin:0 0 10px 0;font-size:14.5px;line-height:1.65;color:var(--po5sy-text)}
.policy-legal{margin-top:10px;padding:10px 12px;background:var(--po5sy-bg);border:1px solid var(--po5sy-border);border-radius:var(--radius-md);color:var(--po5sy-slate)}
.policy-contact{margin-top:10px;padding:12px;border:1px solid var(--po5sy-border);border-radius:var(--radius-md);background:var(--po5sy-bg)}
.policy-contact-item{padding:7px 0;border-bottom:1px dashed rgba(0,0,0,0.08);font-size:14.5px;line-height:1.5}
.policy-contact-item:last-child{border-bottom:none}
.policy-contact-label{display:inline-block;min-width:175px;color:var(--po5sy-slate);font-weight:700}
.policy-contact-value{color:var(--po5sy-text)}
.policy-link{color:var(--po5sy-primary);text-decoration:none;border-bottom:1px solid rgba(91,122,106,0.35)}
.policy-link:hover{color:var(--po5sy-accent);border-bottom-color:rgba(200,137,47,0.6)}
.policy-footer{padding:14px 2px 0 2px}
.policy-footer-note{margin:6px 0 0 0;color:var(--po5sy-slate);font-size:13.5px;line-height:1.5}
.policy-page{background:var(--po5sy-bg);color:var(--po5sy-text);min-height:100vh;}
.policy-wrap{max-width:980px;margin:0 auto;padding:28px 18px 40px 18px;}
.policy-title{font-family:var(--po5sy-font-display);font-size:34px;line-height:1.15;margin:0 0 14px 0;color:var(--po5sy-ink);letter-spacing:0.2px;}
.policy-intro{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-lg);padding:18px 16px;margin:0 0 18px 0;}
.policy-lead{margin:0 0 10px 0;font-size:15.5px;line-height:1.6;color:var(--po5sy-ink);} 
.policy-lead:last-child{margin-bottom:0;}
.policy-section{background:var(--po5sy-surface);border:1px solid var(--po5sy-border);border-radius:var(--radius-lg);padding:18px 16px;margin:0 0 14px 0;}
.policy-h2{font-family:var(--po5sy-font-display);font-size:18px;line-height:1.3;margin:0 0 10px 0;color:var(--po5sy-primary);}
.policy-p{margin:0 0 12px 0;font-size:15.5px;line-height:1.7;color:var(--po5sy-ink);} 
.policy-p:last-child{margin-bottom:0;}
.policy-list{margin:0;padding:0 0 0 18px;}
.policy-li{margin:0 0 8px 0;font-size:15.5px;line-height:1.6;color:var(--po5sy-ink);} 
.policy-li:last-child{margin-bottom:0;}
.policy-contact-grid{display:block;margin-top:8px;}
.policy-contact-item{padding:10px 12px;border:1px solid var(--po5sy-border);border-radius:var(--radius-md);background:var(--po5sy-surface);margin:0 0 10px 0;}
.policy-contact-item:last-child{margin-bottom:0;}
.policy-contact-label{display:block;font-weight:700;color:var(--po5sy-slate);font-size:13px;letter-spacing:0.2px;text-transform:none;margin:0 0 4px 0;}
.policy-contact-value{display:block;font-size:15.5px;line-height:1.6;color:var(--po5sy-ink);} 
.policy-legal-note{border-left:4px solid var(--po5sy-secondary);padding:10px 12px;margin-top:12px;background:linear-gradient(0deg, rgba(200,137,47,0.07), rgba(200,137,47,0.07));border-radius:var(--radius-md);}
.policy-footer{margin-top:10px;padding:12px 4px 0 4px;}
.policy-footnote{font-size:13.5px;line-height:1.6;color:var(--po5sy-slate);margin:0 0 10px 0;}
.policy-footnote:last-child{margin-bottom:0;}
@media (min-width:860px){.policy-wrap{padding:34px 18px 50px 18px;}.policy-title{font-size:40px;}.policy-section{padding:20px 18px;}}

:root{--po5sy-primary:#5B7A6A;--po5sy-secondary:#C8892F;--po5sy-accent:#5B7A6A;--po5sy-ink:#121212;--po5sy-slate:#5A5A5A;--po5sy-mist:#E9E1D2;--po5sy-border:#E4DDD2;--po5sy-surface:#FFFFFF;--po5sy-bg:#F7F3EC;--po5sy-text:#121212;--po5sy-font:Georgia, Cambria, 'Times New Roman', serif;--po5sy-font-display:'Hoefler Text', 'Baskerville Old Face', Garamond, Georgia, serif;}*{box-sizing:border-box;}html,body{height:100%;}body{margin:0;background:var(--po5sy-bg);color:var(--po5sy-text);font-family:var(--po5sy-font);line-height:1.5;}a{color:var(--po5sy-primary);text-decoration:underline;}a:hover{color:var(--po5sy-accent);} .thanks-page{min-height:100%;display:block;padding:18px 14px 28px;} .policy-content{max-width:980px;margin:0 auto;padding:22px 18px;border:1px solid var(--po5sy-border);background:var(--po5sy-surface);border-radius:var(--radius-lg); } .policy-header{padding:6px 2px 14px;border-bottom:1px solid var(--po5sy-border);} .policy-title{margin:0 0 8px 0;font-family:var(--po5sy-font-display);font-size:34px;line-height:1.15;color:var(--po5sy-ink);} .policy-lead{margin:0;color:var(--po5sy-slate);font-size:16px;} .policy-section{padding:16px 0;border-bottom:1px solid var(--po5sy-border);} .policy-section:last-child{border-bottom:none;} .policy-subtitle{margin:0 0 10px 0;font-size:18px;color:var(--po5sy-ink);} .policy-paragraph{margin:0 0 10px 0;color:var(--po5sy-text);} .policy-muted{color:var(--po5sy-slate);} .policy-list{margin:0;padding-left:18px;} .policy-list-item{margin:6px 0;color:var(--po5sy-text);} .policy-footer{padding-top:18px;} .footer-grid{display:block;} .footer-block{margin:0 0 14px 0;padding:14px;border:1px solid var(--po5sy-border);border-radius:var(--radius-md);background:linear-gradient(180deg, rgba(233,225,210,0.25), rgba(233,225,210,0));} .footer-title{margin:0 0 8px 0;font-size:16px;color:var(--po5sy-ink);} .footer-text{margin:0 0 8px 0;color:var(--po5sy-slate);} .footer-text:last-child{margin-bottom:0;} .footer-link{text-decoration:underline;} .footer-note{margin-top:10px;padding:12px 14px;border-radius:var(--radius-md);border:1px solid var(--po5sy-border);background:rgba(233,225,210,0.25);color:var(--po5sy-slate);} @media (min-width:860px){.thanks-page{padding:28px 18px 40px;}.policy-content{padding:28px 26px;}.footer-grid{display:flex;gap:14px;}.footer-block{flex:1;margin-bottom:0;}}
section[data-po5sy-cgk]:not([data-po5sy-cgk='header']):not([data-po5sy-cgk='footer']) { position: relative; }
section[data-po5sy-cgk]:not([data-po5sy-cgk='header']):not([data-po5sy-cgk='footer']) { border-top: 1px solid var(--po5sy-border); }
section[data-po5sy-cgk]:not([data-po5sy-cgk='header']) h1,section[data-po5sy-cgk]:not([data-po5sy-cgk='header']) h2 { max-width: 20ch; letter-spacing: -0.035em; }
section[data-po5sy-cgk]:nth-of-type(even)::before { content: ''; position: absolute; top: 0; left: 0; width: 5rem; border-top: 3px solid var(--po5sy-accent); }
:root {
  --po5sy-c-content-width: 72rem;
  --po5sy-c-gutter: clamp(1rem, 4vw, 3rem);
  --po5sy-c-measure: 65ch;
  --po5sy-c-heading-display: clamp(2.5rem, 6vw, 5.5rem);
}
[data-po5sy-dr] { scroll-margin-top: 1.5rem; }
main > section, main [data-po5sy-cgk] { padding-inline: var(--po5sy-c-gutter); }
[data-po5sy-dr*='article'], [data-po5sy-dr*='review'] { max-width: var(--po5sy-c-measure); }
h1 { font-size: var(--po5sy-c-heading-display); }
@media (max-width: 768px) { [data-po5sy-dr] { min-width: 0; } }