/* ══════════════════════════════════════════
   @font-face Declarations
   ══════════════════════════════════════════ */

/* Canela */
@font-face {
  font-family: 'Canela';
  src: url('../fonts/CANELA/Canela-Regular-Trial.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/CANELA/Canela-RegularItalic-Trial.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/CANELA/Canela-Medium-Trial.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/CANELA/Canela-MediumItalic-Trial.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/CANELA/Canela-Bold-Trial.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/CANELA/Canela-BoldItalic-Trial.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Neue Haas Grotesk */
@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('../fonts/Neue Haas Grotesk/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('../fonts/Neue Haas Grotesk/NeueHaasDisplayRomanItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('../fonts/Neue Haas Grotesk/NeueHaasDisplayMediu.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('../fonts/Neue Haas Grotesk/NeueHaasDisplayMediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'NeueHaasDisplay';
  src: url('../fonts/Neue Haas Grotesk/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ══════════════════════════════════════════
   Root Variables
   ══════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --color-bg-dark:     #570104;
  --color-bg-concepts: #E06732;
  --color-bg-cream:    #FFECD3;
  --color-bg-light:    #FFF8F1;

  /* White / opacity scale */
  --color-white:       #fff;
  --color-white-88:    rgba(255, 255, 255, 0.88);
  --color-white-75:    rgba(255, 255, 255, 0.75);
  --color-white-70:    rgba(255, 255, 255, 0.70);
  --color-white-55:    rgba(255, 255, 255, 0.55);

  /* Accent */
  --color-mauve:       #B37793;
  --color-mauve-hover: #9e6482;
  --color-body-text:   #7a3020;

  /* Hero overlay (derived from --color-bg-dark) */
  --color-overlay-88:  rgba(87, 1, 4, 0.88);
  --color-overlay-55:  rgba(87, 1, 4, 0.55);
  --color-overlay-20:  rgba(87, 1, 4, 0.20);
  --color-overlay-70:  rgba(87, 1, 4, 0.70);

  /* Typography */
  --font-serif: 'Canela', Georgia, serif;
  --font-sans:  'NeueHaasDisplay', Arial, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-white);
  overflow-x: hidden;  
}

/* ══════════════════════════════════════════
   Navbar  (shared)
   ══════════════════════════════════════════ */
.navbar {
  background-color: var(--color-bg-dark);
  padding: 8px 0;
}

.navbar-brand .logo-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
}

.navbar-nav .nav-link {
  color: var(--color-white) !important;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0 1rem !important;
  transition: opacity 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { opacity: 0.75; }

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
  z-index: 1051; /* above drawer */
  border:none;
}
button:focus:not(:focus-visible) { outline: none; }
.navbar-toggler:focus {box-shadow: none;}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: background-image 0s, transform 0.3s ease;
}
/* Swap to × when drawer is open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
  transform: rotate(90deg);
}

/* ── Mobile drawer ── */
@media (max-width: 991.98px) {

  /* Drawer panel */
  .navbar-collapse,
  .navbar-collapse.collapsing {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    height: auto !important;        /* override Bootstrap's height:0 collapse */
    overflow-y: auto !important;    /* override Bootstrap's overflow:hidden  */
    width: min(320px, 74vw);
    background-color: var(--color-bg-dark);
    padding: 90px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1040;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
  }
  .navbar-collapse.show {
    transform: translateX(0);
  }

  /* Stack nav links vertically */
  .navbar-nav {
    flex-direction: column !important;
    gap: 0 !important;
    width: 100%;
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

}

/* ══════════════════════════════════════════
   Footer  (shared)
   ══════════════════════════════════════════ */
footer {
  background-color: var(--color-mauve);
  padding: 22px 0;
}

.footer-copy {
  font-size: 1rem;
  color: var(--color-white-88);
}

.social-icons a {
  color: var(--color-white-70);
  font-size: 1.1rem;
  margin-left: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.social-icons a:hover { color: var(--color-white); }

/* ══════════════════════════════════════════
   Shared Buttons
   ══════════════════════════════════════════ */
.btn-outline-dark-custom {
  background: transparent;
  border: 2px solid var(--color-bg-dark);
  color: var(--color-bg-dark);
  border-radius: 6px;
  padding: 0.65rem 1.6rem;
  font-size: 1.25rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}

.btn-outline-dark-custom:hover {
  background: var(--color-bg-dark);
  color: var(--color-bg-cream);
}

/* ══════════════════════════════════════════
   HOME – Hero
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  background: url('../images/hero-bg.webp') center / cover no-repeat;
  display: flex;
  align-items: center;  
  background-position: 0 0px;
}
.offset {
  margin-top: 70px; /* offset for fixed-top navbar */
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 55%;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.225rem;
  font-weight: 400;
  color: var(--color-bg-light);
  margin-bottom: 2rem;
}

.hero-desc strong { font-weight: 500; color: var(--color-white); }

.btn-primary {
  background-color: var(--color-mauve) !important;
  border-color: var(--color-mauve) !important;
  color: var(--color-white);
  border-radius: 6px;
  padding: 0.7rem 1.8rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background-color: var(--color-bg-dark) !important;
  border-color: var(--color-bg-dark) !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   HOME – Concepts
   ══════════════════════════════════════════ */
.concepts {
  background-color: var(--color-bg-concepts);
  padding: 80px 0 90px;
}

.concepts h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 70px;
}

.concept-card {
  text-align: center;
  padding: 1rem 4rem;
}

.concept-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1.1rem;
}

.concept-card p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-white-88);
}

/* ══════════════════════════════════════════
   HOME – Author
   ══════════════════════════════════════════ */
.author {
  background-color: var(--color-bg-cream);
  padding: 100px 0;
}

.author-img-wrap { display: inline-block; }

.author-img-wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
}

.author-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 1rem;
}

.author-text p {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-body-text);
  margin: 2.5rem 0;
}

.btn-author {
  background: transparent;
  border: 2px solid var(--color-bg-dark);
  color: var(--color-bg-dark);
  border-radius: 6px;
  padding: 0.65rem 1.6rem;
  font-size: 1.25rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}

.btn-author:hover {
  background: var(--color-bg-dark);
  color: var(--color-bg-cream);
}

/* ══════════════════════════════════════════
   HOME – Book
   ══════════════════════════════════════════ */
.book {
  background-color: var(--color-bg-dark);
  padding: 80px 0;
}

.book-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.book-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 400;
  color: var(--color-white-88);
  margin-bottom: 1.4rem;
}

.book-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-white-75);
  margin-bottom: 2rem;
}

.btn-amazon {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  border-radius: 6px;
  padding: 0.65rem 1.6rem;
  font-size: 1.25rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}

.btn-amazon:hover {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

.book-img { width: 100%; filter:drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35)); }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-page {
  background-color: var(--color-bg-light);
  color: var(--color-bg-dark);
}

.about-main {
  min-height: calc(100vh - 136px); /* viewport minus navbar + footer */
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.about-eyebrow {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 0.4rem;
}

.about-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--color-bg-dark);
  line-height: 1.05;
  margin-bottom: 2rem;
}

.about-body {
  font-size: clamp(1.1rem, 1.2vw, 1.25rem);
  color: #000;
  margin-bottom: 1.4rem;
  font-weight: 400;
}

.about-body:last-child { margin-bottom: 0; }

.about-photo-wrap {
  width: 100%;
  max-width: 460px;
  background-color: var(--color-mauve);
  border-radius: 40% 40% 42% 42% / 6% 6% 6% 6%;
  overflow: hidden;
  aspect-ratio: 3 / 3.5;
  display: flex;
  align-items: flex-end;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ══════════════════════════════════════════
   BLACK GIRLS CAN TALK PAGE
   ══════════════════════════════════════════ */

/* ── Section 1: Intro ── */
.bgct-intro {
  background-color: var(--color-bg-dark);
  min-height: 65vh;
  background-image: url(../images/bgct-girls.webp);
  background-size: 50%;
  background-position: right bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;

}

.bgct-intro-text {
  padding: 100px 0;
}

.bgct-intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.bgct-intro-desc {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1.3vw, 1.2rem);
  font-weight: 400;
  color: var(--color-white-88);
}

.bgct-intro-desc strong {
  font-weight: 700;
  color: var(--color-white);
}

.bgct-intro-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.bgct-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Section 2: The Book ── */
.bgct-book-section {
  background-color: var(--color-bg-concepts);
  padding: 80px 0;
}

.bgct-book-img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.bgct-book-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.bgct-book-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--color-white-88);
  margin-bottom: 1.4rem;
}

.bgct-book-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-white-75);
  margin-bottom: 2rem;
  max-width: 520px;
}

.bgct-btn-amazon {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  border-radius: 6px;
  padding: 0.65rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}

.bgct-btn-amazon:hover {
  background: var(--color-white);
  color: var(--color-bg-concepts);
}

/* ── Section 3: The Podcast ── */
.bgct-podcast-section {
  background-color: var(--color-bg-cream);
}

.bgct-podcast-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 1.5rem;
}

.bgct-podcast-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--color-bg-dark);
  margin-bottom: 2rem;
}

.bgct-podcast-desc strong {
  font-weight: 700;
}

.bgct-btn-spotify {
  background: transparent;
  border: 2px solid var(--color-bg-dark);
  color: var(--color-bg-dark);
  border-radius: 6px;
  padding: 0.65rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}

.bgct-btn-spotify:hover {
  background: var(--color-bg-dark);
  color: var(--color-bg-cream);
}

/* ── Podcast Card ── */
.podcast-card {
  width: 100%;
  overflow: hidden;
  padding-top: 50px;
  padding-left: 50px;
}

.podcast-card-header {
  background-color: var(--color-bg-dark);
  padding: 28px 28px 24px;
}

.podcast-card-brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.podcast-card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.podcast-card-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 12px;
}

.podcast-card-logo img {
  width: 70%;
  height: auto;
}

.podcast-badge {
  display: inline-block;
  background-color: var(--color-mauve);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.podcast-episode-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
}

.podcast-card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.podcast-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ══════════════════════════════════════════
   RESOURCES PAGE
   ══════════════════════════════════════════ */

/* ── Hero (orange) ── */
.res-hero {
  background-color: var(--color-bg-concepts);
  padding: 70px 0 80px;
}

.res-hero-top {
  margin-bottom: 70px;
}

.res-book-img {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

.res-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.res-desc {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 400;
  color: var(--color-white-88);
  margin-top: 3rem;
}

/* ── Resource Cards (still in orange section) ── */
.res-cards-row {
  padding-top: 60px;
}

.res-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.res-card-body {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  font-weight: 400;
  color: var(--color-white-88);
  padding-right: 2rem;
}

/* ── CTA / Email section (cream) ── */
.res-cta {
  background-color: var(--color-bg-cream);
  padding: 90px 0 100px;
}

.res-cta-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.res-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--color-bg-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.res-cta-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  line-height: 1.8;
  color: var(--color-bg-dark);
  margin-bottom: 2.5rem;
}

/* ── Email form ── */
.res-form-group {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-bg-dark);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  max-width: 560px;
  margin: 0 auto;
}

.res-form-icon {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--color-bg-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.res-form-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-bg-dark);
  background: transparent;
}

.res-form-input::placeholder { color: rgba(87, 1, 4, 0.45); }

.res-form-btn {
  flex-shrink: 0;
  background-color: var(--color-mauve);
  color: var(--color-white);
  border: none;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}

.res-form-btn:hover { background-color: var(--color-bg-dark); }

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */

/* ── Page background: soft warm gradient blur ── */
.contact-page {
  background:url(../images/contact-bg.png) center / cover no-repeat;
  color: var(--color-bg-dark);
  min-height: 100vh;
}

/* ── Main layout ── */
.contact-main {
  /*min-height: calc(100vh - 74px - 64px);*/
  display: flex;
  align-items: center;
  padding: 70px 0 80px;
}

/* ── Left: photo frame ── */
.contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Right: form card ── */
.contact-card {
  background-color: var(--color-bg-light);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 8px 48px rgba(87, 1, 4, 0.08);
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--color-bg-dark);
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.contact-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 400;  margin-bottom: 2rem;
}

/* ── Form fields ── */
.contact-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-bg-dark);
  margin-bottom: 0.5rem;
}

.contact-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(87, 1, 4, 0.3);
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-bg-dark);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-input::placeholder       { color: rgba(87, 1, 4, 0.35); }
.contact-input:focus               { border-bottom-color: var(--color-bg-dark); }

/* ── Select wrapper ── */
.contact-select-wrap {
  position: relative;
}

.contact-select {
  cursor: pointer;
  padding-right: 28px;
}

.contact-select option { color: var(--color-bg-dark); background: var(--color-bg-light); }

.contact-select-icon {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-bg-dark);
  font-size: 0.9rem;
  pointer-events: none;
}

/* ── Submit button ── */
.contact-btn {
  background-color: var(--color-bg-concepts);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.contact-btn:hover {
  background-color: var(--color-bg-dark);
  transform: translateY(-1px);
}

#mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
  border: 1.5px solid #570104 !important;
    padding: 0 !important;
    border-radius: 4px !important;
}

#mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: transparent !important;
}

#mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
  border-radius: 4px 0px 0px 4px !important;
  border-color: transparent !important;
  color: #570104 !important;
  padding: 14px 10px !important;
}
#mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .form-control:focus {
  box-shadow: none !important;
}
#mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .form-control::placeholder { 
  color: rgba(87, 1, 4, 0.45);
}
.page-id-16 #mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
      border-radius: 0px 4px 4px 0px !important;
      padding: 14px !important
}
.page-id-16 #mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
  background-color: #570104 !important;
  border-color: #570104 !important;
}
.ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
  padding-right: 0px !important;
}
#mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody {
  padding: 0px !important;
}
#mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
    padding: 20px 20px 20px 20px !important;
    background: #b37793 !important;
    border-radius: 4px !important;
}
#mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  color: #fff !important;
}
#mlb2-41116582.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: #fff !important;
}
.wpcf7-spinner {
	display:none;
}
/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
  .about-main        { padding: 60px 0; }
  .about-photo-wrap  { max-width: 360px; margin: 0 auto; }
  .bgct-intro-text   { padding: 60px 40px; }
  .res-book-img      { max-width: 260px; }
  .contact-card      { padding: 36px 28px; }
  .contact-photo-wrap{ aspect-ratio: 4 / 3.5; }
}

@media (max-width: 767px) {
  .navbar-collapse {justify-content: flex-start !important;}
	.navbar {padding:4px 0;}
	.navbar-brand .logo-circle {width:30px; height:30px;}
  .container {max-width: 92%; margin: 0 auto;}
  .offset {margin-top: 30px;}
  /* Hero */
  .hero         { background-size: cover; background-position: 80% 0px; }
  .hero-content { max-width: 100%; }

  /* Concepts */
  .concept-card { padding: 0 0.5rem 2.5rem; }

  /* Author */
  .author-img-wrap     { text-align: center; margin-bottom: 2rem; }
  .author-img-wrap img { max-width: 100%; border-radius: 0; margin: 0 auto; }
  .author-text         { text-align: center; }
  .author-text p       { margin: 0 auto 1.8rem; }

  /* Book */
  .book-text     { text-align: center; margin-bottom: 2.5rem; }
  .book-quote    { margin: 0 auto 2rem; }
  .book-img-wrap { text-align: center; }

  /* About */
  .about-name       { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .about-photo-wrap { max-width: 100%; }

  /* BGCT page */
  .bgct-intro {background-size: 100%; padding-bottom: 150px;}
  .bgct-intro-title {font-size: 2.2rem}
  .bgct-intro-desc {font-size: 1rem;}
  .bgct-podcast-desc {font-size: 1rem;}
  .bgct-intro-text        { padding: 50px 24px; max-width: 100%; }
  .bgct-intro-img-wrap    { min-height: 280px; }
  .podcast-card           { max-width: 100%; padding-left: 0; padding-top: 0; }
  .bgct-podcast-section   { padding: 60px 0; padding-bottom: 0; }
  .res-cta-desc { font-size: 1rem; line-height: 1.5;}
  
  

  /* Contact page */
  .contact-main        { padding: 50px 0 60px; }
  .contact-card        { padding: 28px 20px; }
  .contact-photo-wrap  { aspect-ratio: 1; margin-bottom: 0; }
  .contact-btn         { width: 100%; }

  /* Resources page */
  .res-hero-top           { margin-bottom: 40px; }
  .res-book-img           { max-width: 200px; }
  .res-form-group         { flex-wrap: wrap; border-radius: 8px; }
  .res-form-input         { width: 100%; padding: 14px 16px; }
  .res-form-btn           { width: 100%; text-align: center; padding: 14px; }
  .res-form-icon          { display: none; }
}
@media (max-width: 480px) {
  .bgct-btn-spotify {
    padding: 0.5rem .7rem; font-size: .8rem;}
}
