:root {
    --bc-bg: #fffaf5;
    --bc-paper: rgba(255, 255, 255, 0.82);
    --bc-paper-solid: #ffffff;
    --bc-ink: #13212b;
    --bc-muted: #5b6b75;
    --bc-line: rgba(19, 33, 43, 0.10);
    --bc-accent: #0f9bb4;
    --bc-accent-2: #e46d3b;
    --bc-rose: #f7ded1;
    --bc-gold: #efd7a6;
    --bc-shadow: 0 30px 70px rgba(17, 31, 43, 0.12);
    --bc-shadow-soft: 0 12px 28px rgba(17, 31, 43, 0.08);
    --bc-radius: 28px;
    --bc-radius-sm: 18px;
    --bc-radius-xs: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.babysittingcalgary-modern-site {
    margin: 0;
    color: var(--bc-ink);
    background:
        radial-gradient(circle at top left, rgba(15, 155, 180, 0.15), transparent 35%),
        radial-gradient(circle at right top, rgba(228, 109, 59, 0.13), transparent 30%),
        linear-gradient(180deg, #fffaf5 0%, #fff7ef 48%, #fffdfb 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.65;
}

a {
    color: var(--bc-accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
}

a:hover {
    color: var(--bc-accent-2);
}

img {
    max-width: 100%;
    height: auto;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    left: -9999px;
}

.site-shell {
    max-width: 1360px;
    margin: 24px auto 32px;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(20px);
    box-shadow: var(--bc-shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    overflow: hidden;
}

.site-header {
    padding: 24px 28px 0;
}

.site-header__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 20px;
    align-items: center;
    padding: 4px 0 22px;
}

.site-brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.site-brand__mark {
    grid-row: 1 / span 3;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(17, 31, 43, 0.12);
}

.site-brand__mark img {
    display: block;
    width: 100%;
    height: 100%;
}

.site-brand__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--bc-muted);
}

.site-brand__title {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 3vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.site-brand__sub {
    color: var(--bc-muted);
    font-size: 0.98rem;
}

.site-header__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    font-size: 0.95rem;
    color: var(--bc-muted);
}

.site-header__meta a {
    color: inherit;
    text-decoration: none;
}

.site-header__cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.site-nav {
    padding: 12px 18px;
    margin: 0 -4px 0;
    border-top: 1px solid var(--bc-line);
    border-bottom: 1px solid var(--bc-line);
}

.site-nav__list,
.site-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-nav__list::-webkit-scrollbar {
    display: none;
}

.site-nav__list a,
.site-footer__menu a {
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bc-ink);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--bc-line);
}

.site-nav__list a:hover,
.site-footer__menu a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
    background: var(--bc-accent);
    color: #fff;
    border-color: transparent;
}

.site-content {
    padding: 0 28px 32px;
}

.page-article {
    padding: 0;
}

.page-hero,
.bc-section,
.bc-panel {
    margin-top: 24px;
}

.page-hero {
    position: relative;
    border-radius: var(--bc-radius);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(19, 33, 43, 0.96), rgba(19, 33, 43, 0.76)),
        radial-gradient(circle at top right, rgba(15, 155, 180, 0.35), transparent 30%),
        radial-gradient(circle at left bottom, rgba(228, 109, 59, 0.28), transparent 26%);
    color: #fff;
    box-shadow: var(--bc-shadow);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    padding: clamp(42px, 6vw, 92px);
    display: grid;
    gap: 18px;
}

.page-hero__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.82);
}

.page-hero__title {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    max-width: 13ch;
}

.page-hero__lead {
    margin: 0;
    max-width: 44rem;
    font-size: clamp(1.02rem, 1.3vw, 1.18rem);
    color: rgba(255, 255, 255, 0.88);
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.page-hero--split {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.95) 0%, rgba(19, 33, 43, 0.80) 52%, rgba(19, 33, 43, 0.52) 100%),
        url('../img/children_crafting-3593x1775.jpg') center/cover no-repeat;
}

.page-hero--split-alt {
    background:
        linear-gradient(115deg, rgba(19, 33, 43, 0.95) 0%, rgba(19, 33, 43, 0.82) 50%, rgba(19, 33, 43, 0.50) 100%),
        url('../img/earth_hands-3840x1438.jpg') center/cover no-repeat;
}

.page-hero--text .page-hero__inner {
    text-align: center;
    justify-items: center;
}

.page-hero--text .page-hero__lead {
    max-width: 52rem;
}

.bc-section,
.bc-panel {
    background: var(--bc-paper);
    border: 1px solid rgba(19, 33, 43, 0.08);
    border-radius: var(--bc-radius);
    box-shadow: var(--bc-shadow-soft);
    padding: clamp(24px, 4vw, 42px);
}

.bc-section--tight {
    padding: clamp(20px, 3vw, 30px);
}

.bc-section--stack {
    display: grid;
    gap: 18px;
}

.bc-eyebrow,
.bc-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    color: var(--bc-muted);
}

.bc-intro {
    display: grid;
    gap: 14px;
}

.bc-intro > h2,
.bc-section > h2,
.bc-panel > h2 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
}

.bc-intro > p,
.bc-section > p,
.bc-panel > p {
    margin: 0;
    color: var(--bc-muted);
}

.bc-grid {
    display: grid;
    gap: 18px;
}

.bc-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bc-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bc-card {
    background: var(--bc-paper-solid);
    border: 1px solid var(--bc-line);
    border-radius: var(--bc-radius-sm);
    padding: 24px;
    box-shadow: 0 10px 24px rgba(17, 31, 43, 0.05);
}

.section-panel {
    background: var(--bc-paper-solid);
    border: 1px solid var(--bc-line);
    border-radius: var(--bc-radius-sm);
    padding: 24px;
    box-shadow: 0 10px 24px rgba(17, 31, 43, 0.05);
}

.section-panel--accent {
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.bc-media-card {
    padding: 0;
    overflow: hidden;
}

.bc-media-card .wp-block-image {
    margin: 0;
}

.bc-media-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.bc-media-card__caption {
    margin: 0;
    padding: 18px 20px 22px;
    color: var(--bc-muted);
}

.bc-badge-card {
    display: grid;
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.bc-badge-card .wp-block-image {
    margin: 0;
    justify-self: center;
}

.bc-badge-card img {
    display: block;
    width: min(280px, 100%);
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.bc-badge-card__content {
    display: grid;
    gap: 14px;
}

.bc-section--compact {
    padding-top: clamp(18px, 3vw, 28px);
    padding-bottom: clamp(18px, 3vw, 28px);
}

.bc-testimonial-card {
    display: grid;
    gap: 14px;
}

.bc-testimonial-card__label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: var(--bc-muted);
}

.bc-testimonial-card__quote {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.18;
    color: var(--bc-ink);
}

.bc-testimonial-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: baseline;
}

.bc-testimonial-card__meta p {
    margin: 0;
    color: var(--bc-muted);
    font-size: 0.95rem;
}

.bc-card--accent {
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.bc-card__eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: var(--bc-muted);
}

.bc-card h3,
.bc-card h4 {
    margin: 0 0 10px;
    font-family: "Fraunces", serif;
    line-height: 1.05;
}

.section-panel h2,
.section-panel h3,
.section-panel h4 {
    margin: 0 0 10px;
    font-family: "Fraunces", serif;
    line-height: 1.05;
}

.bc-card p {
    margin: 0;
    color: var(--bc-muted);
}

.section-panel p {
    margin: 0;
    color: var(--bc-muted);
}

.bc-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--bc-muted);
}

.section-panel ul {
    margin: 0;
    padding-left: 18px;
    color: var(--bc-muted);
}

.bc-card li + li {
    margin-top: 8px;
}

.section-panel li + li {
    margin-top: 8px;
}

.bc-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bc-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 155, 180, 0.10);
    color: var(--bc-ink);
    border: 1px solid rgba(15, 155, 180, 0.16);
    font-size: 0.92rem;
}

.schedule-section {
    display: grid;
    gap: 18px;
}

.schedule-card {
    background: var(--bc-paper-solid);
    border: 1px solid var(--bc-line);
    border-radius: var(--bc-radius-sm);
    padding: 24px;
    box-shadow: 0 10px 24px rgba(17, 31, 43, 0.05);
    display: grid;
    gap: 18px;
}

.schedule-card--accent {
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.schedule-card__intro {
    display: grid;
    gap: 14px;
}

.schedule-card__intro > h2 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
}

.schedule-card__intro > p {
    margin: 0;
    color: var(--bc-muted);
}

.schedule-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule-legend p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    white-space: nowrap;
}

.schedule-tag--zoom {
    background: rgba(15, 155, 180, 0.22);
    color: #075967;
    border-color: rgba(15, 155, 180, 0.30);
}

.schedule-tag--sw {
    background: rgba(86, 148, 109, 0.24);
    color: #274d36;
    border-color: rgba(86, 148, 109, 0.30);
}

.schedule-tag--se {
    background: rgba(228, 109, 59, 0.23);
    color: #8e3512;
    border-color: rgba(228, 109, 59, 0.30);
}

.schedule-tag--invermere {
    background: rgba(143, 104, 194, 0.24);
    color: #553188;
    border-color: rgba(143, 104, 194, 0.30);
}

.schedule-tag--fireside {
    background: rgba(230, 127, 164, 0.24);
    color: #8f2f57;
    border-color: rgba(230, 127, 164, 0.30);
}

.schedule-tag--generic {
    background: rgba(91, 107, 117, 0.20);
    color: #39454d;
    border-color: rgba(91, 107, 117, 0.26);
}

.schedule-tag--status {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
}

.schedule-tag--full {
    background: rgba(35, 46, 55, 0.16);
    color: #1f2830;
    border-color: rgba(35, 46, 55, 0.22);
}

.schedule-tag--waitlist {
    background: rgba(239, 215, 166, 0.30);
    color: #72520f;
    border-color: rgba(239, 215, 166, 0.44);
}

.schedule-row--zoom td {
    background: rgba(15, 155, 180, 0.06);
}

.schedule-row--sw td {
    background: rgba(86, 148, 109, 0.07);
}

.schedule-row--se td {
    background: rgba(228, 109, 59, 0.07);
}

.schedule-row--invermere td {
    background: rgba(143, 104, 194, 0.07);
}

.schedule-row--fireside td {
    background: rgba(230, 127, 164, 0.08);
}

.schedule-row--generic td {
    background: rgba(91, 107, 117, 0.06);
}

.schedule-row--status-full td:last-child {
    background-image: linear-gradient(90deg, rgba(35, 46, 55, 0.08), rgba(35, 46, 55, 0.12));
}

.schedule-row--status-waitlist td:last-child {
    background-image: linear-gradient(90deg, rgba(239, 215, 166, 0.14), rgba(239, 215, 166, 0.20));
}

.schedule-table {
    margin: 0;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--bc-line);
    border-radius: 18px;
    overflow: hidden;
}

.schedule-table thead {
    background: rgba(15, 155, 180, 0.08);
}

.schedule-table th,
.schedule-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bc-line);
    text-align: left;
    vertical-align: top;
}

.schedule-table th {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bc-muted);
}

.schedule-table tbody tr:nth-child(even) {
    background: rgba(255, 248, 241, 0.70);
}

.schedule-table tbody tr:last-child td {
    border-bottom: 0;
}

.schedule-table td:first-child {
    white-space: nowrap;
    font-weight: 700;
    color: var(--bc-ink);
}

.schedule-table td:last-child {
    line-height: 1.55;
}

.schedule-table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.96);
}

.wp-element-button,
button.wp-element-button {
    border: 0;
    cursor: pointer;
}

.site-footer {
    padding: 28px;
    border-top: 1px solid rgba(19, 33, 43, 0.08);
    background: linear-gradient(180deg, rgba(19, 33, 43, 0.96), rgba(19, 33, 43, 1));
    color: rgba(255, 255, 255, 0.92);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.site-footer__eyebrow,
.site-footer__heading {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__text,
.site-footer__contact p,
.site-footer__contact a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px;
    text-decoration: none;
}

.site-footer__contact p {
    line-height: 1.6;
}

.site-footer__bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.site-footer__menu {
    display: grid;
    gap: 10px;
}

.site-footer__menu a {
    width: fit-content;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.10);
}

.page-hero--text,
.bc-panel,
.bc-section {
    position: relative;
}

@media (max-width: 1100px) {
    .site-header__top {
        grid-template-columns: 1fr auto;
    }

    .site-brand {
        grid-template-columns: 48px minmax(0, 1fr);
        column-gap: 12px;
    }

    .site-brand__mark {
        width: 48px;
        height: 48px;
        grid-row: 1 / span 2;
    }

    .site-header__cta {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: start;
    }

    .site-header__meta {
        grid-column: 2;
        grid-row: 2;
        align-items: flex-end;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bc-badge-card {
        gap: 20px;
    }
}

@media (max-width: 782px) {
    .site-shell {
        margin: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .site-header,
    .site-content,
    .site-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header__top {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .site-brand {
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 10px;
    }

    .site-brand__mark {
        width: 44px;
        height: 44px;
    }

    .site-header__meta {
        align-items: flex-start;
    }

    .site-header__cta {
        justify-self: start;
    }

    .site-nav__list {
        flex-wrap: wrap;
    }

    .page-hero__inner {
        padding: 34px 22px;
    }

    .page-hero__title {
        max-width: none;
    }

    .bc-grid--2,
    .bc-grid--3,
    .site-footer__grid,
    .bc-badge-card {
        grid-template-columns: 1fr;
    }

    .bc-badge-card {
        gap: 18px;
    }

    .bc-badge-card img {
        width: min(220px, 100%);
    }

    .schedule-table {
        overflow-x: auto;
    }

    .schedule-table table {
        min-width: 640px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 12px 14px;
    }

    .schedule-legend p {
        gap: 8px;
    }
}
