/* ========================================
   RCS Inner Pages Stylesheet
   Extends the main school.css design system
   ======================================== */

/* Gold accent color */
:root {
    --gold: #d4a853;
    --gold-dark: #c99b43;
}

/* ========================================
   Navigation with Dropdowns
   ======================================== */
.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link:focus,
.site-nav__item:hover .site-nav__link {
    color: #fff;
}

.site-nav__link.active,
.site-nav__item--current .site-nav__link {
    color: #feb901;
}

/* Gold underline for current/active top-level nav items */
.site-nav__item--current .site-nav__link::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #feb901;
    transform: scaleX(1);
}

/* Dropdown arrow */
.site-nav__arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease;
}

.site-nav__item:hover .site-nav__arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.site-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
    margin-top: 8px;
}

.site-nav__dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #fff;
}

.site-nav__item:hover .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
}

.site-nav__dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #333;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-nav__dropdown a:hover {
    background: var(--cream-100, #f8f6ef);
    color: var(--green-700, #294c36);
}

/* Current/active page highlighting in dropdown */
.site-nav__dropdown a.current-menu-item,
.site-nav__dropdown .current-menu-item > a,
.site-nav__dropdown a[aria-current="page"] {
    background: rgba(254, 185, 1, 0.12);
    color: #b8860b;
    font-weight: 600;
    position: relative;
}

.site-nav__dropdown a.current-menu-item::before,
.site-nav__dropdown .current-menu-item > a::before,
.site-nav__dropdown a[aria-current="page"]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #feb901;
}

/* Dropdown divider */
.site-nav__dropdown hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 8px 16px;
}

/* No dropdown link (direct link items) */
.site-nav__item--no-dropdown .site-nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
}

.site-nav__item--no-dropdown .site-nav__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ========================================
   Hamburger Menu
   ======================================== */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger__line {
    display: block;
    width: 32px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger__line:nth-child(1) {
    margin-bottom: 8px;
}

.hamburger__line:nth-child(2) {
    margin-bottom: 8px;
}

/* Hamburger to X animation */
.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #0a1f12 0%, #143020 100%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    padding: 100px 32px 48px;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

/* Close button for mobile nav */
.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mobile-nav__close svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    stroke-width: 2;
    transition: stroke 0.2s ease;
}

.mobile-nav__close:hover svg {
    stroke: var(--gold);
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.mobile-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav__link:hover {
    color: var(--gold);
}

.mobile-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.mobile-nav__toggle svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    transition: transform 0.3s ease;
}

.mobile-nav__toggle:hover svg {
    stroke: var(--gold);
}

.mobile-nav__item.is-open .mobile-nav__toggle svg {
    transform: rotate(180deg);
}

/* Mobile Nav Submenu */
.mobile-nav__submenu {
    display: none;
    padding: 0 0 16px 16px;
}

.mobile-nav__item.is-open .mobile-nav__submenu {
    display: block;
}

.mobile-nav__submenu a {
    display: block;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav__submenu a:hover {
    color: var(--gold);
}

.mobile-nav__submenu hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* Mobile Nav CTA Button */
.mobile-nav__cta {
    display: block;
    width: 100%;
    margin: 32px 0 0;
    padding: 18px 32px;
    background: #feb901;
    color: #000;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-nav__cta:hover {
    background: #e5a701;
    transform: translateY(-2px);
}

/* Hamburger hidden on desktop by default */
.hamburger {
    display: none;
}

/* Hide mobile apply btn on desktop */
.mobile-apply-btn {
    display: none;
}

/* Body scroll lock when menu is open */
body.nav-open {
    overflow: hidden;
}

/* Mobile: Hide desktop nav, show hamburger */
@media (max-width: 1080px) {
    .site-header__inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
    }

    .site-brand {
        grid-column: 1;
        grid-row: 1;
    }

    .site-nav {
        display: none !important;
    }

    /* Hide desktop CTA, we'll show mobile version */
    .nav-cta {
        display: none !important;
    }

    /* Hamburger - aligned with logo on first row */
    .hamburger {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        align-self: center;
    }

    /* Mobile Apply Now - second row, full width */
    .mobile-apply-btn {
        display: flex !important;
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        padding-top: 12px;
    }

    .mobile-apply-btn a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 24px;
        background: #feb901;
        color: #000;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .mobile-apply-btn a:hover {
        background: #e5a701;
    }

    /* Keep hamburger visible and fixed when menu is open */
    .hamburger.is-active {
        position: fixed;
        top: 20px;
        right: 24px;
        z-index: 1002;
    }
}

/* ========================================
   Page Hero - New Stitch-inspired style
   ======================================== */
.page-hero {
    position: relative;
    min-height: 420px;
    background-color: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center -24em;
    background-repeat: no-repeat;
    opacity: 1;
}

/* Athletics hero - adjust position for cross country image */
.page-hero--athletics .page-hero__bg {
    background-position: center -12em;
}

/* About hero - centered background position */
.page-hero--about .page-hero__bg {
    background-position: center;
}

/* Faculty hero - centered background position */
.page-hero--faculty .page-hero__bg {
    background-position: center;
}

/* Compact hero - minimal height, inline title only */
.page-hero--compact {
    min-height: 280px;
}

.page-hero--compact .page-hero__content {
    padding: 60px clamp(24px, 6vw, 48px);
}

.page-hero--compact .page-hero__content h1 {
    margin: 0;
}

.page-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 73%) 0%, rgb(20 48 33 / 7%) 90%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px clamp(24px, 6vw, 48px);
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge/Kicker with icon */
.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.page-hero__badge svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.page-hero__badge span {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Short hero - reduced height for inner pages */
.page-hero--short {
    min-height: 400px;
}

.page-hero--short .page-hero__bg {
    background-position: center;
}

.page-hero--short .page-hero__content {
    padding: 80px clamp(24px, 6vw, 48px);
}

@media (max-width: 768px) {
    .page-hero--short {
        min-height: 280px;
    }

    .page-hero--short .page-hero__content {
        padding: 50px clamp(24px, 6vw, 48px);
    }
}

/* Cross icon above title */
.page-hero__cross {
    width: 48px;
    height: auto;
    margin-bottom: 16px;
    opacity: 0.9;
}

/* Legacy kicker support */
.page-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.page-hero__content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.15;
    max-width: 600px;
}

.page-hero__content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    line-height: 1.6;
    margin: 0 0 28px;
}

/* Gold accent line */
.page-hero__line {
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

/* Gold bottom accent bar */
.page-hero__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    z-index: 2;
}

/* Remove curved bottom - using gold bar instead */
.page-hero::after {
    display: none;
}

/* Page Content Container */
.page-content {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}

.page-content__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 6vw, 48px);
}

/* Breadcrumbs & Default Page Content */
nav.breadcrumbs {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(24px, 6vw, 48px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

nav.breadcrumbs a {
    color: var(--green-600);
    text-decoration: none;
}

nav.breadcrumbs a:hover {
    text-decoration: underline;
}

nav.breadcrumbs .breadcrumbs__sep {
    color: #ccc;
}

.page-content > .page-header,
.page-content > .page-article {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(24px, 6vw, 48px);
}

/* Staff Section Styling */
.staff-section {
    margin-bottom: clamp(48px, 6vw, 72px);
}

.section-header {
    margin-bottom: 28px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--green-800);
    margin: 0 0 12px;
    letter-spacing: 0.04em;
}

.section-header__sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.65em;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--green-400));
    border-radius: 2px;
}

/* Staff Grid for Featured Cards */
.staff-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.staff-grid--featured {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Staff Card - Featured Style */
.staff-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(21, 50, 34, 0.1);
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(21, 50, 34, 0.15);
}

.staff-card--featured {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
}

.staff-card__image {
    flex-shrink: 0;
}

.staff-card__image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-300);
}

.staff-card__info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--green-800);
    margin: 0 0 6px;
    letter-spacing: 0.02em;
}

.staff-card__role {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.staff-card__email {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.staff-card__email:hover {
    color: var(--green-700);
}

/* Staff Table */
.staff-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(21, 50, 34, 0.08);
}

.staff-table table {
    width: 100%;
    border-collapse: collapse;
}

.staff-table thead {
    background: var(--green-700);
}

.staff-table th {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    padding: 16px 20px;
    text-align: left;
}

.staff-table tbody tr {
    border-bottom: 1px solid rgba(41, 76, 54, 0.1);
    transition: background 0.2s ease;
}

.staff-table tbody tr:last-child {
    border-bottom: none;
}

.staff-table tbody tr:hover {
    background: rgba(41, 76, 54, 0.03);
}

.staff-table td {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.staff-table td strong {
    color: var(--green-800);
}

.staff-table td a {
    color: var(--green-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.staff-table td a:hover {
    color: var(--green-800);
    text-decoration: underline;
}

/* Info Box */
.info-box {
    background: var(--cream-100);
    border-radius: 12px;
    padding: 24px 28px;
    border-left: 4px solid var(--green-600);
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ========================================
   Two Column Layout (for sidebar pages)
   ======================================== */
.page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
}

.page-layout--sidebar {
    grid-template-columns: 1fr 340px;
}

.page-main {
    min-width: 0;
}

.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sidebar Card */
.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(21, 50, 34, 0.08);
}

.sidebar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--green-800);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream-200);
}

.sidebar-card--highlight {
    background: var(--cream-100);
    border: 2px solid var(--green-300);
}

.sidebar-card--alert {
    background: white;
    border: 2px solid #d4a853;
}

.sidebar-card--alert h3 {
    color: #8b6914;
}

/* Contact Info Block */
.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--cream-100);
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-block__image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-300);
}

.contact-block__info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--green-800);
    margin: 0 0 4px;
}

.contact-block__role {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.contact-block__details {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-block__details a {
    color: var(--green-700);
    text-decoration: none;
}

.contact-block__details a:hover {
    text-decoration: underline;
}

/* Content Sections */
.content-section {
    margin-bottom: clamp(32px, 4vw, 48px);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--green-800);
    margin: 0 0 20px;
    letter-spacing: 0.04em;
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--green-700);
    margin: 28px 0 14px;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 16px;
}

.content-section ul,
.content-section ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.content-section li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.content-section li strong {
    color: var(--green-800);
}

/* Links List */
.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin-bottom: 12px;
}

.links-list a {
    color: var(--green-700);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.links-list a:hover {
    color: var(--green-550);
    transform: translateX(4px);
}

.links-list a::before {
    content: '→';
    font-size: 0.85em;
}

/* CTA Button - matches front page pill buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    background-color: var(--green-600);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(21, 50, 34, 0.18);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--green-700);
    box-shadow: 0 16px 32px rgba(21, 50, 34, 0.22);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    background-color: #fff;
    color: var(--green-700);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--green-300);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--green-600);
    background: rgba(41, 76, 54, 0.04);
    transform: translateY(-2px);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    background-color: #d4a853;
    color: var(--green-900);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(212, 168, 83, 0.3);
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    background-color: #c99b43;
}

/* Form List Grid (for medical forms etc) */
.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.forms-category {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(21, 50, 34, 0.08);
}

.forms-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--green-800);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green-300);
}

.forms-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forms-category li {
    margin-bottom: 10px;
}

.forms-category a {
    color: var(--green-700);
    text-decoration: none;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(41, 76, 54, 0.15);
}

.forms-category a:hover {
    color: var(--green-550);
    padding-left: 8px;
}

.forms-category li:last-child a {
    border-bottom: none;
}

/* Calendar Table */
.calendar-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(21, 50, 34, 0.08);
    margin-bottom: 32px;
}

.calendar-table__header {
    background: var(--green-700);
    padding: 16px 24px;
}

.calendar-table__header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    letter-spacing: 0.04em;
}

.calendar-table table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-700);
    padding: 14px 20px;
    text-align: left;
    background: var(--cream-100);
    border-bottom: 2px solid var(--green-200);
}

.calendar-table td {
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(41, 76, 54, 0.1);
}

.calendar-table tbody tr:last-child td {
    border-bottom: none;
}

.calendar-table tbody tr:hover {
    background: rgba(41, 76, 54, 0.02);
}

/* Password Notice */
.password-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border: 2px solid #d4a853;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.password-notice__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.password-notice__text {
    font-size: 0.95rem;
    color: #8b6914;
    font-weight: 600;
    line-height: 1.5;
}

/* Event Card Grid */
.events-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.event-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(21, 50, 34, 0.08);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 50, 34, 0.12);
}

.event-card__date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    padding: 12px;
    background: var(--green-700);
    border-radius: 8px;
    color: #fff;
}

.event-card__month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.event-card__day {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
}

.event-card__content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--green-800);
    margin: 0 0 6px;
}

.event-card__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Officers Table */
.officers-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(21, 50, 34, 0.08);
}

.officers-table table {
    width: 100%;
    border-collapse: collapse;
}

.officers-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(41, 76, 54, 0.1);
}

.officers-table td:first-child {
    font-weight: 700;
    color: var(--green-700);
    width: 40%;
}

.officers-table tr:last-child td {
    border-bottom: none;
}

/* Active nav state */
.site-nav a.current {
    color: #d4a853;
}

.site-nav a.current::after {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 1080px) {
    .page-layout--sidebar {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        order: -1;
    }

    .staff-grid--featured {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero::after {
        bottom: -40px;
        height: 80px;
    }

    .staff-card--featured {
        flex-direction: column;
        text-align: center;
    }

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

    .staff-table table {
        min-width: 500px;
    }

    .contact-block {
        flex-direction: column;
        text-align: center;
    }

    .event-card {
        flex-direction: column;
    }

    .event-card__date {
        width: auto;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .forms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .page-hero__content {
        padding: 40px 20px;
    }

    .page-content__inner {
        padding: 0 20px;
    }

    /* Reset hero background position on mobile */
    .page-hero__bg,
    .page-hero--athletics .page-hero__bg {
        background-position: center;
    }
}
