/* ============================================================
   JENNIFER SAGE — Author Website
   Shared Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-dark:        #0d0d0d;
  --bg-mid:         #1a1a1a;
  --bg-card:        #222222;
  --bg-footer:      #111111;
  --text-primary:   #e8e0d5;
  --text-secondary: #a89f94;
  --text-muted:     #6b6560;
  --accent:         #c87941;
  --accent-hover:   #e08c4e;
  --accent-dark:    #9e5e2f;
  --border:         #333333;
  --border-light:   #444444;
  --nav-height:     70px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* --- Layout Utilities --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background-color: var(--bg-dark);
}

.section--mid {
  background-color: var(--bg-mid);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto 0;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--accent);
  color: #fff;
}

.btn--solid {
  background: var(--accent);
  color: #fff;
}

.btn--solid:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-transform: uppercase;
  flex-shrink: 0;
}

.nav-brand:hover {
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Video hero background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
  z-index: 0;
}

/* Fallback for old .hero-bg (if used elsewhere) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Images - Characters/Kara.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.45);
  z-index: 0;
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.15) 0%,
    rgba(13,13,13,0.5) 65%,
    rgba(13,13,13,1) 100%
  );
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.2) 0%,
    rgba(13,13,13,0.6) 70%,
    rgba(13,13,13,1) 100%
  );
}

/* Pause video on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-bg { display: block; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.3rem;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* ============================================================
   BOOK SHOWCASE (Homepage)
   ============================================================ */
.book-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.book-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-card);
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.book-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}

.book-card-info {
  padding: 1rem;
}

.book-card-series {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.book-card-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.3;
}

/* ============================================================
   ABOUT SNIPPET (Homepage)
   ============================================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.about-snippet img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border);
  filter: grayscale(20%);
}

.about-snippet-text h2 {
  margin-bottom: 1.5rem;
}

.about-snippet-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .about-snippet {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BLOG GRID
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.blog-card:hover {
  border-color: var(--accent);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  background: var(--bg-mid);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-section h2 {
  margin-bottom: 0.75rem;
  letter-spacing: 0.2em;
}

.newsletter-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1.2rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-right: none;
  color: var(--text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--accent-hover);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input[type="email"] {
    border-right: 1px solid var(--border-light);
    border-bottom: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
  text-align: center;
  background: linear-gradient(to bottom, #111 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-style: italic;
}

/* ============================================================
   BOOKS PAGE
   ============================================================ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.5rem;
}

.book-full-card {
  display: flex;
  flex-direction: column;
}

.book-full-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease;
}

.book-full-card:hover img {
  box-shadow: 0 8px 24px rgba(200, 121, 65, 0.25);
}

.book-full-card .series-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.book-full-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.book-full-card .book-blurb {
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 1rem;
}

.book-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.book-links a {
  font-size: 0.72rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.book-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.series-divider {
  grid-column: 1 / -1;
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0 0.5rem;
}

.series-heading {
  grid-column: 1 / -1;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo-wrap img {
  width: 100%;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.about-photo-wrap .photo-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.about-body h2 {
  margin-bottom: 1.5rem;
}

.about-body p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.blog-post-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.blog-post-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
}

.blog-post-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.blog-post-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.blog-post-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Sidebar */
.blog-sidebar h3 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.sidebar-widget {
  margin-bottom: 2.5rem;
}

.sidebar-recent li {
  list-style: none;
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.sidebar-recent li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-post-card {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   DIVIDER ORNAMENT
   ============================================================ */
.ornament {
  text-align: center;
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  margin: 1rem 0;
  opacity: 0.6;
}

/* ============================================================
   MAILERLITE NEWSLETTER FORM (#mlb2-43368374)
   ============================================================ */
@import url("https://assets.mlcdn.com/fonts.css?version=1782740");

.ml-form-embedSubmitLoad {
  display: inline-block; width: 20px; height: 20px;
}
.ml-form-embedSubmitLoad:after {
  content: " "; display: block; width: 11px; height: 11px; margin: 1px;
  border-radius: 50%; border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}
@keyframes ml-form-embedSubmitLoad {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
#mlb2-43368374.ml-form-embedContainer {
  box-sizing: border-box; display: table;
  margin: 0 auto; position: static; width: 100% !important;
}
#mlb2-43368374.ml-form-embedContainer h4,
#mlb2-43368374.ml-form-embedContainer p,
#mlb2-43368374.ml-form-embedContainer span,
#mlb2-43368374.ml-form-embedContainer button {
  text-transform: none !important; letter-spacing: normal !important;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: #f6f6f6; border-width: 0; border-color: transparent;
  border-radius: 4px; border-style: solid; box-sizing: border-box;
  display: inline-block !important; margin: 0; padding: 0; position: relative;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  max-width: 400px; width: 100%;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-align-center { text-align: center; }
#mlb2-43368374.ml-form-embedContainer .ml-form-align-default {
  display: table-cell !important; vertical-align: middle !important; text-align: center !important;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 20px 20px 0 20px;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  text-align: left; margin: 0 0 20px 0;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #000; font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 30px; font-weight: 400; margin: 0 0 10px 0; text-align: left;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: #000; font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px; font-weight: 400; line-height: 20px; margin: 0 0 10px 0; text-align: left;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
  margin: 0;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  margin: 0; width: 100%;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent {
  margin: 0 0 20px 0; width: 100%;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin: 0 0 10px 0; width: 100%;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
  margin: 0;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: #fff !important; color: #333 !important;
  border-color: #ccc; border-radius: 4px !important;
  border-style: solid !important; border-width: 1px !important;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px !important; height: auto; line-height: 21px !important;
  margin: 0; padding: 10px !important; width: 100% !important;
  box-sizing: border-box !important; max-width: 100% !important;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 10px 0 20px 0; width: 100%;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: #000 !important; border: none !important;
  border-radius: 4px !important; box-shadow: none !important;
  color: #fff !important; cursor: pointer;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  font-size: 14px !important; font-weight: 700 !important; line-height: 21px !important;
  height: auto; padding: 10px !important; width: 100% !important; box-sizing: border-box !important;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
  display: none;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: #333 !important;
}
.ml-error input, .ml-error textarea, .ml-error select { border-color: red !important; }
@media only screen and (max-width: 400px) {
  .ml-form-embedWrapper.embedForm { width: 100% !important; }
}

/* --- Dark theme overrides --- */
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: transparent !important;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: var(--text-primary) !important;
  font-family: 'Cinzel', serif !important;
  font-size: 1.6rem !important;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: var(--text-secondary) !important;
  font-family: 'Lato', sans-serif !important;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: var(--bg-mid) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-light) !important;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder {
  color: var(--text-muted) !important;
  opacity: 1;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  background-color: var(--accent) !important;
  border: 1px solid var(--accent) !important;
  font-family: 'Cinzel', serif !important;
  letter-spacing: 0.08em !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
}
#mlb2-43368374.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background-color: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
}
