/* =========================================================
   BLOOM, DON'T BREAK
   Responsive static site inspired by the supplied mockup
   ========================================================= */

:root {
  --black: #080609;
  --black-soft: #100b12;
  --purple-dark: #210b26;
  --purple: #4b1753;
  --purple-mid: #6d2677;
  --purple-bright: #a64caf;
  --lavender: #d79cda;
  --cream: #f3e0bd;
  --warm-white: #f7f0e7;
  --gold: #efb85f;
  --text: #f4edf4;
  --muted: #c9beca;
  --line: rgba(219, 159, 221, .26);
  --shadow: 0 20px 55px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button, input { font: inherit; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 4, 7, .94);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.nav-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.mini-logo {
  font-family: Georgia, serif;
  display: inline-flex;
  gap: .4rem;
  align-items: baseline;
  white-space: nowrap;
}

.mini-logo span {
  font-family:  "Great Vibes", cursive;
  font-size: 1.28rem;
  
}

.mini-logo strong {
  font-family:  "Great Vibes", cursive;
  font-size: 1.28rem;
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.main-nav a {
  padding: 1.45rem 0 1.2rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--lavender);
  border-color: var(--purple-bright);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 7px 0;
}

/* HERO */
.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at 45% 35%, rgba(96,33,100,.2), transparent 30%),
    linear-gradient(90deg, #050406 0%, #0a070b 46%, #160917 100%);
  overflow: hidden;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 48% 52%;
  margin: 0;
}

.hero-copy {
  padding: 68px 36px 60px max(7vw, 60px);
  align-self: center;
}

.hero-art {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  width: 100%;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #080609 0%, rgba(8,6,9,.55) 14%, transparent 42%);
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 95% center;
  filter: saturate(1.08) contrast(1.05);
  display: block;

  border: none;
  outline: none;
  box-shadow: none;
  display: block;
}

.floral-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  max-width: 90%;
  margin: 25px 0;

  color: #9a3fa5;
}

/* Purple horizontal lines */
.divider-line {
  height: 2px;
  flex: 1;

  background: linear-gradient(
    to right,
    transparent,
    #7e2d88,
    #a64caf
  );
}

/* Reverse gradient on right side */
.floral-divider .divider-line:last-child {
  background: linear-gradient(
    to left,
    transparent,
    #7e2d88,
    #a64caf
  );
}


/* Small decorative symbols beside flower */
.side-ornament {
  font-size: 22px;
  color: #8d3398;

  margin-left: -3px;
  margin-right: -1px;

  transform: rotate(15deg);
}

.side-ornament.right {
  transform: rotate(195deg);

  margin-left: -1px;
  margin-right: -3px;
}


/* Large center flower */
.center-flower {
  font-size: 38px;
  line-height: 1;

  color: #a947b5;

  margin: 0 3px;

  text-shadow:
    0 0 4px rgba(169, 71, 181, 0.5),
    0 0 8px rgba(169, 71, 181, 0.25);
}

.script-title {
  margin: 0;
  font-family: "Great Vibes", "Segoe Script", cursive;
  font-size: clamp(3.8rem, 6vw, 6.2rem);
  line-height: .75;
  color: #d8b0d8;
}

.hero h1 {
  margin: .05rem 0 .5rem;
  color: var(--warm-white);
  font-size: clamp(3.2rem, 5.1vw, 5.25rem);
  line-height: .93;
}

.subtitle {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--warm-white);
}

.ornament {
  width: fit-content;
  color: var(--purple-bright);
  letter-spacing: .45rem;
  border-top: 1px solid var(--purple-mid);
  border-bottom: 1px solid var(--purple-mid);
  padding: .25rem 1rem;
  margin: 2rem 0 1.4rem;
}

.hero h2 {
  font-size: 1.42rem;
  color: var(--cream);
  margin-bottom: .15rem;
}

.script-line,
.script-quote,
.signature,
.benefits-script {
  font-size: 2.0rem;
  font-family: "Great Vibes", "Segoe Script", cursive;
  font-style: italic;
  color: var(--lavender);
}

.script-line {
  font-size: 1.55rem;
  margin-bottom: 1rem;
}

.hero-copy > p:not(.subtitle):not(.script-title):not(.script-line):not(.highlight) {
  max-width: 570px;
  font-size: .91rem;
}

.highlight {
  font-weight: 700;
  color: var(--cream);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: .8rem 1.25rem;
  border: 1px solid rgba(212,128,216,.34);
  border-radius: 3px;
  background: linear-gradient(180deg, #5f1d67, #431449);
  color: #fff;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .055em;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 9px 30px rgba(102,35,111,.3);
}

.button.gold {
  background: linear-gradient(#f0c478, #e9aa4d);
  color: #311b27;
  border-color: #f4cb85;
}

/* BENEFITS */
.benefits {
  background:
    linear-gradient(rgba(14,5,17,.8), rgba(14,5,17,.87)),
    url("assets/purple-texture.jpg") center/cover;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 31px 0 22px;
}

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

.benefit-grid article {
  text-align: center;
}

.benefit-icon {
  font-family: Georgia, serif;
  color: var(--purple-bright);
  font-size: 2.25rem;
  line-height: 1;
  min-height: 45px;
}

.benefit-grid h3 {
  color: var(--cream);
  margin: .5rem 0 .35rem;
  font-size: 1rem;
}

.benefit-grid p {
  color: #e8dfe8;
  font-size: .76rem;
}

.benefits-script {
  text-align: center;
  font-size: 3.2rem;
  margin: 8px 0 0;
  color: var(--lavender)

}

/* ABOUT THE BOOK */
.about-book {
  display: grid;
  grid-template-columns: 48.5% 51.5%;
  background: #ede8df;
  color: #2c2229;
  min-height: 540px;
}
.about-book-copy .about-book-label  {
  color: var(--purple-mid);/*#5b1f68;*/
  font-size: 1rem;
}

.about-book-copy .about-book-headline {
  line-height: .98;
}
.about-book-copy {
  padding: 30px 42px 22px max(7vw, 70px);
}

.content-narrow {
  max-width: 590px;
  margin-left: auto;
}

.about-book h2,
.meet h2,
.connect h2 {
  margin: 0 0 .1rem;
  font-size: 2.05rem;
}
.about-book-copy .about-book-subtitle {
  font-size: .9rem;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 10px;
}

.short-rule {
  width: 160px;
  height: 1px;
  background: var(--purple-mid);

  /* more space below "About the Book" */
  margin: 14px 0 20px;

  position: relative;
}

.short-rule::after {
  content: "";
  position: absolute;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 16px;
  height: 14px;

  background: var(--purple-mid);
}

.about-book-copy p {
  font-size: .79rem;
  line-height: 1.42;
  margin-bottom: .62rem;
}

.about-book-art {
  position: relative;
  overflow: hidden;
  min-height: 540px;

}

.about-book-art img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.inside-card {
  position: absolute;
  right: 8%;
  top: 11%;
  width: min(295px, 80%);
  padding: 20px 24px 19px;
  border: 1px solid rgba(229,187,118,.85);
  color: #f6eee5;
  background: rgba(18,10,13,.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.inside-card h3 {
  margin: 0 0 13px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: .96rem;
  letter-spacing: .08em;
}

.inside-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inside-card li {
  margin: 8px 0;
  padding-left: 20px;
  font-size: .82rem;
}

.inside-card li::before {
  content: "✓";
  color: var(--gold);
  margin-left: -20px;
  margin-right: 8px;
}

.purple-copy {
  color: #6d2076;
}

.script-quote {
  font-size: 1.7rem !important;
  line-height: 1.15;
  color: #82538a;
  margin-top: 25px;
  margin-bottom: 25px;
}

/* MEET */
.meet {
  position: relative;
  width: 100%;
  padding: 40px 0 45px;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(87, 23, 91, 0.2),
      transparent 35%
    ),
    #070608;

  overflow: hidden;
}


.meet .container {
  width: 100%;
  max-width: none;
  margin: 0;

  padding-left: 6vw;
  padding-right: 6vw;
}


/* MEET JACQUELINE TITLE */

.meet h2 {
  color: var(--warm-white);
  margin-top: 0;
}


/* IMAGE AND TEXT AREA */

.meet-top {
  display: block;
  width: 100%;
}

.meet-top::after {
  content: "";
  display: block;
  clear: both;
}


/* PHOTO */

.meet-photo {
  float: left;
  width: 340px;
  margin: 0 50px 25px 0;
  padding: 3px;

  background: linear-gradient(
    135deg,
    #f7e7a9 0%,
    #d6ad55 22%,
    #b983c9 38%,
    #fff6cf 52%,
    #d3a84e 75%,
    #9f6caf 88%,
    #f8e9ae 100%
  );

  border-radius: 10px;

  box-shadow:
    0 0 10px rgba(239, 184, 95, 0.28),
    0 0 18px rgba(166, 76, 175, 0.10);
}

.meet-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 7px;
}
 


/* TEXT BESIDE PHOTO */

.meet-intro {
  display: block;
  width: auto;
}


.meet-intro h3 {
  color: var(--gold);

  font-size: 1.7rem;

  margin-top: 0;
  margin-bottom: 15px;
}


.meet-intro p {
  color: #ddd5dc;

  font-size: 1rem;
  line-height: 1.7;

  margin-top: 0;
  margin-bottom: 18px;
}


/* SIGNATURE */

.meet-intro .signature {
  color: var(--gold);

  font-size: 1.3rem;

  text-align: left;

  margin-top: 25px;
  margin-left: 0;
}


/* TEXT BELOW PHOTO */

.meet-bottom {
  width: 100%;

  margin-top: 30px;
}


.meet-bottom p {
  color: #ddd5dc;

  font-size: 1rem;
  line-height: 1.7;

  margin-bottom: 18px;
}


/* CTA */
.healing-cta {
  text-align: center;
  padding: 50px 0 55px;
  background:
    linear-gradient(90deg, rgba(38,10,43,.98), rgba(79,17,82,.92), rgba(36,8,42,.98));
  border-block: 1px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}

.healing-cta::before,
.healing-cta::after {
  content: "â€";
  position: absolute;
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(196,105,197,.09);
  top: -35px;
}

.healing-cta::before { left: 7%; }
.healing-cta::after { right: 7%; }

.healing-cta h2 {
  color: #d9b5da;
  font-size: 1.95rem;
  margin: 0;
}

.healing-cta p {
  color: var(--cream);
  margin: 3px 0 17px;
}
.healing-cta .gentle-invitation {
  font-family: "Segoe Script";
  font-size: .8rem;
  color: var(--gold);
  margin: 0 0 8px;
  line-height: 1.1;
}

/* =========================================
   SURVIVOR / SUPPORTER PANELS
   ========================================= */

.support-section {
  width: 100%;
  padding: 55px 5vw 65px;

  background: #070608;
}


.support-grid {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 45px;

  margin: 0 auto;
}


/* INDIVIDUAL PANEL */

.support-panel {
  min-height: 360px;

  padding: 48px 55px;

  background:
    linear-gradient(
      145deg,
      rgba(27, 20, 30, 0.92),
      rgba(14, 10, 17, 0.96)
    );

  border: 1px solid rgba(215, 156, 218, 0.18);

  border-radius: 4px;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.22),
    inset 0 0 35px rgba(109, 38, 119, 0.04);
}


/* SMALL GOLD LABEL */

.support-label {
  margin: 0 0 28px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 0.9rem;

  font-weight: 700;

  letter-spacing: 0.18em;

  color: var(--gold);
}


/* LARGE GOLD MESSAGE */

.support-panel h2 {
  margin: 0 0 32px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(1.15rem, 2.5vw, 3rem);

  font-weight: 600;

  line-height: 1.35;

  color: var(--gold);
}


/* BODY TEXT */

.support-text {
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 1.15rem;

  line-height: 1.75;

  color: var(--warm-white);
}

.support-section .support-panel h2 {
  font-size: 1.0rem !important;
}

/* =========================================
   SPEAKING REQUEST SECTION
   ========================================= */

.speaking-section {
  width: 100%;
  padding: 0px 5vw;

  background:
    radial-gradient(
      circle at 65% 30%,
      rgba(82, 25, 88, 0.16),
      transparent 40%
    ),
    #09070b;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}


.speaking-container {
  width: 100%;

  display: grid;

  grid-template-columns: 42fr 58fr;

  gap: 50px;

  align-items: start;
}

/* LARGE PANEL UNDER BOTH SIDES */

.speaking-base-panel {
  width: 100%;
  max-width: none;

  margin: 0 auto;

  /* SAME SPACE AT TOP AND BOTTOM */
  padding: 40px 45px;

  background:
    linear-gradient(
      145deg,
      rgba(23, 17, 27, 0.97),
      rgba(13, 9, 16, 0.98)
    );

  border: 1px solid rgba(215, 156, 218, 0.14);
  border-radius: 5px;

  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.38),
    0 0 35px rgba(109, 38, 119, 0.06);
}
/* ==============================
   LEFT SIDE
   ============================== */

.speaking-copy h2 {
  margin: 0 0 25px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2rem, 2.8vw, 3rem);

  font-weight: 500;
  line-height: 1.08;

  color: var(--gold);
}


.speaking-label {
  margin: 0 0 20px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 0.20em;

  color: var(--lavender);
}


.speaking-copy h2 {
  margin: 0 0 25px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(3rem, 4.5vw, 4.8rem);

  font-weight: 500;

  line-height: 1.05;

  color: var(--gold);
}


.speaking-copy > p {
  max-width: 610px;

  margin-bottom: 25px;

  font-size: 1.05rem;

  line-height: 1.75;

  color: #ddd5dc;
}


/* SPECIAL MESSAGE BOX */

.speaking-note {
  display: flex;

  gap: 18px;

  margin-top: 35px;

  padding: 25px 28px;

  background:
    linear-gradient(
      135deg,
      rgba(34, 25, 38, 0.85),
      rgba(24, 17, 28, 0.92)
    );

  border-left: 3px solid var(--purple-bright);
}


.speaking-note p {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.05rem;

  line-height: 1.7;

  color: var(--warm-white);
}


.speaking-star {
  flex-shrink: 0;

  color: var(--gold);

  font-size: 1.2rem;
}


/* ==============================
   RIGHT RAISED FORM PANEL
   ============================== */

.speaking-form-panel {
  width: 100%;
  min-width: 0;

  padding: 40px 42px;

  position: relative;
  z-index: 2;

  background:
    linear-gradient(
      145deg,
      rgba(34, 26, 38, 0.98),
      rgba(21, 15, 25, 0.98)
    );

  border: 1px solid rgba(239, 184, 95, 0.25);
  border-radius: 4px;

  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(109, 38, 119, 0.08);

  /* REMOVE THIS */
  transform: none;
}


/* FORM */

.speaking-form {
  width: 100%;
}


.form-group {
  margin-bottom: 28px;
}


.form-group label {
  display: block;

  margin-bottom: 10px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 0.95rem;

  font-weight: 700;

  letter-spacing: 0.02em;

  color: var(--warm-white);
}


.form-group input,
.form-group textarea {
  width: 100%;

  padding: 16px 18px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 1rem;

  color: var(--warm-white);

  background: #0d090f;

  border: 1px solid rgba(215, 156, 218, 0.22);

  border-radius: 2px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.form-group input {
  height: 58px;
}


.form-group textarea {
  min-height: 190px;

  resize: vertical;

  line-height: 1.6;
}


.form-group textarea::placeholder {
  color: #817781;

  opacity: 1;
}


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

  box-shadow:
    0 0 0 2px rgba(239, 184, 95, 0.08),
    0 0 18px rgba(166, 76, 175, 0.10);
}


/* SUBMIT BUTTON */

.speaking-submit {
  min-height: 48px;
  padding: 0 28px;

  background: #f3edf4;
  color: #431449;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,.15);


  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.speaking-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 9px 30px rgba(102,35,111,.3);
}
/* CONNECT */
.connect {
  padding: 27px 0 26px;
  background: #090709;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 55px;
  align-items: center;
}

.connect h2 {
  color: var(--cream);
  font-size: 1.7rem;
}

.connect p {
  font-size: .75rem;
  color: #dfd7df;
  max-width: 440px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 13px;
}

.newsletter-form input {
  width: 100%;
  height: 42px;
  border: 1px solid #cbc2c7;
  background: #fff;
  color: #251928;
  padding: 0 .85rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--purple-bright);
  box-shadow: 0 0 0 3px rgba(166,76,175,.15);
}


.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  padding: 13px 16px;
  border-radius: 4px;
  background: #4d1654;
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(120px);
  transition: .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   STAY CONNECTED / CONTACT SECTION
   ========================================= */

.contact-section {
  width: 100%;

  padding: 25px 5vw 70px;

  background:
    radial-gradient(
      circle at 65% 30%,
      rgba(82, 25, 88, 0.12),
      transparent 40%
    ),
    #09070b;
}


/* LARGE BASE PANEL */

.contact-base-panel {
  width: 100%;
  max-width: none;

  margin: 0 auto;

  padding: 40px 45px;

  background:
    linear-gradient(
      145deg,
      rgba(23, 17, 27, 0.97),
      rgba(13, 9, 16, 0.98)
    );

  border: 1px solid rgba(215, 156, 218, 0.14);

  border-radius: 5px;

  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.38),
    0 0 35px rgba(109, 38, 119, 0.06);
}


/* TWO COLUMN LAYOUT */

.contact-container {
  width: 100%;
  display: grid;

  grid-template-columns: 42fr 58fr;
  gap: 50px;

  align-items: start;
}


/* =========================================
   LEFT SIDE
   ========================================= */

.contact-copy {
  width: 100%;

  padding: 25px 15px;
}


.contact-label {
  margin: 0 0 28px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 0.20em;

  color: var(--gold);
}


.contact-copy h2 {
  margin: 0 0 30px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2.8rem, 4vw, 4.4rem);

  font-weight: 500;

  line-height: 1.35;

  color: var(--warm-white);
}


.contact-copy > p {
  max-width: 600px;

  margin-bottom: 24px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 1.05rem;

  line-height: 1.75;

  color: #ddd5dc;
}


.contact-copy .contact-tip {
  margin-top: 20px;

  font-size: 0.9rem;

  color: #9f969f;
}


/* =========================================
   RIGHT RAISED FORM PANEL
   ========================================= */

.contact-form-panel {
  width: 100%;
  min-width: 0;

  padding: 40px 42px;

  background:
    linear-gradient(
      145deg,
      rgba(31, 24, 34, 0.98),
      rgba(20, 15, 23, 0.98)
    );

  border: 1px solid rgba(215, 156, 218, 0.15);

  border-radius: 4px;

  box-shadow:
    0 22px 45px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(109, 38, 119, 0.08);
}


/* FORM */

.contact-form {
  width: 100%;
}


.contact-form-group {
  width: 100%;
  margin-bottom: 28px;
}


.contact-form-group label {
  display: block;

  margin-bottom: 10px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 0.95rem;

  font-weight: 700;

  color: var(--warm-white);
}


.contact-form-group input,
.contact-form-group textarea {
  width: 100%;

  padding: 16px 18px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 1rem;

  color: var(--warm-white);

  background: #0d090f;

  border: 1px solid rgba(215, 156, 218, 0.22);

  border-radius: 2px;

  outline: none;
}


.contact-form-group input {
  height: 58px;
}


.contact-form-group textarea {
  min-height: 190px;

  resize: vertical;

  line-height: 1.6;
}


.contact-form-group textarea::placeholder {
  color: #817781;
}


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

  box-shadow:
    0 0 0 2px rgba(239, 184, 95, 0.08),
    0 0 18px rgba(166, 76, 175, 0.10);
}


/* PURPLE SEND BUTTON */

.contact-submit {
  min-height: 48px;

  padding: 0 28px;

  background: #f3edf4;
  color: #431449;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,.15);

  font-family: Arial, Helvetica, sans-serif;

  font-size: 0.82rem;

  font-weight: 700;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.contact-submit:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 25px rgba(166, 76, 175, 0.25);
}

.form-message {
  display: none;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-message.success {
  display: block;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.45);
  color: #d9f2da;
}

.form-message.error {
  display: block;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.45);
  color: #ffd6da;
}
/* =========================================
   FOOTER
   ========================================= */

.footer {
  width: 100%;

  padding: 55px 6vw 28px;

  background: #050405;

  color: #aaa1ab;
}


/* MAIN THREE COLUMN AREA */

.footer-main {
  width: 100%;

  display: grid;

  grid-template-columns: 1.45fr 0.75fr 1.35fr;

  gap: 80px;

  align-items: start;

  padding: 0 0 55px;
}


/* =========================================
   LEFT - BRAND
   ========================================= */

.footer-brand {
  width: 100%;
}


.footer-logo {
  display: flex;

  align-items: baseline;

  gap: 6px;

  margin-bottom: 22px;
}


.footer-logo span {
  font-family: "Great Vibes", "Segoe Script", cursive;

  font-size: 2.8rem;

  line-height: 1;

  color: var(--lavender);
}


.footer-logo strong {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.25rem;

  font-weight: 400;

  letter-spacing: 0.04em;

  color: #aaa1ab;
}


.footer-tagline {
  margin: 0;

  font-size: 1rem;

  line-height: 1.65;

  color: #aaa1ab;
}


/* =========================================
   CENTER - QUICK LINKS
   ========================================= */

.footer-links h3,
.footer-note h3 {
  margin: 0 0 32px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.75rem;

  font-weight: 600;

  color: var(--gold);
}


.footer-links a {
  display: block;

  width: fit-content;

  margin-bottom: 14px;

  font-size: 1rem;

  color: #aaa1ab;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.footer-links a:hover {
  color: var(--gold);

  transform: translateX(3px);
}


/* =========================================
   RIGHT - CONTENT NOTE
   ========================================= */

.footer-note p {
  max-width: 620px;

  margin: 0;

  font-size: 1rem;

  line-height: 1.7;

  color: #aaa1ab;
}


.footer-note em {
  color: #bbb1bb;
}


/* =========================================
   DIVIDER
   ========================================= */

.footer-divider {
  width: 100%;

  height: 1px;

  background: rgba(255, 255, 255, 0.10);
}


/* =========================================
   BOTTOM ROW
   ========================================= */

.footer-bottom {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 28px 0 0;
}


.footer-bottom p {
  margin: 0;

  font-size: 0.9rem;

  color: #827a83;
}


.back-to-top {
  font-size: 0.9rem;

  color: #827a83;

  transition: color 0.2s ease;
}


.back-to-top:hover {
  color: var(--gold);
}

/* TOOL TIPS */
.menu-tooltip {
  position: relative;
}

.menu-tooltip::after {
  content: attr(data-tooltip);

  position: absolute;
  top: calc(100% + 12px);
  left: 50%;

  transform: translateX(-50%);

  width: max-content;
  max-width: 220px;

  padding: 8px 12px;

  background: #1b111e;
  color: var(--warm-white);

  border: 1px solid rgba(239, 184, 95, 0.35);
  border-radius: 4px;

  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.4;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.2s ease;

  pointer-events: none;
  z-index: 100;
}

.menu-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* TABLET */
@media (max-width: 980px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 4%;
    right: 4%;
    padding: 14px 18px;
    background: rgba(9,7,10,.98);
    border: 1px solid rgba(255,255,255,.12);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: .85rem .25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .hero-grid {
    grid-template-columns: 52% 48%;
  }

  .hero-copy {
    padding-left: 5vw;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-book {
    grid-template-columns: 1fr;
  }

  .about-book-copy {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .content-narrow {
    max-width: 100%;
  }

  .about-book-art {
    min-height: 480px;
  }

  .meet-grid {
    padding-right: 125px;
    gap: 35px;
  }

  .connect-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .newsletter-form {
    grid-template-columns: 1fr 1fr auto;
  }
    .speaking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
  }

  .speaking-copy {
    width: 100%;
    padding: 0;
    transform: none;
  }

  .speaking-form-panel {
    width: 100%;
    min-width: 0;
    transform: none;
    padding: 30px 25px;
  }

  .speaking-base-panel {
    width: 100%;
    padding: 30px 25px;
  }

  .speaking-copy h2 {
    font-size: 2rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
  }
   .contact-container {
  width: 100%;
  display: grid;

  /* SAME AS SPEAKING REQUEST */
  grid-template-columns: 44fr 56fr;
  gap: 45px;

  align-items: start;
}

  .contact-base-panel {
    padding: 30px;
  }

  .contact-form-panel {
    padding: 30px;
  }

  .contact-copy h2 {
    font-size: 2.7rem;
  }

  .footer-main {
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 40px;
}

.footer-logo span {
  font-size: 2.3rem;
}

.footer-links h3,
.footer-note h3 {
  font-size: 1.5rem;
}
}

/* PHONE */
@media (max-width: 700px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 48px 6vw 36px;
    text-align: left;
  }

  .hero-art {
    min-height: 450px;
  }

  .hero-art img {
    min-height: 450px;
  }

  .hero-art::before {
    background: linear-gradient(180deg, #080609 0%, rgba(8,6,9,.35) 18%, transparent 45%);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-grid article {
    max-width: 420px;
    margin-inline: auto;
  }

  .about-book-copy {
    padding: 30px 6vw;
  }

  .inside-card {
    top: auto;
    bottom: 26px;
    right: 5%;
    left: 5%;
    width: auto;
  }

  .meet {
    padding-bottom: 45px;
  }

  .meet-top {
    display: block;
    width: 100%;
  }

  .meet-photo {
    float: none;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 25px;
  }

  .meet-intro {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .meet-orchid {
    opacity: .28;
    width: 180px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-main,
  /* =========================================
   FOOTER
   ========================================= */

.footer {
  width: 100%;

  padding-top: 55px;
  padding-bottom: 28px;

  padding-left: 5vw;
  padding-right: 5vw;

  background: #050405;
  color: #aaa1ab;
}


/* MAIN THREE COLUMN AREA */

.footer-main {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  display: grid;

  grid-template-columns: 1.45fr 0.75fr 1.35fr;

  gap: 80px;

  align-items: start;

  padding: 0 0 55px;
}


/* =========================================
   LEFT - BRAND
   ========================================= */

.footer-brand {
  width: 100%;
}


.footer-logo {
  display: flex;

  align-items: baseline;

  gap: 6px;

  margin-bottom: 22px;
}


.footer-logo span {
  font-family: "Great Vibes", "Segoe Script", cursive;

  font-size: 2.8rem;

  line-height: 1;

  color: var(--lavender);
}


.footer-logo strong {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.25rem;

  font-weight: 400;

  letter-spacing: 0.04em;

  color: #aaa1ab;
}


.footer-tagline {
  margin: 0;

  font-size: 1rem;

  line-height: 1.65;

  color: #aaa1ab;
}


/* =========================================
   CENTER - QUICK LINKS
   ========================================= */

.footer-links h3,
.footer-note h3 {
  margin: 0 0 32px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.75rem;

  font-weight: 600;

  color: var(--gold);
}


.footer-links a {
  display: block;

  width: fit-content;

  margin-bottom: 14px;

  font-size: 1rem;

  color: #aaa1ab;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.footer-links a:hover {
  color: var(--gold);

  transform: translateX(3px);
}


/* =========================================
   RIGHT - CONTENT NOTE
   ========================================= */

.footer-note p {
  max-width: 620px;

  margin: 0;

  font-size: 1rem;

  line-height: 1.7;

  color: #aaa1ab;
}


.footer-note em {
  color: #bbb1bb;
}


/* =========================================
   DIVIDER
   ========================================= */

.footer-divider {
  width: 100%;
max-width: none;
  margin-left: 0;
  margin-right: 0;
  height: 1px;

  background: rgba(255, 255, 255, 0.10);
}


/* =========================================
   BOTTOM ROW
   ========================================= */

.footer-bottom {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 28px 0 0;
}


.footer-bottom p {
  margin: 0;

  font-size: 0.9rem;

  color: #827a83;
}


.back-to-top {
  font-size: 0.9rem;

  color: #827a83;

  transition: color 0.2s ease;
}


.back-to-top:hover {
  color: var(--gold);
}

  .support-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-panel {
    min-height: auto;
    padding: 32px 25px;
  }

  .speaking-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }

  .speaking-copy {
    width: 100%;
    padding: 0;
    transform: none;
  }

  .speaking-form-panel {
    width: 100%;
    min-width: 0;
    transform: none;
    padding: 30px 25px;
  }

  .speaking-base-panel {
    width: 100%;
    padding: 30px 25px;
  }

  .speaking-copy h2 {
    font-size: 2rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
  }

  .contact-section {
    padding: 20px 5vw 50px;
  }


  .contact-base-panel {
    padding: 30px 25px;
  }


  .contact-container {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .contact-copy {
    width: 100%;

    padding: 0;
  }


  .contact-copy h2 {
    font-size: 2.4rem;

    line-height: 1.25;
  }


  .contact-form-panel {
    width: 100%;

    padding: 30px 25px;
  }

  .footer {
  padding: 45px 6vw 25px;
}


.footer-main {
  grid-template-columns: 1fr;

  gap: 38px;

  padding-bottom: 40px;
}


.footer-tagline br {
  display: none;
}


.footer-links h3,
.footer-note h3 {
  margin-bottom: 20px;
}


.footer-bottom {
  flex-direction: column;

  align-items: flex-start;

  gap: 14px;
}


.back-to-top {
  align-self: flex-start;
}

}

/* Waiting state while an email form is being submitted */
body.sending,
body.sending * {
  cursor: wait !important;
}

.speaking-submit:disabled,
.contact-submit:disabled {
  opacity: 0.65;
  cursor: wait !important;
}