:root {
  --color-deep-velvet: #160A1C;
  --color-wine-dark: #1E0E27;
  --color-wine-card: rgba(30, 14, 39, 0.88);
  --color-saffron: #F59E0B;
  --color-saffron-glow: rgba(245, 158, 11, 0.45);
  --color-terracotta: #FB7185;
  --color-terracotta-glow: rgba(251, 113, 133, 0.35);
  --color-parchment: #FEF3C7;
  --color-text-bright: #FFFFFF;
  --color-text-primary: #F3E8FF;
  --color-text-muted: #C084FC;
  --color-border-card: rgba(245, 158, 11, 0.15);
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Playfair Display", "Georgia", serif;
  --max-width: 1280px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; background-color: var(--color-deep-velvet); }
body { font-family: var(--font-sans); color: var(--color-text-primary); background-color: var(--color-deep-velvet); line-height: 1.75; overflow-x: hidden; }
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--color-saffron); color: #000; padding: 0.75rem 1.5rem; font-weight: 700; z-index: 9999; }
.skip-link:focus { top: 1rem; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.75rem; }
h1, h2, h3, h4 { color: var(--color-text-bright); font-family: var(--font-serif); font-weight: 700; line-height: 1.25; }
p { margin-bottom: 1.25rem; }
a { color: var(--color-saffron); text-decoration: none; transition: var(--transition); }
a:hover { color: #FFF; text-shadow: 0 0 10px var(--color-saffron-glow); }

/* Utility Bar */
.utility-bar { background: rgba(22, 10, 28, 0.98); border-bottom: 1px solid rgba(245, 158, 11, 0.25); font-size: 0.8125rem; padding: 0.45rem 0; color: #E9D5FF; }
.utility-content { display: flex; justify-content: space-between; align-items: center; }
.utility-left { display: flex; align-items: center; gap: 0.75rem; }
.feather-glyph { color: var(--color-saffron); font-size: 1.1rem; }
.utility-domain { color: var(--color-saffron); font-weight: 700; }
.utility-badge { background: rgba(245, 158, 11, 0.15); border: 1px solid var(--color-saffron); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.72rem; color: var(--color-saffron); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

/* Site Header */
.site-header { background: rgba(30, 14, 39, 0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(245, 158, 11, 0.12); position: sticky; top: 0; z-index: 1000; }
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; }
.brand { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.brand-emblem-wrap { width: 44px; height: 44px; background: linear-gradient(135deg, #7C2D12 0%, #451A03 100%); border: 1px solid var(--color-saffron); border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 15px rgba(245, 158, 11, 0.35); }
.brand-emblem { font-family: var(--font-serif); font-weight: 900; font-size: 1.15rem; color: var(--color-saffron); }
.brand-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 800; color: #FFF; letter-spacing: 0.5px; display: block; }
.brand-sub { font-size: 0.68rem; color: var(--color-terracotta); letter-spacing: 1.2px; text-transform: uppercase; display: block; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; list-style: none; gap: 1.5rem; }
.nav-link { color: var(--color-text-primary); font-size: 0.92rem; font-weight: 600; padding: 0.5rem 0.2rem; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--color-saffron); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.75rem; font-weight: 700; font-size: 0.92rem; border-radius: 6px; cursor: pointer; text-decoration: none; transition: var(--transition); }
.btn-gold-feather { background: linear-gradient(135deg, var(--color-saffron) 0%, #D97706 100%); color: #160A1C; box-shadow: 0 0 20px var(--color-saffron-glow); }
.btn-gold-feather:hover { transform: translateY(-2px); box-shadow: 0 0 35px var(--color-saffron); color: #000; text-decoration: none; }
.btn-outline-parchment { background: rgba(254, 243, 199, 0.08); border: 1px solid var(--color-parchment); color: var(--color-parchment); }
.btn-outline-parchment:hover { background: rgba(254, 243, 199, 0.2); color: #FFF; transform: translateY(-2px); text-decoration: none; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.hamburger { display: block; width: 24px; height: 2px; background: var(--color-saffron); position: relative; }
.hamburger::before, .hamburger::after { content: ""; position: absolute; width: 24px; height: 2px; background: var(--color-saffron); left: 0; }
.hamburger::before { top: -7px; } .hamburger::after { top: 7px; }

/* ==========================================================================
   NEW: Magazine Split Editorial Hero
   ========================================================================== */
.editorial-split-hero { position: relative; padding: 4.5rem 0 5rem 0; background: linear-gradient(180deg, #1C0D24 0%, #160A1C 100%); overflow: hidden; border-bottom: 1px solid var(--color-border-card); }
.ambient-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.split-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: center; }
.editorial-kicker { display: flex; align-items: center; gap: 0.75rem; color: var(--color-saffron); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
.kicker-pill { background: rgba(251, 113, 133, 0.15); border: 1px solid var(--color-terracotta); color: var(--color-terracotta); padding: 0.15rem 0.6rem; border-radius: 20px; font-size: 0.72rem; }
.split-hero-title { font-size: 3.4rem; line-height: 1.15; color: #FFF; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.title-highlight { color: var(--color-saffron); font-style: italic; }
.split-hero-lead { font-size: 1.15rem; color: #E9D5FF; line-height: 1.7; margin-bottom: 2rem; max-width: 600px; }
.split-hero-actions { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.editorial-motto-ribbon { display: flex; gap: 0.75rem; font-style: italic; color: #F5D0FE; font-size: 0.95rem; border-left: 3px solid var(--color-terracotta); padding-left: 1rem; line-height: 1.6; }
.ribbon-symbol { color: var(--color-saffron); font-size: 1.4rem; font-style: normal; line-height: 1; }

/* Right Frame Slider */
.magazine-frame-wrap { position: relative; width: 100%; aspect-ratio: 4 / 4.8; border-radius: 12px; overflow: hidden; border: 1px solid var(--color-saffron); box-shadow: 0 0 40px rgba(0,0,0,0.6), 0 0 25px var(--color-saffron-glow); }
.slider-viewport { position: relative; width: 100%; height: 100%; }
.slide-item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s; }
.slide-item.active { opacity: 1; visibility: visible; z-index: 2; }
.slide-media { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 7s ease-out; }
.slide-item.active .slide-media { transform: scale(1); }
.slide-gradient-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(22, 10, 28, 0.2) 0%, rgba(22, 10, 28, 0.92) 80%); z-index: 1; }
.slide-caption-box { position: absolute; bottom: 3.5rem; left: 1.75rem; right: 1.75rem; z-index: 3; }
.caption-tag { display: inline-block; background: var(--color-saffron); color: #160A1C; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 3px; margin-bottom: 0.5rem; }
.caption-heading { font-size: 1.4rem; color: #FFF; margin-bottom: 0.5rem; }
.caption-desc { font-size: 0.88rem; color: #F3E8FF; line-height: 1.5; margin: 0; }
.frame-controls-bar { position: absolute; bottom: 1rem; left: 1.75rem; right: 1.75rem; z-index: 10; display: flex; justify-content: space-between; align-items: center; }
.frame-arrows { display: flex; gap: 0.5rem; }
.frame-nav-btn { background: rgba(22, 10, 28, 0.85); border: 1px solid var(--color-saffron); color: var(--color-saffron); width: 34px; height: 34px; border-radius: 6px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.frame-nav-btn:hover { background: var(--color-saffron); color: #000; }
.frame-indicators { display: flex; gap: 0.5rem; }
.dot-btn { width: 28px; height: 4px; background: rgba(255,255,255,0.2); border: none; border-radius: 2px; cursor: pointer; transition: var(--transition); }
.dot-btn.active { background: var(--color-saffron); width: 44px; }

/* Literary Ribbon Section */
.section-literary-ribbon { padding: 3.5rem 0; }
.parchment-ribbon-card { background: linear-gradient(135deg, rgba(46, 18, 59, 0.9) 0%, rgba(28, 13, 36, 0.95) 100%); border: 1px solid var(--color-border-card); border-radius: 12px; padding: 2.75rem; box-shadow: 0 0 35px rgba(0, 0, 0, 0.5); }
.ribbon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.ribbon-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.ribbon-glyph { color: var(--color-saffron); font-size: 1.2rem; }
.ribbon-item h3 { font-size: 1.25rem; color: #FFF; margin: 0; }
.ribbon-item p { color: #E9D5FF; font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* Sections & Roman Chapters Grid */
.section { padding: 5rem 0; }
.section-chapters { background: #160A1C; }
.text-center { text-align: center; }
.editorial-tag { display: inline-block; background: rgba(245, 158, 11, 0.12); border: 1px solid var(--color-saffron); color: var(--color-saffron); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 0.3rem 0.8rem; border-radius: 4px; margin-bottom: 1rem; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; color: #FFF; }
.feather-separator { color: var(--color-terracotta); font-size: 1.2rem; margin: 0 auto 1.5rem auto; letter-spacing: 4px; }
.section-subtitle { max-width: 760px; margin: 0 auto; font-size: 1.15rem; color: #D8B4FE; }
.chapters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3.5rem; }
.chapter-card { background: var(--color-wine-card); border: 1px solid var(--color-border-card); border-radius: 10px; padding: 2.5rem; display: flex; flex-direction: column; transition: var(--transition); }
.chapter-card:hover { transform: translateY(-5px); border-color: var(--color-saffron); box-shadow: 0 0 30px rgba(245, 158, 11, 0.25); }
.chapter-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.chapter-roman { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--color-saffron); text-transform: uppercase; letter-spacing: 1px; }
.chapter-line { flex-grow: 1; height: 1px; background: rgba(245, 158, 11, 0.3); }
.chapter-title { font-size: 1.35rem; margin-bottom: 0.85rem; color: #FFF; }
.chapter-desc { color: #E9D5FF; font-size: 0.95rem; line-height: 1.65; flex-grow: 1; }
.chapter-footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.06); }
.chapter-link { font-weight: 700; font-size: 0.9rem; color: var(--color-terracotta); }
.chapter-link:hover { color: var(--color-saffron); }

/* Patron's Study (Leadership Section) */
.section-patron { background: linear-gradient(180deg, #160A1C 0%, #1C0D24 100%); }
.patron-study-card { display: grid; grid-template-columns: 320px 1fr; gap: 3.5rem; padding: 3.5rem; background: var(--color-wine-card); border: 1px solid var(--color-border-card); border-radius: 12px; align-items: center; box-shadow: 0 0 35px rgba(0,0,0,0.4); }
.patron-frame { position: relative; width: 100%; aspect-ratio: 4 / 5; background: #000; border-radius: 8px; overflow: hidden; border: 1px solid var(--color-saffron); box-shadow: 0 0 25px var(--color-saffron-glow); }
.patron-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bookplate-corner { position: absolute; width: 14px; height: 14px; border-color: var(--color-saffron); border-style: solid; }
.bookplate-corner.tl { top: 6px; left: 6px; border-width: 2px 0 0 2px; }
.bookplate-corner.tr { top: 6px; right: 6px; border-width: 2px 2px 0 0; }
.bookplate-corner.bl { bottom: 6px; left: 6px; border-width: 0 0 2px 2px; }
.bookplate-corner.br { bottom: 6px; right: 6px; border-width: 0 2px 2px 0; }
.patron-meta { text-align: center; margin-top: 1rem; }
.leader-name { display: block; font-size: 1rem; color: #FFF; font-family: var(--font-serif); }
.leader-title { font-size: 0.8rem; color: var(--color-saffron); }
.patron-name-display { font-size: 2.5rem; margin-bottom: 0.25rem; }
.patron-role { font-size: 1.1rem; color: var(--color-terracotta); font-weight: 600; margin-bottom: 1.5rem; }
.patron-quote { font-size: 1.15rem; font-style: italic; color: var(--color-parchment); border-left: 3px solid var(--color-saffron); padding-left: 1.5rem; margin-bottom: 1.5rem; line-height: 1.7; font-family: var(--font-serif); }
.patron-summary { color: #E9D5FF; font-size: 1rem; margin-bottom: 2rem; }
.patron-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Call to Engagement & Bottom Status */
.cta-study-box { background: linear-gradient(135deg, rgba(46, 18, 59, 0.95) 0%, rgba(28, 13, 36, 0.98) 100%); border: 1px solid var(--color-saffron); border-radius: 12px; padding: 3.5rem; box-shadow: 0 0 35px var(--color-saffron-glow); }
.cta-title { font-size: 2.4rem; margin-bottom: 1rem; color: #FFF; }
.cta-desc { color: #E9D5FF; max-width: 700px; margin: 0 auto 2rem auto; font-size: 1.05rem; }
.cta-btn-row { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

.bottom-status-card { background: rgba(30, 14, 39, 0.96); border: 1px solid rgba(245, 158, 11, 0.35); border-radius: 8px; padding: 1.25rem 1.75rem; margin-bottom: 3.5rem; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; box-shadow: 0 0 20px rgba(0,0,0,0.4); }
.status-indicator-dot { width: 10px; height: 10px; background: var(--color-saffron); border-radius: 50%; box-shadow: 0 0 10px var(--color-saffron); flex-shrink: 0; }
.status-card-text { flex-grow: 1; font-size: 0.88rem; color: #F3E8FF; }
.status-card-text strong { color: var(--color-saffron); margin-right: 0.5rem; }
.status-cta-link { color: var(--color-terracotta); font-weight: 700; font-size: 0.88rem; text-decoration: underline; white-space: nowrap; }

/* Pages & Form */
.page-header-banner { padding: 5rem 0 3.5rem 0; background: linear-gradient(180deg, #1E0E27 0%, #160A1C 100%); border-bottom: 1px solid var(--color-border-card); }
.page-title { font-size: 3rem; margin-bottom: 1rem; color: #FFF; }
.page-summary { font-size: 1.2rem; color: #E9D5FF; max-width: 800px; }
.page-content-wrap { padding-top: 3.5rem; padding-bottom: 5rem; }
.editorial-content-card { padding: 3rem; background: var(--color-wine-card); border: 1px solid var(--color-border-card); border-radius: 12px; }
.content-block { margin-bottom: 2.5rem; }
.content-heading { font-size: 1.7rem; color: var(--color-saffron); margin-bottom: 1rem; }
.content-body { color: var(--color-text-primary); font-size: 1.05rem; line-height: 1.8; }
.editorial-form-card { max-width: 800px; margin: 0 auto; padding: 3rem; background: var(--color-wine-card); border: 1px solid var(--color-border-card); border-radius: 12px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--color-parchment); }
.form-control { width: 100%; padding: 0.8rem 1rem; background: rgba(22, 10, 28, 0.85); border: 1px solid rgba(245, 158, 11, 0.25); border-radius: 6px; color: #FFF; font-family: inherit; }
.form-control:focus { outline: none; border-color: var(--color-saffron); box-shadow: 0 0 15px var(--color-saffron-glow); }
.checkbox-label { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; font-size: 0.85rem; color: #E9D5FF; }
.alert-success-box { background: rgba(245, 158, 11, 0.15); border: 1px solid var(--color-saffron); color: #FFF; padding: 1.25rem; border-radius: 6px; margin-bottom: 2rem; }
.alert-error-box { background: rgba(239, 68, 68, 0.15); border: 1px solid #EF4444; color: #EF4444; padding: 1.25rem; border-radius: 6px; margin-bottom: 2rem; }
.field-error { color: #EF4444; font-size: 0.8rem; margin-top: 0.25rem; display: block; }

/* Footer */
.site-footer { background: #120718; border-top: 1px solid rgba(245, 158, 11, 0.2); padding: 5rem 0 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand-title { font-size: 1.35rem; font-weight: 800; color: #FFF; font-family: var(--font-serif); }
.footer-domain-badge { font-size: 0.8rem; color: var(--color-saffron); margin-bottom: 1rem; font-weight: 700; }
.footer-desc { font-size: 0.9rem; color: #C084FC; line-height: 1.6; }
.guild-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--color-text-primary); background: rgba(245, 158, 11, 0.08); padding: 0.35rem 0.75rem; border-radius: 4px; margin-top: 1rem; border: 1px solid rgba(245, 158, 11, 0.2); }
.guild-dot { width: 6px; height: 6px; background: var(--color-saffron); border-radius: 50%; }
.footer-heading { font-size: 1.05rem; color: #FFF; margin-bottom: 1.25rem; font-family: var(--font-serif); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: #C084FC; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--color-saffron); padding-left: 0.3rem; }
.footer-highlight { color: var(--color-saffron) !important; font-weight: 700; }
.footer-direct-contact { margin-top: 1.5rem; font-size: 0.85rem; }
.contact-lbl { display: block; color: #C084FC; }
.contact-email { color: var(--color-saffron); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(245, 158, 11, 0.12); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.8125rem; color: #C084FC; flex-wrap: wrap; gap: 1rem; }
.footer-disclaimer { font-size: 0.75rem; margin-top: 0.35rem; }

/* Responsive */
@media (max-width: 1024px) {
  .split-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ribbon-grid { grid-template-columns: 1fr; }
  .patron-study-card { grid-template-columns: 1fr; }
  .patron-frame { max-width: 280px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .split-hero-title { font-size: 2.6rem; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(30, 14, 39, 0.98); flex-direction: column; padding: 1.5rem; }
  .nav-menu.open { display: flex; }
  .nav-list { flex-direction: column; width: 100%; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .split-hero-title { font-size: 2rem; }
}
/* Social Buttons Hover */
.social-btn:hover {
    transform: translateY(-3px);
    border-color: #00E5FF !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}
.fb-btn:hover { color: #1877F2 !important; }
.in-btn:hover { color: #0A66C2 !important; }