/* Leslie Quigley Beauty — brand layer on top of Tailwind utilities */
:root {
  --lqb-blush: #8b4a4a;
  --lqb-blush-light: #c4a0a0;
  --lqb-cream: #faf7f5;
  --lqb-ink: #1c1917;
}

body {
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

.lqb-page {
  background-color: #faf9f7;
}

/* Page structure: one max-width + padding for all content sections */
.lqb-wrap {
  max-width: 72rem; /* ~max-w-6xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lqb-band {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 768px) {
  .lqb-band {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.lqb-band--white {
  background-color: #ffffff;
}
.lqb-band--soft {
  background-color: #f3f0ed;
}

.lqb-section-soft {
  background-color: #f3f0ed;
}

h1, h2, h3, h4, .font-display {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
}

.lqb-gradient-hero {
  background: linear-gradient(
    135deg,
    #1c1917 0%,
    #292524 40%,
    #3f3a38 100%
  );
}

.lqb-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: lqb-shimmer-move 3s ease-in-out infinite;
}

@keyframes lqb-shimmer-move {
  0% {
    transform: translateX(-120%) skewX(-12deg);
  }
  100% {
    transform: translateX(320%) skewX(-12deg);
  }
}

/* Primary red surfaces — Tailwind bundle may omit bg-red-700; use theme token from style.css */
.bg-lqb-red {
  background-color: var(--color-red-700);
}
.bg-lqb-red:hover {
  filter: brightness(0.93);
}

.bg-lqb-wa {
  background-color: #128c7e;
}
.bg-lqb-wa:hover {
  filter: brightness(1.06);
}

/* Section titles — optional eyebrow above */
.lqb-section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(185 28 28);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-heading {
    font-size: 3rem;
  }
}
.section-subheading {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgb(75 85 99);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.lqb-eyebrow {
  letter-spacing: 0.25em;
}

/* Hero: proof strip under headline */
.lqb-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.lqb-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.lqb-trust-strip .lqb-trust-dot {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

/* Pull-style line for “Meet” */
.lqb-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgb(55 65 81);
}
@media (min-width: 768px) {
  .lqb-lead {
    font-size: 1.25rem;
  }
}

.lqb-price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.lqb-price-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgb(229 231 235);
  vertical-align: top;
}
.lqb-price-table td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
  padding-left: 1rem;
}
.lqb-price-table tr:last-child td {
  border-bottom: none;
}
