/* CareNotes /sample3/morning-huddle : detail page styles layered on sample3.css */

:root { --sun: #f7a54a; --sun-deep: #e8862b; --sun-soft: #ffd27a; }

/* ---------------- HERO ---------------- */
.mh-hero {
    margin-top: -76px; padding: 150px 22px 0; text-align: center; overflow: hidden;
    background: linear-gradient(180deg, #fff7ea 0%, #fbe7c6 45%, #f6c98f 100%);
    color: #1d1d1f;
}
.mh-hero .eyebrow, .detail .eyebrow { color: var(--sun-deep); }
.mh-hero h1 {
    margin: 10px auto 0; max-width: 900px;
    font-size: clamp(40px, 6vw, 76px); font-weight: 700; line-height: 1.04; letter-spacing: -.015em; text-wrap: balance;
}
.mh-hero .lede {
    margin: 18px auto 0; max-width: 640px; font-size: clamp(18px, 2vw, 23px); line-height: 1.35;
    color: #5b4a33; letter-spacing: -.01em; text-wrap: balance;
}
.mh-hero .ctas { margin-top: 26px; }
.mh-hero .btn-fill { background: #1d1d1f; color: #fff; }
.mh-hero .btn-line { color: #1d1d1f; box-shadow: inset 0 0 0 1px #1d1d1f; }
.mh-hero .btn-line:hover { background: #1d1d1f; color: #fff; }

.mh-stage { position: relative; height: 620px; margin: 40px auto 0; width: min(1000px, 100%); }
.mh-stage .sunrise {
    background: radial-gradient(55% 60% at 50% 100%, rgba(247, 165, 74, .8) 0, rgba(240, 192, 74, .38) 40%, rgba(240, 192, 74, 0) 72%);
}
.mh-stage .sun { bottom: 60px; }
.mh-stage .phone { position: absolute; left: 50%; top: 0; transform: translateX(-50%); }
.mh-stage .huddle-card {
    left: calc(50% - 470px); top: 80px; color: #1d1d1f;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 40px 80px -40px rgba(120, 70, 10, .45), inset 0 1px 0 rgba(255, 255, 255, .9), 0 0 0 1px rgba(0, 0, 0, .04);
}
.mh-stage .hc-head { color: var(--sun-deep); }
.mh-stage .hc-sub { color: #7a6a52; }
.mh-stage .hc-chip { background: rgba(0, 0, 0, .06); color: #4b3f2f; }
.mh-stage .hc-line i { background: linear-gradient(90deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .14), rgba(0, 0, 0, .06)); background-size: 200% 100%; }
.is-play .mh-stage .hc-chip { animation-name: chipHiLight; }
.is-play .mh-stage .hc-chip:first-child { animation-name: chipHiLightFirst; }
@keyframes chipHiLight {
    0%, 4% { background: rgba(0, 0, 0, .06); color: #4b3f2f; }
    8%, 18% { background: var(--sun); color: #1d1d1f; }
    24%, 100% { background: rgba(0, 0, 0, .06); color: #4b3f2f; }
}
@keyframes chipHiLightFirst {
    0%, 4% { background: rgba(0, 0, 0, .06); color: #4b3f2f; }
    8%, 18% { background: var(--sun); color: #1d1d1f; }
    24%, 80% { background: rgba(0, 0, 0, .06); color: #4b3f2f; }
    90%, 100% { background: var(--sun); color: #1d1d1f; }
}
.mh-stage .paper { box-shadow: 0 50px 100px -40px rgba(120, 70, 10, .55), 0 0 0 1px rgba(0, 0, 0, .05); }
.mh-hero .replay { background: rgba(0, 0, 0, .08); color: #1d1d1f; }

/* ---------------- PHOTO ---------------- */
.mh-photo { background: #000; }
.mh-photo figure { position: relative; margin: 0; max-height: 720px; overflow: hidden; }
.mh-photo img { width: 100%; height: 100%; max-height: 720px; object-fit: cover; display: block; }
.mh-photo figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 120px 22px 34px; text-align: center; color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .55) 100%);
}
.mh-photo figcaption strong { display: block; font-size: clamp(22px, 2.8vw, 34px); font-weight: 600; letter-spacing: -.01em; }
.mh-photo figcaption span { display: block; margin-top: 6px; font-size: 15px; color: rgba(255, 255, 255, .8); }

/* ---------------- TIMELINE ---------------- */
.mh-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; text-align: left; }
.mh-step { position: relative; background: #f5f5f7; border-radius: 22px; padding: 26px 24px 28px; }
.detail-alt .mh-step { background: #fff; }
.mh-step .when { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sun-deep); }
.mh-step h4 { margin-top: 10px; font-size: 21px; font-weight: 600; letter-spacing: -.01em; }
.mh-step p { margin-top: 8px; font-size: 15px; line-height: 1.5; color: #6e6e73; letter-spacing: -.01em; }
.mh-step .ico {
    width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--sun-soft), var(--sun)); color: #1d1d1f;
}

/* ---------------- BRIEF ANATOMY ---------------- */
.mh-brief { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; margin-top: 44px; text-align: left; }
.brief-card {
    background: #fff; border-radius: 22px; padding: 20px 20px 18px;
    box-shadow: 0 30px 60px -36px rgba(0, 0, 0, .35), 0 0 0 1px rgba(0, 0, 0, .05);
}
.brief-head { display: flex; align-items: baseline; gap: 12px; }
.brief-head .time { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; color: #6e6e73; }
.brief-head .name { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.brief-head .bday { margin-left: auto; font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 980px; background: #ffe7c2; color: #a4560f; }
.brief-proc { margin-top: 4px; font-size: 13px; color: #86868b; }
.brief-row { margin-top: 12px; padding: 12px 14px; border-radius: 14px; font-size: 14px; line-height: 1.45; }
.brief-row b { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.row-check { background: #fff1e6; color: #4b2f13; } .row-check b { color: #c2410c; }
.row-clin { background: #e9f1ff; color: #1e3a5f; } .row-clin b { color: #1d4ed8; }
.row-rem { background: #eefaf0; color: #1f4d2b; } .row-rem b { color: #15803d; }
.row-lab { background: #f3efff; color: #3b2a6b; } .row-lab b { color: #6d28d9; }
.mh-brief-copy h4 { font-size: 21px; font-weight: 600; letter-spacing: -.01em; }
.mh-brief-copy li { margin-top: 14px; font-size: 16px; line-height: 1.5; color: #424245; letter-spacing: -.01em; list-style: none; padding-left: 26px; position: relative; }
.mh-brief-copy li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 50%; background: var(--sun); }

/* ---------------- PRINTABLE ---------------- */
.mh-print { background: #1d1d1f; color: #f5f5f7; }
.mh-print .eyebrow { color: var(--sun-soft); }
.mh-print h3 { color: #f5f5f7; }
.mh-print .lede { margin: 14px auto 0; max-width: 620px; font-size: 17px; line-height: 1.47; color: #a1a1a6; letter-spacing: -.01em; }
.mh-print .ctas .btn-fill { background: #f5f5f7; color: #1d1d1f; }
.mh-print .ctas button.btn { background: transparent; border: 0; cursor: pointer; font-family: inherit; }
.mh-print .ctas .btn-line { color: #f5f5f7; box-shadow: inset 0 0 0 1px #f5f5f7; }
.mh-print .ctas .btn-line:hover { background: #f5f5f7; color: #1d1d1f; }
.sheet-wrap { margin: 48px auto -170px; width: min(720px, 100%); position: relative; }
.sheet {
    background: #fff; color: #1d1d1f; border-radius: 6px; text-align: left;
    padding: 56px 60px 64px; font-family: var(--font); font-size: 13.5px; line-height: 1.5;
    box-shadow: 0 60px 120px -50px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .06);
    aspect-ratio: 8.5 / 11; overflow: hidden;
}
.sheet h6 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; padding-bottom: 10px; margin: 0 0 18px; border-bottom: 2px solid #1d1d1f; }
.sheet p { margin: 0; }
.sheet .pt { font-size: 15px; font-weight: 700; margin: 18px 0 4px; }
.sheet .pi { padding-left: 22px; }
.sheet-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 180px; background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 80%); border-radius: 0 0 6px 6px; }
.sheet-note { position: absolute; left: 0; right: 0; bottom: 34px; text-align: center; font-size: 13px; color: #6e6e73; }

/* ---------------- AVAILABILITY ---------------- */
.mh-req { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; text-align: left; }
.pms-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.pms-pill { font-size: 14px; font-weight: 600; padding: 9px 14px; border-radius: 980px; background: #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, .08); }
.pms-pill small { font-weight: 500; color: #86868b; }

#availability .btn-fill { background: #1d1d1f; color: #fff; }
#availability .btn-fill:hover { background: #2563eb; }
#availability .btn-line { color: #1d1d1f; box-shadow: inset 0 0 0 1px #1d1d1f; }
#availability .btn-line:hover { background: #1d1d1f; color: #fff; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1068px) {
    .mh-stage .huddle-card { left: 12px; width: 260px; }
}
@media (max-width: 734px) {
    .mh-hero { padding-top: 120px; }
    .mh-stage { height: 540px; }
    .mh-stage .huddle-card { display: none; }
    .mh-stage .paper { left: calc(50% + 70px); width: 180px; height: 330px; top: 60px; }
    .mh-steps, .mh-req { grid-template-columns: 1fr; }
    .mh-brief { grid-template-columns: 1fr; gap: 28px; }
    .sheet { padding: 32px 26px 40px; font-size: 12.5px; }
    .sheet h6 { font-size: 15px; }
    .sheet-wrap { margin-bottom: -140px; }
    .mh-photo figcaption { padding-top: 80px; }
}

/* ---------------- PRINT ---------------- */
@media print {
    header, .mh-hero, .mh-photo, .detail:not(.mh-print), .gfoot, .replay, .sheet-fade, .sheet-note, .mh-print .ctas, .mh-print .eyebrow, .mh-print h3, .mh-print .lede { display: none !important; }
    body, .mh-print { background: #fff !important; color: #000 !important; }
    .mh-print { padding: 0 !important; }
    .sheet-wrap { margin: 0; width: auto; }
    .sheet { box-shadow: none; border-radius: 0; padding: 0; aspect-ratio: auto; overflow: visible; }
    .r { opacity: 1 !important; transform: none !important; }
}
