/* ========================================= */
/* 1. BRAND COLOR PALETTE                    */
/* ========================================= */
:root {
  --bg-cream: #FDFBF7;
  --bg-linen: #F5F2EB;
  --bg-powder-blue: #EAF2F8;
  --bg-champagne: #F6ECD5;
  --bg-sage: #EDF2EE;
  /* Contrast-tested solid brand colors */
  --brand-blue: #20465E;
  --brand-gold: #daab0f;
  --text-dark: #1E242B;
  --brand-dark-footer: #1A242C;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Background Color Helpers (with !important to beat Bootstrap defaults) */
.bg-cream { background-color: var(--bg-cream) !important; }
.bg-linen { background-color: var(--bg-linen) !important; }
.bg-powder-blue { background-color: var(--bg-powder-blue) !important; }
.bg-champagne { background-color: var(--bg-champagne) !important; }
.bg-sage { background-color: var(--bg-sage) !important; }
.bg-brand-dark { background-color: var(--brand-dark-footer) !important; }

/* High-contrast footer text */
.footer-muted {
  color: #D2DCE5;
}

/* Button Colors */
.btn-brand-primary {
  background-color: var(--brand-blue);
  color: #ffffff;
  border: none;
}
.btn-brand-primary:hover, .btn-brand-primary:focus {
  background-color: #142F40;
  color: #ffffff;
}

/* ========================================= */
/* 2. LOGO LOCKUP & BRAND TYPOGRAPHY         */
/* ========================================= */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
  color: var(--text-dark);
}

.brand-fairy-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: -22px;
  position: relative;
  z-index: 1020;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

.nav-brand-title {
  font-family: 'Charm', cursive, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
}
.nav-brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-blue);
  line-height: 1;
  margin-top: 2px;
}

.star-i-wrapper {
  position: relative;
  display: inline-block;
}

.star-dot {
  position: absolute;
  top: -0.22em;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brand-gold);
  font-size: 0.55em;
  line-height: 1;
  pointer-events: none;
}

/* ========================================= */
/* 3. HERO CENTERPIECE STYLING               */
/* ========================================= */
.hero-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-fairy-img {
  max-width: 360px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.06));
}

.hero-brand-script {
  font-family: 'Charm', cursive, sans-serif;
  font-size: clamp(3.8rem, 9vw, 6.5rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 0.2rem;
  text-align: center;
}

.hero-brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-blue);
  line-height: 1.2;
}

.hero-brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: #1E242B;
  letter-spacing: 0.5px;
  margin-top: 0.6rem;
}

/* ========================================= */
/* 4. PACKAGES SECTION & CARDS               */
/* ========================================= */
.script-title {
  font-family: 'Charm', cursive, sans-serif;
  color: var(--brand-blue);
  font-size: 4rem;
  font-weight: 700;
}

.package-card {
  background-color: var(--bg-champagne);
  border: 1px solid #D6C28F;
  border-radius: 12px;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.package-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.25rem;
}

.divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--brand-blue);
  font-style: italic;
  margin: 1rem 0;
}
.divider-text::before, .divider-text::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #B0C4D0;
}
.divider-text:not(:empty)::before { margin-right: .5em; }
.divider-text:not(:empty)::after { margin-left: .5em; }

.price-tag {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-dark);
}

.momentum-box {
  background-color: #FFFFFF;
  border-left: 4px solid var(--brand-gold);
}

/* Anchored Red "Start here" Badge */
.start-here-container {
  position: relative;
}
.start-here-badge {
  position: absolute;
  top: -55px;
  left: 20px;
  z-index: 10;
  pointer-events: none;
}
.start-here-text {
  font-family: 'Caveat', cursive;
  color: #991B1B;
  font-size: 2rem;
  font-weight: bold;
  transform: rotate(-15deg);
  display: inline-block;
  margin-bottom: -5px;
}
.start-here-arrow-svg {
  width: 45px;
  height: 60px;
  transform: rotate(-10deg) scale(1) scaleX(-1);
}

.reward-arrow {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.hover-white:hover, .hover-white:focus {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* ========================================= */
/* 5. BLOG STYLING                           */
/* ========================================= */
.blog-badge {
  background-color: var(--bg-powder-blue);
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.blog-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(32, 70, 94, 0.08);
}

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

.filter-pill {
  border: 1px solid var(--brand-blue);
  background-color: transparent;
  color: var(--brand-blue);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.filter-pill:hover,
.filter-pill.active {
  background-color: var(--brand-blue);
  color: #FFFFFF;
}

.post-body-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2D3748;
}

.post-body-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.post-body-content p {
  margin-bottom: 1.25rem;
}

.blog-cta-box {
  background-color: var(--bg-champagne);
  border: 1px solid #D6C28F;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}
/* ========================================= */
/* 6. CHARTER / PROMISE PAGE STYLING         */
/* ========================================= */
:root {
  --border-quiet: #E2DBD0;
  --text-muted: #53606D;
}

.mobile-header-lockup {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100%;
}

.promise-title {
  font-family: 'Charm', cursive, sans-serif;
  color: var(--brand-blue);
  font-size: clamp(1.85rem, 6vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.promise-subtitle {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header-dog-img {
  width: clamp(95px, 25vw, 220px);
  height: auto;
  object-fit: contain;
  transform: scaleX(-1);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.04));
  flex-shrink: 0;
}

.charter-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brand-blue);
  border-left: 3px solid var(--brand-gold);
  padding-left: 1.25rem;
  margin: 2rem 0;
  font-weight: 500;
}

.charter-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #D6C28F; /* Uses your warm brand border */
}

.charter-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.charter-numeral {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-gold);
  letter-spacing: 1px;
}

.charter-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.charter-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.charter-list li:last-child {
  margin-bottom: 0;
}

.charter-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brand-gold);
  font-weight: 600;
}

.charter-list strong {
  color: var(--text-dark);
  font-weight: 600;
}

.credential-strip {
  background-color: var(--bg-cream); /* Warm cream inset instead of stark white */
  border: 1px solid #D6C28F;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}