/* ===== PAGE HERO (shared by treatments, contact) ===== */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--color-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,149,106,0.1) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; max-width: 55ch; margin: 0 auto; }

/* ===== ABOUT HERO — VIDEO ===== */
.about-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(40,30,20,0.6) 0%,
    rgba(40,30,20,0.3) 50%,
    rgba(40,30,20,0.15) 100%
  );
  z-index: 1;
}
.about-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: calc(var(--nav-h) + 4rem);
  width: 100%;
}
.about-hero__card {
  background: rgba(238,233,226,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,149,106,0.2);
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 520px;
  color: var(--color-dark);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.about-hero__card .tag {
  color: var(--color-primary);
  background: rgba(201,149,106,0.12);
  border: 1px solid rgba(201,149,106,0.25);
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.about-hero__card h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-dark);
}
.about-hero__card h1 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-primary);
}
.about-hero__card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}
.about-hero__link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.3s ease;
  gap: 0.3rem;
}
.about-hero__link:hover {
  gap: 0.6rem;
}
.about-hero__badge {
  background: var(--color-primary);
  color: white;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(201,149,106,0.4);
  align-self: flex-end;
}
.about-hero__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}
.about-hero__badge-label {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.3rem;
  display: block;
}

/* ===== ABOUT STORY ===== */
.about-story-section { overflow: hidden; }

.about-story--centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-story__text {
  margin-top: 1.5rem;
}
.about-story__text p {
  margin-top: 1rem;
  line-height: 1.85;
  font-size: 1.05rem;
}
.about-story__text p:first-child { margin-top: 0; }

.about-story__highlight {
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: 1.5rem !important;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(201,149,106,0.2);
  border-bottom: 1px solid rgba(201,149,106,0.2);
}

.about-values { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; justify-content: center; }
.about-value-pill {
  background: rgba(201,149,106,0.08);
  color: var(--color-primary);
  border: 1px solid rgba(201,149,106,0.2);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.25s ease;
}
.about-value-pill:hover {
  background: rgba(201,149,106,0.18);
  transform: translateY(-2px);
}

/* ===== BENTO GRID — CERTIFICATIONS ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.bento-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.bento-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.bento-card__icon {
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}
.bento-card h4 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.bento-card p { font-size: 0.88rem; line-height: 1.6; }

/* Featured card — spans 2 cols, primary bg */
.bento-card--featured {
  grid-column: span 2;
  background: var(--color-primary);
  color: white;
  border-color: transparent;
}
.bento-card--featured .bento-card__icon { color: white; }
.bento-card--featured h4 { color: white; }
.bento-card--featured p { opacity: 0.9; }
.bento-card--featured:hover {
  box-shadow: 0 12px 40px rgba(201,149,106,0.3);
}

/* Wide card — spans 2 cols */
.bento-card--wide {
  grid-column: span 2;
}


/* ===== IMG PLACEHOLDERS ===== */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-cream) 0%, #D4B896 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  opacity: 0.5;
}
.img-placeholder--tall { min-height: 500px; border-radius: 8px; }
.img-placeholder--person { min-height: 260px; font-size: 5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-hero { min-height: 70vh; }
  .about-hero__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .about-hero__badge { align-self: flex-start; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--featured { grid-column: span 2; }
  .bento-card--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .about-hero { min-height: 75vh; }
  .about-hero__card { max-width: 100%; padding: 1.75rem; }
  .about-hero__badge { padding: 1rem 1.5rem; }
  .about-hero__badge-num { font-size: 2rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--featured,
  .bento-card--wide { grid-column: span 1; }
}
