:root {
  --black: #050505;
  --gold: #ad8351;
  --gold-light: #d7b57d;
  --plum: #6b316f;
  --purple: #9b65a9;
  --ink: #1d171b;
  --parchment: rgba(235, 228, 224, 0.78);
  --parchment-border: rgba(202, 168, 117, 0.68);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: #f1e8dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  min-height: 100vh;
}

.fixed-vines {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #000 url("assets/vines-background.png") top center / cover no-repeat;
}

.fixed-vines::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.17);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 14px clamp(20px, 4vw, 70px);
  background: rgba(2,2,2,.94);
  border-bottom: 1px solid rgba(173,131,81,.56);
}

.brand {
  color: var(--gold-light);
  text-decoration: none;
  font-family: "Cinzel Decorative", serif;
  font-size: 1.08rem;
  letter-spacing: .08em;
  white-space: nowrap;
}

.nav-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.35vw, 22px);
}

nav a, nav span {
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-family: "Marcellus SC", serif;
  font-size: .84rem;
}

nav a:hover, nav a:focus { color: #d99ad9; }

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(215,181,125,.68);
  border-radius: 50%;
  text-decoration: none;
  font: 600 1rem Georgia, serif;
}

.socials a:hover, .socials a:focus {
  color: #edc0ec;
  border-color: #bd79ba;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  padding: 8px 12px;
  font: 500 .75rem Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section {
  min-height: 100vh;
  scroll-margin-top: 72px;
}

.section-pad {
  display: grid;
  place-items: center;
  padding: clamp(76px, 9vw, 130px) clamp(18px, 5vw, 82px);
}

.hero {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 94px 22px 52px;
}
.hero-inner {
  width: min(1260px, 98vw);
  min-height: calc(100vh - 146px);
  display: grid;
  place-items: center;
}
.hero-artwork {
  display: block;
  width: min(1220px, 97vw);
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.85)) drop-shadow(0 0 12px rgba(0,0,0,.55));
}

.parchment {
  width: min(1160px, 94vw);
  background: var(--parchment);
  color: var(--ink);
  border: 1px solid var(--parchment-border);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(0,0,0,.62), inset 0 0 55px rgba(255,255,255,.18);
  padding: clamp(28px, 5vw, 66px);
  backdrop-filter: blur(2px);
}

.about-card, .free-card {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(380px, 1.18fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.portrait-wrap { position: relative; padding: 0; }
.portrait-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 88% 92% at center, #000 58%, rgba(0,0,0,.88) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 88% 92% at center, #000 58%, rgba(0,0,0,.88) 72%, transparent 100%);
}

.cover-column {
  text-align: center;
}

.cover-wrap {
  max-width: 400px;
  margin: auto;
}

.cover-wrap img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 18px 32px rgba(0,0,0,.44);
}

.cover-tagline {
  margin: 28px auto 0;
  color: var(--plum);
  font-family: "Marcellus SC", serif;
  letter-spacing: .13em;
  line-height: 1.55;
  font-size: 1rem;
}

.copy h2, .contact-card h2 {
  margin: 0;
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: 1.08;
}

.copy h2 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

.eyebrow.dark {
  color: var(--plum);
  letter-spacing: .2em;
}

.small-ornament {
  color: var(--plum);
  margin: 18px 0 26px;
  font-size: 1.1rem;
}

.copy p, .contact-card p {
  font-size: clamp(1.06rem, 1.65vw, 1.3rem);
  line-height: 1.5;
}

.ending {
  margin-top: 30px;
  font-style: italic;
}

.centered { text-align: center; }

.lead {
  color: var(--plum);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.38rem) !important;
}

.book-pitch {
  margin: 24px auto 0;
  max-width: 650px;
}

.book-pitch p {
  margin: 12px 0;
}

.signup-form {
  margin-top: 32px;
  text-align: left;
}

.signup-form label {
  display: block;
  font: 600 .72rem Montserrat, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(50,40,45,.55);
  background: rgba(255,255,255,.67);
  padding: 15px 16px;
  font-size: 1rem;
}

.form-row button, .contact-button {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #4f1851, #7c2d79);
  color: #fff3ec;
  padding: 15px 22px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font: 500 .76rem "Marcellus SC", serif;
  box-shadow: 0 8px 18px rgba(71,19,68,.29);
  cursor: pointer;
}

.form-note, .contact-note {
  font-size: .9rem !important;
  opacity: .7;
}

.receive {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(107,49,111,.22);
}

.receive h3 {
  margin: 0 0 22px;
  color: var(--plum);
  font-family: "Marcellus SC", serif;
  font-size: 1.2rem;
  letter-spacing: .08em;
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.receive-grid h4 {
  margin: 8px 0 5px;
  color: var(--plum);
  font-family: "Marcellus SC", serif;
  font-size: .96rem;
  letter-spacing: .05em;
}

.receive-grid p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.38;
}

.receive-icon {
  font-size: 1.65rem;
}

.contact-card {
  text-align: center;
  max-width: 820px;
}

.contact-button {
  display: inline-block;
  margin: 18px 0 10px;
  text-decoration: none;
}

.social-line {
  margin-bottom: 14px;
}

.contact-socials {
  justify-content: center;
}

.contact-socials a {
  color: var(--plum);
  border-color: rgba(107,49,111,.5);
}


@media (max-width: 980px) {
  .top-socials { display: none; }
}

@media (max-width: 780px) {
  .site-header { min-height: 64px; }
  .menu-toggle { display: block; margin-left: auto; }

  .nav-wrap {
    display: block;
    flex: none;
  }

  nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: rgba(2,2,2,.98);
    border-bottom: 1px solid rgba(173,131,81,.55);
  }

  nav.open { display: flex; }
  nav span { display: none; }

  .brand { font-size: .92rem; }
  .about-card, .free-card { grid-template-columns: 1fr; }
  .portrait-wrap, .cover-wrap { max-width: 520px; margin: auto; }
  .copy { text-align: center; }
  .form-row { flex-direction: column; }
  .receive-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 6.2rem); }
  .tagline { margin-top: 52px; }
  .parchment { background: rgba(235,228,224,.88); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.socials a svg {
  width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.socials a[aria-label="Facebook"] svg,
.socials a[aria-label="TikTok"] svg { fill: currentColor; stroke: none; }
.newsletter-embed { margin-top: 30px; }
.newsletter-embed .ml-embedded { width: 100%; }
.contact-card h2 { font-size: clamp(3rem, 6vw, 5.4rem); }
.contact-card > p { max-width: 640px; margin-left: auto; margin-right: auto; }


/* Clean MailerLite form: keep only the email field and submit button. */
.newsletter-embed {
  width: 100%;
  max-width: 680px;
  margin: 30px auto 0;
}

/* Remove MailerLite's white card, padding, border, and shadow. */
.newsletter-embed .ml-form-embedWrapper,
.newsletter-embed .ml-form-embedBody,
.newsletter-embed .ml-form-embedContainer,
.newsletter-embed .ml-form-embedContent,
.newsletter-embed form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Hide MailerLite's default title, description, privacy copy, and extras. */
.newsletter-embed .ml-form-embedContent,
.newsletter-embed .ml-form-checkboxRow,
.newsletter-embed .ml-form-interestGroupsRow,
.newsletter-embed .ml-form-recaptcha,
.newsletter-embed .ml-form-successBody h4,
.newsletter-embed .ml-form-successBody p,
.newsletter-embed h4,
.newsletter-embed .ml-form-embedBody > p {
  display: none !important;
}

/* Put the email field and button on one clean line. */
.newsletter-embed .ml-form-formContent,
.newsletter-embed .ml-form-horizontalRow {
  display: flex !important;
  align-items: stretch !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.newsletter-embed .ml-form-fieldRow,
.newsletter-embed .ml-field-group {
  flex: 1 1 auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Email field. */
.newsletter-embed input[type="email"],
.newsletter-embed input.form-control {
  width: 100% !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(55, 43, 51, .58) !important;
  border-radius: 5px !important;
  background: rgba(255, 255, 255, .74) !important;
  color: #211a20 !important;
  box-shadow: none !important;
  font: 1.04rem "Cormorant Garamond", Georgia, serif !important;
}

.newsletter-embed input[type="email"]::placeholder {
  color: rgba(33, 26, 32, .62) !important;
}

/* Purple fantasy button. */
.newsletter-embed .ml-form-embedSubmit,
.newsletter-embed .ml-form-embedSubmit button,
.newsletter-embed button[type="submit"] {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 230px !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 14px 22px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: linear-gradient(135deg, #4f1851, #7c2d79) !important;
  color: #fff5ef !important;
  box-shadow: 0 8px 18px rgba(71, 19, 68, .28) !important;
  text-transform: uppercase !important;
  letter-spacing: .09em !important;
  font: 500 .82rem "Marcellus SC", serif !important;
  cursor: pointer !important;
}

/* Keep MailerLite's success response clean and readable. */
.newsletter-embed .ml-form-successBody {
  margin: 0 !important;
  padding: 16px 18px !important;
  border: 1px solid rgba(107, 49, 111, .3) !important;
  border-radius: 5px !important;
  background: rgba(255, 255, 255, .38) !important;
  color: #2a2028 !important;
}

.newsletter-embed .ml-form-successBody::after {
  content: "Check your inbox to confirm your email, then Silence & Hunger will be on its way.";
  display: block;
  font-size: 1.08rem;
  line-height: 1.45;
}

/* MailerLite sometimes injects a loading spinner beside the button. */
.newsletter-embed .loading {
  margin: auto 0 !important;
}

@media (max-width: 700px) {
  .newsletter-embed .ml-form-formContent,
  .newsletter-embed .ml-form-horizontalRow {
    flex-direction: column !important;
  }

  .newsletter-embed .ml-form-embedSubmit,
  .newsletter-embed .ml-form-embedSubmit button,
  .newsletter-embed button[type="submit"] {
    width: 100% !important;
    min-width: 0 !important;
  }
}
