/* ==========================
   SCHEDULE + CONTACT
========================== */
.sched-sec {
    background: var(--paper)
}

.sched-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
    margin-top: 48px
}

.sched-tbl {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .07)
}

.sched-tbl thead tr {
    background: var(--navy)
}

.sched-tbl th {
    color: #fff;
    padding: 12px 16px;
    font-size: .8rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: .4px
}

.sched-tbl td {
    padding: 12px 16px;
    font-size: .85rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    background: var(--white)
}

.sched-tbl tr:last-child td {
    border-bottom: none
}

.sched-tbl tr:hover td {
    background: var(--mist)
}

.open-day {
    color: var(--green);
    font-weight: 700
}

.closed-day {
    color: var(--fog)
}

.new-day {
    color: var(--blue);
    font-weight: 700
}

.sched-note {
    font-size: .78rem;
    color: var(--fog);
    margin-top: 10px;
    font-style: italic
}

.loc-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    margin-top: 18px
}

.loc-box h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px
}

.loc-box p {
    font-size: .85rem;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 12px
}

.loc-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.loc-tag {
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 40px
}

.lt-g {
    background: var(--lgn);
    color: var(--green)
}

.lt-b {
    background: var(--mist);
    color: var(--blue)
}

.lt-y {
    background: rgba(245, 158, 11, .1);
    color: #b45309
}

.contact-box {
    background: linear-gradient(145deg, var(--navy), var(--royal));
    border-radius: 20px;
    padding: 34px;
    color: #fff
}

.contact-box h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    margin-bottom: 11px
}

.contact-box .c-intro {
    font-size: .88rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.7;
    margin-bottom: 26px
}

.c-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px
}

.c-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500
}

.c-ico {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0
}

.c-row a.gold {
    color: var(--gold);
    font-weight: 700
}

.c-row a.wa {
    color: #25d366;
    font-weight: 700
}
