@@ -967,7 +1167,7 @@ export default function AdminPage({ content, onSave, onLogout }: Props) {
role="tab"
aria-selected={contentTab === 'main'}
className={`admin-tab ${contentTab === 'main' ? 'admin-tab--active' : ''}`}
- onClick={() => setContentTab('main')}
+ onClick={() => handleContentTabChange('main')}
>
Main Content
@@ -976,12 +1176,14 @@ export default function AdminPage({ content, onSave, onLogout }: Props) {
role="tab"
aria-selected={contentTab === 'custom'}
className={`admin-tab ${contentTab === 'custom' ? 'admin-tab--active' : ''}`}
- onClick={() => setContentTab('custom')}
+ onClick={() => handleContentTabChange('custom')}
>
Custom Content
+ {isDirty && Unsaved changes
}
+
{contentTab === 'main' && (
<>
@@ -995,26 +1197,41 @@ export default function AdminPage({ content, onSave, onLogout }: Props) {
- {FIELDS.map(({ key, label, multiline }) => (
-
-
- {multiline ? (
-
- ))}
+ {MAIN_CONTENT_SECTIONS.map(section => {
+ const sectionFields = FIELDS.filter(field => field.section === section.id)
+
+ return (
+
+
+
{section.title}
+
{section.description}
+
+
+
+ {sectionFields.map(({ key, label, multiline }) => (
+
+
+ {multiline ? (
+
+ ))}
+
+
+ )
+ })}
>
)}
diff --git a/src/App.css b/src/App.css
index 69b2e33..f0a1c8d 100644
--- a/src/App.css
+++ b/src/App.css
@@ -3,8 +3,8 @@
/* ── Site wrapper ── */
.site {
- background: #0a0a0a;
- color: #f0e6d0;
+ background: var(--brand-black);
+ color: var(--brand-warm-white);
min-height: 100vh;
}
@@ -13,10 +13,10 @@
position: sticky;
top: 0;
z-index: 100;
- background: rgba(10, 10, 10, 0.92);
+ background: rgba(10, 10, 8, 0.92);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
- border-bottom: 1px solid rgba(200, 134, 10, 0.2);
+ border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.header-inner {
@@ -29,8 +29,8 @@
}
.header-ornament {
- font-family: 'Barlow Condensed', sans-serif;
- color: #c8860a;
+ font-family: var(--brand-font-body);
+ color: var(--brand-gold);
letter-spacing: 10px;
font-size: 0.85rem;
opacity: 0.6;
@@ -43,31 +43,31 @@
}
.header-nav a {
- color: #a89060;
+ color: var(--brand-muted);
text-decoration: none;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 500;
- letter-spacing: 0.1em;
+ letter-spacing: 0.06em;
text-transform: uppercase;
- font-size: 0.9rem;
+ font-size: 1.02rem;
transition: color 200ms;
}
.header-nav a:hover {
- color: #c8860a;
+ color: var(--brand-gold);
}
.header-cta {
- color: #c8860a !important;
- border: 1px solid rgba(200, 134, 10, 0.5) !important;
+ 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: #c8860a;
- color: #0a0a0a !important;
+ background: var(--brand-gold);
+ color: var(--brand-black) !important;
}
/* ── Hero ── */
@@ -89,17 +89,18 @@
}
@keyframes glow-pulse {
- 0%, 100% { opacity: 1; transform: scale(1); }
- 50% { opacity: 0.55; transform: scale(1.14); }
+ 0%, 100% { opacity: 0.96; transform: scale(1); }
+ 50% { opacity: 0.72; transform: scale(1.2); }
}
.art-glow {
position: absolute;
- inset: -30%;
- background: radial-gradient(ellipse, rgba(200, 134, 10, 0.18) 0%, transparent 65%);
+ 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;
}
@@ -110,8 +111,8 @@
max-width: 440px;
border-radius: 18px;
box-shadow:
- 0 0 0 1px rgba(200, 134, 10, 0.25),
- 0 20px 80px rgba(200, 134, 10, 0.2),
+ 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);
}
@@ -121,57 +122,41 @@
}
.eyebrow {
- font-family: 'Barlow Condensed', sans-serif;
- font-weight: 300;
- font-size: 0.9rem;
- letter-spacing: 0.5em;
+ font-family: var(--brand-font-body);
+ font-weight: 400;
+ font-size: 1rem;
+ letter-spacing: 0.24em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
margin: 0 0 1.25rem;
- opacity: 0.9;
+ opacity: 0.95;
padding: 0;
}
.hero-title {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-weight: 900;
- font-size: clamp(3.8rem, 7vw, 7.5rem);
- line-height: 0.88;
- color: #f0e6d0;
+ font-size: clamp(2.85rem, 5.3vw, 5.6rem);
+ line-height: 0.98;
+ letter-spacing: -0.01em;
+ color: var(--brand-warm-white);
margin: 0;
- display: flex;
- flex-direction: column;
- text-shadow: 0 0 80px rgba(200, 134, 10, 0.2);
-}
-
-.verse-word {
- display: block;
- letter-spacing: -0.02em;
-}
-
-.by-label {
- display: block;
- font-family: 'Barlow Condensed', sans-serif;
- font-weight: 300;
- font-size: clamp(1rem, 2vw, 1.5rem);
- letter-spacing: 0.7em;
- color: #c8860a;
- margin: 0.2rem 0;
+ white-space: nowrap;
+ text-shadow: 0 0 70px rgba(201, 168, 76, 0.25);
}
.with-nate {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 700;
- font-size: clamp(1.1rem, 2.5vw, 1.6rem);
- letter-spacing: 0.4em;
- text-transform: uppercase;
- color: #c8860a;
- margin: 1rem 0 0;
+ 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: #f0e6d0;
+ color: var(--brand-warm-white);
font-weight: 300;
opacity: 0.85;
}
@@ -179,21 +164,20 @@
.rule-divider {
width: 200px;
height: 1px;
- background: linear-gradient(90deg, transparent, #c8860a, transparent);
+ background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
margin: 1.4rem 0;
border: none;
}
.tagline {
- font-family: 'Barlow Condensed', sans-serif;
- font-weight: 300;
- font-size: clamp(0.9rem, 1.5vw, 1.1rem);
- letter-spacing: 0.28em;
- text-transform: uppercase;
- color: #d4b87a;
+ 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.85;
+ opacity: 0.92;
}
.hero-ctas {
@@ -206,9 +190,9 @@
display: inline-flex;
align-items: center;
gap: 0.5rem;
- background: #c8860a;
- color: #0a0a0a;
- font-family: 'Barlow Condensed', sans-serif;
+ background: var(--brand-gold);
+ color: var(--brand-black);
+ font-family: var(--brand-font-body);
font-weight: 700;
font-size: 1rem;
letter-spacing: 0.08em;
@@ -230,8 +214,8 @@
display: inline-flex;
align-items: center;
gap: 0.5rem;
- color: #f0e6d0;
- font-family: 'Barlow Condensed', sans-serif;
+ color: var(--brand-warm-white);
+ font-family: var(--brand-font-body);
font-weight: 500;
font-size: 1rem;
letter-spacing: 0.06em;
@@ -239,13 +223,13 @@
padding: 0.75rem 1.75rem;
border-radius: 999px;
text-decoration: none;
- border: 1px solid rgba(240, 230, 208, 0.25);
+ border: 1px solid rgba(240, 234, 216, 0.25);
transition: border-color 200ms, color 200ms;
}
.btn-secondary:hover {
- border-color: #c8860a;
- color: #c8860a;
+ border-color: var(--brand-gold);
+ color: var(--brand-gold);
}
/* ── Shared section styles ── */
@@ -256,24 +240,24 @@
}
.section-heading {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: clamp(1.6rem, 3vw, 2.4rem);
- color: #f0e6d0;
+ color: var(--brand-warm-white);
text-align: center;
margin: 0 0 2.5rem;
font-weight: 700;
}
.ornament {
- color: #c8860a;
+ color: var(--brand-gold);
font-style: normal;
}
/* ── Player ── */
.section-player {
background: #070707;
- border-top: 1px solid rgba(200, 134, 10, 0.18);
- border-bottom: 1px solid rgba(200, 134, 10, 0.18);
+ border-top: 1px solid rgba(201, 168, 76, 0.18);
+ border-bottom: 1px solid rgba(201, 168, 76, 0.18);
padding: 5rem 0;
}
@@ -295,7 +279,7 @@
display: inline-flex;
align-items: center;
gap: 0.5rem;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 600;
font-size: 1rem;
letter-spacing: 0.06em;
@@ -344,32 +328,33 @@
border-radius: 14px;
box-shadow:
0 12px 50px rgba(0, 0, 0, 0.55),
- 0 0 0 1px rgba(200, 134, 10, 0.15);
+ 0 0 0 1px rgba(201, 168, 76, 0.15);
}
.about-text h2 {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: clamp(1.8rem, 3vw, 2.4rem);
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0.5rem 0 1.2rem;
font-weight: 700;
}
.about-text p {
- font-family: 'Barlow Condensed', sans-serif;
- font-weight: 300;
- font-size: 1.1rem;
- line-height: 1.75;
- color: #a89060;
+ 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(200, 134, 10, 0.18);
- border-bottom: 1px solid rgba(200, 134, 10, 0.18);
+ border-top: 1px solid rgba(201, 168, 76, 0.18);
+ border-bottom: 1px solid rgba(201, 168, 76, 0.18);
padding: 5rem 0;
}
@@ -386,7 +371,7 @@
max-width: 800px;
width: 100%;
background: #131313;
- border: 1px solid rgba(200, 134, 10, 0.22);
+ 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);
@@ -395,41 +380,42 @@
.series-art {
width: 100%;
border-radius: 10px;
- box-shadow: 0 8px 30px rgba(200, 134, 10, 0.22);
+ box-shadow: 0 8px 30px rgba(201, 168, 76, 0.22);
}
.series-label {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 700;
font-size: 0.75rem;
letter-spacing: 0.35em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
margin: 0 0 0.5rem;
padding: 0;
}
.series-info h3 {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: clamp(1.4rem, 2.5vw, 1.9rem);
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0 0 0.85rem;
font-weight: 700;
}
.series-info p {
- font-family: 'Barlow Condensed', sans-serif;
- font-weight: 300;
- font-size: 1.05rem;
+ font-family: var(--brand-font-body);
+ font-weight: 400;
+ font-size: 1.14rem;
line-height: 1.65;
- color: #a89060;
+ 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(200, 134, 10, 0.12);
+ border-top: 1px solid rgba(201, 168, 76, 0.12);
padding: 4.5rem 0;
}
@@ -444,16 +430,16 @@
width: 2.3rem;
height: 2.3rem;
border-radius: 999px;
- border: 1px solid rgba(200, 134, 10, 0.4);
- background: rgba(200, 134, 10, 0.08);
- color: #c8860a;
+ 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(200, 134, 10, 0.16);
+ background: rgba(201, 168, 76, 0.16);
}
.archive-series-list {
@@ -471,7 +457,7 @@
grid-template-columns: 180px 1fr;
gap: 1.5rem;
background: #121212;
- border: 1px solid rgba(200, 134, 10, 0.18);
+ border: 1px solid rgba(201, 168, 76, 0.18);
border-radius: 18px;
padding: 1.5rem;
}
@@ -479,19 +465,19 @@
.archive-series-art {
width: 100%;
border-radius: 12px;
- box-shadow: 0 8px 28px rgba(200, 134, 10, 0.16);
+ box-shadow: 0 8px 28px rgba(201, 168, 76, 0.16);
}
.archive-series-copy h3 {
- font-family: 'Playfair Display', Georgia, serif;
- color: #f0e6d0;
+ 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: 'Barlow Condensed', sans-serif;
- color: #a89060;
+ font-family: var(--brand-font-body);
+ color: var(--brand-muted);
font-size: 1rem;
line-height: 1.7;
margin: 0 0 1rem;
@@ -516,11 +502,11 @@
.archive-series-resources h4,
.archive-series-note h4 {
margin: 0 0 0.6rem;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.9rem;
letter-spacing: 0.14em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
}
.archive-series-notes {
@@ -530,7 +516,7 @@
.archive-series-note {
background: rgba(255, 255, 255, 0.03);
- border: 1px solid rgba(200, 134, 10, 0.12);
+ border: 1px solid rgba(201, 168, 76, 0.12);
border-radius: 12px;
padding: 1rem;
}
@@ -547,26 +533,26 @@
height: 0.52rem;
border: none;
border-radius: 999px;
- background: rgba(168, 144, 96, 0.5);
+ background: rgba(122, 112, 96, 0.5);
cursor: pointer;
}
.archive-rotator-dot--active {
- background: #c8860a;
+ background: var(--brand-gold);
}
.archive-rotator-count {
margin-top: 0.55rem;
text-align: center;
- font-family: 'Barlow Condensed', sans-serif;
- color: #a89060;
+ font-family: var(--brand-font-body);
+ color: var(--brand-muted);
letter-spacing: 0.1em;
font-size: 0.8rem;
}
/* ── QR / Share ── */
.section-qr {
- background: #0a0a0a;
+ background: var(--brand-black);
padding: 5rem 0;
}
@@ -578,19 +564,19 @@
}
.qr-text h2 {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: clamp(1.6rem, 2.5vw, 2.2rem);
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0.5rem 0 1rem;
font-weight: 700;
}
.qr-text p {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 300;
font-size: 1.1rem;
line-height: 1.65;
- color: #a89060;
+ color: var(--brand-muted);
margin: 0 0 1.5rem;
padding: 0;
}
@@ -609,7 +595,7 @@
.share-feedback {
margin: 0;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
color: #cdb483;
font-size: 0.9rem;
}
@@ -635,12 +621,12 @@
}
.scan-label {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 500;
font-size: 0.72rem;
letter-spacing: 0.4em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
margin-top: 0.85rem;
text-align: center;
opacity: 0.8;
@@ -651,10 +637,10 @@
.section-chatbot-feature {
padding: 5rem 0;
background:
- radial-gradient(circle at top left, rgba(200, 134, 10, 0.14), transparent 38%),
+ 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(200, 134, 10, 0.18);
- border-bottom: 1px solid rgba(200, 134, 10, 0.18);
+ border-top: 1px solid rgba(201, 168, 76, 0.18);
+ border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.chatbot-feature-inner {
@@ -667,7 +653,7 @@
.chatbot-feature-copy,
.chatbot-feature-card {
background: rgba(18, 18, 18, 0.84);
- border: 1px solid rgba(200, 134, 10, 0.2);
+ 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);
@@ -681,7 +667,7 @@
.chatbot-feature-lead,
.chatbot-feature-sub,
.chatbot-feature-kicker {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
margin: 0;
color: #d9c9a0;
}
@@ -689,7 +675,7 @@
.chatbot-feature-lead {
font-size: clamp(1.2rem, 2vw, 1.55rem);
line-height: 1.45;
- color: #f0e6d0;
+ color: var(--brand-warm-white);
text-wrap: balance;
}
@@ -717,7 +703,7 @@
font-size: 0.82rem;
letter-spacing: 0.18em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
margin-bottom: 1rem;
}
@@ -736,8 +722,8 @@
.section-contact {
background: #090909;
- border-top: 1px solid rgba(200, 134, 10, 0.18);
- border-bottom: 1px solid rgba(200, 134, 10, 0.18);
+ border-top: 1px solid rgba(201, 168, 76, 0.18);
+ border-bottom: 1px solid rgba(201, 168, 76, 0.18);
padding: 5rem 0;
}
@@ -754,11 +740,11 @@
}
.contact-copy p {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 300;
font-size: 1.08rem;
line-height: 1.7;
- color: #a89060;
+ color: var(--brand-muted);
margin: 0;
padding: 0;
}
@@ -767,14 +753,14 @@
font-size: clamp(1.25rem, 2.2vw, 1.65rem);
line-height: 1.35;
font-weight: 600;
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0 0 0.6rem;
text-wrap: balance;
}
.contact-form {
background: #121212;
- border: 1px solid rgba(200, 134, 10, 0.22);
+ border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 14px;
padding: 1.4rem;
display: flex;
@@ -786,22 +772,22 @@
display: flex;
flex-direction: column;
gap: 0.4rem;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 500;
font-size: 0.82rem;
letter-spacing: 0.16em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
background: #0c0c0c;
- border: 1px solid rgba(200, 134, 10, 0.25);
+ border: 1px solid rgba(201, 168, 76, 0.25);
border-radius: 8px;
- color: #f0e6d0;
- font-family: 'Barlow Condensed', sans-serif;
+ color: var(--brand-warm-white);
+ font-family: var(--brand-font-body);
font-size: 1rem;
font-weight: 300;
padding: 0.7rem 0.85rem;
@@ -811,7 +797,7 @@
.contact-form input:focus,
.contact-form textarea:focus {
- border-color: rgba(200, 134, 10, 0.7);
+ border-color: rgba(201, 168, 76, 0.7);
}
.contact-form textarea {
@@ -823,7 +809,7 @@
flex-direction: row;
align-items: flex-start;
gap: 0.75rem;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 1rem;
font-weight: 400;
letter-spacing: normal;
@@ -838,7 +824,7 @@
margin-top: 0.2rem;
padding: 0;
flex: 0 0 auto;
- accent-color: #c8860a;
+ accent-color: var(--brand-gold);
}
.contact-consent span {
@@ -858,7 +844,7 @@
}
.contact-error {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.95rem;
color: #e05c5c;
margin: 0;
@@ -876,8 +862,8 @@
.thanks-page {
min-height: 100vh;
background:
- radial-gradient(ellipse at top, rgba(200, 134, 10, 0.12) 0%, transparent 55%),
- #0a0a0a;
+ 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;
@@ -887,7 +873,7 @@
.thanks-card {
width: min(720px, 100%);
background: #121212;
- border: 1px solid rgba(200, 134, 10, 0.24);
+ 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;
@@ -895,18 +881,18 @@
}
.thanks-card h1 {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: clamp(2rem, 5vw, 3rem);
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0.3rem 0 1rem;
}
.thanks-card p {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 1.1rem;
font-weight: 300;
line-height: 1.7;
- color: #a89060;
+ color: var(--brand-muted);
margin: 0 0 1rem;
padding: 0;
}
@@ -938,13 +924,13 @@
/* ── Footer ── */
.site-footer {
background: #050505;
- border-top: 1px solid rgba(200, 134, 10, 0.18);
+ border-top: 1px solid rgba(201, 168, 76, 0.18);
padding: 4.5rem 2rem;
text-align: center;
}
.footer-ornament {
- color: #c8860a;
+ color: var(--brand-gold);
letter-spacing: 18px;
opacity: 0.55;
font-size: 0.9rem;
@@ -953,28 +939,28 @@
}
.footer-title {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: 1.6rem;
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0 0 0.3rem;
font-weight: 700;
padding: 0;
}
.footer-sub {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 300;
font-size: 0.85rem;
letter-spacing: 0.35em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
margin: 0 0 1.75rem;
opacity: 0.7;
padding: 0;
}
.footer-contact {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 400;
font-size: 0.95rem;
letter-spacing: 0.08em;
@@ -984,15 +970,15 @@
}
.footer-contact a {
- color: #f0e6d0;
+ color: var(--brand-warm-white);
text-decoration: none;
- border-bottom: 1px solid rgba(240, 230, 208, 0.4);
+ border-bottom: 1px solid rgba(240, 234, 216, 0.4);
transition: color 200ms, border-color 200ms;
}
.footer-contact a:hover {
- color: #c8860a;
- border-color: rgba(200, 134, 10, 0.8);
+ color: var(--brand-gold);
+ border-color: rgba(201, 168, 76, 0.8);
}
.footer-links {
@@ -1007,9 +993,9 @@
}
.footer-links a {
- color: #a89060;
+ color: var(--brand-muted);
text-decoration: none;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 400;
letter-spacing: 0.05em;
font-size: 0.95rem;
@@ -1017,19 +1003,19 @@
}
.footer-links a:hover {
- color: #c8860a;
+ color: var(--brand-gold);
}
.footer-links span {
- color: #c8860a;
+ color: var(--brand-gold);
opacity: 0.4;
}
.footer-copy {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 300;
font-size: 0.8rem;
- color: #a89060;
+ color: var(--brand-muted);
opacity: 0.55;
margin: 0;
letter-spacing: 0.05em;
@@ -1054,14 +1040,14 @@
.custom-btn {
background: #1a1a1a;
- color: #f0e6d0;
- border: 1px solid rgba(200, 134, 10, 0.3);
+ color: var(--brand-warm-white);
+ border: 1px solid rgba(201, 168, 76, 0.3);
}
/* ── More Resources section ── */
.section-resources {
- background: #0a0a0a;
- border-top: 1px solid rgba(200, 134, 10, 0.18);
+ background: var(--brand-black);
+ border-top: 1px solid rgba(201, 168, 76, 0.18);
padding: 4rem 0;
}
@@ -1073,44 +1059,44 @@
}
.resource-link {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 500;
font-size: 1rem;
letter-spacing: 0.06em;
- color: #c8860a;
+ color: var(--brand-gold);
text-decoration: none;
- border: 1px solid rgba(200, 134, 10, 0.3);
+ 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(200, 134, 10, 0.1);
+ background: rgba(201, 168, 76, 0.1);
color: #d4b87a;
}
/* ── Custom content blocks ── */
.section-custom-block {
background: #0d0d0d;
- border-top: 1px solid rgba(200, 134, 10, 0.12);
+ border-top: 1px solid rgba(201, 168, 76, 0.12);
padding: 4rem 0;
}
.custom-block-inner h2 {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: clamp(1.6rem, 2.5vw, 2.2rem);
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0 0 1rem;
font-weight: 700;
}
.custom-block-inner p {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 300;
font-size: 1.1rem;
line-height: 1.75;
- color: #a89060;
+ color: var(--brand-muted);
margin: 0;
padding: 0;
}
@@ -1118,8 +1104,8 @@
/* ── Study Guide section ── */
.section-guide {
background: #0d0d0d;
- border-top: 1px solid rgba(200, 134, 10, 0.18);
- border-bottom: 1px solid rgba(200, 134, 10, 0.18);
+ border-top: 1px solid rgba(201, 168, 76, 0.18);
+ border-bottom: 1px solid rgba(201, 168, 76, 0.18);
padding: 5rem 0;
}
@@ -1141,19 +1127,19 @@
}
.guide-text h2 {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: clamp(1.6rem, 2.5vw, 2.2rem);
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0.5rem 0 0.85rem;
font-weight: 700;
}
.guide-text p {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 300;
font-size: 1.1rem;
line-height: 1.65;
- color: #a89060;
+ color: var(--brand-muted);
margin: 0 0 1.5rem;
padding: 0;
}
@@ -1161,13 +1147,13 @@
/* ── Admin page ── */
.admin-page {
min-height: 100vh;
- background: #0a0a0a;
- color: #f0e6d0;
+ background: var(--brand-black);
+ color: var(--brand-warm-white);
}
.admin-header {
background: #070707;
- border-bottom: 1px solid rgba(200, 134, 10, 0.2);
+ border-bottom: 1px solid rgba(201, 168, 76, 0.2);
padding: 2.5rem 2rem;
text-align: center;
}
@@ -1182,7 +1168,7 @@
.admin-ornament {
display: block;
- color: #c8860a;
+ color: var(--brand-gold);
letter-spacing: 12px;
font-size: 0.85rem;
opacity: 0.55;
@@ -1190,20 +1176,20 @@
}
.admin-header h1 {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: 2rem;
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0 0 0.25rem;
font-weight: 700;
}
.admin-sub {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 300;
font-size: 0.85rem;
letter-spacing: 0.35em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
margin: 0 0 1.25rem;
opacity: 0.75;
padding: 0;
@@ -1211,30 +1197,30 @@
.admin-back {
display: inline-block;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.06em;
- color: #a89060;
+ color: var(--brand-muted);
text-decoration: none;
- border: 1px solid rgba(168, 144, 96, 0.3);
+ 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: #c8860a;
- border-color: rgba(200, 134, 10, 0.5);
+ color: var(--brand-gold);
+ border-color: rgba(201, 168, 76, 0.5);
}
.btn-admin-logout {
background: transparent;
- color: #a89060;
- border: 1px solid rgba(168, 144, 96, 0.3);
+ color: var(--brand-muted);
+ border: 1px solid rgba(122, 112, 96, 0.3);
border-radius: 999px;
padding: 0.4rem 1rem;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.06em;
@@ -1243,8 +1229,8 @@
}
.btn-admin-logout:hover {
- color: #c8860a;
- border-color: rgba(200, 134, 10, 0.5);
+ color: var(--brand-gold);
+ border-color: rgba(201, 168, 76, 0.5);
}
.admin-auth-page {
@@ -1252,14 +1238,14 @@
display: flex;
align-items: center;
justify-content: center;
- background: #0a0a0a;
+ background: var(--brand-black);
padding: 2rem;
}
.admin-auth-card {
width: min(520px, 100%);
background: #101010;
- border: 1px solid rgba(200, 134, 10, 0.22);
+ border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 16px;
padding: 2rem;
text-align: center;
@@ -1267,8 +1253,8 @@
.admin-auth-card h1 {
margin: 0 0 1rem;
- font-family: 'Playfair Display', Georgia, serif;
- color: #f0e6d0;
+ font-family: var(--brand-font-heading);
+ color: var(--brand-warm-white);
}
.admin-auth-form {
@@ -1282,26 +1268,26 @@
flex-direction: column;
gap: 0.4rem;
text-align: left;
- font-family: 'Barlow Condensed', sans-serif;
- color: #c8860a;
+ 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(200, 134, 10, 0.22);
+ border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 8px;
- color: #f0e6d0;
+ color: var(--brand-warm-white);
padding: 0.7rem 0.85rem;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 1rem;
}
.admin-auth-error,
.admin-auth-note {
margin: 0;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
}
.admin-auth-error {
@@ -1309,7 +1295,7 @@
}
.admin-auth-note {
- color: #a89060;
+ color: var(--brand-muted);
}
.admin-form-wrap {
@@ -1335,30 +1321,180 @@
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(200, 134, 10, 0.22);
+ border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 12px;
padding: 1.25rem;
margin-bottom: 2rem;
}
.admin-stats-head h2 {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: 1.4rem;
margin: 0;
}
.admin-stats-head p {
- font-family: 'Barlow Condensed', sans-serif;
- color: #a89060;
+ 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(200, 134, 10, 0.2);
+ border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.admin-stats-grid {
@@ -1370,24 +1506,24 @@
.admin-stats-grid article {
background: #111;
- border: 1px solid rgba(200, 134, 10, 0.16);
+ border: 1px solid rgba(201, 168, 76, 0.16);
border-radius: 8px;
padding: 0.85rem;
}
.admin-stats-grid h3 {
margin: 0;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.78rem;
letter-spacing: 0.16em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
}
.admin-stats-grid p {
margin: 0.45rem 0 0;
- font-family: 'Barlow Condensed', sans-serif;
- color: #f0e6d0;
+ font-family: var(--brand-font-body);
+ color: var(--brand-warm-white);
font-size: 1rem;
}
@@ -1400,8 +1536,8 @@
.admin-stats-lists h3 {
margin: 0 0 0.45rem;
- font-family: 'Barlow Condensed', sans-serif;
- color: #c8860a;
+ font-family: var(--brand-font-body);
+ color: var(--brand-gold);
font-size: 0.86rem;
letter-spacing: 0.14em;
text-transform: uppercase;
@@ -1417,19 +1553,19 @@
display: flex;
justify-content: space-between;
gap: 0.6rem;
- border-bottom: 1px solid rgba(200, 134, 10, 0.12);
+ border-bottom: 1px solid rgba(201, 168, 76, 0.12);
padding: 0.45rem 0;
- font-family: 'Barlow Condensed', sans-serif;
- color: #f0e6d0;
+ font-family: var(--brand-font-body);
+ color: var(--brand-warm-white);
}
.admin-stats-lists strong {
- color: #c8860a;
+ color: var(--brand-gold);
}
.admin-stats-note {
- font-family: 'Barlow Condensed', sans-serif;
- color: #a89060;
+ font-family: var(--brand-font-body);
+ color: var(--brand-muted);
margin: 1rem 0 0;
}
@@ -1439,8 +1575,8 @@
.admin-privacy-note {
margin: 0.8rem 0 0;
- font-family: 'Barlow Condensed', sans-serif;
- color: #a89060;
+ font-family: var(--brand-font-body);
+ color: var(--brand-muted);
font-size: 0.95rem;
}
@@ -1450,8 +1586,8 @@
.admin-visits-table-wrap h3 {
margin: 0 0 0.5rem;
- font-family: 'Barlow Condensed', sans-serif;
- color: #c8860a;
+ font-family: var(--brand-font-body);
+ color: var(--brand-gold);
font-size: 0.9rem;
letter-spacing: 0.14em;
text-transform: uppercase;
@@ -1471,14 +1607,14 @@
.admin-visits-table td {
text-align: left;
padding: 0.5rem 0.6rem;
- border-bottom: 1px solid rgba(200, 134, 10, 0.16);
- font-family: 'Barlow Condensed', sans-serif;
- color: #f0e6d0;
+ 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: #c8860a;
+ color: var(--brand-gold);
letter-spacing: 0.08em;
text-transform: uppercase;
font-size: 0.74rem;
@@ -1500,20 +1636,20 @@
}
.admin-restore-row label {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.8rem;
letter-spacing: 0.16em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
}
.admin-restore-row select {
min-width: 260px;
background: #111;
- border: 1px solid rgba(200, 134, 10, 0.22);
+ border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 6px;
- color: #f0e6d0;
- font-family: 'Barlow Condensed', sans-serif;
+ color: var(--brand-warm-white);
+ font-family: var(--brand-font-body);
font-size: 0.95rem;
padding: 0.55rem 0.8rem;
}
@@ -1521,15 +1657,15 @@
.admin-restore-preview {
margin-top: 0.9rem;
background: #101010;
- border: 1px solid rgba(200, 134, 10, 0.2);
+ 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: #c8860a;
- font-family: 'Barlow Condensed', sans-serif;
+ color: var(--brand-gold);
+ font-family: var(--brand-font-body);
font-size: 0.85rem;
letter-spacing: 0.14em;
text-transform: uppercase;
@@ -1537,14 +1673,14 @@
.admin-restore-preview p {
margin: 0.2rem 0;
- color: #f0e6d0;
- font-family: 'Barlow Condensed', sans-serif;
+ color: var(--brand-warm-white);
+ font-family: var(--brand-font-body);
}
.footer-privacy {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.8rem;
- color: #a89060;
+ color: var(--brand-muted);
margin-top: 0.75rem;
max-width: 760px;
margin-left: auto;
@@ -1552,7 +1688,7 @@
}
.footer-response {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.85rem;
color: #cdb483;
margin-top: 0.2rem;
@@ -1568,8 +1704,8 @@
right: 1rem;
bottom: 1rem;
z-index: 220;
- background: rgba(10, 10, 10, 0.96);
- border: 1px solid rgba(200, 134, 10, 0.45);
+ 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);
@@ -1577,8 +1713,8 @@
.consent-banner p {
margin: 0;
- color: #f0e6d0;
- font-family: 'Barlow Condensed', sans-serif;
+ color: var(--brand-warm-white);
+ font-family: var(--brand-font-body);
font-size: 0.92rem;
}
@@ -1597,15 +1733,15 @@
}
.consent-actions .btn-secondary {
- color: #c8860a;
- border-color: rgba(200, 134, 10, 0.55);
+ color: var(--brand-gold);
+ border-color: rgba(201, 168, 76, 0.55);
background: transparent;
}
.consent-actions .btn-secondary:hover {
- color: #0a0a0a;
- background: #c8860a;
- border-color: #c8860a;
+ color: var(--brand-black);
+ background: var(--brand-gold);
+ border-color: var(--brand-gold);
}
.admin-form {
@@ -1622,10 +1758,10 @@
.admin-tab {
background: transparent;
- color: #a89060;
- border: 1px solid rgba(168, 144, 96, 0.35);
+ color: var(--brand-muted);
+ border: 1px solid rgba(122, 112, 96, 0.35);
border-radius: 999px;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.08em;
@@ -1636,14 +1772,14 @@
}
.admin-tab:hover {
- color: #f0e6d0;
- border-color: rgba(240, 230, 208, 0.45);
+ color: var(--brand-warm-white);
+ border-color: rgba(240, 234, 216, 0.45);
}
.admin-tab--active {
- color: #0a0a0a;
- background: #c8860a;
- border-color: #c8860a;
+ color: var(--brand-black);
+ background: var(--brand-gold);
+ border-color: var(--brand-gold);
}
.admin-field {
@@ -1654,7 +1790,7 @@
.admin-archive-helper {
background: #0d0d0d;
- border: 1px solid rgba(200, 134, 10, 0.18);
+ border: 1px solid rgba(201, 168, 76, 0.18);
border-radius: 10px;
padding: 1rem;
margin-bottom: 1rem;
@@ -1662,36 +1798,60 @@
.admin-archive-helper h3 {
margin: 0;
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: 1.15rem;
- color: #f0e6d0;
+ color: var(--brand-warm-white);
}
.admin-archive-helper p {
margin: 0.55rem 0 0.9rem;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.95rem;
- color: #a89060;
+ 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: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 500;
font-size: 0.8rem;
letter-spacing: 0.2em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
opacity: 0.85;
}
.admin-field input,
.admin-field textarea {
background: #111;
- border: 1px solid rgba(200, 134, 10, 0.22);
+ border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 6px;
- color: #f0e6d0;
- font-family: 'Barlow Condensed', sans-serif;
+ color: var(--brand-warm-white);
+ font-family: var(--brand-font-body);
font-size: 1rem;
font-weight: 300;
padding: 0.65rem 0.85rem;
@@ -1702,7 +1862,7 @@
.admin-field input:focus,
.admin-field textarea:focus {
- border-color: rgba(200, 134, 10, 0.65);
+ border-color: rgba(201, 168, 76, 0.65);
}
.admin-actions {
@@ -1713,9 +1873,9 @@
}
.btn-admin-save {
- background: #c8860a;
- color: #0a0a0a;
- font-family: 'Barlow Condensed', sans-serif;
+ background: var(--brand-gold);
+ color: var(--brand-black);
+ font-family: var(--brand-font-body);
font-weight: 700;
font-size: 1rem;
letter-spacing: 0.08em;
@@ -1738,26 +1898,26 @@
.btn-admin-reset {
background: transparent;
- color: #a89060;
- font-family: 'Barlow Condensed', sans-serif;
+ 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(168, 144, 96, 0.3);
+ border: 1px solid rgba(122, 112, 96, 0.3);
cursor: pointer;
transition: color 200ms, border-color 200ms;
}
.btn-admin-reset:hover {
- color: #f0e6d0;
- border-color: rgba(240, 230, 208, 0.4);
+ color: var(--brand-warm-white);
+ border-color: rgba(240, 234, 216, 0.4);
}
.admin-status {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.95rem;
font-weight: 500;
letter-spacing: 0.05em;
@@ -1773,13 +1933,17 @@
color: #e05c5c;
}
+.admin-status--warn {
+ color: #d9a63a;
+}
+
/* ── Admin: select input ── */
.admin-field select {
background: #111;
- border: 1px solid rgba(200, 134, 10, 0.22);
+ border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 6px;
- color: #f0e6d0;
- font-family: 'Barlow Condensed', sans-serif;
+ color: var(--brand-warm-white);
+ font-family: var(--brand-font-body);
font-size: 1rem;
font-weight: 300;
padding: 0.65rem 0.85rem;
@@ -1790,29 +1954,29 @@
}
.admin-field select:focus {
- border-color: rgba(200, 134, 10, 0.65);
+ border-color: rgba(201, 168, 76, 0.65);
}
/* ── Admin: section divider ── */
.admin-section-header {
- border-top: 1px solid rgba(200, 134, 10, 0.18);
+ border-top: 1px solid rgba(201, 168, 76, 0.18);
padding-top: 1.75rem;
margin-top: 0.5rem;
}
.admin-section-header h3 {
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: 1.3rem;
- color: #f0e6d0;
+ color: var(--brand-warm-white);
margin: 0 0 0.3rem;
font-weight: 700;
}
.admin-section-header p {
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-weight: 300;
font-size: 0.95rem;
- color: #a89060;
+ color: var(--brand-muted);
margin: 0 0 1rem;
padding: 0;
}
@@ -1823,7 +1987,7 @@
gap: 1rem;
align-items: flex-end;
background: #0d0d0d;
- border: 1px solid rgba(200, 134, 10, 0.15);
+ border: 1px solid rgba(201, 168, 76, 0.15);
border-radius: 8px;
padding: 1rem;
}
@@ -1844,30 +2008,30 @@
.admin-summary-card {
background: #111;
- border: 1px solid rgba(200, 134, 10, 0.16);
+ border: 1px solid rgba(201, 168, 76, 0.16);
border-radius: 10px;
padding: 0.85rem 1rem;
}
.admin-summary-card h3 {
margin: 0;
- font-family: 'Barlow Condensed', sans-serif;
+ font-family: var(--brand-font-body);
font-size: 0.8rem;
letter-spacing: 0.16em;
text-transform: uppercase;
- color: #c8860a;
+ color: var(--brand-gold);
}
.admin-summary-card p {
margin: 0.4rem 0 0;
- font-family: 'Playfair Display', Georgia, serif;
+ font-family: var(--brand-font-heading);
font-size: 1.5rem;
- color: #f0e6d0;
+ color: var(--brand-warm-white);
}
.admin-archive-card {
background: #0d0d0d;
- border: 1px solid rgba(200, 134, 10, 0.15);
+ border: 1px solid rgba(201, 168, 76, 0.15);
border-radius: 12px;
padding: 1rem;
margin-bottom: 1rem;
@@ -1883,15 +2047,15 @@
.admin-archive-card-head h4 {
margin: 0;
- font-family: 'Playfair Display', Georgia, serif;
- color: #f0e6d0;
+ 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: 'Barlow Condensed', sans-serif;
- color: #a89060;
+ font-family: var(--brand-font-body);
+ color: var(--brand-muted);
letter-spacing: 0.12em;
text-transform: uppercase;
font-size: 0.78rem;
@@ -1900,7 +2064,7 @@
.admin-archive-subsection {
margin-top: 1.25rem;
padding-top: 1rem;
- border-top: 1px solid rgba(200, 134, 10, 0.12);
+ border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.admin-archive-subsection-head {
@@ -1914,8 +2078,8 @@
.admin-archive-subsection-head h5 {
margin: 0;
- font-family: 'Barlow Condensed', sans-serif;
- color: #c8860a;
+ font-family: var(--brand-font-body);
+ color: var(--brand-gold);
font-size: 0.86rem;
letter-spacing: 0.14em;
text-transform: uppercase;
@@ -1930,10 +2094,10 @@
.admin-archive-subsection-actions select {
background: #111;
- border: 1px solid rgba(200, 134, 10, 0.22);
+ border: 1px solid rgba(201, 168, 76, 0.22);
border-radius: 6px;
- color: #f0e6d0;
- font-family: 'Barlow Condensed', sans-serif;
+ color: var(--brand-warm-white);
+ font-family: var(--brand-font-body);
font-size: 0.95rem;
font-weight: 300;
padding: 0.45rem 0.65rem;
@@ -1941,7 +2105,7 @@
}
.admin-archive-subsection-actions select:focus {
- border-color: rgba(200, 134, 10, 0.65);
+ border-color: rgba(201, 168, 76, 0.65);
}
.admin-array-row--nested {
@@ -1950,34 +2114,34 @@
.btn-admin-add {
background: transparent;
- color: #c8860a;
- font-family: 'Barlow Condensed', sans-serif;
+ 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(200, 134, 10, 0.45);
+ 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(200, 134, 10, 0.08);
- border-color: rgba(200, 134, 10, 0.7);
+ background: rgba(201, 168, 76, 0.08);
+ border-color: rgba(201, 168, 76, 0.7);
}
.btn-admin-remove {
background: transparent;
- color: #a89060;
- font-family: 'Barlow Condensed', sans-serif;
+ 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(168, 144, 96, 0.25);
+ border: 1px solid rgba(122, 112, 96, 0.25);
cursor: pointer;
flex-shrink: 0;
align-self: flex-start;
@@ -2007,6 +2171,10 @@
max-width: 280px;
}
+ .hero-title {
+ white-space: normal;
+ }
+
.rule-divider {
margin-left: auto;
margin-right: auto;
@@ -2112,6 +2280,17 @@
.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) {
@@ -2153,8 +2332,8 @@
/* ── Q&A Section ── */
.section-qa {
- background: rgba(200, 134, 10, 0.05);
- border-top: 1px solid rgba(200, 134, 10, 0.15);
+ background: rgba(201, 168, 76, 0.05);
+ border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.qa-filters {
@@ -2172,8 +2351,8 @@
.qa-topic-btn {
background: none;
- border: 1px solid rgba(200, 134, 10, 0.35);
- color: #a89060;
+ border: 1px solid rgba(201, 168, 76, 0.35);
+ color: var(--brand-muted);
padding: 0.35rem 0.9rem;
border-radius: 2rem;
cursor: pointer;
@@ -2183,15 +2362,15 @@
}
.qa-topic-btn:hover {
- background: rgba(200, 134, 10, 0.1);
- border-color: rgba(200, 134, 10, 0.6);
+ background: rgba(201, 168, 76, 0.1);
+ border-color: rgba(201, 168, 76, 0.6);
color: #e8d8b0;
}
.qa-topic-btn--active {
- background: rgba(200, 134, 10, 0.18);
- border-color: #c8860a;
- color: #c8860a;
+ background: rgba(201, 168, 76, 0.18);
+ border-color: var(--brand-gold);
+ color: var(--brand-gold);
font-weight: 600;
}
@@ -2223,8 +2402,8 @@
.qa-search input {
padding: 0.75rem 1rem;
background: rgba(30, 30, 30, 0.8);
- border: 1px solid rgba(200, 134, 10, 0.3);
- color: #f0e6d0;
+ 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;
@@ -2232,7 +2411,7 @@
.qa-search input:focus {
outline: none;
- border-color: #c8860a;
+ border-color: var(--brand-gold);
}
.qa-cards {
@@ -2243,7 +2422,7 @@
/* ── Accordion card ── */
.qa-card-scene {
- border: 1px solid rgba(200, 134, 10, 0.25);
+ 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;
@@ -2251,7 +2430,7 @@
}
.qa-card-scene:hover {
- border-color: rgba(200, 134, 10, 0.55);
+ border-color: rgba(201, 168, 76, 0.55);
}
.qa-card-inner {
@@ -2271,7 +2450,7 @@
}
.qa-card-back {
- border-top: 1px solid rgba(200, 134, 10, 0.2);
+ border-top: 1px solid rgba(201, 168, 76, 0.2);
background: rgba(20, 28, 20, 0.7);
display: none;
}
@@ -2283,30 +2462,31 @@
.qa-face-label {
font-size: 1.3rem;
font-weight: 700;
- color: #c8860a;
+ color: var(--brand-gold);
flex-shrink: 0;
width: 1.75rem;
}
.qa-question-text {
margin: 0;
- font-size: 1.08rem;
+ font-size: 1.14rem;
line-height: 1.6;
- color: #e8d8b0;
+ color: var(--brand-warm-white);
font-weight: 600;
flex: 1;
}
.qa-answer-text {
margin: 0;
- font-size: 1.04rem;
+ font-size: 1.12rem;
line-height: 1.75;
- color: #d4e8c8;
+ color: var(--brand-warm-white);
+ opacity: 0.92;
}
.qa-flip-hint {
font-size: 0.75rem;
- color: #a89060;
+ color: var(--brand-muted);
margin-left: auto;
flex-shrink: 0;
font-style: italic;
@@ -2315,7 +2495,7 @@
.qa-no-results {
text-align: center;
padding: 2rem;
- color: #a89060;
+ color: var(--brand-muted);
}
.qa-pagination {
@@ -2328,8 +2508,8 @@
.qa-page-btn {
background: none;
- border: 1px solid rgba(200, 134, 10, 0.4);
- color: #c8860a;
+ border: 1px solid rgba(201, 168, 76, 0.4);
+ color: var(--brand-gold);
padding: 0.45rem 1.1rem;
border-radius: 0.35rem;
cursor: pointer;
@@ -2338,8 +2518,8 @@
}
.qa-page-btn:hover:not(:disabled) {
- background: rgba(200, 134, 10, 0.12);
- border-color: #c8860a;
+ background: rgba(201, 168, 76, 0.12);
+ border-color: var(--brand-gold);
}
.qa-page-btn:disabled {
@@ -2349,7 +2529,7 @@
.qa-page-info {
font-size: 0.9rem;
- color: #a89060;
+ color: var(--brand-muted);
min-width: 4rem;
text-align: center;
}
@@ -2401,7 +2581,7 @@
.admin-question-text {
margin: 0;
line-height: 1.5;
- color: #f0e6d0;
+ color: var(--brand-warm-white);
}
.admin-question-status {
@@ -2432,8 +2612,8 @@
}
.admin-badge--answered {
- background: rgba(200, 134, 10, 0.15);
- color: #c8860a;
+ background: rgba(201, 168, 76, 0.15);
+ color: var(--brand-gold);
}
.admin-question-answer {
@@ -2441,7 +2621,7 @@
padding: 1rem;
border-radius: 0.25rem;
margin-bottom: 1rem;
- border-left: 3px solid #c8860a;
+ border-left: 3px solid var(--brand-gold);
}
.admin-question-answer p {
@@ -2460,9 +2640,9 @@
.admin-question-editor textarea {
width: 100%;
padding: 0.75rem;
- background: rgba(10, 10, 10, 0.8);
- border: 1px solid rgba(200, 134, 10, 0.3);
- color: #f0e6d0;
+ 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;
@@ -2470,7 +2650,7 @@
.admin-question-editor textarea:focus {
outline: none;
- border-color: #c8860a;
+ border-color: var(--brand-gold);
}
.admin-question-editor-actions {
@@ -2507,7 +2687,7 @@
width: 3.5rem;
height: 3.5rem;
border-radius: 50%;
- background: #c8860a;
+ background: var(--brand-gold);
color: #fff;
border: none;
cursor: pointer;
@@ -2538,7 +2718,7 @@
display: flex;
flex-direction: column;
background: #1a1a1a;
- border: 1px solid rgba(200, 134, 10, 0.35);
+ 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;
@@ -2548,8 +2728,8 @@
.chatbot-page {
min-height: 100vh;
background:
- radial-gradient(circle at top, rgba(200, 134, 10, 0.14), transparent 40%),
- #0a0a0a;
+ radial-gradient(circle at top, rgba(201, 168, 76, 0.14), transparent 40%),
+ var(--brand-black);
padding: 1.25rem;
}
@@ -2583,8 +2763,8 @@
align-items: center;
justify-content: space-between;
padding: 0.85rem 1rem;
- background: rgba(200, 134, 10, 0.12);
- border-bottom: 1px solid rgba(200, 134, 10, 0.25);
+ 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;
@@ -2597,8 +2777,8 @@
}
.chatbot-header-btn {
- background: rgba(200, 134, 10, 0.12);
- border: 1px solid rgba(200, 134, 10, 0.28);
+ 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;
@@ -2611,8 +2791,8 @@
}
.chatbot-header-btn:hover {
- background: rgba(200, 134, 10, 0.22);
- border-color: rgba(200, 134, 10, 0.5);
+ background: rgba(201, 168, 76, 0.22);
+ border-color: rgba(201, 168, 76, 0.5);
color: #f4ddb0;
}
@@ -2624,7 +2804,7 @@
.chatbot-close {
background: none;
border: none;
- color: #a89060;
+ color: var(--brand-muted);
font-size: 1rem;
cursor: pointer;
line-height: 1;
@@ -2666,8 +2846,8 @@
}
.chatbot-msg--bot {
- background: rgba(200, 134, 10, 0.12);
- border: 1px solid rgba(200, 134, 10, 0.2);
+ 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;
@@ -2692,7 +2872,7 @@
width: 7px;
height: 7px;
border-radius: 50%;
- background: #c8860a;
+ background: var(--brand-gold);
animation: typingDot 1.2s infinite;
}
@@ -2713,9 +2893,9 @@
}
.chatbot-prompt-btn {
- background: rgba(200, 134, 10, 0.1);
- border: 1px solid rgba(200, 134, 10, 0.3);
- color: #c8860a;
+ 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;
@@ -2724,22 +2904,22 @@
}
.chatbot-prompt-btn:hover {
- background: rgba(200, 134, 10, 0.22);
- border-color: #c8860a;
+ 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(200, 134, 10, 0.2);
+ 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(200, 134, 10, 0.25);
+ border: 1px solid rgba(201, 168, 76, 0.25);
color: #d9cba8;
border-radius: 0.4rem;
padding: 0.45rem 0.5rem;
@@ -2749,13 +2929,13 @@
}
.chatbot-style-select:focus {
- border-color: #c8860a;
+ border-color: var(--brand-gold);
}
.chatbot-input {
flex: 1;
background: rgba(255, 255, 255, 0.06);
- border: 1px solid rgba(200, 134, 10, 0.25);
+ border: 1px solid rgba(201, 168, 76, 0.25);
border-radius: 0.4rem;
color: #e8d8b0;
padding: 0.45rem 0.75rem;
@@ -2765,10 +2945,10 @@
}
.chatbot-input::placeholder { color: #7a6a50; }
-.chatbot-input:focus { border-color: #c8860a; }
+.chatbot-input:focus { border-color: var(--brand-gold); }
.chatbot-send {
- background: #c8860a;
+ background: var(--brand-gold);
border: none;
border-radius: 0.4rem;
color: #fff;
@@ -2785,3 +2965,123 @@
.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;
+ }
+}
+
diff --git a/src/App.tsx b/src/App.tsx
index ac57ac2..515ca40 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -65,6 +65,17 @@ export interface ArchivedSeries {
export interface SiteContent {
eyebrow: string
heroTagline: string
+ startHereHeading: string
+ startHereIntro: string
+ startHereStep1Title: string
+ startHereStep1Body: string
+ startHereStep1Cta: string
+ startHereStep2Title: string
+ startHereStep2Body: string
+ startHereStep2Cta: string
+ startHereStep3Title: string
+ startHereStep3Body: string
+ startHereStep3Cta: string
aboutShowHeading: string
aboutShowP1: string
aboutShowP2: string
@@ -87,6 +98,21 @@ export interface SiteContent {
export const DEFAULTS: SiteContent = {
eyebrow: 'A Journey Through Scripture',
heroTagline: "Exploring God's Word one verse at a time",
+ startHereHeading: 'New Here? Start Here',
+ startHereIntro:
+ 'If this is your first visit, this path helps you get grounded quickly and make the most of the site.',
+ startHereStep1Title: 'Step 1: Listen to 3 Starter Episodes',
+ startHereStep1Body:
+ 'Start with the newest episode, one from the beginning of the current study, and one from the middle.',
+ startHereStep1Cta: 'Open Episodes',
+ startHereStep2Title: 'Step 2: Use Q&A to Go Deeper',
+ startHereStep2Body:
+ 'Browse by topic or search key words to find concise biblical answers and related follow-up questions.',
+ startHereStep2Cta: 'Go to Q&A',
+ startHereStep3Title: 'Step 3: Ask Nate Directly',
+ startHereStep3Body:
+ 'Use the contact form to submit your Bible question for future Q&A or an upcoming episode.',
+ startHereStep3Cta: 'Submit a Question',
aboutShowHeading: 'Depth. Clarity. Application.',
aboutShowP1:
'Verse by Verse with Nate walks through Scripture passage by passage — unpacking the original context, drawing out the meaning, and connecting each verse to how we live today.',
@@ -193,6 +219,33 @@ function QASection() {
setPage(0)
}
+ const tokenizeForRelated = (text: string) =>
+ text
+ .toLowerCase()
+ .replace(/[^a-z0-9\s]/g, ' ')
+ .split(/\s+/)
+ .filter(token => token.length > 3)
+
+ const getRelatedQuestions = (current: PublicQuestion) => {
+ const currentTokens = new Set(tokenizeForRelated(`${current.question} ${current.answer}`))
+
+ const related = questions
+ .filter(candidate => candidate.id !== current.id)
+ .map(candidate => {
+ const candidateTokens = tokenizeForRelated(`${candidate.question} ${candidate.answer}`)
+ const overlap = candidateTokens.filter(token => currentTokens.has(token)).length
+ const sameTopic = Boolean(current.topic && candidate.topic && current.topic === candidate.topic)
+ const score = overlap + (sameTopic ? 5 : 0)
+ return { candidate, score }
+ })
+ .filter(item => item.score > 0)
+ .sort((a, b) => b.score - a.score)
+ .slice(0, 3)
+ .map(item => item.candidate)
+
+ return related
+ }
+
return (
@@ -265,6 +318,28 @@ function QASection() {
A
{question.answer}
+ {getRelatedQuestions(question).length > 0 && (
+
+
Related questions
+
+ {getRelatedQuestions(question).map(related => (
+
+ ))}
+
+
+ )}
— Answered by Nate
@@ -480,6 +555,7 @@ function ShareShowButton() {
function LandingPage({ content }: { content: SiteContent }) {
const archivedSeries = content.archivedSeries ?? []
+ const [seriesView, setSeriesView] = useState<'current' | 'archive'>('current')
const [activeArchivedIndex, setActiveArchivedIndex] = useState(0)
useEffect(() => {
@@ -496,6 +572,16 @@ function LandingPage({ content }: { content: SiteContent }) {
return () => window.clearInterval(intervalId)
}, [archivedSeries.length])
+ useEffect(() => {
+ if (window.location.hash === '#archives' && archivedSeries.length > 0) {
+ setSeriesView('archive')
+ return
+ }
+ if (window.location.hash === '#series') {
+ setSeriesView('current')
+ }
+ }, [archivedSeries.length])
+
return (
{/* ── HEADER ── */}
@@ -503,10 +589,14 @@ function LandingPage({ content }: { content: SiteContent }) {
@@ -532,11 +622,7 @@ function LandingPage({ content }: { content: SiteContent }) {
{content.eyebrow}
-
- VERSE
- · by ·
- VERSE
-
+
Verse by Verse
with Nate
@@ -627,6 +713,36 @@ function LandingPage({ content }: { content: SiteContent }) {
{/* ── SERIES ── */}
+ {archivedSeries.length > 0 && (
+
+
+
+
+
+
+
+
+ )}
+
+ {seriesView === 'current' && (
@@ -658,9 +774,10 @@ function LandingPage({ content }: { content: SiteContent }) {
+ )}
- {archivedSeries.length > 0 && (
-
+ {archivedSeries.length > 0 && seriesView === 'archive' && (
+
✦ Archived Studies ✦
@@ -920,6 +1037,42 @@ function LandingPage({ content }: { content: SiteContent }) {
)
}
+function StartHerePage({ content }: { content: SiteContent }) {
+ return (
+
+
+
Verse by Verse with Nate
+
{content.startHereHeading}
+
+ {content.startHereIntro}
+
+
+
+
+
+ Back to Site
+
+
+
+ )
+}
+
function ThankYouPage() {
const navigate = useNavigate()
const [secondsLeft, setSecondsLeft] = useState(15)
@@ -1203,6 +1356,7 @@ export default function App() {
return (
} />
+ } />
} />
} />
} />
diff --git a/src/index.css b/src/index.css
index 3c332a4..23a99e7 100644
--- a/src/index.css
+++ b/src/index.css
@@ -3,10 +3,21 @@
}
:root {
- font-family: 'Barlow Condensed', 'Trebuchet MS', sans-serif;
+ --brand-black: #0a0a08;
+ --brand-black-2: #0f0f0c;
+ --brand-black-3: #1a1a15;
+ --brand-border: #2a2518;
+ --brand-gold: #c9a84c;
+ --brand-gold-light: #e0c070;
+ --brand-gold-dark: #8a6e28;
+ --brand-warm-white: #f0ead8;
+ --brand-muted: #7a7060;
+ --brand-font-body: 'Cormorant Garamond', Georgia, serif;
+ --brand-font-heading: 'Cormorant Garamond', Georgia, serif;
+ font-family: var(--brand-font-body);
line-height: 1.5;
- color: #f0e6d0;
- background: #0a0a0a;
+ color: var(--brand-warm-white);
+ background: var(--brand-black);
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;