/* ── OTInformation – Shared Stylesheet ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
    --cream:    #f5f0e8;
    --parchment:#ede5d0;
    --brown:    #3d2b1f;
    --rust:     #b94a1e;
    --gold:     #c8922a;
    --mid:      #7a6248;
    --light:    #a89070;
    --green:    #3C763D;
}

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

body {
    background-color: var(--cream);
    color: var(--brown);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── HEADER ── */
.site-header {
    background: var(--green);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}
.header-logo {
    flex-shrink: 0;
    height: 56px;
    width: auto;
}
.header-text {
    flex: 1;
    text-align: center;
}
.site-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.4rem, 5vw, 2.6rem);
    color: var(--cream);
    letter-spacing: .02em;
}
.site-header .subtitle {
    font-size: .72rem;
    color: #ffffff;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: 4px;
}
@media (max-width: 480px) {
    .site-header { padding: 12px 14px; gap: 10px; }
    .header-logo { height: 38px; }
}

/* ── GOLD RULE ── */
.header-rule {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── MAIN CONTENT AREA ── */
main {
    flex: 1;
    padding: 32px 24px 48px;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

/* ── PAGE HEADING ── */
.page-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--green);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(61,43,31,.10);
}

/* ── BACK BUTTON ── */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--green);
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    padding: 8px 18px;
    cursor: pointer;
    margin-bottom: 28px;
    transition: background .18s;
}
.back-btn:hover { background: var(--brown); }

/* ── NAV CARDS (home page) ── */
.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 8px;
}
.nav-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid rgba(61,43,31,.12);
    border-left: 4px solid var(--green);
    border-radius: 4px;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--brown);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: border-color .18s, box-shadow .18s, background .18s;
}
.nav-card:hover {
    background: var(--parchment);
    border-left-color: var(--rust);
    box-shadow: 0 2px 10px rgba(61,43,31,.10);
}
.nav-card .nav-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ── PROSE CONTENT ── */
.prose {
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}
.prose p { margin-bottom: 14px; }
.prose a { color: var(--rust); }

/* ── PROGRAM TABLE ── */
.program-list {
    list-style: none;
    margin-top: 8px;
}
.program-list li {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(61,43,31,.07);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
.program-list li:last-child { border-bottom: none; }
.program-time {
    font-weight: 600;
    color: var(--green);
    white-space: nowrap;
    min-width: 100px;
    flex-shrink: 0;
}

/* ── RULES LIST ── */
.rules-list {
    list-style: none;
    margin-top: 12px;
}
.rules-list li {
    padding: 12px 0 12px 20px;
    border-bottom: 1px solid rgba(61,43,31,.07);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
}
.rules-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: .8rem;
    top: 14px;
}
.rules-list li:last-child { border-bottom: none; }
.rules-preamble {
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .04em;
    color: var(--mid);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ── MAP IMAGE ── */
.map-wrap {
    margin-top: 8px;
    border: 1.5px solid rgba(61,43,31,.12);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}
.map-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── FOOTER ── */
footer {
    text-align: center;
    padding: 20px;
    font-size: .72rem;
    color: var(--light);
    letter-spacing: .06em;
    border-top: 1px solid rgba(61,43,31,.1);
}
.visitor-count {
    margin-top: 8px;
    font-size: .70rem;
    color: var(--light);
    opacity: .75;
}
.visitor-count span {
    font-weight: 600;
    color: var(--gold);
}

/* ── MOBILE ── */
@media (max-width: 600px) {
    main { padding: 20px 16px 40px; }
    .nav-grid { grid-template-columns: 1fr; }
    .program-time { min-width: 76px; }
}
