/* ==========================================================================
   St Theresa's R.C. Primary — main stylesheet
   Translates the approved navy & gold visual preview into hand-written CSS
   (no Tailwind at runtime, so the live site isn't dependent on a CDN build).
   ========================================================================== */

:root {
	--navy-900: #071626;
	--navy-800: #0c2238;
	--navy-700: #15314f;
	--gold-400: #f1c40f;
	--gold-500: #d4a017;
	--gold-600: #b8860b;
	--cream: #f9f8f3;
	--body-bg: #f4f3ef;
	--text: #1e293b;
	--font-sans: 'Plus Jakarta Sans', sans-serif;
	--font-serif: 'Cinzel', serif;
	--font-cursive: 'Great Vibes', cursive;
	--radius-lg: 1rem;
	--radius-xl: 1.25rem;
	--shadow-card: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.03);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	background-color: var(--body-bg);
	color: var(--text);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold-500); color: #fff; }

.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .wrap { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .wrap { padding: 0 2rem; } }

.hidden { display: none !important; }
.hide-sm { display: none; }
.hide-md { display: none; }
@media (min-width: 640px) { .hide-sm { display: flex; } }
@media (min-width: 768px) { .hide-md { display: flex; } }
.hide-mobile { display: none; }
@media (min-width: 1024px) { .hide-mobile { display: block; } }

.eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow.gold { color: var(--gold-600); }
.text-link { font-size: 0.75rem; font-weight: 700; color: var(--navy-900); }
.text-link:hover { color: var(--gold-600); }
.text-link.small { font-size: 0.65rem; text-transform: uppercase; }
.section-pad { padding: 4rem 0; }

/* ---------- Buttons ---------- */
.btn-gold, .btn-navy, .btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.75rem;
	border-radius: 0.5rem;
	padding: 0.65rem 1.25rem;
	transition: all 0.2s ease;
}
.btn-gold { background: var(--gold-500); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-600); }
.btn-navy { background: var(--navy-900); color: #fff; }
.btn-navy:hover { background: var(--navy-800); }
.btn-outline { background: rgba(12,34,56,0.8); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--gold-400); }
.btn-sm { padding: 0.4rem 0.75rem; font-size: 0.68rem; }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.link-btn { color: #e2e8f0; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.35rem; }
.link-btn:hover { color: var(--gold-400); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: #fff; border-bottom: 1px solid #f1f1f1; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.topbar { background: var(--navy-900); color: #fff; font-size: 0.75rem; padding: 0.4rem 0; }
.topbar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.5rem; }
.topbar-left { display: flex; align-items: center; gap: 1.5rem; color: #cbd5e1; }
.topbar-left i { color: var(--gold-400); margin-right: 0.35rem; }
.topbar-right { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.topbar-right .divider { color: var(--navy-700); }

.main-nav { display: flex; justify-content: space-between; align-items: center; height: 5rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-crest { width: 3rem; height: 3.5rem; background: var(--navy-900); border: 2px solid var(--gold-500); border-radius: 0 0 0.75rem 0.75rem; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gold-400); box-shadow: var(--shadow-card); }
.brand-crest.small { width: 2.5rem; height: 3rem; border: 1px solid var(--gold-400); }
.crest-year { font-size: 0.5rem; font-weight: 700; color: #fff; margin-top: 0.15rem; }

/* When a real logo image is set (Customizer > Site Identity), scale it to
   fit inside the same footprint the crest badge used, instead of stretching
   the header/footer layout. */
.custom-logo-link { display: flex; align-items: center; justify-content: center; }
.main-nav .custom-logo-link img { max-height: 3.5rem; width: auto; }
.brand-crest.footer-logo { background: transparent; border: none; box-shadow: none; width: auto; height: 3rem; }
.brand-crest.footer-logo .custom-logo-link img { max-height: 3rem; width: auto; filter: brightness(0) invert(1); }
.brand-text { line-height: 1.15; }
.brand-name { display: block; font-family: var(--font-serif); font-weight: 700; font-size: 1.25rem; color: var(--navy-900); }
.brand-sub { display: block; font-size: 0.7rem; font-weight: 600; color: var(--gold-600); text-transform: uppercase; letter-spacing: 0.05em; }
.brand-motto { display: block; font-size: 0.65rem; color: #64748b; font-style: italic; }

.primary-menu { display: none; }
@media (min-width: 1024px) { .primary-menu { display: flex; } }
.primary-menu ul { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy-900); }
.primary-menu li a { display: block; padding: 0.5rem 0.75rem; }
.primary-menu li a:hover { color: var(--gold-600); }
.primary-menu li.current-menu-item > a { color: var(--gold-600); border-bottom: 2px solid var(--gold-500); }

.mobile-toggle { display: block; padding: 0.5rem; border-radius: 0.5rem; color: var(--navy-900); font-size: 1.25rem; }
.mobile-toggle:hover { background: #f3f4f6; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu { background: var(--navy-900); color: #fff; padding: 0.5rem 1rem 1.5rem; font-size: 0.9rem; border-top: 1px solid var(--navy-700); }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu-list { list-style: none; margin: 0; padding: 0; }
.mobile-menu-list li a { display: block; padding: 0.5rem 0; }
.mobile-menu-list li a:hover { color: var(--gold-400); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900); color: #fff; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,22,38,0.92) 0%, rgba(7,22,38,0.75) 50%, rgba(7,22,38,0.3) 100%); }
.hero-inner { position: relative; z-index: 10; padding: 4rem 0; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 2fr 1fr; } }
.hero-copy { display: flex; flex-direction: column; gap: 1.5rem; }
.pill { display: inline-flex; align-items: center; gap: 0.5rem; width: fit-content; padding: 0.35rem 0.9rem; border-radius: 999px; background: rgba(212,160,23,0.2); border: 1px solid rgba(241,196,15,0.4); color: #fde68a; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-copy h1 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.1; margin: 0; }
.hero-copy .gold { color: var(--gold-400); }
.hero-lead { font-size: 1rem; color: #e2e8f0; max-width: 42rem; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; padding-top: 0.5rem; }

.spotlight-card { position: relative; background: rgba(255,255,255,0.1); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.2); padding: 1.5rem; border-radius: var(--radius-xl); overflow: hidden; }
.watermark { position: absolute; right: -1.5rem; bottom: -1.5rem; font-family: var(--font-serif); font-weight: 700; font-size: 8rem; color: rgba(255,255,255,0.05); }
.spotlight-card h3 { font-family: var(--font-serif); font-size: 1.15rem; margin: 0.25rem 0 0.5rem; }
.spotlight-card p { font-size: 0.75rem; color: #cbd5e1; line-height: 1.6; margin-bottom: 1rem; }
.spotlight-foot { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; font-size: 0.75rem; }
.spotlight-foot span i { color: var(--gold-400); margin-right: 0.3rem; }
.spotlight-foot a { color: var(--gold-400); font-weight: 700; }
.spotlight-foot a:hover { text-decoration: underline; }

/* ---------- Quick access ---------- */
.quick-access { margin-top: -2.5rem; position: relative; z-index: 20; }
.quick-access-panel { background: #fff; border-radius: var(--radius-xl); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid #f1f1f1; padding: 1rem 1.25rem; }
.quick-access-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .quick-access-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .quick-access-grid { grid-template-columns: repeat(8, 1fr); } }
.quick-item { padding: 0.75rem; border-radius: 0.75rem; display: flex; flex-direction: column; align-items: center; transition: background 0.2s ease; }
.quick-item:hover { background: var(--cream); }
.quick-icon { width: 3rem; height: 3rem; border-radius: 999px; background: var(--navy-800); color: var(--gold-400); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 0.5rem; box-shadow: var(--shadow-card); transition: transform 0.2s ease; }
.quick-item:hover .quick-icon { transform: scale(1.1); }
.quick-label { font-size: 0.7rem; font-weight: 700; color: var(--navy-900); }
.quick-item:hover .quick-label { color: var(--gold-600); }

/* ---------- About / stats ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: stretch; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 7fr 5fr; } }
.principal-card { background: var(--navy-900); color: #fff; border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 2rem; align-items: center; position: relative; overflow: hidden; }
@media (min-width: 640px) { .principal-card { flex-direction: row; } }
.principal-photo { width: 10rem; height: 12rem; border-radius: 0.75rem; overflow: hidden; flex-shrink: 0; border: 2px solid var(--gold-400); box-shadow: 0 15px 25px -5px rgba(0,0,0,0.3); }
.principal-photo img { width: 100%; height: 100%; object-fit: cover; }
.principal-copy h2 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0.25rem 0 1rem; }
.principal-copy p { font-size: 0.85rem; color: #cbd5e1; line-height: 1.7; font-weight: 300; }
.signature { padding-top: 0.5rem; }
.signature-script { font-family: var(--font-cursive); font-size: 1.9rem; color: var(--gold-400); margin: 0; }
.signature-name { font-size: 0.75rem; font-weight: 700; color: #e2e8f0; margin: 0; }
.signature-title { font-size: 0.65rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat-card { background: #fff; padding: 1.5rem; border-radius: var(--radius-xl); border: 1px solid #f1f1f1; box-shadow: var(--shadow-card); text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px -5px rgba(12,34,56,0.15); }
.stat-icon { width: 2.5rem; height: 2.5rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem; font-size: 1.1rem; }
.stat-icon-gold { background: rgba(212,160,23,0.1); color: var(--gold-600); }
.stat-icon-navy { background: rgba(12,34,56,0.1); color: var(--navy-900); }
.stat-value { font-family: var(--font-serif); font-weight: 700; font-size: 1.75rem; color: var(--navy-900); }
.stat-label { font-size: 0.7rem; color: #64748b; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }

/* ---------- News & events ---------- */
.section-news { background: var(--cream); padding: 4rem 0; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.news-events-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .news-events-grid { grid-template-columns: 7fr 5fr; } }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid #d1d5db; padding-bottom: 0.75rem; margin-bottom: 1.5rem; }
.section-head h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy-900); margin: 0.15rem 0 0; }

.news-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .news-cards { grid-template-columns: repeat(3, 1fr); } }
.news-card { background: #fff; border-radius: 0.75rem; overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px -5px rgba(12,34,56,0.15); }
.news-card-media { height: 8rem; position: relative; overflow: hidden; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; }
.news-tag { position: absolute; top: 0.5rem; left: 0.5rem; background: rgba(7,22,38,0.8); color: #fff; font-size: 0.6rem; padding: 0.15rem 0.5rem; border-radius: 0.25rem; text-transform: uppercase; font-weight: 700; }
.news-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 0.5rem; }
.news-card-body h3 { font-size: 0.75rem; color: var(--navy-900); margin: 0; line-height: 1.4; }
.news-card-body h3 a:hover { color: var(--gold-600); }
.news-card-body p { font-size: 0.68rem; color: #6b7280; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.event-list { display: flex; flex-direction: column; gap: 0.75rem; }
.event-item { background: #fff; border: 1px solid #f1f1f1; border-radius: 0.75rem; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 1rem; padding: 0.85rem; transition: border-color 0.2s ease; }
.event-item:hover { border-color: var(--gold-400); }
.event-date { background: var(--navy-900); color: #fff; border-radius: 0.5rem; padding: 0.5rem; text-align: center; width: 3.5rem; flex-shrink: 0; }
.event-date .day { display: block; font-size: 1.1rem; font-weight: 700; line-height: 1; }
.event-date .mon { font-size: 0.6rem; font-weight: 600; color: var(--gold-400); text-transform: uppercase; }
.event-info { flex: 1; min-width: 0; }
.event-info h4 { font-size: 0.75rem; color: var(--navy-900); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event-info p { font-size: 0.68rem; color: #6b7280; margin: 0.1rem 0 0; }
.event-time { font-size: 0.65rem; font-weight: 700; background: var(--cream); color: var(--navy-900); padding: 0.25rem 0.5rem; border-radius: 999px; white-space: nowrap; }

/* ---------- Life grid ---------- */
.section-title-center { text-align: center; max-width: 36rem; margin: 0 auto 2.5rem; }
.section-title-center h2 { font-family: var(--font-serif); font-size: 1.85rem; color: var(--navy-900); margin: 0.25rem 0 0.75rem; }
.section-title-center .rule { display: block; width: 4rem; height: 4px; background: var(--gold-500); margin: 0 auto; border-radius: 999px; }

.life-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .life-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .life-grid { grid-template-columns: repeat(6, 1fr); } }
.life-tile { position: relative; border-radius: var(--radius-xl); overflow: hidden; height: 15rem; box-shadow: var(--shadow-card); display: block; width: 100%; padding: 0; }
.life-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.life-tile:hover img { transform: scale(1.1); }
.life-tile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(7,22,38,0.85) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; color: #fff; text-align: left; }
.life-tile-overlay i { color: var(--gold-400); font-size: 1.25rem; margin-bottom: 0.25rem; }
.life-tile-overlay span:last-child { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy-900); color: #fff; padding: 3.5rem 0; border-top: 4px solid var(--gold-500); }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; text-align: center; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: 5fr 2fr 5fr; text-align: left; } }
.testimonial i { font-size: 1.75rem; color: var(--gold-400); }
.testimonial p { font-size: 1.05rem; font-weight: 300; font-style: italic; color: #e2e8f0; margin: 0.5rem 0; }
.testimonial-author { font-size: 0.7rem; font-weight: 700; color: var(--gold-400); text-transform: uppercase; letter-spacing: 0.05em; }
.testimonial-right { text-align: center; }
@media (min-width: 768px) { .testimonial-right { text-align: right; } }
.testimonial-badge { display: flex; justify-content: center; padding: 1rem 0; }
@media (min-width: 768px) { .testimonial-badge { padding: 0; } }
.testimonial-badge i { width: 4rem; height: 4rem; border-radius: 999px; background: var(--navy-800); border: 2px solid var(--gold-400); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow-card); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #cbd5e1; font-size: 0.75rem; padding: 3rem 0; border-top: 1px solid var(--navy-800); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4, .footer-heading { font-family: var(--font-serif); font-weight: 700; color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-brand .brand { align-items: center; }
.footer-brand h4 { font-size: 1rem; margin: 0; }
.footer-brand .eyebrow { color: var(--gold-400); font-size: 0.6rem; }
.footer-blurb { color: #94a3b8; line-height: 1.6; margin: 1rem 0; }
.social-row { display: flex; gap: 0.75rem; }
.social-btn { width: 2rem; height: 2rem; border-radius: 999px; background: var(--navy-800); display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.social-btn:hover { background: var(--gold-500); color: var(--navy-900); }

.footer-heading { color: var(--gold-400); border-bottom: 1px solid var(--navy-800); padding-bottom: 0.5rem; margin-bottom: 0.75rem; }
.footer-col p { display: flex; align-items: flex-start; gap: 0.5rem; margin: 0.5rem 0; }
.footer-col p i { color: var(--gold-400); margin-top: 0.15rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a::before { content: '\2192\0020'; }
.footer-links a:hover { color: var(--gold-400); }

.map-box { background: var(--navy-900); border: 1px solid var(--navy-800); border-radius: var(--radius-lg); padding: 0.75rem; text-align: center; }
.map-placeholder { height: 6rem; background: var(--navy-800); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; position: relative; color: #64748b; margin-bottom: 0.75rem; overflow: hidden; }
.map-placeholder i { font-size: 1.75rem; color: rgba(241,196,15,0.4); }
.map-placeholder span { position: absolute; bottom: 0.5rem; font-size: 0.68rem; color: #cbd5e1; font-weight: 600; }

.footer-bottom { border-top: 1px solid var(--navy-800); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.68rem; color: #64748b; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a:hover { text-decoration: underline; }

/* ---------- Modals ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 50; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-panel { background: #fff; border-radius: var(--radius-xl); max-width: 32rem; width: 100%; padding: 1.5rem; position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4); max-height: 90vh; overflow-y: auto; }
.modal-panel-dark { background: var(--navy-900); color: #fff; max-width: 42rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; color: #9ca3af; font-size: 1.1rem; }
.modal-close:hover { color: #374151; }
.modal-close.light { color: #9ca3af; }
.modal-close.light:hover { color: #fff; }
.modal-head { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid #e5e7eb; padding-bottom: 0.75rem; margin-bottom: 1rem; }
.modal-icon { width: 2.5rem; height: 2.5rem; border-radius: 999px; background: rgba(212,160,23,0.2); color: var(--gold-600); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.modal-head h3, .modal-title, .modal-title-gold { font-family: var(--font-serif); font-weight: 700; color: var(--navy-900); font-size: 1.1rem; margin: 0; }
.modal-title { border-bottom: 1px solid #e5e7eb; padding-bottom: 0.5rem; }
.modal-title-gold { color: var(--gold-400); font-size: 1.25rem; }
.modal-title-gold i { margin-right: 0.5rem; }
.modal-head p { font-size: 0.7rem; color: #6b7280; margin: 0; }
.modal-intro, .modal-body-text, .tour-copy { font-size: 0.75rem; color: #4b5563; line-height: 1.6; }
.tour-copy { color: #cbd5e1; }

.stt-form { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; }
.form-row label { display: block; font-weight: 700; color: #374151; margin-bottom: 0.25rem; }
.form-row input, .form-row select { width: 100%; padding: 0.5rem 0.75rem; border: 1px solid #d1d5db; border-radius: 0.5rem; font-family: inherit; font-size: 0.8rem; }
.form-row input:focus, .form-row select:focus { outline: 2px solid var(--navy-800); outline-offset: 1px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.form-status { min-height: 1rem; font-weight: 700; }
.form-status.success { color: #15803d; }
.form-status.error { color: #b91c1c; }

.tour-frame { height: 16rem; background: var(--navy-800); border-radius: var(--radius-xl); overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; border: 1px solid var(--navy-700); }
.tour-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.tour-play { position: relative; text-align: center; }
.play-btn { width: 4rem; height: 4rem; border-radius: 999px; background: var(--gold-500); color: var(--navy-900); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 0.5rem; box-shadow: var(--shadow-card); transition: transform 0.2s ease; }
.tour-frame:hover .play-btn { transform: scale(1.1); }
.tour-play p { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; margin: 0; }

/* ---------- Generic content pages ---------- */
.generic-content { max-width: 60rem; }
.page-header-block { margin-bottom: 1.5rem; }
.page-header-block h1 { font-family: var(--font-serif); font-size: 2rem; color: var(--navy-900); margin: 0.25rem 0 0; }
.entry-content { line-height: 1.8; font-size: 0.95rem; }
.entry-content p { margin: 0 0 1rem; }
.basic-list-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #e5e7eb; }
.basic-list-item h2 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy-900); margin: 0 0 0.5rem; }
.entry-meta { font-size: 0.7rem; color: #9ca3af; margin-bottom: 0.5rem; }
.single-thumb { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem; }
.archive-cards { margin-top: 1rem; }
