/* ============================================
   KENNETH SPRESLEY — Personal Brand Site
   Color Palette: Black / Cinematic Red / Gold
   ============================================ */

:root {
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-card: #161616;
  --black-border: #222222;
  --red: #C9222A;
  --red-dark: #a01820;
  --gold: #C9A84C;
  --gold-light: #e0c06a;
  --white: #F5F5F5;
  --gray: #9A9A9A;
  --gray-light: #cccccc;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ UTILITIES ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 3rem;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

.btn-full { width: 100%; text-align: center; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--black-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.1em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,1) 0%,
    rgba(10,10,10,0.95) 35%,
    rgba(10,10,10,0.5) 60%,
    rgba(10,10,10,0.2) 100%
  );
  z-index: 2;
}

.hero-image-wrap {
  position: absolute;
  right: -2%;
  top: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%) contrast(1.05);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    transparent 40%
  ),
  linear-gradient(
    to top,
    var(--black) 0%,
    transparent 30%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-name span {
  color: var(--red);
  display: block;
}

.hero-statement {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  max-width: 560px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-sub {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.75s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============ ABOUT ============ */
.about {
  padding: 8rem 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.about-left { position: sticky; top: 8rem; }

.identity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.identity-pills span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 0.9rem;
}

.about-right p {
  font-family: var(--font-body);
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-lead {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-light);
  line-height: 1.7;
}

.about-quote {
  border-left: 3px solid var(--red);
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-light);
  background: rgba(201,34,42,0.05);
}

/* ============ BRANDS ============ */
.brands {
  padding: 8rem 0;
  background: var(--black);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
}

.brand-card {
  background: var(--black-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.4s ease;
}

.brand-card:hover::before { height: 100%; }
.brand-card:hover { background: #1a1a1a; }

.brand-card--accent::before { background: var(--gold); }

.brand-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--black-border);
  line-height: 1;
  transition: color 0.3s;
}
.brand-card:hover .brand-number { color: rgba(201,34,42,0.2); }
.brand-card--accent:hover .brand-number { color: rgba(201,168,76,0.2); }

.brand-category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
}

.brand-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

.brand-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
  margin-top: 0.5rem;
}
.brand-card:hover .brand-arrow { transform: translateX(6px); }

/* ============ BOOKS ============ */
.books {
  padding: 8rem 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.book-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.book-cover {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  min-height: 450px;
}

.book-cover-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.book-info { padding: 0 0.5rem; }

.book-category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.book-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.book-info p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.btn-book {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}
.btn-book:hover { color: var(--gold-light); }

/* ============ SERVICES ============ */
.services {
  padding: 8rem 0;
  background: var(--black);
  border-top: 1px solid var(--black-border);
}

.services-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 700px;
  margin-bottom: 4rem;
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.service-item {
  border-top: 1px solid var(--black-border);
  padding-top: 1.5rem;
  transition: border-color 0.3s;
}
.service-item:hover { border-color: var(--red); }

.service-icon {
  font-size: 1.2rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.service-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.services-cta { text-align: center; }

/* ============ FILM ============ */
.film {
  padding: 8rem 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}

.film-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}

.film-feature { position: relative; }

.film-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
}

.film-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.film-feature p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.film-credits h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.credit-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--black-border);
}

.credit-role {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

.credit-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
}

.imdb-link { margin-top: 2rem; }

/* ============ SPEAKING ============ */
.speaking {
  padding: 8rem 0;
  background: var(--black);
  border-top: 1px solid var(--black-border);
}

.speaking-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: start;
}

.speaking-text p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.speaking-text em { color: var(--gold); font-style: italic; }

.speaking-topics {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.speaking-topics li {
  font-size: 0.82rem;
  color: var(--gray);
  padding-left: 1.2rem;
  position: relative;
}
.speaking-topics li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.speaking-cta-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 3rem 2rem;
  text-align: center;
  position: sticky;
  top: 8rem;
}

.speaking-cta-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.speaking-cta-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.speaking-cta-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ============ CONTACT ============ */
.contact {
  padding: 8rem 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-left p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-options { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-option { border-left: 2px solid var(--gold); padding-left: 1.2rem; }

.contact-option-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

.contact-option-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
}

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option { background: var(--black-card); }
.form-group textarea { resize: vertical; }

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ============ PRIVACY POLICY ============ */
.privacy-hero {
  padding: 6rem 0 4rem;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}

.privacy-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.privacy-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.privacy-content {
  padding: 4rem 0;
  background: var(--black);
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.privacy-section h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-section p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-list {
  list-style: none;
  margin: 1rem 0 1rem 0;
}

.privacy-list li {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.privacy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.privacy-contact {
  background: var(--black-card);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  margin-top: 1rem;
}

.privacy-contact p {
  margin-bottom: 0.5rem;
}

.privacy-contact a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.privacy-contact a:hover {
  color: var(--gold-light);
}

.privacy-footer-note {
  background: rgba(201, 34, 42, 0.05);
  border-left: 3px solid var(--red);
  padding: 1.5rem;
  margin-top: 3rem;
}

.privacy-footer-note p {
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* ============ MAILERLITE FORM OVERRIDES ============ */
/* Override default MailerLite styling to match Kenneth Spresley design system */

#mlb2-42174141.ml-form-embedContainer {
  background: transparent !important;
  padding: 0 !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-embedWrapper {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-embedBody {
  background: transparent !important;
  padding: 0 !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-embedContent {
  display: none !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-embedPermissions {
  display: none !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-embedContent h4,
#mlb2-42174141.ml-form-embedContainer .ml-form-embedContent p {
  display: none !important;
}

/* Form field styling */
#mlb2-42174141.ml-form-embedContainer .ml-form-fieldRow input[type="email"] {
  background: var(--black-card) !important;
  border: 1px solid var(--black-border) !important;
  border-radius: 4px !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  padding: 0.7rem 1rem !important;
  transition: border-color 0.3s !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-fieldRow input[type="email"]:focus {
  border-color: var(--gold) !important;
  outline: none !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-fieldRow input[type="email"]::placeholder {
  color: var(--gray) !important;
}

/* Submit button styling - Red for sticky footer, Gold for sidebar */
#mlb2-42174141.ml-form-embedContainer .ml-form-embedSubmit button {
  background: var(--red) !important;
  border: none !important;
  border-radius: 4px !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.7rem 1.5rem !important;
  cursor: pointer !important;
  transition: background 0.3s !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-embedSubmit button:hover {
  background: var(--red-dark) !important;
}

/* Checkbox styling */
#mlb2-42174141.ml-form-embedContainer .ml-form-interestGroupsRow,
#mlb2-42174141.ml-form-embedContainer .ml-form-checkboxRow {
  margin: 1rem 0 !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-interestGroupsRowCheckbox .label-description,
#mlb2-42174141.ml-form-embedContainer .ml-form-checkboxRow .label-description {
  color: var(--gray) !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}

#mlb2-42174141.ml-form-embedContainer .custom-control-label::before {
  border-color: var(--black-border) !important;
  background-color: var(--black-card) !important;
}

#mlb2-42174141.ml-form-embedContainer input[type="checkbox"]:checked ~ .custom-control-label::before {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* Privacy text styling */
#mlb2-42174141.ml-form-embedContainer .ml-form-embedPermissionsContent p {
  color: var(--gray) !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  line-height: 1.4 !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-embedPermissionsContent p a {
  color: var(--gold) !important;
  text-decoration: underline !important;
}

/* Success message styling */
#mlb2-42174141.ml-form-embedContainer .ml-form-successBody .ml-form-successContent h4 {
  color: var(--white) !important;
  font-family: var(--font-serif) !important;
  font-size: 1.1rem !important;
}

#mlb2-42174141.ml-form-embedContainer .ml-form-successBody .ml-form-successContent p {
  color: var(--gray-light) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
}

/* Sidebar form button should be gold */
.newsletter-sidebar-card #mlb2-42174141.ml-form-embedContainer .ml-form-embedSubmit button {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.newsletter-sidebar-card #mlb2-42174141.ml-form-embedContainer .ml-form-embedSubmit button:hover {
  background: var(--gold-light) !important;
}

/* ============ NEWSLETTER PRIVACY NOTICES ============ */
.newsletter-privacy-notice {
  font-size: 0.7rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.4;
}

.newsletter-privacy-notice a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.newsletter-privacy-notice a:hover {
  color: var(--gold-light);
}

.newsletter-sidebar-privacy {
  font-size: 0.65rem;
  color: var(--gray);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

.newsletter-sidebar-privacy a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.newsletter-sidebar-privacy a:hover {
  color: var(--gold-light);
}

/* ============ NEWSLETTER STICKY FOOTER ============ */
.newsletter-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 1.5rem 2rem;
  z-index: 90;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.newsletter-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter-sticky-content {
  flex: 1;
}

.newsletter-sticky-content h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.newsletter-sticky-content p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.newsletter-sticky-form {
  flex: 0 0 auto;
  min-width: 280px;
}

/* MailerLite form styling */
.newsletter-sticky-form form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-sticky-form input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

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

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

.newsletter-sticky-form button {
  padding: 0.7rem 1.5rem;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-sticky-form button:hover {
  background: var(--red-dark);
}

.newsletter-sticky-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.5rem;
}

.newsletter-sticky-close:hover {
  color: var(--white);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .newsletter-sticky-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-sticky-form {
    width: 100%;
    min-width: unset;
  }

  .newsletter-sticky-form form {
    flex-direction: column;
  }

  .newsletter-sticky-form input[type="email"],
  .newsletter-sticky-form button {
    width: 100%;
  }
}

/* ============ NEWSLETTER SIDEBAR ============ */
.newsletter-sidebar {
  display: none !important;
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 85;
  width: 280px;
  max-height: 90vh;
  overflow-y: auto;
}

.newsletter-sidebar-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2rem;
  text-align: center;
}

.newsletter-sidebar-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.newsletter-sidebar-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* MailerLite form in sidebar */
.newsletter-sidebar-card form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-sidebar-card input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: var(--black);
  border: 1px solid var(--black-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.3s;
}

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

.newsletter-sidebar-card input[type="email"]::placeholder {
  color: var(--gray);
}

.newsletter-sidebar-card button {
  width: 100%;
  padding: 0.65rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-sidebar-card button:hover {
  background: var(--gold-light);
}

.newsletter-sidebar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.5rem;
}

.newsletter-sidebar-close:hover {
  color: var(--gold);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-left { position: static; }
  .film-grid { grid-template-columns: 1fr; gap: 3rem; }
  .speaking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .speaking-cta-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .brands-grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { width: 100%; opacity: 0.3; }
  .hero-gradient {
    background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,1) 100%);
  }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
