/* =========================
   1. ROOT / VARIABLES
========================= */
:root {
  --emlan-black: #000000;
  --emlan-black-soft: #0b0b0b;
  --emlan-charcoal: #111111;
  --emlan-gold: #d4af37;
  --emlan-gold-soft: #c8a96a;
  --emlan-green: #1f4d2b;
  --emlan-green-bright: #1f7a3a;
  --emlan-cream: #f5f0e6;
  --emlan-light-gold: #f5e6a8;
  --emlan-white: #ffffff;
  --emlan-text-dark: #111111;
  --emlan-border-light: #b8b0a0;
  --emlan-border-radius: 8px;
  --emlan-button-radius: 4px;
  --emlan-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  --emlan-content-width: 1100px;
  --emlan-page-width: 1000px;
  --emlan-reading-width: 760px;
}

/* =========================
   1.1 FILE STRUCTURE
   /htdocs/
       /downloads/
       /images/
       index.php
       books.php
       about.php
       signal.php
       contact.php
       header.php
       footer.php
       style.css
========================= */

/* =========================
   2. GLOBAL / RESET
========================= */
html {
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--emlan-black);
  color: var(--emlan-cream);
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

main {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================
   3. GLOBAL ELEMENTS
========================= */
a {
  color: var(--emlan-gold-soft);
  text-decoration: none;
}

a:hover {
  color: var(--emlan-light-gold);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--emlan-light-gold);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}

form {
  margin: 0;
}

::selection {
  background: var(--emlan-gold);
  color: var(--emlan-black);
}

/* =========================
   4. HEADER
========================= */
.site-header {
  width: 100%;
  margin: 0;
  padding: 30px 20px 20px;
  background: var(--emlan-black);
  color: var(--emlan-gold);
  text-align: center;
}

/* =========================
   5. BRANDING
========================= */
.logo-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 6px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--emlan-gold);
}

.emlan-main-logo {
  width: 350px;
}

.logo {
  width: 36px;
  flex: 0 0 auto;
}

.logo-title h1 {
  margin: 4px 0 0;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 3px;
}

.site-signal {
  margin: 4px 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--emlan-gold);
}

.tagline {
  margin: 6px 0 12px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--emlan-light-gold);
}

.nav-divider {
  width: 180px;
  height: 2px;
  margin: 16px auto 4px;
  border: none;
  background: linear-gradient(
    to right,
    transparent,
    var(--emlan-gold),
    transparent
  );
}

/* =========================
   6. NAVIGATION
========================= */
nav {
  width: 100%;
  margin: 0;
  padding: 10px 16px;
  background: var(--emlan-charcoal);
  border-top: 2px solid var(--emlan-gold-soft);
  border-bottom: 2px solid var(--emlan-gold-soft);
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: var(--emlan-page-width);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

nav ul li {
  margin: 0;
  padding: 0;
}

nav ul li a {
  display: inline-block;
  padding: 6px 4px;
  color: var(--emlan-gold);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease;
}

nav ul li a.active {
  background:
    linear-gradient(
      to right,
      transparent,
      var(--emlan-gold),
      transparent
    )
    bottom / 100% 2px no-repeat;
}

nav ul li a:hover {
  color: var(--emlan-light-gold);
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.35);
}

/* =========================
  7. HERO
========================= */
.hero-banner {
  width: 100%;
  margin: 0;
  padding: 50px 20px 30px;
  background: var(--emlan-black);
  color: var(--emlan-gold);
  text-align: center;
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emlan-gold);
}

.hero-text {
  width: 100%;
  max-width: 700px;
  margin: 10px auto 20px;
  color: var(--emlan-light-gold);
  line-height: 1.7;
}

.hero-action-line {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.4px;
  color: var(--emlan-light-gold);
}

/* =========================
   8. MAIN LAYOUT / CONTAINERS
========================= */
.content-container {
  width: 100%;
  max-width: var(--emlan-content-width);
  margin: 20px auto;
  padding: 0 20px;
}

.page-section {
  width: 100%;
  max-width: var(--emlan-page-width);
  margin: 0 auto;
}

.books-intro,
.page-intro {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
  color: var(--emlan-light-gold);
}

.books-intro h2,
.page-intro h2 {
  margin: 0 0 12px;
  color: var(--emlan-gold);
}

/* =========================
   8.1 SECTION RHYTHM SYSTEM
========================= */
.section-spacing {
  margin-top: 48px;
}

/* =========================
   9. BOOK GRID
========================= */
.book-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

/* =========================
   10. BOOK BOXES
========================= */
.book-box {
  display: flex;
  flex: 0 0 280px;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  width: 280px;
  padding: 24px 20px;
  background: var(--emlan-cream);
  border: 2px solid var(--emlan-gold-soft);
  border-radius: var(--emlan-border-radius);
  box-shadow: var(--emlan-shadow);
  color: var(--emlan-text-dark);
  text-align: center;
}

.book-box img {
  width: 180px;
  height: 260px;
  margin: 0 auto 14px;
  border: 2px solid var(--emlan-gold);
  object-fit: cover;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.book-box img:hover {
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transform: scale(1.03);
}

.book-box h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 6px 0 2px;
  color: var(--emlan-text-dark);
}

.book-box h3 a {
  color: var(--emlan-text-dark);
}

.book-box h3 a:hover {
  color: var(--emlan-green);
}

.book-box p {
  margin: 4px 0;
}

.author {
  display: block;
  margin: 0 0 6px;
  color: var(--emlan-text-dark);
  font-style: italic;
}

.price {
  min-height: 24px;
  margin: 4px 0 8px;
  color: var(--emlan-green);
  font-weight: bold;
}

.book-card-note,
.book-box .purchase-note {
  margin: 4px 0 10px;
  color: var(--emlan-text-dark);
  font-size: 13px;
  line-height: 1.4;
}

/* =========================
   11. FORMS
========================= */
.book-box form,
.featured-book form {
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

/* =========================
   12. BUTTON SYSTEM
========================= */

/* ---------------------------------
   12.1 BASE BUTTONS
--------------------------------- */
.buy-button,
.ebook-button,
.preorder-placeholder,
.hero-btn,
.signal-btn,
.return-button,
.signal-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--emlan-button-radius);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.buy-button:active,
.ebook-button:active,
.preorder-placeholder:active,
.hero-btn:active,
.signal-btn:active,
.return-button:active,
.signal-entry-btn:active {
  transform: translateY(0);
}

/* ---------------------------------
   12.2 STORE + EPUB BUTTONS
--------------------------------- */
.buy-button,
.ebook-button,
.preorder-placeholder {
  display: flex;
  width: 100%;
  max-width: 240px;
  margin: 8px auto 0;
  background: var(--emlan-gold-soft);
  border: 2px solid var(--emlan-gold-soft);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  color: var(--emlan-black);
}

.buy-button:hover,
.ebook-button:hover,
.preorder-placeholder:hover {
  background: var(--emlan-gold);
  border-color: var(--emlan-gold);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
  color: var(--emlan-black);
  transform: translateY(-1px);
}

/* ---------------------------------
   12.3 PRE-ORDER BUTTON
--------------------------------- */
.preorder-placeholder {
  opacity: 0.95;
}

/* ---------------------------------
   12.4 RETURN BUTTON
--------------------------------- */
.return-button {
  display: flex;
  width: 100%;
  max-width: 260px;
  margin: 24px auto 0;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--emlan-gold-soft);
  color: var(--emlan-gold-soft);
  font-size: 14px;
}

.return-button:hover {
  background: rgba(200, 169, 106, 0.1);
  border-color: var(--emlan-light-gold);
  color: var(--emlan-light-gold);
}

/* ---------------------------------
   12.5 HERO BUTTONS
--------------------------------- */
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.hero-buttons .hero-btn {
  width: 220px;
}

.hero-buttons .hero-btn:nth-child(1) {
  background: var(--emlan-green-bright);
  border: 2px solid var(--emlan-green-bright);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  color: var(--emlan-white);
}

.hero-buttons .hero-btn:nth-child(1):hover {
  background: var(--emlan-green);
  border-color: var(--emlan-green);
  box-shadow: 0 4px 10px rgba(31, 122, 58, 0.25);
  color: var(--emlan-white);
  transform: translateY(-1px);
}

.hero-buttons .hero-btn:nth-child(2) {
  background: transparent;
  border: 2px solid var(--emlan-gold-soft);
  box-shadow: none;
  color: var(--emlan-gold);
}

.hero-buttons .hero-btn:nth-child(2):hover {
  background: rgba(200, 169, 106, 0.1);
  border-color: var(--emlan-light-gold);
  color: var(--emlan-light-gold);
}

.hero-buttons .hero-btn:nth-child(3) {
  background: var(--emlan-gold-soft);
  border: 2px solid var(--emlan-gold-soft);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  color: var(--emlan-black);
}

.hero-buttons .hero-btn:nth-child(3):hover {
  background: var(--emlan-gold);
  border-color: var(--emlan-gold);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
  color: var(--emlan-black);
  transform: translateY(-1px);
}

/* ---------------------------------
   12.6 SIGNAL BUTTONS
--------------------------------- */
.signal-btn,
.signal-entry-btn {
  width: 100%;
  max-width: 220px;
  background: var(--emlan-green-bright);
  border: 2px solid var(--emlan-green-bright);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  color: var(--emlan-white);
}

.signal-btn:hover,
.signal-entry-btn:hover {
  background: var(--emlan-green);
  border-color: var(--emlan-green);
  box-shadow: 0 4px 10px rgba(31, 122, 58, 0.25);
  color: var(--emlan-white);
  transform: translateY(-1px);
}

/* ---------------------------------
   12.7 CONTACT FORM BUTTON
--------------------------------- */
.contact-submit {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 12px;
  background: var(--emlan-gold-soft);
  border: none;
  border-radius: var(--emlan-button-radius);
  color: var(--emlan-black);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-submit:hover {
  background: var(--emlan-gold);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
  color: var(--emlan-black);
  transform: translateY(-1px);
}

/* ---------------------------------
   12.8 FEATURED BOOK EDITION BOXES
--------------------------------- */
.featured-book .book-action {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 22px auto 0;
  background: transparent;
  text-align: center;
}

.featured-book .edition-box {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 18px auto;
  padding: 18px 20px;
  background: var(--emlan-white);
  border: 1px solid var(--emlan-gold-soft);
  border-radius: var(--emlan-button-radius);
  color: var(--emlan-text-dark);
  text-align: center;
}

.featured-book .edition-box h3 {
  margin: 0 0 8px;
  color: var(--emlan-green);
}

.featured-book .edition-box p {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 10px;
  line-height: 1.6;
}

.featured-book .shipping-note {
  font-size: 0.95rem;
  font-style: italic;
}

.featured-book .signed-edition {
  background: #efe6d2;
}

.featured-book .buy-button,
.featured-book .ebook-button,
.featured-book .preorder-placeholder {
  width: 100%;
  max-width: 260px;
  margin-right: auto;
  margin-left: auto;
}

.featured-book .buy-button,
.featured-book .preorder-placeholder {
  margin-top: 0;
}

.featured-book .ebook-button {
  margin-top: 14px;
}

.featured-book .gold-button {
  display: inline-flex;
  background: var(--emlan-gold);
  border: 2px solid var(--emlan-gold);
  color: var(--emlan-black);
  text-decoration: none;
}

.featured-book .gold-button:hover {
  background: var(--emlan-gold-soft);
  border-color: var(--emlan-gold-soft);
  color: var(--emlan-black);
}

/* ---------------------------------
   12.9 BOOK CARD BUTTON LOCK
--------------------------------- */
.book-box .buy-button,
.book-box .ebook-button,
.book-box .preorder-placeholder {
  width: 100%;
  max-width: 220px;
  margin-right: auto;
  margin-left: auto;
}

.book-box .buy-button,
.book-box .preorder-placeholder {
  margin-top: 6px;
  margin-bottom: 4px;
}

.book-box .ebook-button {
  margin-top: 8px;
  margin-bottom: 0;
}

/* ---------------------------------
   12.10 EPUB + ACTION SPACING
--------------------------------- */
.book-action {
  width: 100%;
  text-align: center;
}

.ebook-option {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 18px;
  text-align: center;
}

.ebook-note {
  display: block;
  margin: 0 0 6px;
}

.purchase-note,
.support-note {
  width: 100%;
  max-width: 420px;
  color: var(--emlan-cream);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  text-align: center;
}

.purchase-note {
  margin: 10px auto 0;
}

.support-note {
  margin: 18px auto 0;
}

.audio-note {
  margin: 10px 0 0;
  font-size: 13px;
  font-style: italic;
  opacity: 0.85;
}

/* ---------------------------------
   12.11 NOTIFY SECTION
--------------------------------- */
.notify-section {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 48px 0 0;
}

.notify-container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 28px;
  background: rgba(11, 11, 11, 0.96);
  box-shadow: none;
  color: var(--emlan-cream);
  text-align: center;
}

.notify-container h2 {
  margin: 0 0 10px;
  color: var(--emlan-gold);
  font-size: 28px;
}

.notify-intro {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 22px;
  color: var(--emlan-light-gold);
  line-height: 1.7;
}

.notify-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.notify-form label {
  display: block;
  width: 100%;
  margin: 0 0 6px;
  color: var(--emlan-gold);
  font-weight: bold;
  text-align: left;
}

.notify-form input {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 12px 14px;
  background: var(--emlan-white);
  border: 1px solid var(--emlan-border-light);
  border-radius: var(--emlan-button-radius);
  color: var(--emlan-text-dark);
  font-family: inherit;
  font-size: 16px;
}

.notify-form .signal-btn {
  display: flex;
  margin: 12px auto 0;
}

/* =========================
   13. EBOOK / DIGITAL
========================= */
.preorder-note {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin: 6px 0 0;
  color: var(--emlan-text-dark);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.book-box .ebook-option h4 {
  margin: 0 0 8px;
  color: var(--emlan-black);
  font-size: 1rem;
}

.book-box .ebook-option .ebook-note {
  margin: 0 0 12px;
  line-height: 1.5;
}

.book-card-shipping {
  margin: 8px auto 0;
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
}

/* =========================
   14. ABOUT PAGE
========================= */
.about-container {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 30px;
  background: var(--emlan-black-soft);
  border: 2px solid var(--emlan-gold-soft);
  border-radius: var(--emlan-border-radius);
  color: var(--emlan-cream);
  text-align: center;
}

.about-title {
  margin: 0 auto 10px;
  color: var(--emlan-gold);
}

.about-intro {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--emlan-gold-soft);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
}

.about-container p:not(.about-intro):not(.about-quote) {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.8;
  text-align: left;
}

.about-quote {
  margin: 24px auto 0;
  color: var(--emlan-gold);
  font-style: italic;
  font-weight: bold;
}

/* =========================
   15. CONTACT PAGE
========================= */

.contact-page .featured-book {
  width: 100%;
  max-width: var(--emlan-page-width);
  margin: 40px auto;
  padding: 40px 24px;
  background: transparent;
  border: 1px solid var(--emlan-gold);
  border-radius: var(--emlan-border-radius);
  box-shadow: none;
  color: var(--emlan-cream);
}

/* CONTACT CONTENT WIDTH */
.contact-page .featured-description,
.contact-page .interest-note {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin-right: auto;
  margin-left: auto;
}

/* CONTACT COLORS */
.contact-page .contact-section h2,
.contact-page .contact-section .featured-description,
.contact-page .contact-section .interest-note,
.contact-page .contact-section .contact-form label {
  color: var(--emlan-gold);
}

/* CONTACT HEADING */
.contact-page .contact-section h2 {
  margin: 0 0 12px;
  text-align: center;
}

/* CONTACT INTRODUCTION */
.contact-page .contact-section .featured-description {
  text-align: center;
}

/* INTEREST NOTE */
.contact-page .contact-section .interest-note {
  margin-top: 0;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

/* SUCCESS MESSAGE */
.contact-page .contact-section .contact-success {
  display: block;
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 0 auto 20px;
  padding: 14px 18px;
  color: var(--emlan-cream);
  font-weight: bold;
  text-align: center;
}

.contact-page .contact-success-message {
  margin: 0;
  padding: 0;
  text-align: center;
}

/* ERROR MESSAGE */
.contact-page .contact-section .contact-error {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 0 auto 20px;
  color: var(--emlan-light-gold);
  font-weight: bold;
  text-align: center;
}

/* CONTACT FORM */
.contact-page .contact-form {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 0 auto;
  padding: 0;
}

.contact-page .contact-form label {
  display: block;
  width: 100%;
  margin: 0 0 6px;
  font-weight: bold;
  text-align: left;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 12px 16px;
  background: var(--emlan-white);
  border: 1px solid var(--emlan-border-light);
  border-radius: var(--emlan-button-radius);
  color: var(--emlan-text-dark);
  line-height: 1.5;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  border-color: var(--emlan-gold);
  outline: none;
}

.contact-page .contact-form textarea {
  min-height: 160px;
  margin-bottom: 20px;
  resize: vertical;
}

/* =========================
   15.1 DANICE DAWN LIVE
========================= */

.danice-live-page {
  width: 100%;
}

.danice-live-section {
  width: 100%;
  max-width: var(--emlan-page-width);
  margin: 0 auto;
  padding: 50px 24px 70px;
}

/* =========================
   ARRIVAL
========================= */

.danice-live-arrival {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 0 auto 55px;
  text-align: center;
}

.danice-live-arrival-welcome {
  margin: 12px 0;
  color: var(--emlan-cream);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
}


/* =========================
   PAGE INTRO
========================= */

.danice-live-intro {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 0 auto 48px;
  text-align: center;
}

.danice-live-kicker {
  margin: 0 0 10px;
  color: var(--emlan-gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.danice-live-intro h1 {
  margin: 0 0 18px;
  color: var(--emlan-gold);
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.2;
}

.danice-live-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: var(--emlan-cream);
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   REFLECTION
========================= */
.danice-live-entry {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--emlan-cream);
  color: var(--emlan-text-dark);
  border-radius: var(--emlan-border-radius);
  box-shadow: var(--emlan-shadow);
  box-sizing: border-box;
}

.danice-live-welcome {
  margin: 0 0 8px;
  color: var(--emlan-green);
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.danice-live-welcome-note {
  margin: 0;
  color: var(--emlan-text-dark);
  font-style: italic;
  line-height: 1.8;
  text-align: center;
}

.danice-live-divider {
  width: 90px;
  height: 1px;
  margin: 32px auto;
  background: var(--emlan-gold);
}

.danice-live-date {
  margin: 0 0 12px;
  color: var(--emlan-green);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.danice-live-title,
.danice-live-entry h2 {
  margin: 0 0 34px;
  color: var(--emlan-green);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.25;
  text-align: center;
}

.danice-live-reflection {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}

.danice-live-reflection p {
  margin: 0 0 24px;
  color: var(--emlan-text-dark);
  font-size: 18px;
  line-height: 1.9;
}

.danice-live-reflection p:last-child {
  margin-bottom: 0;
}

.danice-live-reflection + .danice-live-thought {
  border-top: 1px solid rgba(31, 77, 43, 0.15);
  padding-top: 60px;
}

/* =========================
   CARRY THIS WITH YOU TODAY
========================= */

.danice-live-thought {
  width: 100%;
  max-width: 640px;
  margin: 70px auto;
  text-align: center;
}

.danice-live-thought h3 {
  margin: 0 0 18px;
  color: var(--emlan-green);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.danice-live-quote {
  margin: 0;
  color: var(--emlan-green);
  font-size: clamp(22px, 3vw, 28px);
  font-style: italic;
  line-height: 1.8;
}

/* =========================
   SIGNATURE
========================= */

.danice-live-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 60px auto 0;
  text-align: center;
  color: var(--emlan-green);
}

.danice-live-signature span {
  font-style: italic;
  font-size: 18px;
}

.danice-live-signature strong {
  font-size: 22px;
  color: var(--emlan-green);
}

/* =========================
   RESPONSE
========================= */

.danice-live-response {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 80px auto 0;
  text-align: center;
}

.danice-live-response h3 {
  margin: 0 0 18px;
  color: var(--emlan-green);
  font-size: clamp(26px, 4vw, 34px);
}

.danice-live-response p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--emlan-text-dark);
  font-size: 18px;
  line-height: 1.9;
}

.danice-live-response .buy-button {
  display: inline-block;
  text-decoration: none;
}

/* =========================
   ARCHIVE
========================= */

.danice-live-archive {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 80px auto 0;
  text-align: center;
}

.danice-live-archive h3 {
  margin: 0 0 18px;
  color: var(--emlan-green);
  font-size: clamp(24px, 4vw, 32px);
}

.danice-live-archive p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--emlan-text-dark);
  font-size: 18px;
  line-height: 1.8;
}

.danice-live-archive .secondary-button {
  display: inline-block;
  text-decoration: none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .danice-live-section {
    padding: 36px 16px 50px;
  }

  .danice-live-arrival {
    margin-bottom: 40px;
  }

  .danice-live-entry {
    padding: 34px 22px;
  }

  .danice-live-subtitle {
    font-size: 17px;
  }

  .danice-live-reflection p {
    font-size: 17px;
    line-height: 1.85;
  }

  .danice-live-thought {
    margin: 50px auto;
  }

  .danice-live-quote {
    font-size: 21px;
  }

  .danice-live-response .buy-button,
  .danice-live-archive .secondary-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

}



/* =========================
   16. FOOTER
========================= */
footer {
  width: 100%;
  margin-top: 48px;
  padding: 24px 20px;
  background: var(--emlan-black);
  border-top: 2px solid var(--emlan-gold-soft);
  color: var(--emlan-gold);
  text-align: center;
}

footer p {
  margin: 6px 0;
}

.footer-brand {
  font-weight: bold;
  letter-spacing: 0.8px;
}

.footer-message {
  width: 100%;
  max-width: 640px;
  margin: 6px auto;
  color: var(--emlan-light-gold);
  font-size: 14px;
  line-height: 1.5;
}

.footer-copy {
  color: var(--emlan-gold-soft);
  font-size: 13px;
}

/* =========================
   17. HOME SIGNAL SECTION
========================= */
.signal-section {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 24px 0 0;
  padding: 0 16px;
}

.signal-container {
  width: 100%;
  max-width: 860px;
  padding: 24px 24px 26px;
  background: var(--emlan-black);
  text-align: center;
}

.signal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.signal-text {
  width: 100%;
  max-width: 660px;
}

.signal-heading {
  margin: 0 0 2px;
  color: var(--emlan-gold);
  font-size: 28px;
  line-height: 1.2;
}

.signal-comma {
  color: var(--emlan-gold-soft);
}

.signal-rising {
  margin: 0 0 14px;
  color: var(--emlan-cream);
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 1px;
}

.signal-description {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  color: var(--emlan-cream);
  line-height: 1.6;
}

.signal-text p:not(.signal-description) {
  margin: 0;
  color: var(--emlan-cream);
  line-height: 1.5;
}

.signal-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.signal-actions .signal-btn {
  width: auto;
  min-width: 170px;
  max-width: 210px;
}

/* =========================
   18. FEATURED BOOK PAGE
========================= */
.featured-book {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 20px;
  padding: 34px 24px 28px;
  background: var(--emlan-cream);
  border: 2px solid var(--emlan-gold-soft);
  border-radius: var(--emlan-border-radius);
  box-shadow: var(--emlan-shadow);
  color: var(--emlan-text-dark);
  text-align: center;
}

.featured-book h2 {
  margin: 0 0 10px;
  color: var(--emlan-green);
  font-size: 32px;
}

.featured-book img {
  width: 200px;
  margin: 20px auto;
  border: 2px solid var(--emlan-gold);
}

.featured-book > h3 {
  margin-bottom: 10px;
}

.featured-book .price {
  margin: 6px 0 8px;
  color: var(--emlan-green);
}

.featured-description,
.featured-book .reader-promise {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--emlan-text-dark);
  line-height: 1.7;
}

.featured-book .book-action form {
  margin: 0 0 18px;
}

.featured-book .purchase-note,
.featured-book .journal-note {
  width: 100%;
  max-width: 640px;
  margin: 10px auto;
  color: var(--emlan-text-dark);
  font-size: 15px;
  line-height: 1.5;
}

/* =========================
   18.1 JOURNAL PAGE
========================= */
.journal-container {
  text-align: center;
}

.journal-subhead {
  margin: 8px 0 20px;
  color: var(--emlan-green);
  font-size: 18px;
  font-style: italic;
}

.journal-invite {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 20px auto 10px;
  font-style: italic;
  text-align: center;
}

.featured-book .journal-form {
  display: block;
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  text-align: left;
}

.featured-book .journal-form label {
  font-weight: bold;
}

.featured-book .journal-form input,
.featured-book .journal-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--emlan-white);
  border: 1px solid var(--emlan-border-light);
  border-radius: var(--emlan-button-radius);
  color: var(--emlan-text-dark);
}

.featured-book .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 12px auto;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.featured-book .checkbox-label input {
  flex: 0 0 auto;
  width: auto;
  margin-top: 3px;
}

/* =========================
   19. SIGNAL POSTS
========================= */
.signal-entry-section,
.signal-posts-section {
  width: 100%;
  margin: 0 auto;
}

.signal-entry-box,
.signal-post {
  width: 100%;
  max-width: 100%;
  margin: 32px auto 0;
  padding: 28px 30px;
  background: var(--emlan-black-soft);
  border: 1px solid var(--emlan-gold-soft);
  border-radius: var(--emlan-border-radius);
  color: var(--emlan-cream);
}

.signal-entry-box {
  text-align: center;
}

.signal-entry-box h2,
.signal-entry-box h3,
.signal-post h3 {
  margin: 0 0 12px;
  color: var(--emlan-gold);
}

.signal-post h3 {
  text-align: center;
}

.signal-entry-box p,
.signal-post p {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 14px;
  line-height: 1.7;
}

.signal-entry-box p:last-child,
.signal-post p:last-child {
  margin-bottom: 0;
}

.signal-entry-box a:not(.signal-entry-btn),
.signal-post a {
  color: var(--emlan-gold-soft);
  font-weight: bold;
}

.signal-entry-box a:not(.signal-entry-btn):hover,
.signal-post a:hover {
  color: var(--emlan-light-gold);
}

.danice-link-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 760px;
  margin: 24px auto 0;
}

.danice-link-grid .signal-entry-btn {
  flex: 1 1 200px;
  width: 100%;
  max-width: 220px;
}

/* ---------------------------------
   19.0 SIGNAL INTRO
--------------------------------- */
.signal-intro {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--emlan-cream);
  text-align: center;
}

.signal-intro h2 {
  margin: 0 0 12px;
  color: var(--emlan-gold);
}

.signal-intro .featured-description {
  margin: 0 auto 30px;
  color: var(--emlan-cream);
}

.live-date {
  margin: 0 auto 8px;
  color: var(--emlan-gold-soft);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.live-signature {
  margin-top: 16px;
  color: var(--emlan-gold);
  font-style: italic;
  font-weight: bold;
  text-align: right;
}

.daily-mantra,
.archive-mantra {
  color: var(--emlan-light-gold);
  font-size: 18px;
  font-style: italic;
  text-align: center;
}

.archive-mantra {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 169, 106, 0.35);
}

/* =========================
   19.1 SOCIAL LINKS
========================= */
.social-links {
  margin: 24px 0 10px;
  text-align: center;
}

.social-title {
  margin-bottom: 8px;
  color: var(--emlan-gold);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  color: var(--emlan-cream);
  font-size: 14px;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: var(--emlan-light-gold);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid var(--emlan-gold-soft);
  border-radius: 50%;
  color: var(--emlan-gold-soft);
  font-size: 11px;
  font-weight: bold;
}

.social-icons a:hover .social-icon {
  border-color: var(--emlan-light-gold);
  color: var(--emlan-light-gold);
}

/* =========================================================
   STUDIO PROJECT REQUEST FORM
========================================================= */

.studio-request-page .featured-book .contact-form {
  width: 100%;
  max-width: var(--emlan-reading-width);
  margin: 30px auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.studio-request-page .contact-form label {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--emlan-green);
}

.studio-request-page .contact-form input,
.studio-request-page .contact-form textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--emlan-gold-soft);
  border-radius: var(--emlan-border-radius);
  background: #ffffff;
  color: var(--emlan-text-dark);
}

.studio-request-page .contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.studio-request-page .contact-form .contact-submit {
  margin-top: 14px;
  padding: 14px 20px;
}


/* =========================
   20. RESPONSIVE
========================= */
@media (max-width: 768px) {
  .site-header {
    padding: 26px 16px 18px;
  }

  .content-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-container,
  .contact-page .featured-book,
  .featured-book {
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .about-container {
    padding: 34px 24px;
  }

  .contact-page .featured-book,
  .featured-book {
    padding: 30px 20px;
  }

  .signal-entry-box,
  .signal-post {
    padding: 26px 24px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 24px 12px 16px;
  }

  .logo-title h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .logo {
    width: 32px;
  }

  .site-signal {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .tagline {
    font-size: 17px;
  }

  nav {
    padding: 10px 12px;
  }

  nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  margin: 0;
  }

    nav ul li {
    white-space: nowrap;
  }

    nav ul li a {
    font-size: 14px;
    padding: 8px 2px;
  }

    .hero-banner {
      padding: 38px 12px 26px;
    }

    .hero-text {
      margin-bottom: 18px;
    }

    .content-container {
    width: 100%;
    max-width: 100%;
    margin: 12px auto;
    padding: 0 12px;
  }

    .section-spacing {
    margin-top: 28px;
  }

    .books-intro {
    margin-bottom: 20px;
    padding: 0 8px;
  }

    .books-intro p {
    margin-bottom: 0;
    line-height: 1.55;
  }

    .book-grid {
      flex-direction: column;
      width: 100%;
      max-width: 100%;
      gap: 24px;
      padding: 0;
    }

    .book-box {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 16px;
    gap: 4px;
  }

  .book-box img {
    width: 180px;
    height: auto;
    aspect-ratio: 9 / 13;
    margin-bottom: 10px;
  }

    .book-box h3 {
    margin-top: 4px;
    margin-bottom: 0;
  }

  .book-box .author {
    margin-bottom: 2px;
  }

  .book-box .price {
    margin: 2px 0 4px;
  }

  .book-card-note {
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .about-container,
  .contact-page .featured-book,
  .featured-book {
    width: 100%;
    margin: 24px auto;
    padding: 28px 16px;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form textarea {
    padding: 12px;
  }

  .studio-request-page .contact-form input,
  .studio-request-page .contact-form textarea {
    padding: 12px;
  }

  .signal-entry-section,
  .signal-posts-section {
    padding: 0;
  }

  .signal-entry-box,
  .signal-post {
    padding: 24px 18px;
  }

  footer {
    margin-top: 28px;
    padding: 22px 16px calc(90px + env(safe-area-inset-bottom));
  }
 }

@media (max-width: 480px) {
  .logo-title h1 {
    font-size: 36px;
  }

  .brand-link {
    gap: 8px;
  }

  .nav-divider {
    width: 150px;
  }

  .signal-section {
    margin: 12px 0 20px;
    padding: 0 12px;
  }

  .signal-container {
    padding: 20px 16px 22px;
  }

  .signal-content {
    gap: 14px;
  }

  .signal-text {
    max-width: 100%;
  }

  .signal-heading {
    margin-bottom: 6px;
    font-size: 25px;
  }

  .signal-rising {
    font-size: 20px;
  }

  .signal-text p {
    line-height: 1.5;
  }

  .signal-actions {
    gap: 8px;
  }

  .signal-actions .signal-btn {
    min-width: 135px;
    max-width: 180px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .featured-book h2 {
    font-size: 28px;
  }

  .about-title,
  .page-intro h2,
  .books-intro h2 {
    line-height: 1.25;
  }

  .social-icons {
    gap: 12px;
  }
}

/* =========================
   20.1 MOBILE HERO + DANICE BUTTONS
========================= */
@media (max-width: 600px) {
  .hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
  }

  .hero-buttons .hero-btn,
  .hero-buttons .hero-btn:nth-child(1),
  .hero-buttons .hero-btn:nth-child(2),
  .hero-buttons .hero-btn:nth-child(3) {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding: 10px 8px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }

  .danice-link-grid {
    gap: 10px;
  }

  .danice-link-grid .signal-entry-btn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .hero-buttons {
    gap: 6px;
  }

  .hero-buttons .hero-btn,
  .hero-buttons .hero-btn:nth-child(1),
  .hero-buttons .hero-btn:nth-child(2),
  .hero-buttons .hero-btn:nth-child(3) {
    min-height: 44px;
    padding: 9px 5px;
    font-size: 12px;
  }

  nav ul {
    gap: 6px 9px;
  }

  nav ul li a {
    padding: 5px 3px;
    font-size: 13px;
  }
}




