/* ============================================
   THE SINGING BOWL CENTER — about/about.css
   ============================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: #fff;
  color: #3a2e1e;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f0e8; }
::-webkit-scrollbar-thumb { background: #C9A84C; border-radius: 3px; }
::selection { background: #C9A84C; color: #fff; }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #C9A84C; margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: #e2b95a; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: #1a1208;
  line-height: 1.15; margin-bottom: 1rem;
}
.section-title.light { color: #f5f0e8; }

.title-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, #C9A84C, transparent);
  margin-bottom: 2rem;
}
.title-rule.light { background: linear-gradient(90deg, #e2b95a, transparent); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: #C9A84C; color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover {
  background: #9a7428;
  box-shadow: 0 8px 24px rgba(196,154,60,0.35);
  transform: translateY(-1px);
}
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-whatsapp-strip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem; background: #25D366; color: #fff;
  font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.btn-whatsapp-strip svg { width: 18px; height: 18px; }
.btn-whatsapp-strip:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.about-hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; overflow: hidden;
}
.about-hero-img-wrap { position: absolute; inset: 0; }
.about-hero-bg {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,8,0,0.82) 0%, rgba(40,24,5,0.6) 50%, rgba(10,5,0,0.75) 100%);
  z-index: 1;
}
.about-hero-content {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto;
  padding: 8rem 2rem 5rem; width: 100%;
}
.about-eyebrow {
  font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #e2b95a; margin-bottom: 1.2rem;
}
.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700;
  color: #f5f0e8; line-height: 1.08; margin-bottom: 1.5rem;
}
.about-hero-title em { font-style: italic; color: #e2b95a; }
.about-hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.88rem, 1.6vw, 1rem); font-weight: 300;
  color: rgba(245,240,232,0.72); line-height: 1.75; max-width: 500px;
}
.about-hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #e2b95a, transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
.scroll-lbl {
  font-family: 'Jost', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(226,185,90,0.55);
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1; transform: scaleY(1); }
}
.reveal-hero {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.85s ease forwards;
}
.reveal-hero.delay-1 { animation-delay: 0.25s; }
.reveal-hero.delay-2 { animation-delay: 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================
   INTRO SECTION
   ============================================ */
.about-intro { background: #faf7f2; padding: 6rem 2rem; }
.about-intro-inner {
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  color: #1a1208; line-height: 1.65; margin-bottom: 1.4rem;
}
.about-lead strong { color: #9a7428; }
.about-body {
  font-size: 0.95rem; font-weight: 300;
  color: #3a2e1e; line-height: 1.85; margin-bottom: 1.1rem;
}

/* ── Image Frame ── */
.about-img-frame {
  position: relative;
  width: 100%;
  padding-bottom: 1.8rem;
  padding-right: 1.2rem;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 1.2rem; bottom: 1.8rem;
  border: 1px solid rgba(196,154,60,0.25);
  pointer-events: none; z-index: 0;
}
.about-frame-img {
  position: relative; z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}
.about-frame-badge {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 2;
  background: #9a7428; color: #f5f0e8;
  padding: 1.1rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.badge-year {
  font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; line-height: 1;
}

/* ============================================
   STATS BAND
   ============================================ */
.about-stats {
  background: #1a1208; padding: 4rem 2rem;
  border-top: 1px solid rgba(196,154,60,0.1);
  border-bottom: 1px solid rgba(196,154,60,0.1);
}
.about-stats-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  text-align: center; padding: 1rem 3.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700;
  color: #e2b95a; line-height: 1;
}
.stat-plus { font-size: 60%; vertical-align: super; color: #C9A84C; }
.stat-label {
  font-family: 'Jost', sans-serif; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}
.stat-divider { width: 1px; height: 60px; background: rgba(196,154,60,0.2); flex-shrink: 0; }

/* ============================================
   WORLDWIDE REACH
   ============================================ */
.about-reach { background: #faf7f2; padding: 6rem 2rem; }
.about-reach-inner {
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.reach-img-wrap { position: relative; overflow: hidden; }
.reach-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(196,154,60,0.15); pointer-events: none;
}
.reach-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.reach-img-wrap:hover .reach-img { transform: scale(1.03); }
.reach-highlights { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.reach-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; background: #ede5d4;
  border: 1px solid rgba(196,154,60,0.25);
  font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 500;
  color: #3a2e1e; letter-spacing: 0.04em;
}

/* ============================================
   CRAFT PROCESS
   ============================================ */
.about-craft {
  background: #1a1208; padding: 6rem 2rem;
  position: relative; overflow: hidden;
}
.about-craft::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(196,154,60,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(196,154,60,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.about-craft-inner { position: relative; max-width: 1260px; margin: 0 auto; }
.craft-header { margin-bottom: 3.5rem; }

.craft-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.craft-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.3) 10%, rgba(196,154,60,0.3) 90%, transparent);
  pointer-events: none;
}

.craft-step {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 0 2rem 0 0; position: relative;
}
.craft-step:last-child { padding-right: 0; }
.craft-step-img-wrap { display: none; }

.craft-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(196,154,60,0.4);
  background: #1a1208;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: #e2b95a;
  letter-spacing: 0.02em; margin-bottom: 1.8rem;
  position: relative; z-index: 1; flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.craft-step:hover .craft-step-num {
  background: rgba(196,154,60,0.12); border-color: #C9A84C;
}

.craft-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600;
  color: #f5f0e8; letter-spacing: 0.02em;
  margin-bottom: 0.75rem; line-height: 1.2;
}
.craft-step-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 300;
  color: rgba(245,240,232,0.5); line-height: 1.8;
}
.craft-step::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(to bottom, #C9A84C, transparent);
  transition: width 0.3s ease;
}
.craft-step:hover::after { width: 2px; }

/* ============================================
   VALUES
   ============================================ */
.about-values { background: #ede5d4; padding: 6rem 2rem; text-align: center; }
.about-values-inner { max-width: 1260px; margin: 0 auto; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3.5rem;
}
.value-card {
  background: #faf7f2;
  border: 1px solid rgba(196,154,60,0.18); border-top: 3px solid #C9A84C;
  padding: 2.5rem 1.8rem; text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.value-card:hover { box-shadow: 0 12px 40px rgba(196,154,60,0.1); transform: translateY(-4px); }
.value-icon { font-size: 1rem; color: #C9A84C; margin-bottom: 1rem; display: block; }
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; color: #1a1208; margin-bottom: 0.75rem;
}
.value-desc {
  font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 300;
  color: #7a6040; line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.about-cta {
  background: #4d3417; padding: 6rem 2rem;
  position: relative; overflow: hidden;
}
.about-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(196,154,60,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.about-cta-inner {
  position: relative; max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.about-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 600;
  color: #f5f0e8; line-height: 1.15; margin-bottom: 1rem;
}
.about-cta-title em { font-style: italic; color: #e2b95a; }
.about-cta-sub {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(245,240,232,0.5); max-width: 420px; line-height: 1.75;
}
.about-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 800;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.45); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
  50%      { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
}

/* ============================================
   ANY QUERY BUTTON
   ============================================ */
.any-query-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800;
  padding: 0.7rem 1.4rem; background: #1a1208; color: #e2b95a;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(196,154,60,0.4); cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.any-query-btn:hover { background: #C9A84C; border-color: #C9A84C; color: #fff; }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,5,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: #faf7f2; max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0; border-top: 3px solid #C9A84C;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.6rem;
  color: #7a6040; cursor: pointer; line-height: 1;
  transition: color 0.3s ease; z-index: 2;
}
.modal-close:hover { color: #1a1208; }
.modal-header { padding: 2.5rem 2.5rem 1.5rem; border-bottom: 1px solid #ede5d4; text-align: center; }
.modal-icon { display: block; font-size: 2rem; color: #C9A84C; margin-bottom: 0.8rem; }
.modal-header h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600;
  color: #1a1208; margin-bottom: 0.5rem;
}
.modal-header p { font-size: 0.85rem; font-weight: 300; color: #7a6040; line-height: 1.6; }
.modal-body { padding: 1.8rem 2.5rem 2.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #7a6040; margin-bottom: 0.45rem;
}
input, textarea {
  width: 100%; padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300;
  color: #1a1208; background: #f5f0e8;
  border: 1px solid rgba(196,154,60,0.2); outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}
input:focus, textarea:focus { border-color: #C9A84C; box-shadow: 0 0 0 3px rgba(196,154,60,0.12); }
textarea { resize: vertical; min-height: 90px; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .craft-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  .craft-steps::before { display: none; }
  .craft-step { padding-right: 0; }
  .craft-step::after { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-inner { gap: 3rem; }
  .about-reach-inner { gap: 3rem; }
}

@media (max-width: 768px) {

  /* ── Intro: stack vertically, image first ── */
  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-intro-visual {
    order: -1;
  }
  .about-img-frame {
    padding-bottom: 0;
    padding-right: 0;
  }
  .about-img-frame::before {
    display: none;
  }
  .about-frame-img {
    aspect-ratio: 16 / 9;
    height: auto !important;
  }
  .about-frame-badge {
    right: 0;
    bottom: 0;
  }

  /* ── Reach: stack vertically, image first ── */
  .about-reach-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-reach-visual {
    order: -1;
  }
  .reach-img {
    aspect-ratio: 16 / 9;
    height: auto !important;
  }

  /* ── Stats ── */
  .about-stats-inner { gap: 0; }
  .stat-item { padding: 1rem 2rem; }
  .stat-divider { display: none; }

  /* ── CTA ── */
  .about-cta-inner { flex-direction: column; align-items: flex-start; }
  .about-cta-actions { flex-direction: column; width: 100%; }
  .about-cta-actions .btn-primary,
  .about-cta-actions .btn-whatsapp-strip { width: 100%; text-align: center; justify-content: center; }

  /* ── Modal ── */
  .modal-body, .modal-header { padding-left: 1.5rem; padding-right: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Fixed buttons ── */
  .whatsapp-float { bottom: 5rem; right: 1rem; }
  .any-query-btn { bottom: 1rem; right: 1rem; }
}

@media (max-width: 560px) {
  .craft-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats-inner { flex-direction: column; align-items: center; }
  .stat-divider { display: none; }

  /* ── Taller image ratio on small phones ── */
  .about-frame-img,
  .reach-img {
    aspect-ratio: 4 / 3;
    height: auto !important;
  }
}