Files
Siteforge/src/App.css
T

3155 lines
58 KiB
CSS

/* ── Brand: dark charcoal, gold accent, cream text ── */
/* Fonts loaded via Google Fonts in index.html */
/* ── Site wrapper ── */
.site {
background: var(--brand-black);
color: var(--brand-warm-white);
min-height: 100vh;
}
/* ── Header ── */
.site-header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(10, 10, 8, 0.92);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.header-inner {
max-width: 1100px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.header-ornament {
font-family: var(--brand-font-body);
color: var(--brand-gold);
letter-spacing: 10px;
font-size: 0.85rem;
opacity: 0.6;
}
.header-nav {
display: flex;
gap: 1.75rem;
align-items: center;
}
.header-nav a {
color: var(--brand-muted);
text-decoration: none;
font-family: var(--brand-font-body);
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
font-size: 1.02rem;
transition: color 200ms;
}
.header-nav a:hover {
color: var(--brand-gold);
}
.header-cta {
color: var(--brand-gold) !important;
border: 1px solid rgba(201, 168, 76, 0.5) !important;
border-radius: 999px;
padding: 0.4rem 1.2rem !important;
transition: background 200ms, color 200ms !important;
}
.header-cta:hover {
background: var(--brand-gold);
color: var(--brand-black) !important;
}
/* ── Hero ── */
.hero {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
max-width: 1100px;
margin: 0 auto;
padding: 5rem 2rem 6rem;
min-height: 88vh;
}
.hero-art {
position: relative;
display: flex;
justify-content: center;
}
@keyframes glow-pulse {
0%, 100% { opacity: 0.96; transform: scale(1); }
50% { opacity: 0.72; transform: scale(1.2); }
}
.art-glow {
position: absolute;
inset: -44%;
background: radial-gradient(ellipse, rgba(201, 168, 76, 0.42) 0%, rgba(201, 168, 76, 0.16) 44%, transparent 72%);
z-index: 0;
border-radius: 50%;
pointer-events: none;
filter: blur(12px);
animation: glow-pulse 4s ease-in-out infinite;
}
.podcast-art {
position: relative;
z-index: 1;
width: 100%;
max-width: 440px;
border-radius: 18px;
box-shadow:
0 0 0 1px rgba(201, 168, 76, 0.25),
0 20px 80px rgba(201, 168, 76, 0.2),
0 6px 24px rgba(0, 0, 0, 0.7);
}
.hero-text {
display: flex;
flex-direction: column;
}
.eyebrow {
font-family: var(--brand-font-body);
font-weight: 400;
font-size: 1rem;
letter-spacing: 0.24em;
text-transform: uppercase;
color: var(--brand-gold);
margin: 0 0 1.25rem;
opacity: 0.95;
padding: 0;
}
.hero-title {
font-family: var(--brand-font-heading);
font-weight: 900;
font-size: clamp(2.85rem, 5.3vw, 5.6rem);
line-height: 0.98;
letter-spacing: -0.01em;
color: var(--brand-warm-white);
margin: 0;
white-space: nowrap;
text-shadow: 0 0 70px rgba(201, 168, 76, 0.25);
}
.with-nate {
font-family: var(--brand-font-body);
font-weight: 700;
font-size: clamp(1.2rem, 2.4vw, 1.55rem);
letter-spacing: 0.12em;
color: var(--brand-gold);
margin: 0.4rem 0 0;
padding: 0;
}
.word-with {
color: var(--brand-warm-white);
font-weight: 300;
opacity: 0.85;
}
.rule-divider {
width: 200px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
margin: 1.4rem 0;
border: none;
}
.tagline {
font-family: var(--brand-font-body);
font-weight: 400;
font-size: clamp(1.05rem, 1.6vw, 1.22rem);
letter-spacing: 0.08em;
color: var(--brand-warm-white);
margin: 0 0 2rem;
padding: 0;
opacity: 0.92;
}
.hero-ctas {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.btn-primary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--brand-gold);
color: var(--brand-black);
font-family: var(--brand-font-body);
font-weight: 700;
font-size: 1rem;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 0.75rem 1.75rem;
border-radius: 999px;
text-decoration: none;
transition: opacity 200ms, transform 200ms;
border: none;
cursor: pointer;
}
.btn-primary:hover {
opacity: 0.88;
transform: translateY(-1px);
}
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--brand-warm-white);
font-family: var(--brand-font-body);
font-weight: 500;
font-size: 1rem;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 0.75rem 1.75rem;
border-radius: 999px;
text-decoration: none;
border: 1px solid rgba(240, 234, 216, 0.25);
transition: border-color 200ms, color 200ms;
}
.btn-secondary:hover {
border-color: var(--brand-gold);
color: var(--brand-gold);
}
/* ── Shared section styles ── */
.section-inner {
max-width: 900px;
margin: 0 auto;
padding: 0 2rem;
}
.section-heading {
font-family: var(--brand-font-heading);
font-size: clamp(1.6rem, 3vw, 2.4rem);
color: var(--brand-warm-white);
text-align: center;
margin: 0 0 2.5rem;
font-weight: 700;
}
.ornament {
color: var(--brand-gold);
font-style: normal;
}
/* ── Player ── */
.section-player {
background: #070707;
border-top: 1px solid rgba(201, 168, 76, 0.18);
border-bottom: 1px solid rgba(201, 168, 76, 0.18);
padding: 5rem 0;
}
.embed-wrap {
margin-bottom: 2rem;
border-radius: 14px;
overflow: hidden;
}
.platform-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
align-items: center;
}
.platform-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-family: var(--brand-font-body);
font-weight: 600;
font-size: 1rem;
letter-spacing: 0.06em;
text-decoration: none;
transition: opacity 200ms, transform 200ms;
padding: 0.65rem 1.5rem;
border-radius: 999px;
}
.platform-btn:hover {
opacity: 0.85;
transform: translateY(-1px);
}
.spotify-btn {
background: #1db954;
color: #000;
}
.apple-btn {
background: transparent;
padding: 0;
border-radius: 0;
}
.apple-badge {
height: 44px;
display: block;
}
/* ── About ── */
.section-about {
background: #0d0d0d;
padding: 5rem 0;
}
.about-inner {
display: grid;
grid-template-columns: 360px 1fr;
gap: 4rem;
align-items: start;
}
.about-photo img {
width: 100%;
border-radius: 14px;
box-shadow:
0 12px 50px rgba(0, 0, 0, 0.55),
0 0 0 1px rgba(201, 168, 76, 0.15);
}
.about-text h2 {
font-family: var(--brand-font-heading);
font-size: clamp(1.8rem, 3vw, 2.4rem);
color: var(--brand-warm-white);
margin: 0.5rem 0 1.2rem;
font-weight: 700;
}
.about-text p {
font-family: var(--brand-font-body);
font-weight: 400;
font-size: 1.2rem;
line-height: 1.7;
color: var(--brand-warm-white);
margin: 0 0 1rem;
padding: 0;
opacity: 0.9;
}
/* ── Series ── */
.section-series {
background: #080808;
border-top: 1px solid rgba(201, 168, 76, 0.18);
border-bottom: 1px solid rgba(201, 168, 76, 0.18);
padding: 5rem 0;
}
.series-grid {
display: flex;
justify-content: center;
}
.series-card {
display: grid;
grid-template-columns: 260px 1fr;
gap: 3rem;
align-items: center;
max-width: 800px;
width: 100%;
background: #131313;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 18px;
padding: 2.5rem;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.series-art {
width: 100%;
border-radius: 10px;
box-shadow: 0 8px 30px rgba(201, 168, 76, 0.22);
}
.series-label {
font-family: var(--brand-font-body);
font-weight: 700;
font-size: 0.75rem;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--brand-gold);
margin: 0 0 0.5rem;
padding: 0;
}
.series-info h3 {
font-family: var(--brand-font-heading);
font-size: clamp(1.4rem, 2.5vw, 1.9rem);
color: var(--brand-warm-white);
margin: 0 0 0.85rem;
font-weight: 700;
}
.series-info p {
font-family: var(--brand-font-body);
font-weight: 400;
font-size: 1.14rem;
line-height: 1.65;
color: var(--brand-warm-white);
margin: 0 0 1.75rem;
padding: 0;
opacity: 0.9;
}
.section-archive-series {
background: #0b0b0b;
border-top: 1px solid rgba(201, 168, 76, 0.12);
padding: 4.5rem 0;
}
.archive-series-rotator {
display: grid;
grid-template-columns: auto 1fr auto;
gap: 0.75rem;
align-items: center;
}
.archive-rotate-btn {
width: 2.3rem;
height: 2.3rem;
border-radius: 999px;
border: 1px solid rgba(201, 168, 76, 0.4);
background: rgba(201, 168, 76, 0.08);
color: var(--brand-gold);
font-size: 1.4rem;
line-height: 1;
cursor: pointer;
}
.archive-rotate-btn:hover {
background: rgba(201, 168, 76, 0.16);
}
.archive-series-list {
overflow: hidden;
}
.archive-series-track {
display: flex;
transition: transform 450ms ease;
}
.archive-series-card {
min-width: 100%;
display: grid;
grid-template-columns: 180px 1fr;
gap: 1.5rem;
background: #121212;
border: 1px solid rgba(201, 168, 76, 0.18);
border-radius: 18px;
padding: 1.5rem;
}
.archive-series-art {
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 28px rgba(201, 168, 76, 0.16);
}
.archive-series-copy h3 {
font-family: var(--brand-font-heading);
color: var(--brand-warm-white);
margin: 0 0 0.75rem;
font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}
.archive-series-copy p {
font-family: var(--brand-font-body);
color: var(--brand-muted);
font-size: 1rem;
line-height: 1.7;
margin: 0 0 1rem;
}
.archive-series-actions {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
margin: 1rem 0;
}
.archive-series-study-guide {
color: #b7a27a;
}
.archive-series-resources,
.archive-series-notes {
margin-top: 1.25rem;
}
.archive-series-resources h4,
.archive-series-note h4 {
margin: 0 0 0.6rem;
font-family: var(--brand-font-body);
font-size: 0.9rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--brand-gold);
}
.archive-series-notes {
display: grid;
gap: 0.9rem;
}
.archive-series-note {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(201, 168, 76, 0.12);
border-radius: 12px;
padding: 1rem;
}
.archive-rotator-dots {
margin-top: 1rem;
display: flex;
justify-content: center;
gap: 0.45rem;
}
.archive-rotator-dot {
width: 0.52rem;
height: 0.52rem;
border: none;
border-radius: 999px;
background: rgba(122, 112, 96, 0.5);
cursor: pointer;
}
.archive-rotator-dot--active {
background: var(--brand-gold);
}
.archive-rotator-count {
margin-top: 0.55rem;
text-align: center;
font-family: var(--brand-font-body);
color: var(--brand-muted);
letter-spacing: 0.1em;
font-size: 0.8rem;
}
/* ── QR / Share ── */
.section-qr {
background: var(--brand-black);
padding: 5rem 0;
}
.qr-inner {
display: grid;
grid-template-columns: 1fr auto;
gap: 4rem;
align-items: center;
}
.qr-text h2 {
font-family: var(--brand-font-heading);
font-size: clamp(1.6rem, 2.5vw, 2.2rem);
color: var(--brand-warm-white);
margin: 0.5rem 0 1rem;
font-weight: 700;
}
.qr-text p {
font-family: var(--brand-font-body);
font-weight: 300;
font-size: 1.1rem;
line-height: 1.65;
color: var(--brand-muted);
margin: 0 0 1.5rem;
padding: 0;
}
.share-show-wrap {
margin-top: 1rem;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.45rem;
}
.btn-share-show {
width: fit-content;
}
.share-feedback {
margin: 0;
font-family: var(--brand-font-body);
color: #cdb483;
font-size: 0.9rem;
}
.qr-code-wrap {
text-align: center;
flex-shrink: 0;
}
.qr-frame {
display: inline-block;
padding: 12px;
background: #f5eed8;
border-radius: 8px;
position: relative;
}
.qr-code {
display: block;
width: 180px;
height: 180px;
border-radius: 2px;
}
.scan-label {
font-family: var(--brand-font-body);
font-weight: 500;
font-size: 0.72rem;
letter-spacing: 0.4em;
text-transform: uppercase;
color: var(--brand-gold);
margin-top: 0.85rem;
text-align: center;
opacity: 0.8;
padding: 0;
}
/* ── Contact ── */
.section-chatbot-feature {
padding: 5rem 0;
background:
radial-gradient(circle at top left, rgba(201, 168, 76, 0.14), transparent 38%),
linear-gradient(180deg, rgba(22, 18, 10, 0.96), rgba(11, 11, 11, 0.98));
border-top: 1px solid rgba(201, 168, 76, 0.18);
border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.chatbot-feature-inner {
display: grid;
grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
gap: 2rem;
align-items: stretch;
}
.chatbot-feature-copy,
.chatbot-feature-card {
background: rgba(18, 18, 18, 0.84);
border: 1px solid rgba(201, 168, 76, 0.2);
border-radius: 18px;
padding: 1.7rem;
box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.chatbot-feature-copy .section-heading {
text-align: left;
margin-bottom: 1rem;
}
.chatbot-feature-lead,
.chatbot-feature-sub,
.chatbot-feature-kicker {
font-family: var(--brand-font-body);
margin: 0;
color: #d9c9a0;
}
.chatbot-feature-lead {
font-size: clamp(1.2rem, 2vw, 1.55rem);
line-height: 1.45;
color: var(--brand-warm-white);
text-wrap: balance;
}
.chatbot-feature-sub {
margin-top: 0.85rem;
font-size: 1.02rem;
line-height: 1.65;
color: #ab9568;
}
.chatbot-feature-actions {
margin-top: 1.35rem;
display: flex;
flex-wrap: wrap;
gap: 0.85rem;
}
.chatbot-feature-card {
display: flex;
flex-direction: column;
justify-content: center;
}
.chatbot-feature-kicker {
font-size: 0.82rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--brand-gold);
margin-bottom: 1rem;
}
.chatbot-feature-prompts {
display: flex;
flex-wrap: wrap;
gap: 0.65rem;
}
.chatbot-prompt-btn--feature {
font-size: 0.86rem;
padding: 0.55rem 0.9rem;
text-align: left;
color: #efd8a1;
}
.section-contact {
background: #090909;
border-top: 1px solid rgba(201, 168, 76, 0.18);
border-bottom: 1px solid rgba(201, 168, 76, 0.18);
padding: 5rem 0;
}
.contact-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2.5rem;
align-items: start;
}
.contact-copy .section-heading {
text-align: left;
margin-bottom: 1rem;
}
.contact-copy p {
font-family: var(--brand-font-body);
font-weight: 300;
font-size: 1.08rem;
line-height: 1.7;
color: var(--brand-muted);
margin: 0;
padding: 0;
}
.contact-copy .contact-highlight {
font-size: clamp(1.25rem, 2.2vw, 1.65rem);
line-height: 1.35;
font-weight: 600;
color: var(--brand-warm-white);
margin: 0 0 0.6rem;
text-wrap: balance;
}
.contact-form {
background: #121212;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 14px;
padding: 1.4rem;
display: flex;
flex-direction: column;
gap: 0.95rem;
}
.contact-form label {
display: flex;
flex-direction: column;
gap: 0.4rem;
font-family: var(--brand-font-body);
font-weight: 500;
font-size: 0.82rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--brand-gold);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
background: #0c0c0c;
border: 1px solid rgba(201, 168, 76, 0.25);
border-radius: 8px;
color: var(--brand-warm-white);
font-family: var(--brand-font-body);
font-size: 1rem;
font-weight: 300;
padding: 0.7rem 0.85rem;
outline: none;
transition: border-color 200ms;
}
.contact-form input:focus,
.contact-form textarea:focus {
border-color: rgba(201, 168, 76, 0.7);
}
.contact-form textarea {
resize: vertical;
}
.contact-consent {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 0.75rem;
font-family: var(--brand-font-body);
font-size: 1rem;
font-weight: 400;
letter-spacing: normal;
line-height: 1.5;
text-transform: none;
color: #d8c79e;
}
.contact-consent input {
width: 1rem;
height: 1rem;
margin-top: 0.2rem;
padding: 0;
flex: 0 0 auto;
accent-color: var(--brand-gold);
}
.contact-consent span {
display: block;
}
.contact-form .btn-primary {
justify-content: center;
width: 100%;
margin-top: 0.25rem;
}
.contact-form .btn-primary:disabled {
opacity: 0.55;
cursor: not-allowed;
transform: none;
}
.contact-error {
font-family: var(--brand-font-body);
font-size: 0.95rem;
color: #e05c5c;
margin: 0;
padding: 0;
}
.contact-honeypot {
position: absolute;
left: -9999px;
opacity: 0;
pointer-events: none;
}
/* ── Thank You Page ── */
.thanks-page {
min-height: 100vh;
background:
radial-gradient(ellipse at top, rgba(201, 168, 76, 0.12) 0%, transparent 55%),
var(--brand-black);
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.thanks-card {
width: min(720px, 100%);
background: #121212;
border: 1px solid rgba(201, 168, 76, 0.24);
border-radius: 16px;
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
padding: 2rem;
text-align: center;
}
.thanks-card h1 {
font-family: var(--brand-font-heading);
font-size: clamp(2rem, 5vw, 3rem);
color: var(--brand-warm-white);
margin: 0.3rem 0 1rem;
}
.thanks-card p {
font-family: var(--brand-font-body);
font-size: 1.1rem;
font-weight: 300;
line-height: 1.7;
color: var(--brand-muted);
margin: 0 0 1rem;
padding: 0;
}
.subscribe-card {
max-width: 560px;
}
.subscribe-form {
margin-top: 1rem;
text-align: left;
}
.subscribe-form .btn-secondary {
width: 100%;
justify-content: center;
}
.thanks-countdown {
color: #d4b87a !important;
letter-spacing: 0.06em;
margin-bottom: 1.3rem !important;
}
.thanks-card .btn-primary {
justify-content: center;
}
/* ── Footer ── */
.site-footer {
background: #050505;
border-top: 1px solid rgba(201, 168, 76, 0.18);
padding: 4.5rem 2rem;
text-align: center;
}
.footer-ornament {
color: var(--brand-gold);
letter-spacing: 18px;
opacity: 0.55;
font-size: 0.9rem;
margin: 0 0 1.5rem;
padding: 0;
}
.footer-title {
font-family: var(--brand-font-heading);
font-size: 1.6rem;
color: var(--brand-warm-white);
margin: 0 0 0.3rem;
font-weight: 700;
padding: 0;
}
.footer-sub {
font-family: var(--brand-font-body);
font-weight: 300;
font-size: 0.85rem;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--brand-gold);
margin: 0 0 1.75rem;
opacity: 0.7;
padding: 0;
}
.footer-contact {
font-family: var(--brand-font-body);
font-weight: 400;
font-size: 0.95rem;
letter-spacing: 0.08em;
color: #d4b87a;
margin: 0 0 1.2rem;
padding: 0;
}
.footer-contact a {
color: var(--brand-warm-white);
text-decoration: none;
border-bottom: 1px solid rgba(240, 234, 216, 0.4);
transition: color 200ms, border-color 200ms;
}
.footer-contact a:hover {
color: var(--brand-gold);
border-color: rgba(201, 168, 76, 0.8);
}
.footer-links {
display: flex;
gap: 1rem;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin: 0 0 1.25rem;
padding: 0;
list-style: none;
}
.footer-links a {
color: var(--brand-muted);
text-decoration: none;
font-family: var(--brand-font-body);
font-weight: 400;
letter-spacing: 0.05em;
font-size: 0.95rem;
transition: color 200ms;
}
.footer-links a:hover {
color: var(--brand-gold);
}
.footer-links span {
color: var(--brand-gold);
opacity: 0.4;
}
.footer-copy {
font-family: var(--brand-font-body);
font-weight: 300;
font-size: 0.8rem;
color: var(--brand-muted);
opacity: 0.55;
margin: 0;
letter-spacing: 0.05em;
padding: 0;
}
/* ── Platform variants ── */
.youtube-btn {
background: #ff0000;
color: #fff;
}
.amazon-btn {
background: #00a8e1;
color: #fff;
}
.facebook-btn {
background: #1877f2;
color: #fff;
}
.custom-btn {
background: #1a1a1a;
color: var(--brand-warm-white);
border: 1px solid rgba(201, 168, 76, 0.3);
}
/* ── More Resources section ── */
.section-resources {
background: var(--brand-black);
border-top: 1px solid rgba(201, 168, 76, 0.18);
padding: 4rem 0;
}
.resources-list {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.resource-link {
font-family: var(--brand-font-body);
font-weight: 500;
font-size: 1rem;
letter-spacing: 0.06em;
color: var(--brand-gold);
text-decoration: none;
border: 1px solid rgba(201, 168, 76, 0.3);
border-radius: 999px;
padding: 0.6rem 1.4rem;
transition: background 200ms, color 200ms;
}
.resource-link:hover {
background: rgba(201, 168, 76, 0.1);
color: #d4b87a;
}
/* ── Custom content blocks ── */
.section-custom-block {
background: #0d0d0d;
border-top: 1px solid rgba(201, 168, 76, 0.12);
padding: 4rem 0;
}
.custom-block-inner h2 {
font-family: var(--brand-font-heading);
font-size: clamp(1.6rem, 2.5vw, 2.2rem);
color: var(--brand-warm-white);
margin: 0 0 1rem;
font-weight: 700;
}
.custom-block-inner p {
font-family: var(--brand-font-body);
font-weight: 300;
font-size: 1.1rem;
line-height: 1.75;
color: var(--brand-muted);
margin: 0;
padding: 0;
}
/* ── Study Guide section ── */
.section-guide {
background: #0d0d0d;
border-top: 1px solid rgba(201, 168, 76, 0.18);
border-bottom: 1px solid rgba(201, 168, 76, 0.18);
padding: 5rem 0;
}
.guide-inner {
display: grid;
grid-template-columns: 100px 1fr;
gap: 3rem;
align-items: center;
}
.guide-icon {
width: 100px;
flex-shrink: 0;
}
.guide-icon svg {
width: 100%;
height: auto;
}
.guide-text h2 {
font-family: var(--brand-font-heading);
font-size: clamp(1.6rem, 2.5vw, 2.2rem);
color: var(--brand-warm-white);
margin: 0.5rem 0 0.85rem;
font-weight: 700;
}
.guide-text p {
font-family: var(--brand-font-body);
font-weight: 300;
font-size: 1.1rem;
line-height: 1.65;
color: var(--brand-muted);
margin: 0 0 1.5rem;
padding: 0;
}
.guide-actions {
margin-top: 0.9rem;
}
.study-download-form {
margin-top: 0.8rem;
background: #121212;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 14px;
padding: 1rem;
display: flex;
flex-direction: column;
gap: 0.85rem;
}
.study-download-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.85rem;
}
.study-download-form label {
display: flex;
flex-direction: column;
gap: 0.4rem;
font-family: var(--brand-font-body);
font-weight: 500;
font-size: 0.82rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--brand-gold);
}
.study-download-form input {
background: #0c0c0c;
border: 1px solid rgba(201, 168, 76, 0.25);
border-radius: 8px;
color: var(--brand-warm-white);
font-family: var(--brand-font-body);
font-size: 1rem;
font-weight: 300;
padding: 0.7rem 0.85rem;
outline: none;
transition: border-color 200ms;
}
.study-download-form input:focus {
border-color: rgba(201, 168, 76, 0.7);
}
.study-download-form .btn-primary {
justify-content: center;
width: 100%;
margin-top: 0.2rem;
}
.study-download-success {
font-family: var(--brand-font-body);
font-size: 0.95rem;
color: #97cd85;
margin: 0;
}
/* ── Admin page ── */
.admin-page {
min-height: 100vh;
background: var(--brand-black);
color: var(--brand-warm-white);
}
.admin-header {
background: #070707;
border-bottom: 1px solid rgba(201, 168, 76, 0.2);
padding: 2.5rem 2rem;
text-align: center;
}
.admin-header-actions {
display: flex;
justify-content: center;
align-items: center;
gap: 0.75rem;
flex-wrap: wrap;
}
.admin-ornament {
display: block;
color: var(--brand-gold);
letter-spacing: 12px;
font-size: 0.85rem;
opacity: 0.55;
margin-bottom: 1rem;
}
.admin-header h1 {
font-family: var(--brand-font-heading);
font-size: 2rem;
color: var(--brand-warm-white);
margin: 0 0 0.25rem;
font-weight: 700;
}
.admin-sub {
font-family: var(--brand-font-body);
font-weight: 300;
font-size: 0.85rem;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--brand-gold);
margin: 0 0 1.25rem;
opacity: 0.75;
padding: 0;
}
.admin-back {
display: inline-block;
font-family: var(--brand-font-body);
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.06em;
color: var(--brand-muted);
text-decoration: none;
border: 1px solid rgba(122, 112, 96, 0.3);
border-radius: 999px;
padding: 0.4rem 1rem;
transition: color 200ms, border-color 200ms;
}
.admin-back:hover {
color: var(--brand-gold);
border-color: rgba(201, 168, 76, 0.5);
}
.btn-admin-logout {
background: transparent;
color: var(--brand-muted);
border: 1px solid rgba(122, 112, 96, 0.3);
border-radius: 999px;
padding: 0.4rem 1rem;
font-family: var(--brand-font-body);
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
cursor: pointer;
}
.btn-admin-logout:hover {
color: var(--brand-gold);
border-color: rgba(201, 168, 76, 0.5);
}
.admin-auth-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: var(--brand-black);
padding: 2rem;
}
.admin-auth-card {
width: min(520px, 100%);
background: #101010;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 16px;
padding: 2rem;
text-align: center;
}
.admin-auth-card h1 {
margin: 0 0 1rem;
font-family: var(--brand-font-heading);
color: var(--brand-warm-white);
}
.admin-auth-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.admin-auth-form label {
display: flex;
flex-direction: column;
gap: 0.4rem;
text-align: left;
font-family: var(--brand-font-body);
color: var(--brand-gold);
letter-spacing: 0.14em;
text-transform: uppercase;
}
.admin-auth-form input {
background: #111;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 8px;
color: var(--brand-warm-white);
padding: 0.7rem 0.85rem;
font-family: var(--brand-font-body);
font-size: 1rem;
}
.admin-auth-error,
.admin-auth-note {
margin: 0;
font-family: var(--brand-font-body);
}
.admin-auth-error {
color: #e05c5c;
}
.admin-auth-note {
color: var(--brand-muted);
}
.admin-form-wrap {
max-width: 760px;
margin: 0 auto;
padding: 3rem 2rem 5rem;
}
.admin-top-tabs {
display: flex;
flex-wrap: wrap;
gap: 0.65rem;
margin-bottom: 1.1rem;
}
.admin-top-tabs .admin-tab {
flex: 1 1 180px;
min-width: 180px;
max-width: 100%;
text-align: center;
white-space: normal;
line-height: 1.2;
overflow-wrap: anywhere;
}
.admin-brand-kit {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.admin-brand-hero {
display: flex;
gap: 1.25rem;
align-items: center;
background: var(--brand-black-2);
border: 1px solid var(--brand-border);
border-radius: 14px;
padding: 1.25rem;
}
.admin-brand-hero img {
width: 92px;
height: 92px;
border-radius: 12px;
flex-shrink: 0;
}
.admin-brand-kicker {
color: var(--brand-gold);
font-size: 0.9rem;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.admin-brand-hero h3 {
margin: 0.15rem 0 0;
color: var(--brand-warm-white);
font-size: 2rem;
}
.admin-brand-tagline {
margin-top: 0.35rem;
color: var(--brand-muted);
font-style: italic;
}
.admin-brand-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}
.admin-brand-card {
background: var(--brand-black-2);
border: 1px solid var(--brand-border);
border-radius: 14px;
padding: 1.25rem;
}
.admin-brand-card h3 {
color: var(--brand-warm-white);
font-size: 1.55rem;
margin: 0 0 0.95rem;
}
.admin-brand-swatches {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.85rem;
}
.admin-brand-swatch {
border: 1px solid var(--brand-border);
border-radius: 10px;
overflow: hidden;
}
.admin-brand-swatch-block {
height: 66px;
}
.admin-brand-swatch-copy {
padding: 0.75rem 0.85rem;
background: var(--brand-black-3);
}
.admin-brand-swatch-copy strong,
.admin-brand-type-sample {
display: block;
color: var(--brand-warm-white);
}
.admin-brand-swatch-copy span,
.admin-brand-type-spec {
display: block;
color: var(--brand-gold);
font-size: 0.9rem;
margin-top: 0.15rem;
}
.admin-brand-swatch-copy p,
.admin-brand-type-label,
.admin-brand-note,
.admin-brand-checklist li {
color: var(--brand-muted);
}
.admin-brand-swatch-copy p {
margin-top: 0.25rem;
}
.admin-brand-type-list {
display: flex;
flex-direction: column;
gap: 0.9rem;
}
.admin-brand-type-row {
border-top: 1px solid var(--brand-border);
padding-top: 0.9rem;
}
.admin-brand-type-row:first-child {
border-top: none;
padding-top: 0;
}
.admin-brand-type-label {
font-size: 0.88rem;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.admin-brand-type-sample {
margin-top: 0.35rem;
font-size: 1.7rem;
}
.admin-brand-card--verify {
background: linear-gradient(180deg, rgba(201, 168, 76, 0.06), rgba(15, 15, 12, 0.95));
}
.admin-brand-checklist {
margin: 0;
padding-left: 1.25rem;
display: flex;
flex-direction: column;
gap: 0.55rem;
}
.admin-brand-note {
margin-top: 0.9rem;
}
.admin-stats {
background: #0d0d0d;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 12px;
padding: 1.25rem;
margin-bottom: 2rem;
}
.admin-stats-head h2 {
font-family: var(--brand-font-heading);
font-size: 1.4rem;
margin: 0;
}
.admin-stats-head p {
font-family: var(--brand-font-body);
color: var(--brand-muted);
margin: 0.4rem 0 0;
}
.admin-stats-head--visitors {
margin-top: 1.25rem;
padding-top: 1.25rem;
border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.admin-stats-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;
margin-top: 1rem;
}
.admin-stats-grid article {
background: #111;
border: 1px solid rgba(201, 168, 76, 0.16);
border-radius: 8px;
padding: 0.85rem;
}
.admin-stats-grid h3 {
margin: 0;
font-family: var(--brand-font-body);
font-size: 0.78rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--brand-gold);
}
.admin-stats-grid p {
margin: 0.45rem 0 0;
font-family: var(--brand-font-body);
color: var(--brand-warm-white);
font-size: 1rem;
}
.admin-stats-lists {
margin-top: 1rem;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}
.admin-stats-lists h3 {
margin: 0 0 0.45rem;
font-family: var(--brand-font-body);
color: var(--brand-gold);
font-size: 0.86rem;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.admin-stats-lists ul {
margin: 0;
padding: 0;
list-style: none;
}
.admin-stats-lists li {
display: flex;
justify-content: space-between;
gap: 0.6rem;
border-bottom: 1px solid rgba(201, 168, 76, 0.12);
padding: 0.45rem 0;
font-family: var(--brand-font-body);
color: var(--brand-warm-white);
}
.admin-stats-lists strong {
color: var(--brand-gold);
}
.admin-stats-note {
font-family: var(--brand-font-body);
color: var(--brand-muted);
margin: 1rem 0 0;
}
.admin-stats-note--err {
color: #e05c5c;
}
.admin-privacy-note {
margin: 0.8rem 0 0;
font-family: var(--brand-font-body);
color: var(--brand-muted);
font-size: 0.95rem;
}
.admin-visits-table-wrap {
margin-top: 1.25rem;
}
.admin-visits-table-wrap h3 {
margin: 0 0 0.5rem;
font-family: var(--brand-font-body);
color: var(--brand-gold);
font-size: 0.9rem;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.admin-visits-table-scroll {
overflow-x: auto;
}
.admin-visits-table {
width: 100%;
border-collapse: collapse;
min-width: 920px;
}
.admin-visits-table th,
.admin-visits-table td {
text-align: left;
padding: 0.5rem 0.6rem;
border-bottom: 1px solid rgba(201, 168, 76, 0.16);
font-family: var(--brand-font-body);
color: var(--brand-warm-white);
font-size: 0.9rem;
}
.admin-visits-table th {
color: var(--brand-gold);
letter-spacing: 0.08em;
text-transform: uppercase;
font-size: 0.74rem;
position: sticky;
top: 0;
background: #111;
}
.admin-actions--maintenance {
margin-top: 0.9rem;
}
.admin-restore-row {
margin-top: 0.9rem;
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
align-items: center;
}
.admin-restore-row label {
font-family: var(--brand-font-body);
font-size: 0.8rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--brand-gold);
}
.admin-restore-row select {
min-width: 260px;
background: #111;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 6px;
color: var(--brand-warm-white);
font-family: var(--brand-font-body);
font-size: 0.95rem;
padding: 0.55rem 0.8rem;
}
.admin-restore-preview {
margin-top: 0.9rem;
background: #101010;
border: 1px solid rgba(201, 168, 76, 0.2);
border-radius: 8px;
padding: 0.85rem;
}
.admin-restore-preview h3 {
margin: 0 0 0.45rem;
color: var(--brand-gold);
font-family: var(--brand-font-body);
font-size: 0.85rem;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.admin-restore-preview p {
margin: 0.2rem 0;
color: var(--brand-warm-white);
font-family: var(--brand-font-body);
}
.footer-privacy {
font-family: var(--brand-font-body);
font-size: 0.8rem;
color: var(--brand-muted);
margin-top: 0.75rem;
max-width: 760px;
margin-left: auto;
margin-right: auto;
}
.footer-response {
font-family: var(--brand-font-body);
font-size: 0.85rem;
color: #cdb483;
margin-top: 0.2rem;
}
.footer-links--legal {
margin-top: 0.5rem;
}
.consent-banner {
position: fixed;
left: 1rem;
right: 1rem;
bottom: 1rem;
z-index: 220;
background: rgba(10, 10, 8, 0.96);
border: 1px solid rgba(201, 168, 76, 0.45);
border-radius: 12px;
padding: 0.9rem 1rem;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.consent-banner p {
margin: 0;
color: var(--brand-warm-white);
font-family: var(--brand-font-body);
font-size: 0.92rem;
}
.consent-actions {
margin-top: 0.75rem;
display: flex;
gap: 0.6rem;
}
.consent-actions .btn-primary,
.consent-actions .btn-secondary {
font-size: 1rem;
padding: 0.75rem 1.4rem;
min-width: 140px;
justify-content: center;
}
.consent-actions .btn-secondary {
color: var(--brand-gold);
border-color: rgba(201, 168, 76, 0.55);
background: transparent;
}
.consent-actions .btn-secondary:hover {
color: var(--brand-black);
background: var(--brand-gold);
border-color: var(--brand-gold);
}
.admin-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.admin-tabs {
display: flex;
gap: 0.65rem;
flex-wrap: wrap;
}
.admin-tab {
background: transparent;
color: var(--brand-muted);
border: 1px solid rgba(122, 112, 96, 0.35);
border-radius: 999px;
font-family: var(--brand-font-body);
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 0.5rem 1rem;
cursor: pointer;
transition: border-color 200ms, color 200ms, background 200ms;
}
.admin-tab:hover {
color: var(--brand-warm-white);
border-color: rgba(240, 234, 216, 0.45);
}
.admin-tab--active {
color: var(--brand-black);
background: var(--brand-gold);
border-color: var(--brand-gold);
}
.admin-field {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.admin-archive-helper {
background: #0d0d0d;
border: 1px solid rgba(201, 168, 76, 0.18);
border-radius: 10px;
padding: 1rem;
margin-bottom: 1rem;
}
.admin-archive-helper h3 {
margin: 0;
font-family: var(--brand-font-heading);
font-size: 1.15rem;
color: var(--brand-warm-white);
}
.admin-archive-helper p {
margin: 0.55rem 0 0.9rem;
font-family: var(--brand-font-body);
font-size: 0.95rem;
color: var(--brand-muted);
line-height: 1.55;
}
.admin-form-section {
background: #0d0d0d;
border: 1px solid rgba(201, 168, 76, 0.16);
border-radius: 10px;
padding: 1.15rem;
}
.admin-form-section-fields {
display: flex;
flex-direction: column;
gap: 1rem;
}
.admin-form-section .admin-section-header {
border-top: none;
padding-top: 0;
margin-top: 0;
margin-bottom: 1rem;
}
.admin-section-header--compact p {
margin-bottom: 0;
}
.admin-field label {
font-family: var(--brand-font-body);
font-weight: 500;
font-size: 0.8rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--brand-gold);
opacity: 0.85;
}
.admin-field input,
.admin-field textarea {
background: #111;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 6px;
color: var(--brand-warm-white);
font-family: var(--brand-font-body);
font-size: 1rem;
font-weight: 300;
padding: 0.65rem 0.85rem;
outline: none;
transition: border-color 200ms;
resize: vertical;
}
.admin-field input:focus,
.admin-field textarea:focus {
border-color: rgba(201, 168, 76, 0.65);
}
.admin-actions {
display: flex;
gap: 1rem;
flex-wrap: wrap;
padding-top: 0.5rem;
}
.btn-admin-save {
background: var(--brand-gold);
color: var(--brand-black);
font-family: var(--brand-font-body);
font-weight: 700;
font-size: 1rem;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 0.75rem 2rem;
border-radius: 999px;
border: none;
cursor: pointer;
transition: opacity 200ms;
}
.btn-admin-save:hover:not(:disabled) {
opacity: 0.85;
}
.btn-admin-save:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.btn-admin-reset {
background: transparent;
color: var(--brand-muted);
font-family: var(--brand-font-body);
font-weight: 500;
font-size: 1rem;
letter-spacing: 0.06em;
text-transform: uppercase;
padding: 0.75rem 1.5rem;
border-radius: 999px;
border: 1px solid rgba(122, 112, 96, 0.3);
cursor: pointer;
transition: color 200ms, border-color 200ms;
}
.btn-admin-reset:hover {
color: var(--brand-warm-white);
border-color: rgba(240, 234, 216, 0.4);
}
.admin-status {
font-family: var(--brand-font-body);
font-size: 0.95rem;
font-weight: 500;
letter-spacing: 0.05em;
margin: 0;
padding: 0;
}
.admin-status--ok {
color: #4caf7d;
}
.admin-status--err {
color: #e05c5c;
}
.admin-status--warn {
color: #d9a63a;
}
/* ── Admin: select input ── */
.admin-field select {
background: #111;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 6px;
color: var(--brand-warm-white);
font-family: var(--brand-font-body);
font-size: 1rem;
font-weight: 300;
padding: 0.65rem 0.85rem;
outline: none;
appearance: none;
transition: border-color 200ms;
cursor: pointer;
}
.admin-field select:focus {
border-color: rgba(201, 168, 76, 0.65);
}
/* ── Admin: section divider ── */
.admin-section-header {
border-top: 1px solid rgba(201, 168, 76, 0.18);
padding-top: 1.75rem;
margin-top: 0.5rem;
}
.admin-section-header h3 {
font-family: var(--brand-font-heading);
font-size: 1.3rem;
color: var(--brand-warm-white);
margin: 0 0 0.3rem;
font-weight: 700;
}
.admin-section-header p {
font-family: var(--brand-font-body);
font-weight: 300;
font-size: 0.95rem;
color: var(--brand-muted);
margin: 0 0 1rem;
padding: 0;
}
/* ── Admin: array row (custom links / blocks) ── */
.admin-array-row {
display: flex;
gap: 1rem;
align-items: flex-end;
background: #0d0d0d;
border: 1px solid rgba(201, 168, 76, 0.15);
border-radius: 8px;
padding: 1rem;
}
.admin-array-fields {
flex: 1;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.admin-content-summary {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.75rem;
margin-top: 1rem;
}
.admin-summary-card {
background: #111;
border: 1px solid rgba(201, 168, 76, 0.16);
border-radius: 10px;
padding: 0.85rem 1rem;
}
.admin-summary-card h3 {
margin: 0;
font-family: var(--brand-font-body);
font-size: 0.8rem;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--brand-gold);
}
.admin-summary-card p {
margin: 0.4rem 0 0;
font-family: var(--brand-font-heading);
font-size: 1.5rem;
color: var(--brand-warm-white);
}
.admin-archive-card {
background: #0d0d0d;
border: 1px solid rgba(201, 168, 76, 0.15);
border-radius: 12px;
padding: 1rem;
margin-bottom: 1rem;
}
.admin-archive-card-head {
display: flex;
justify-content: space-between;
gap: 1rem;
align-items: flex-start;
margin-bottom: 1rem;
}
.admin-archive-card-head h4 {
margin: 0;
font-family: var(--brand-font-heading);
color: var(--brand-warm-white);
font-size: 1.2rem;
}
.admin-archive-card-head p {
margin: 0.25rem 0 0;
font-family: var(--brand-font-body);
color: var(--brand-muted);
letter-spacing: 0.12em;
text-transform: uppercase;
font-size: 0.78rem;
}
.admin-archive-subsection {
margin-top: 1.25rem;
padding-top: 1rem;
border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.admin-archive-subsection-head {
display: flex;
justify-content: space-between;
gap: 1rem;
align-items: center;
flex-wrap: wrap;
margin-bottom: 0.85rem;
}
.admin-archive-subsection-head h5 {
margin: 0;
font-family: var(--brand-font-body);
color: var(--brand-gold);
font-size: 0.86rem;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.admin-archive-subsection-actions {
display: flex;
gap: 0.55rem;
align-items: center;
flex-wrap: wrap;
}
.admin-archive-subsection-actions select {
background: #111;
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 6px;
color: var(--brand-warm-white);
font-family: var(--brand-font-body);
font-size: 0.95rem;
font-weight: 300;
padding: 0.45rem 0.65rem;
outline: none;
}
.admin-archive-subsection-actions select:focus {
border-color: rgba(201, 168, 76, 0.65);
}
.admin-array-row--nested {
margin-bottom: 0.75rem;
}
.btn-admin-add {
background: transparent;
color: var(--brand-gold);
font-family: var(--brand-font-body);
font-weight: 600;
font-size: 0.95rem;
letter-spacing: 0.06em;
padding: 0.6rem 1.2rem;
border-radius: 999px;
border: 1px dashed rgba(201, 168, 76, 0.45);
cursor: pointer;
transition: background 200ms, border-color 200ms;
align-self: flex-start;
}
.btn-admin-add:hover {
background: rgba(201, 168, 76, 0.08);
border-color: rgba(201, 168, 76, 0.7);
}
.btn-admin-remove {
background: transparent;
color: var(--brand-muted);
font-family: var(--brand-font-body);
font-weight: 500;
font-size: 0.85rem;
letter-spacing: 0.05em;
padding: 0.5rem 0.85rem;
border-radius: 6px;
border: 1px solid rgba(122, 112, 96, 0.25);
cursor: pointer;
flex-shrink: 0;
align-self: flex-start;
transition: color 200ms, border-color 200ms;
}
.btn-admin-remove:hover {
color: #e05c5c;
border-color: rgba(224, 92, 92, 0.4);
}
/* ── Responsive ── */
@media (max-width: 820px) {
.hero {
grid-template-columns: 1fr;
gap: 2.5rem;
text-align: center;
padding: 3rem 1.5rem 4rem;
min-height: auto;
}
.hero-art {
order: -1;
}
.podcast-art {
max-width: 280px;
}
.hero-title {
white-space: normal;
}
.rule-divider {
margin-left: auto;
margin-right: auto;
}
.hero-ctas {
justify-content: center;
}
.about-inner {
grid-template-columns: 1fr;
gap: 2rem;
}
.about-photo {
max-width: 260px;
margin: 0 auto;
}
.series-card {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.archive-series-card {
grid-template-columns: 1fr;
}
.archive-series-rotator {
grid-template-columns: 1fr;
}
.archive-rotate-btn {
display: none;
}
.series-art {
max-width: 200px;
margin: 0 auto;
}
.archive-series-art {
max-width: 220px;
margin: 0 auto;
}
.guide-inner {
grid-template-columns: 1fr;
gap: 1.5rem;
text-align: center;
}
.guide-icon {
margin: 0 auto;
}
.study-download-grid {
grid-template-columns: 1fr;
}
.admin-content-summary {
grid-template-columns: 1fr;
}
.admin-archive-card-head {
flex-direction: column;
}
.qr-inner {
grid-template-columns: 1fr;
gap: 2.5rem;
text-align: center;
}
.qr-text .btn-secondary {
font-size: 0.75rem;
word-break: break-all;
}
.contact-inner {
grid-template-columns: 1fr;
text-align: center;
}
.chatbot-feature-inner {
grid-template-columns: 1fr;
}
.chatbot-feature-copy .section-heading {
text-align: center;
}
.chatbot-feature-actions,
.chatbot-feature-prompts {
justify-content: center;
}
.contact-copy .section-heading {
text-align: center;
}
.header-ornament {
display: none;
}
.admin-stats-grid,
.admin-stats-lists {
grid-template-columns: 1fr;
}
.admin-brand-hero,
.admin-brand-grid,
.admin-brand-swatches {
grid-template-columns: 1fr;
}
.admin-brand-hero {
flex-direction: column;
align-items: flex-start;
}
}
@media (max-width: 540px) {
.hero {
padding: 2rem 1rem 3rem;
}
.section-player,
.section-about,
.section-series,
.section-guide,
.section-qr,
.section-chatbot-feature,
.section-contact {
padding: 3.5rem 0;
}
.section-inner {
padding: 0 1rem;
}
.header-inner {
padding: 0.75rem 1rem;
}
.header-nav {
gap: 1rem;
}
.header-nav a:not(.header-cta) {
display: none;
}
.admin-top-tabs .admin-tab {
flex-basis: 100%;
min-width: 0;
}
}
/* ── Q&A Section ── */
.section-qa {
background: rgba(201, 168, 76, 0.05);
border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.qa-filters {
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 2rem;
}
.qa-topics {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.qa-topic-btn {
background: none;
border: 1px solid rgba(201, 168, 76, 0.35);
color: var(--brand-muted);
padding: 0.35rem 0.9rem;
border-radius: 2rem;
cursor: pointer;
font-size: 0.875rem;
font-family: 'Barlow', sans-serif;
transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.qa-topic-btn:hover {
background: rgba(201, 168, 76, 0.1);
border-color: rgba(201, 168, 76, 0.6);
color: #e8d8b0;
}
.qa-topic-btn--active {
background: rgba(201, 168, 76, 0.18);
border-color: var(--brand-gold);
color: var(--brand-gold);
font-weight: 600;
}
.qa-search {
display: flex;
gap: 1rem;
align-items: flex-end;
}
.qa-search label {
flex: 1;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border: 0;
}
.qa-search input {
padding: 0.75rem 1rem;
background: rgba(30, 30, 30, 0.8);
border: 1px solid rgba(201, 168, 76, 0.3);
color: var(--brand-warm-white);
font-family: 'Barlow', sans-serif;
border-radius: 0.375rem;
transition: border-color 0.2s ease;
}
.qa-search input:focus {
outline: none;
border-color: var(--brand-gold);
}
.qa-cards {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
/* ── Accordion card ── */
.qa-card-scene {
border: 1px solid rgba(201, 168, 76, 0.25);
border-radius: 0.5rem;
background: rgba(35, 30, 20, 0.85);
transition: border-color 0.2s ease;
overflow: hidden;
}
.qa-card-scene:hover {
border-color: rgba(201, 168, 76, 0.55);
}
.qa-card-inner {
width: 100%;
cursor: pointer;
}
.qa-card-face {
padding: 1.25rem 1.5rem;
}
.qa-card-front {
display: flex;
align-items: center;
gap: 1rem;
user-select: none;
}
.qa-card-back {
border-top: 1px solid rgba(201, 168, 76, 0.2);
background: rgba(20, 28, 20, 0.7);
display: none;
}
.qa-card-inner.flipped .qa-card-back {
display: block;
}
.qa-face-label {
font-size: 1.3rem;
font-weight: 700;
color: var(--brand-gold);
flex-shrink: 0;
width: 1.75rem;
}
.qa-question-text {
margin: 0;
font-size: 1.14rem;
line-height: 1.6;
color: var(--brand-warm-white);
font-weight: 600;
flex: 1;
}
.qa-answer-text {
margin: 0;
font-size: 1.12rem;
line-height: 1.75;
color: var(--brand-warm-white);
opacity: 0.92;
}
.qa-flip-hint {
font-size: 0.75rem;
color: var(--brand-muted);
margin-left: auto;
flex-shrink: 0;
font-style: italic;
}
.qa-no-results {
text-align: center;
padding: 2rem;
color: var(--brand-muted);
}
.qa-pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 1.25rem;
margin-top: 2rem;
}
.qa-page-btn {
background: none;
border: 1px solid rgba(201, 168, 76, 0.4);
color: var(--brand-gold);
padding: 0.45rem 1.1rem;
border-radius: 0.35rem;
cursor: pointer;
font-size: 0.95rem;
transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.qa-page-btn:hover:not(:disabled) {
background: rgba(201, 168, 76, 0.12);
border-color: var(--brand-gold);
}
.qa-page-btn:disabled {
opacity: 0.3;
cursor: default;
}
.qa-page-info {
font-size: 0.9rem;
color: var(--brand-muted);
min-width: 4rem;
text-align: center;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* ── Admin Q&A Styles ── */
.admin-questions {
padding: 2rem;
}
.admin-questions-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.admin-question-card {
background: rgba(50, 50, 50, 0.5);
border: 1px solid var(--border-color, #444);
border-radius: 0.375rem;
padding: 1.5rem;
transition: background 0.2s ease;
}
.admin-question-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1rem;
}
.admin-question-meta {
font-size: 0.85rem;
color: #999;
margin: 0 0 0.5rem 0;
}
.admin-question-text {
margin: 0;
line-height: 1.5;
color: var(--brand-warm-white);
}
.admin-question-status {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
justify-content: flex-end;
}
.admin-badge {
display: inline-block;
font-size: 0.75rem;
font-weight: 600;
padding: 0.35rem 0.75rem;
border-radius: 0.25rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.admin-badge--pending {
background: rgba(255, 152, 0, 0.15);
color: #gf8c00;
}
.admin-badge--approved {
background: rgba(76, 175, 80, 0.15);
color: #4caf50;
}
.admin-badge--answered {
background: rgba(201, 168, 76, 0.15);
color: var(--brand-gold);
}
.admin-question-answer {
background: rgba(30, 30, 30, 0.8);
padding: 1rem;
border-radius: 0.25rem;
margin-bottom: 1rem;
border-left: 3px solid var(--brand-gold);
}
.admin-question-answer p {
margin: 0;
line-height: 1.6;
color: #e8d4c0;
}
.admin-question-editor {
margin-top: 1rem;
padding: 1rem;
background: rgba(30, 30, 30, 0.6);
border-radius: 0.25rem;
}
.admin-question-editor textarea {
width: 100%;
padding: 0.75rem;
background: rgba(10, 10, 8, 0.8);
border: 1px solid rgba(201, 168, 76, 0.3);
color: var(--brand-warm-white);
font-family: 'Barlow', monospace;
border-radius: 0.25rem;
resize: vertical;
}
.admin-question-editor textarea:focus {
outline: none;
border-color: var(--brand-gold);
}
.admin-question-editor-actions {
display: flex;
gap: 0.75rem;
margin-top: 1rem;
}
.admin-question-actions {
display: flex;
gap: 0.75rem;
flex-wrap: wrap;
}
.admin-question-actions button {
padding: 0.5rem 1rem;
font-size: 0.85rem;
border-radius: 0.25rem;
border: none;
cursor: pointer;
transition: all 0.2s ease;
}
/* ══════════════════════════════════════════════════════════
FLOATING CHATBOT
══════════════════════════════════════════════════════════ */
/* Bubble trigger */
.chatbot-bubble {
position: fixed;
bottom: 1.5rem;
right: 1.5rem;
z-index: 1000;
width: 3.5rem;
height: 3.5rem;
border-radius: 50%;
background: var(--brand-gold);
color: #fff;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
transition: background 0.2s, transform 0.2s;
}
.chatbot-bubble:hover {
background: #e8a91a;
transform: scale(1.08);
}
.chatbot-bubble--open {
background: #555;
}
/* Panel */
.chatbot-panel {
position: fixed;
bottom: 5.5rem;
right: 1.5rem;
z-index: 999;
width: min(360px, calc(100vw - 2rem));
max-height: min(520px, calc(100vh - 8rem));
display: flex;
flex-direction: column;
background: #1a1a1a;
border: 1px solid rgba(201, 168, 76, 0.35);
border-radius: 0.75rem;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
overflow: hidden;
animation: chatSlideUp 0.22s ease;
}
.chatbot-page {
min-height: 100vh;
background:
radial-gradient(circle at top, rgba(201, 168, 76, 0.14), transparent 40%),
var(--brand-black);
padding: 1.25rem;
}
.chatbot-panel--standalone {
position: relative;
inset: auto;
right: auto;
bottom: auto;
width: min(780px, 100%);
max-height: calc(100vh - 2.5rem);
min-height: calc(100vh - 2.5rem);
margin: 0 auto;
}
.chatbot-panel--standalone .chatbot-messages {
padding: 1rem 1.1rem;
}
.chatbot-panel--standalone .chatbot-msg {
max-width: 92%;
}
@keyframes chatSlideUp {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
/* Header */
.chatbot-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.85rem 1rem;
background: rgba(201, 168, 76, 0.12);
border-bottom: 1px solid rgba(201, 168, 76, 0.25);
font-size: 0.9rem;
font-weight: 600;
color: #e8c87a;
}
.chatbot-header-actions {
display: flex;
align-items: center;
gap: 0.55rem;
}
.chatbot-header-btn {
background: rgba(201, 168, 76, 0.12);
border: 1px solid rgba(201, 168, 76, 0.28);
color: #d9bc7a;
border-radius: 999px;
padding: 0.28rem 0.72rem;
font-size: 0.74rem;
font-weight: 600;
letter-spacing: 0.03em;
cursor: pointer;
text-decoration: none;
transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.chatbot-header-btn:hover {
background: rgba(201, 168, 76, 0.22);
border-color: rgba(201, 168, 76, 0.5);
color: #f4ddb0;
}
.chatbot-header-btn--link {
display: inline-flex;
align-items: center;
}
.chatbot-close {
background: none;
border: none;
color: var(--brand-muted);
font-size: 1rem;
cursor: pointer;
line-height: 1;
padding: 0 0.25rem;
transition: color 0.15s;
}
.chatbot-close:hover { color: #e8c87a; }
/* Message list */
.chatbot-messages {
flex: 1;
overflow-y: auto;
padding: 0.75rem 1rem;
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.chatbot-msg {
max-width: 85%;
padding: 0.6rem 0.85rem;
border-radius: 0.65rem;
font-size: 0.88rem;
line-height: 1.5;
}
.chatbot-msg-suggestions {
display: flex;
flex-wrap: wrap;
gap: 0.55rem;
margin-top: 0.85rem;
}
.chatbot-msg p {
margin: 0;
}
.chatbot-msg p + p {
margin-top: 0.4rem;
}
.chatbot-msg--bot {
background: rgba(201, 168, 76, 0.12);
border: 1px solid rgba(201, 168, 76, 0.2);
color: #e8d8b0;
align-self: flex-start;
border-bottom-left-radius: 0.15rem;
}
.chatbot-msg--user {
background: rgba(80, 80, 80, 0.45);
color: #ddd;
align-self: flex-end;
border-bottom-right-radius: 0.15rem;
}
/* Typing dots */
.chatbot-msg--typing {
display: flex;
gap: 0.3rem;
align-items: center;
padding: 0.75rem 1rem;
}
.chatbot-msg--typing span {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--brand-gold);
animation: typingDot 1.2s infinite;
}
.chatbot-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-msg--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
0%, 80%, 100% { opacity: 0.2; transform: scale(0.85); }
40% { opacity: 1; transform: scale(1.1); }
}
/* Suggested prompts */
.chatbot-prompts {
padding: 0 0.75rem 0.5rem;
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
}
.chatbot-prompt-btn {
background: rgba(201, 168, 76, 0.1);
border: 1px solid rgba(201, 168, 76, 0.3);
color: var(--brand-gold);
border-radius: 1rem;
padding: 0.3rem 0.75rem;
font-size: 0.78rem;
cursor: pointer;
transition: background 0.15s, border-color 0.15s;
}
.chatbot-prompt-btn:hover {
background: rgba(201, 168, 76, 0.22);
border-color: var(--brand-gold);
}
/* Input row */
.chatbot-form {
display: flex;
align-items: center;
border-top: 1px solid rgba(201, 168, 76, 0.2);
padding: 0.6rem 0.75rem;
gap: 0.5rem;
}
.chatbot-style-select {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(201, 168, 76, 0.25);
color: #d9cba8;
border-radius: 0.4rem;
padding: 0.45rem 0.5rem;
font-size: 0.78rem;
outline: none;
max-width: 6.8rem;
}
.chatbot-style-select:focus {
border-color: var(--brand-gold);
}
.chatbot-input {
flex: 1;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(201, 168, 76, 0.25);
border-radius: 0.4rem;
color: #e8d8b0;
padding: 0.45rem 0.75rem;
font-size: 0.88rem;
outline: none;
transition: border-color 0.2s;
}
.chatbot-input::placeholder { color: #7a6a50; }
.chatbot-input:focus { border-color: var(--brand-gold); }
.chatbot-send {
background: var(--brand-gold);
border: none;
border-radius: 0.4rem;
color: #fff;
width: 2.2rem;
height: 2.2rem;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
flex-shrink: 0;
transition: background 0.15s;
}
.chatbot-send:hover:not(:disabled) { background: #e8a91a; }
.chatbot-send:disabled { opacity: 0.35; cursor: default; }
/* New here page cards */
.start-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1rem;
}
.start-card {
background: rgba(18, 18, 18, 0.86);
border: 1px solid rgba(201, 168, 76, 0.25);
border-radius: 14px;
padding: 1rem;
text-align: left;
}
.start-card h3 {
margin: 0 0 0.5rem;
font-family: var(--brand-font-heading);
font-size: 1.2rem;
}
.start-card p {
margin: 0 0 0.85rem;
color: #d6c7a6;
line-height: 1.55;
}
/* Series toggle controls */
.section-series-toggle {
margin-top: 1rem;
}
.section-series-toggle .section-inner {
display: flex;
justify-content: center;
}
.series-toggle-wrap {
display: flex;
gap: 0.5rem;
padding: 0.35rem;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 999px;
margin: 0 auto;
}
.series-toggle-btn {
border: none;
background: transparent;
color: #c9b690;
padding: 0.5rem 1rem;
border-radius: 999px;
font-family: var(--brand-font-body);
font-size: 0.95rem;
letter-spacing: 0.06em;
text-transform: uppercase;
cursor: pointer;
}
.series-toggle-btn:hover:not(:disabled) {
color: var(--brand-warm-white);
}
.series-toggle-btn:disabled {
opacity: 0.45;
cursor: default;
}
.series-toggle-btn--active {
background: rgba(201, 168, 76, 0.2);
color: #f4d79b;
}
/* Q&A related question buttons */
.qa-related-wrap {
margin-top: 1rem;
border-top: 1px solid rgba(201, 168, 76, 0.18);
padding-top: 0.85rem;
}
.qa-related-label {
margin: 0 0 0.5rem;
color: #b9a783;
font-size: 0.88rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.qa-related-list {
display: flex;
flex-wrap: wrap;
gap: 0.45rem;
}
.qa-related-btn {
border: 1px solid rgba(201, 168, 76, 0.35);
background: rgba(201, 168, 76, 0.08);
color: #d9be86;
border-radius: 999px;
padding: 0.3rem 0.75rem;
font-size: 0.82rem;
cursor: pointer;
}
.qa-related-btn:hover {
background: rgba(201, 168, 76, 0.16);
}
@media (max-width: 900px) {
.start-grid {
grid-template-columns: 1fr;
}
.series-toggle-wrap {
width: 100%;
justify-content: center;
}
}