/* ===== BARROW WELLNESS — ABOUT.CSS ===== */

/* ─── Active nav link ─── */
.nav-links a.active {
  color: var(--orange);
  font-weight: 600;
}

/* ─── Page Hero ─── */
.page-hero {
  padding: 140px 0 90px;
  background: linear-gradient(135deg, #FBF7F4 0%, #FDF0E8 55%, #FBF7F4 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
}
.ph-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #F4874A, transparent 70%);
  top: -150px; right: -100px;
  animation: floatBlob 9s ease-in-out infinite;
}
.ph-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #C0392B, transparent 70%);
  bottom: -80px; left: -60px;
  animation: floatBlob 11s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(16px, -16px); }
}

.page-hero-inner { max-width: 680px; position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--orange); }

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.75;
}

/* ─── Pain section ─── */
.pain-section {
  padding: 88px 0;
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pain-intro h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}
.pain-intro h2 em { font-style: italic; color: var(--orange); }

.pain-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-pain-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, transform 0.25s;
}
.about-pain-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.apc-icon { font-size: 1.4rem; }
.about-pain-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.about-pain-card p em { color: var(--orange); font-style: italic; }

/* ─── Story section ─── */
.story-section {
  padding: 88px 0;
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.story-card { padding-right: 8px; }

.story-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 28px;
}
.story-card h2 em { font-style: italic; color: var(--orange); }

.story-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.story-body p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.story-turning-point {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  padding: 20px 22px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--orange);
}
.tp-line {
  display: none; /* visual handled by border-left */
}
.story-turning-point p {
  color: var(--brown);
  font-weight: 500;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Story highlight (right col) */
.story-highlight {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: sticky;
  top: 100px;
}

.sh-quote {
  background: var(--brown);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.sh-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--orange-light);
  opacity: 0.6;
  display: block;
  margin-bottom: 12px;
}
.sh-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

.sh-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sh-val {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: border-color 0.25s;
}
.sh-val:hover { border-color: var(--orange); }

.sh-val-icon {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.sh-val strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}
.sh-val p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Before & After ─── */
.transformation-section {
  padding: 88px 0;
  background: var(--white);
}

.tf-header {
  text-align: center;
  margin-bottom: 56px;
}
.tf-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}
.tf-header h2 em { font-style: italic; color: var(--orange); }
.tf-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 28px;
}

.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--cream);
  transition: box-shadow 0.3s;
}
.ba-card:hover { box-shadow: var(--shadow-card); }

.before-card { border-color: rgba(192,57,43,0.25); }
.after-card  { border-color: rgba(232,98,26,0.35); box-shadow: var(--shadow-warm); }

.ba-label {
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.before-label {
  background: rgba(192,57,43,0.08);
  color: var(--red);
}
.after-label {
  background: rgba(232,98,26,0.1);
  color: var(--orange);
}

.ba-image-slot {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: #F0EAE6;
}
.ba-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.ba-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  border: 2px dashed rgba(92,61,46,0.2);
  margin: 16px;
  border-radius: var(--radius-sm);
}
.ba-placeholder-icon { font-size: 2.2rem; }
.ba-placeholder p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.ba-placeholder strong { color: var(--orange); }
.ba-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.ba-caption {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.ba-caption p {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.5;
  text-align: center;
}

/* Arrow between cards */
.ba-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ba-arrow-inner {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(232,98,26,0.35);
  flex-shrink: 0;
}
.ba-arrow-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  line-height: 1.4;
}

.tf-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto;
  font-style: italic;
}

/* ─── Help section ─── */
.help-section {
  padding: 88px 0;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}
.help-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='2' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}

.help-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
.help-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 8px;
}
.help-header h2 em { font-style: italic; color: var(--orange-light); }
.help-header .section-tag {
  background: rgba(244,135,74,0.12);
  border-color: rgba(244,135,74,0.28);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.help-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: background 0.25s, transform 0.25s;
}
.help-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.hc-icon { font-size: 1.8rem; margin-bottom: 14px; }

.help-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.help-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

/* ─── CTA band ─── */
.about-cta {
  padding: 88px 0;
  background: var(--cream);
}
.about-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.about-cta h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 14px;
}
.about-cta p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.about-cta .hero-buttons { justify-content: center; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .help-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .pain-grid   { grid-template-columns: 1fr; gap: 48px; }
  .story-grid  { grid-template-columns: 1fr; }
  .story-highlight { position: static; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { flex-direction: row; }
  .ba-arrow-inner { width: 44px; height: 44px; font-size: 1.2rem; }
  .ba-arrow-label { font-size: 0.68rem; }
}

@media (max-width: 600px) {
  .page-hero { padding: 110px 0 70px; }
  .pain-section, .story-section, .transformation-section,
  .help-section, .about-cta { padding: 64px 0; }
  .pain-cards-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .about-cta .hero-buttons { flex-direction: column; }
  .about-cta .btn { width: 100%; text-align: center; }
}
