/* ============================================================
   BRITTANY MILLER — Master Stylesheet
   ============================================================ */

/* --- Import Poppins --- */
@import url('poppins.css');

/* --- Custom Font Faces --- */
@font-face {
  font-family: 'Mikela Regular';
  src: url('../fonts/mikelaregular.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Mikela Bold';
  src: url('../fonts/mikelabold.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Mikela Light';
  src: url('../fonts/mikelalight.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'The Styled Edit';
  src: url('../fonts/thestylededit.woff') format('woff');
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --coral: #CA7B7A;
  --light-pink: #E5AFA3;
  --bg-pink: #FDEEED;
  --bg-pink-light: #FDF5F5;
  --purple-gray: #7E7787;
  --cream: #F9F5F2;
  --dark: #242424;
  --white: #FFFFFF;

  --font-body: 'Poppins', sans-serif;
  --font-display: 'Mikela Regular', serif;
  --font-display-bold: 'Mikela Bold', serif;
  --font-display-light: 'Mikela Light', serif;
  --font-script: 'The Styled Edit', cursive;

  --container: 1200px;
  --header-h: 62px;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font: inherit; }

/* --- Typography --- */
h1, h2, h3 { line-height: 1.2; }
h1 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--light-pink);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  color: var(--dark);
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
.text-center h2 {
  display: inline-block;
}
h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--coral);
  margin: 8px auto 0;
  border-radius: 2px;
}
.cta-section__text h2::after,
.service-detail__content h2::after,
.about-section h2::after {
  margin: 8px 0 0;
}
h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section--sm {
  padding: 48px 0;
}
.section--cream { background: var(--cream); }
.section--pink { background: var(--bg-pink); }
.section--pink-light { background: var(--bg-pink-light); }
.section--purple { background: var(--purple-gray); }
.section--coral { background: var(--coral); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.8;
  padding: 12px 32px;
  border-radius: 10px;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--coral);
}
.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover {
  background: var(--dark);
}
.btn-white {
  background: var(--white);
  color: var(--coral);
}
.btn-white:hover {
  background: var(--cream);
}

/* --- Notification Bar --- */
.notification-bar {
  background: var(--cream);
  text-align: center;
  padding: 10px 48px 10px 24px;
  position: relative;
  font-size: 14px;
  font-style: italic;
  color: var(--coral);
}
.notification-bar a {
  color: var(--coral);
  text-decoration: underline;
}
.notification-bar a:hover {
  color: var(--dark);
}
.notification-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 18px;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.notification-bar__close:hover {
  opacity: 1;
}
.notification-bar.is-hidden {
  display: none;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--coral);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  justify-content: center;
}
.header__nav-left,
.header__nav-right {
  display: flex;
  gap: 24px;
}
.header__logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin: 0 40px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.header__logo span {
  font-family: var(--font-script);
  font-size: 28px;
}
.header__link {
  color: var(--cream);
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.header__link:hover,
.header__link.is-active {
  opacity: 0.75;
}

/* Mobile hamburger */
.header__hamburger {
  display: none;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg-pink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile logo (in header) */
.header__mobile-logo {
  display: none;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* --- Mobile Nav Overlay --- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav__close svg {
  width: 24px;
  height: 24px;
  stroke: var(--dark);
}
.mobile-nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--coral);
  margin-bottom: 16px;
}
.mobile-nav__link {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--dark);
  transition: color var(--transition);
}
.mobile-nav__link:hover {
  color: var(--coral);
}
.mobile-nav__socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.mobile-nav__socials a svg {
  width: 28px;
  height: 28px;
  fill: var(--coral);
  transition: fill var(--transition);
}
.mobile-nav__socials a:hover svg {
  fill: var(--dark);
}

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero--home {
  background: var(--purple-gray);
  min-height: 520px;
  padding: 80px 24px;
}
.hero--page {
  background: linear-gradient(135deg, var(--bg-pink), var(--light-pink));
  padding: 80px 24px;
  min-height: 300px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(14px, 2vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light-pink);
  margin-bottom: 8px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--cream);
  margin-bottom: 32px;
  font-weight: 300;
}
.hero__title--dark { color: var(--dark); }
.hero__title--sm { font-size: clamp(28px, 4vw, 44px); }
.hero__subtitle--dark { color: var(--dark); font-weight: 400; }

/* Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-pink), var(--light-pink));
  border-radius: 8px;
  aspect-ratio: 1;
  width: 100%;
}
.img-placeholder--wide { aspect-ratio: 16/9; }
.img-placeholder--portrait { aspect-ratio: 3/4; }

/* --- Speaking / Logos Bar --- */
.logos-bar {
  background: var(--cream);
  text-align: center;
  padding: 40px 24px;
}
.logos-bar h3 {
  margin-bottom: 24px;
}
.logos-bar__strip {
  max-width: 900px;
  margin: 0 auto;
  height: 60px;
  background: linear-gradient(135deg, var(--bg-pink) 0%, var(--light-pink) 100%);
  border-radius: 8px;
}
.logos-bar__image {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.logos-bar__image:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .logos-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 32px 24px;
  }
  .logos-bar__image {
    min-width: 700px;
    width: 700px;
    max-width: none;
  }
}

/* --- Service Cards --- */
.service-card {
  text-align: center;
}
.service-card__image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-pink), var(--light-pink));
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 16px;
}
.service-card__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.service-card__link:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* --- About Section (Homepage) --- */
.about-section {
  background: var(--cream);
}
.about-section__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-pink), var(--light-pink));
}
.about-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 8px;
}
.about-section__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.about-section__text {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 24px;
}

/* --- Testimonials --- */
.testimonials {
  text-align: center;
}
.testimonials h2 {
  margin-bottom: 32px;
}
.testimonials__embed {
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Newsletter --- */
.newsletter {
  background: var(--cream);
  text-align: center;
}
.newsletter__embed {
  max-width: 640px;
  margin: 0 auto;
}

/* --- Blog Cards --- */
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.blog-card__image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-pink), var(--light-pink));
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}
.blog-card__body {
  padding: 20px;
}
.blog-card__date {
  font-size: 13px;
  color: var(--coral);
  margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0;
}
.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 12px;
}
.blog-card__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  transition: color var(--transition);
}
.blog-card__link:hover {
  color: var(--dark);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--cream);
}
.cta-section__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-pink), var(--light-pink));
}
.cta-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-section__text h2 {
  text-align: left;
  margin-bottom: 12px;
}
.cta-section__text p {
  margin-bottom: 24px;
}

/* --- Instagram Feed --- */
.ig-feed {
  padding: 48px 0;
}
.ig-feed__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0 24px;
}
.ig-feed__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--dark);
}
.ig-feed__handle {
  font-size: 16px;
  color: var(--coral);
}
.ig-feed__embed {
  width: 100%;
}

/* --- Footer --- */
.footer {
  background: var(--purple-gray);
  color: var(--white);
  padding: 60px 0 24px;
}
.footer .container {
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 40px;
  align-items: start;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav a {
  font-size: 15px;
  color: var(--white);
  transition: opacity var(--transition);
}
.footer__nav a:hover {
  opacity: 0.7;
}
.footer__center {
  text-align: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer__logo-sub {
  font-family: var(--font-display-light);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-top: 4px;
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer__socials a svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  transition: fill var(--transition);
}
.footer__socials a:hover svg {
  fill: var(--light-pink);
}
.footer__email {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.footer__email a {
  color: var(--white);
  text-decoration: underline;
}
.footer__email a:hover {
  color: var(--light-pink);
}
.footer__cta {
  text-align: right;
}
.footer__cta-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer__cta-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer__bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* --- Service Detail (alternating) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}
.service-detail:nth-child(even) .service-detail__image {
  order: 2;
}
.service-detail__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-pink), var(--light-pink));
}
.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail__content h3 {
  text-align: left;
  margin-bottom: 8px;
}
.service-detail__content h2 {
  text-align: left;
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.service-detail__content p {
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-detail__list {
  margin-bottom: 24px;
  line-height: 1.8;
  padding-left: 20px;
}

/* --- Fun Facts --- */
.fun-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fun-fact {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fun-fact:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.fun-fact__icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.fun-fact__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
}

/* --- Quote --- */
.quote-section {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
}
.quote-section blockquote {
  font-family: var(--font-script);
  font-size: clamp(24px, 4vw, 42px);
  color: var(--dark);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 16px;
}
.quote-section cite {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--coral);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* --- Resource Cards --- */
.resource-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.resource-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.resource-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--dark);
}
.resource-card__text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* --- Contact Form --- */
.contact-form iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

/* --- Affiliate Disclaimer --- */
.disclaimer {
  font-size: 13px;
  color: #999;
  font-style: italic;
  text-align: center;
  max-width: 700px;
  margin: 32px auto 0;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .fun-facts { grid-template-columns: repeat(2, 1fr); }
  .footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__center { grid-column: 1 / -1; order: -1; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }
  .section { padding: 48px 0; }
  .section--sm { padding: 32px 0; }

  /* Header mobile */
  .header__nav-left,
  .header__nav-right { display: none; }
  .header__logo { display: none; }
  .header__hamburger { display: flex; }
  .header__mobile-logo { display: block; }
  .header .container { justify-content: flex-start; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .fun-facts { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Service detail */
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail:nth-child(even) .service-detail__image { order: 0; }
  .service-detail__content h2 { text-align: center; }
  .service-detail__content h3 { text-align: center; }
  .service-detail__content p { text-align: center; }
  .service-detail__content { text-align: center; }

  /* Footer */
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer__nav { align-items: center; }
  .footer__center { order: -1; }
  .footer__cta { text-align: center; }

  /* Hero */
  .hero--home { min-height: 380px; padding: 60px 24px; }
  .hero--page { min-height: 200px; padding: 60px 24px; }

  /* CTA */
  .cta-section__text h2 { text-align: center; }
  .cta-section__text { text-align: center; }

  /* Blog cards */
  .blog-card__body { padding: 16px; }

  /* IG feed */
  .ig-feed__header { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .fun-facts { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fun-fact { padding: 20px 16px; }
  .container { padding: 0 16px; }
  .notification-bar { font-size: 13px; padding: 8px 40px 8px 16px; }
}

/* --- Body scroll lock --- */
body.nav-open {
  overflow: hidden;
}

/* --- Polish: Focus States --- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* --- Polish: Service card hover lift on link pages --- */
.service-card {
  display: block;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
}

/* --- Polish: Smooth divider between service details --- */
.service-detail + .service-detail {
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* --- Polish: Blog card image aspect on blog page grid-2 --- */
.grid-2 .blog-card__image {
  aspect-ratio: 16/10;
}

/* --- Polish: Notification bar line-height --- */
.notification-bar {
  line-height: 1.5;
}

/* --- Polish: Consistent link underline in body text --- */
.cta-section__text a:not(.btn),
.about-section__text a,
.service-detail__content a:not(.btn) {
  color: var(--coral);
  text-decoration: underline;
}
.cta-section__text a:not(.btn):hover,
.about-section__text a:hover,
.service-detail__content a:not(.btn):hover {
  color: var(--dark);
}

/* --- Polish: Header subtle shadow for depth --- */
.header {
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

/* --- Polish: Hero CTA button spacing from subtitle --- */
.hero__subtitle + .btn {
  margin-top: 8px;
}

/* --- Polish: Service card text consistency --- */
.service-card__text {
  min-height: 96px;
}

/* --- Polish: CTA section button breathing room --- */
.cta-section__text .btn {
  margin-top: 8px;
}

/* --- Polish: About section button top margin for separation --- */
.about-section .btn {
  margin-top: 8px;
}

/* --- Polish: Quote section subtle top/bottom borders --- */
.quote-section {
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* --- Polish: Resource card equal heights in grid --- */
.grid-3 .resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.resource-card__text {
  flex: 1;
}

/* --- Polish: Fun facts mobile single column at 375px --- */
@media (max-width: 400px) {
  .fun-facts { grid-template-columns: 1fr; }
}

/* --- Polish: Service detail mobile button centering --- */
@media (max-width: 768px) {
  .service-detail__content .btn {
    display: inline-block;
  }
}

/* --- Polish: Smooth image placeholder fade on load --- */
.img-placeholder,
.about-section__image,
.cta-section__image,
.service-detail__image,
.service-card__image {
  position: relative;
}

/* --- Polish: Footer bottom link styling --- */
.footer__bottom a:hover {
  color: var(--light-pink);
}

/* ============================================================
   LBGA Landing Page
   ============================================================ */
.lbga-pain {
  max-width: 720px;
  margin: 0 auto;
}
.lbga-pain p {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  margin-bottom: 20px;
}
.lbga-pain p strong {
  color: var(--coral);
}
.lbga-transform {
  max-width: 720px;
  margin: 0 auto;
}
.lbga-transform p {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  margin-bottom: 20px;
}
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.framework-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 3px solid var(--coral);
  transition: transform var(--transition), box-shadow var(--transition);
}
.framework-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.framework-card__number {
  font-family: var(--font-display-bold);
  font-size: 42px;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 12px;
}
.framework-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 10px;
}
.framework-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.tier-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.tier-card--vip {
  border: 2px solid var(--coral);
  background: linear-gradient(135deg, rgba(202,123,122,0.03), rgba(202,123,122,0.01));
  box-shadow: 0 4px 20px rgba(202,123,122,0.1);
}
.tier-card--vip .btn {
  font-size: 17px;
  padding: 14px 36px;
}
.tier-card__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 8px;
}
.tier-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tier-card__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  color: var(--coral);
  margin-bottom: 24px;
}
.tier-card__list {
  text-align: left;
  margin-bottom: 32px;
  flex: 1;
}
.tier-card__list li {
  font-size: 15px;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-left: 24px;
  position: relative;
}
.tier-card__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 600;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 24px 0;
  transition: background var(--transition);
}
.faq-item:hover {
  background: rgba(249,245,242,0.5);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.12);
}
.faq-item__question {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 12px;
  background: var(--cream);
  padding: 8px 12px;
  border-radius: 6px;
}
.faq-item__answer {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}
.about-brief {
  max-width: 800px;
  margin: 0 auto;
}
.about-brief p {
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .framework-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .tier-card {
    padding: 32px 24px;
  }
  .tier-card__price {
    font-size: clamp(18px, 3vw, 22px);
  }
  .faq-item__answer {
    font-size: clamp(14px, 2vw, 15px);
  }
}
@media (max-width: 480px) {
  .framework-grid {
    grid-template-columns: 1fr;
  }
}
