/* ============================================================
   Audra Joe Training and Fitness
   Palette: deep charcoal + soft pink accent
   ============================================================ */

:root {
  --charcoal: #1a1a1e;
  --charcoal-soft: #242428;
  --charcoal-mid: #2e2e34;
  --surface: #f7f5f3;
  --surface-alt: #efecea;
  --white: #ffffff;
  /* Soft rose/pink accent (charcoal base stays; pink for buttons/logo/eyebrows only) */
  --pink: #e891b0;
  --pink-hover: #de7aa0;
  --pink-soft: rgba(232, 145, 176, 0.14);
  --pink-glow: rgba(232, 145, 176, 0.35);
  --coral: var(--pink); /* alias kept for existing rules */
  --coral-hover: var(--pink-hover);
  --coral-soft: var(--pink-soft);
  --coral-glow: var(--pink-glow);
  --text: #1a1a1e;
  --text-muted: #6b6b73;
  --text-on-dark: #f7f5f3;
  --text-on-dark-muted: #a8a8b0;
  --border: rgba(26, 26, 30, 0.08);
  --border-dark: rgba(247, 245, 243, 0.1);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 40px rgba(26, 26, 30, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 26, 30, 0.14);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --nav-h: 72px;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 36rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-header {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.section-header.center .lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 24px var(--coral-glow);
}

.btn-primary:hover {
  background: var(--coral-hover);
  box-shadow: 0 12px 32px var(--coral-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-on-dark);
  border-color: var(--border-dark);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(26, 26, 30, 0.18);
}

.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.btn-ghost {
  background: var(--coral-soft);
  color: var(--coral);
}

.btn-ghost:hover {
  background: rgba(232, 145, 176, 0.2);
}

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-mark {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}

.logo-mark span {
  color: var(--coral);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--text-on-dark-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 1.25rem;
  border-top: 1px solid var(--border-dark);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-on-dark-muted);
  font-weight: 600;
  padding: 0.85rem 0.5rem;
  border-radius: 10px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu .btn {
  margin-top: 0.5rem;
}

@media (min-width: 860px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: clamp(3.5rem, 10vw, 7rem) 0 clamp(4rem, 10vw, 7.5rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(232, 145, 176, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(232, 145, 176, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero h1 {
  margin-bottom: 1.15rem;
}

.hero h1 .accent {
  color: var(--coral);
}

.hero .lead {
  color: var(--text-on-dark-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-meta-item strong {
  font-size: 0.95rem;
  color: var(--text-on-dark);
}

.hero-meta-item span {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}

.hero-card {
  background: linear-gradient(160deg, var(--charcoal-mid), var(--charcoal-soft));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-card h3 {
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
}

.hero-card p {
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-on-dark);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-card-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 1px;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(232, 145, 176, 0.18), transparent 55%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  margin-bottom: 0.85rem;
}

.page-hero .lead {
  color: var(--text-on-dark-muted);
}

/* ---------- Cards / grids ---------- */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--coral-soft);
  color: var(--coral);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
  font-weight: 800;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.card .card-link {
  margin-top: 1.25rem;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card .card-link:hover {
  gap: 0.55rem;
}

/* ---------- Offerings strip ---------- */
.strip {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: 1.5rem 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
}

.strip-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  position: relative;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--coral);
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2226 100%);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.25rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(232, 145, 176, 0.15);
  right: -60px;
  top: -80px;
  pointer-events: none;
}

@media (min-width: 720px) {
  .cta-band {
    grid-template-columns: 1fr auto;
  }
}

.cta-band h2 {
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--text-on-dark-muted);
  max-width: 32rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--charcoal-mid), var(--charcoal)),
    var(--charcoal);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--text-on-dark-muted);
  position: relative;
  overflow: hidden;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(232, 145, 176, 0.2), transparent 60%);
}

.about-photo-inner {
  position: relative;
  z-index: 1;
}

.about-photo-initials {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  letter-spacing: -0.02em;
}

.about-photo p {
  font-size: 0.85rem;
  max-width: 14rem;
}

.about-copy h2 {
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-copy p:last-of-type {
  margin-bottom: 1.5rem;
}

.values {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .values {
    grid-template-columns: 1fr 1fr;
  }
}

.value {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}

.value strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.value span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Services detail ---------- */
.service-block {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child {
  border-bottom: none;
}

@media (min-width: 800px) {
  .service-block {
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.service-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.service-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.service-block .service-tagline {
  color: var(--text-muted);
  font-size: 1rem;
}

.service-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 0.5rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.contact-item .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.35rem;
}

.contact-item .value {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-item .hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.contact-item a {
  color: var(--coral);
}

.contact-item a:hover {
  text-decoration: underline;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.form-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 560px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(26, 26, 30, 0.12);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-soft);
  background: var(--white);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-success {
  display: none;
  background: var(--coral-soft);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* ---------- Sticky mobile book CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(26, 26, 30, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-dark);
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  flex: 1;
  max-width: 280px;
}

@media (min-width: 860px) {
  .sticky-cta {
    display: none;
  }
}

body.has-sticky-cta {
  padding-bottom: 80px;
}

@media (min-width: 860px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--text-on-dark-muted);
  padding: 3rem 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand .logo-mark {
  margin-bottom: 0.35rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 22rem;
  margin-top: 0.75rem;
}

.footer-col h4 {
  color: var(--text-on-dark);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ---------- Utilities ---------- */
.bg-alt {
  background: var(--surface-alt);
}

.bg-white {
  background: var(--white);
}

.text-center {
  text-align: center;
}

.mt-2 { margin-top: 2rem; }

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

/* ---------- Client Spotlight ---------- */
.spotlight-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .spotlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spotlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spotlight-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--charcoal-mid), var(--charcoal));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-on-dark-muted);
  position: relative;
  overflow: hidden;
}

.spotlight-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(232, 145, 176, 0.18), transparent 65%);
}

.spotlight-photo-inner {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.spotlight-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  border: 2px solid rgba(232, 145, 176, 0.35);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 0.65rem;
  letter-spacing: -0.02em;
}

.spotlight-photo-hint {
  font-size: 0.75rem;
  max-width: 11rem;
  line-height: 1.35;
}

.spotlight-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.75rem;
}

.spotlight-tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.spotlight-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  flex-grow: 1;
}

.spotlight-quote::before {
  content: "“";
  color: var(--coral);
  font-style: normal;
  font-weight: 800;
  margin-right: 0.1rem;
}

.spotlight-quote::after {
  content: "”";
  color: var(--coral);
  font-style: normal;
  font-weight: 800;
  margin-left: 0.1rem;
}

.spotlight-name {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.spotlight-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
  padding: 0.85rem 1rem;
  background: var(--surface-alt);
  border-radius: var(--radius);
  border: 1px dashed rgba(26, 26, 30, 0.12);
}

.spotlight-note strong {
  color: var(--charcoal);
  font-weight: 700;
}

.placeholder-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}


/* ---------- Audra photo gallery ---------- */
.photo-gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .photo-gallery.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .photo-gallery.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.photo-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-card figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.photo-card figcaption strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.photo-slot {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, var(--charcoal-mid), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-slot--wide {
  aspect-ratio: 3 / 4;
}

.photo-slot--landscape {
  aspect-ratio: 4 / 3;
}

.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.photo-fallback {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  padding: 1.25rem;
  width: calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
  margin: auto;
  border: 2px dashed rgba(232, 145, 176, 0.45);
  border-radius: var(--radius);
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.photo-fallback-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.photo-fallback .photo-filename {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--pink);
  background: rgba(232, 145, 176, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-top: 0.35rem;
}

.photo-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.about-photos-stack {
  display: grid;
  gap: 1rem;
}

.about-photos-row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .about-photos-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-photos-stack .photo-card {
  box-shadow: none;
}

.about-photos-stack > .photo-card .photo-slot {
  aspect-ratio: 4 / 5;
}

.about-photos-row .photo-slot {
  aspect-ratio: 1 / 1;
}

.about-photos-row .photo-card figcaption {
  padding: 0.65rem 0.75rem 0.85rem;
  font-size: 0.78rem;
}

/* ---------- Chat widget ---------- */
.chat-launcher {
  --chat-w: 380px;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  pointer-events: none;
}

.chat-launcher > * {
  pointer-events: auto;
}

/* Sit above sticky mobile CTA when present */
@media (max-width: 859px) {
  body.has-sticky-cta .chat-launcher {
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}

.chat-panel {
  width: min(var(--chat-w), calc(100vw - 2rem));
  background: #fff;
  border: 1px solid rgba(26, 26, 30, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(26, 26, 30, 0.28);
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.chat-panel.open {
  display: flex;
  max-height: min(560px, calc(100vh - 6.5rem));
  min-height: 420px;
}

.chat-head {
  background: linear-gradient(125deg, var(--charcoal) 0%, #2a2226 55%, #3a2a32 100%);
  color: #fff;
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  flex-shrink: 0;
  border-bottom: 2px solid var(--pink);
}

.chat-head-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(232, 145, 176, 0.28);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(232, 145, 176, 0.55);
  color: #fff;
  letter-spacing: 0.02em;
}

.chat-head strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.chat-head .sub {
  display: block;
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 0.12rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.chat-head .ai-tag {
  display: inline-block;
  margin-top: 0.28rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(232, 145, 176, 0.22);
  border: 1px solid rgba(232, 145, 176, 0.4);
  color: #f8d5e3;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
}

.chat-head button {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.chat-head button:hover {
  background: rgba(232, 145, 176, 0.35);
}

.chat-body {
  padding: 0.9rem;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f6f1f3;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.chat-body:empty::before {
  content: "Opening helper…";
  color: #9a8a90;
  font-size: 0.82rem;
  text-align: center;
  padding: 2rem 1rem;
}

.chat-launcher .bubble {
  max-width: 92%;
  padding: 0.72rem 0.88rem;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.chat-launcher .bubble.bot {
  background: #fff;
  border: 1px solid rgba(26, 26, 30, 0.1);
  align-self: flex-start;
  color: var(--charcoal);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(26, 26, 30, 0.05);
}

.chat-launcher .bubble.bot a {
  color: #c45a82;
  font-weight: 700;
  text-decoration: underline;
  word-break: break-word;
}

.chat-launcher .bubble.user {
  background: var(--pink);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(232, 145, 176, 0.35);
}

.chat-launcher .bubble.success {
  background: #f3faf6;
  border: 1px solid #b7e0c8;
  color: #14532d;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: none;
}

.chat-launcher .bubble.success a {
  color: #c45a82;
  font-weight: 700;
}

.chat-launcher .success-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #15803d;
  margin-bottom: 0.35rem;
}

.chat-launcher .typing-indicator {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  padding: 0.75rem 1rem;
  min-width: 52px;
}

.chat-launcher .typing-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b9a8ae;
  animation: aj-chat-bounce 1.2s infinite ease-in-out;
}

.chat-launcher .typing-indicator span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-launcher .typing-indicator span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes aj-chat-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.chat-launcher .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.05rem;
  align-self: flex-start;
  max-width: 100%;
  padding-bottom: 0.15rem;
}

.chat-launcher .chip {
  border: 1.5px solid rgba(232, 145, 176, 0.65);
  background: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: #9a3d5f;
  cursor: pointer;
  line-height: 1.25;
  transition: background 0.15s, border-color 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 1px 2px rgba(26, 26, 30, 0.04);
  font-family: inherit;
}

.chat-launcher .chip:hover,
.chat-launcher .chip:focus-visible {
  border-color: var(--pink);
  background: var(--pink-soft);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(232, 145, 176, 0.28);
  outline: none;
}

.chat-foot {
  border-top: 1px solid rgba(26, 26, 30, 0.1);
  padding: 0.65rem;
  display: flex;
  gap: 0.4rem;
  background: #fff;
  flex-shrink: 0;
}

.chat-foot input {
  flex: 1;
  border: 1px solid rgba(26, 26, 30, 0.14);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  font: inherit;
  font-size: 0.85rem;
  outline: none;
  background: #faf7f8;
  color: var(--charcoal);
  min-width: 0;
}

.chat-foot input::placeholder {
  color: #9a8a90;
}

.chat-foot input:focus {
  border-color: var(--pink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 145, 176, 0.22);
}

.chat-foot button {
  border: none;
  background: var(--pink);
  color: #fff;
  border-radius: 999px;
  padding: 0.58rem 1rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  min-width: 4.2rem;
  font-family: inherit;
}

.chat-foot button:hover {
  background: var(--pink-hover);
}

.chat-note {
  font-size: 0.68rem;
  color: #7a6a70;
  text-align: center;
  padding: 0 0.75rem 0.55rem;
  background: #fff;
  flex-shrink: 0;
  line-height: 1.35;
  margin: 0;
}

.launcher-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.launcher-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: var(--pink);
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(232, 145, 176, 0.48);
  transition: transform 0.15s, background 0.15s;
  display: grid;
  place-items: center;
  line-height: 1;
  font-family: inherit;
}

.launcher-btn:hover,
.launcher-btn:focus-visible {
  background: var(--pink-hover);
  transform: scale(1.05);
  outline: none;
}

.launcher-btn[aria-expanded="true"] {
  background: var(--pink-hover);
}

@media (max-width: 480px) {
  .chat-launcher {
    right: 0.75rem;
  }

  body.has-sticky-cta .chat-launcher {
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }

  .chat-panel.open {
    max-height: min(70vh, 520px);
    min-height: 360px;
  }
}
