.eyebrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover, .section-more:hover, .image-card:hover {
    transform: translateY(-3px);
}

.btn.primary {
    color: var(--green);
    background: #f0cf8b;
}

.btn.clay {
    color: #fffaf1;
    background: var(--clay);
}

.btn.ghost {
    color: #fffaf1;
    border-color: rgba(255,255,255,.46);
}

.btn.ghost-dark {
    color: var(--green);
    border-color: var(--line);
}

.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green);
}

.sub-hero {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green);
}

.hero img, .sub-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slides {
    position: absolute;
    inset: 0;
    touch-action: pan-y;
    user-select: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(90deg, rgba(7,35,29,.96), rgba(7,35,29,.78) 48%, rgba(7,35,29,.52));*/
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hd {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, transform .2s ease;
}

.hd.active {
    background: #f0cf8b;
    transform: scale(1.2);
}

.hd:hover {
    background: rgba(255,255,255,.7);
}

.hero-content, .sub-hero-text {
    position: relative;
    z-index: 2;
    width: min(760px, 92vw);
    margin-left: 7vw;
    color: #fffaf1;
}

.hero-content p:not(.eyebrow), .sub-hero-text p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 17px;
    color: rgba(255,255,255,.84);
}

.sub-hero-cta {
    position: absolute;
    z-index: 3;
    right: 7vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 28px;
    color: #fffaf1;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(18,63,53,.82), rgba(12,50,65,.78));
    backdrop-filter: blur(8px);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sub-hero-cta:hover {
    transform: translateY(calc(-50% - 4px));
    border-color: rgba(240,207,139,.55);
    box-shadow: 0 8px 32px rgba(18,63,53,.4);
}

.sub-hero-cta-label {
    font-size: 12px;
    font-weight: 800;
    color: #f0cf8b;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.sub-hero-cta-title {
    font-size: 18px;
    font-weight: 700;
}

.sub-hero-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-top: 4px;
    border-radius: 50%;
    background: rgba(240,207,139,.18);
    font-size: 18px;
    transition: background .25s ease;
}

.sub-hero-cta:hover .sub-hero-cta-arrow {
    background: rgba(240,207,139,.32);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.visit-panel {
    position: absolute;
    z-index: 3;
    right: 7vw;
    top: 32%;
    transform: translateY(-50%);
    width: 360px;
    padding: 28px;
    color: #eaf6f0;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(28,91,78,.9), rgba(12,50,65,.86));
    box-shadow: var(--shadow);
}

.visit-panel strong {
    display: block;
    margin: 14px 0 8px;
    font-size: 26px;
}

.panel-label {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f0cf8b;
    color: #123f35;
    font-size: 13px;
    font-weight: 800;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(198,155,87,.22);
    color: #70431f;
    font-size: 13px;
    font-weight: 800;
}

.quick-entry {
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
    gap: 14px;
    margin-top: 0;
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;
    z-index: 4;
    background: rgba(247,243,234,.88);
}

.quick-card {
    min-height: 152px;
    padding: 20px;
    border: 1px solid rgba(18,63,53,.16);
    border-radius: 8px;
    background: rgba(255,250,241,.9);
    box-shadow: 0 14px 36px rgba(18,63,53,.08);
    transition: transform .2s ease, border-color .2s ease;
}

.quick-card:hover {
    border-color: rgba(169, 79, 53, .34);
}

.quick-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
}

.quick-card strong {
    display: block;
    color: var(--green);
    font-size: 19px;
}

.quick-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid.four {
    grid-template-columns: repeat(4, minmax(0,1fr));
}

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

.card-grid > * {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-card, .service-block, .info-panel, .digital-card, .news-column {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 14px 38px rgba(18,63,53,.08);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.image-card img {
    width: 100%;
    /*height: 220px; */
    object-fit: cover;
}

.image-card div {
    min-width: 0;
    padding: 10px 10px;
}

.image-card h3 {
    margin-top: 12px;
    color: var(--green);
}

.image-card p {
    margin: 0px 0 8px;
    color: var(--muted);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.image-card a, .section-more {
    color: var(--clay);
    font-weight: 800;
}

.footer-qr, .contact-map {
    display: grid;
    place-items: center;
    min-height: 120px;
    border: 1px dashed rgba(255,255,255,.35);
    color: rgba(255,255,255,.68);
}

.footer-mobile {
    display: flex;
    flex-direction: column;
}

.footer-qr-row {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.footer-qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-qr-box {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(255,255,255,.32);
    border-radius: 6px;
    color: rgba(255,255,255,.6);
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
    padding: 8px;
    background: rgba(255,255,255,.04);
}

.footer-qr-item small {
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready .reveal {
    opacity: 1;
    transform: translateY(14px);
    transition: transform .45s ease;
}

.motion-ready .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* â”€â”€ Inquiry Cards (contact.html) â”€â”€ */
.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.inquiry-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 14px 34px rgba(18,63,53,.07);
    text-align: center;
}

.inquiry-card h3 {
    color: var(--green);
    margin-bottom: 12px;
    font-size: 19px;
}

.inquiry-card p {
    color: var(--green);
    font: 700 26px/1.2 "Source Han Serif SC", SimSun, serif;
    margin: 0;
}

.inquiry-card small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

/* â”€â”€ Event Timeline (education.html) â”€â”€ */
.event-timeline {
    display: grid;
    gap: 16px;
}

.event-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 14px 34px rgba(18,63,53,.07);
    align-items: start;
}

.event-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 6px 16px;
    border-radius: 6px;
    background: var(--green);
    color: #f0cf8b;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
}

.event-item h3 {
    color: var(--green);
    margin-bottom: 8px;
}

.event-item p {
    color: var(--muted);
    margin-bottom: 8px;
}

.event-item small {
    color: #8b7a6b;
    font-size: 13px;
}

/* â”€â”€ Audio Player Mock (guide.html) â”€â”€ */
.audio-player-mock {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, #103b32, #1b5848);
    box-shadow: 0 22px 52px rgba(18,63,53,.18);
    align-items: center;
}

.player-thumb {
    display: grid;
    place-items: center;
    width: 200px;
    height: 200px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0cf8b, #c89b57);
    color: var(--green);
    font: 700 64px/1 "Source Han Serif SC", SimSun, serif;
}

.player-chapter {
    display: block;
    color: #f0cf8b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.player-title {
    display: block;
    color: #fffaf1;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: "Source Han Serif SC", SimSun, serif;
}

.player-bar {
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    margin-bottom: 6px;
    overflow: hidden;
}

.player-progress {
    height: 100%;
    border-radius: 999px;
    background: #f0cf8b;
}

.player-time {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    margin-bottom: 16px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.player-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: transparent;
    color: #fffaf1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: border-color .2s ease;
}

.player-controls button:hover {
    border-color: #f0cf8b;
}

.player-controls button:disabled {
    opacity: .36;
    cursor: default;
}

.player-controls .play-btn {
    width: 52px;
    height: 52px;
    background: #f0cf8b;
    color: var(--green);
    border-color: #f0cf8b;
}

.player-transcript {
    display: inline-block;
    color: #f0cf8b;
    font-weight: 800;
    font-size: 14px;
}

.audio-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

/* â”€â”€ Chapter Grid (guide.html) â”€â”€ */
.chapter-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px;
}

.chapter-group {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,250,241,.82);
    box-shadow: 0 14px 34px rgba(18,63,53,.07);
}

.chapter-group h3 {
    color: var(--green);
    margin-bottom: 14px;
    font-size: 19px;
}

.chapter-group ol {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.chapter-group li {
    margin-bottom: 8px;
    line-height: 1.55;
}
