/* about.css */

/* ── HERO ── */
.about-hero{padding-top:64px;background:var(--ink);}

.about-hero-top{padding:64px 0 48px;}

.about-hero-eyebrow{
  display:flex;align-items:center;gap:12px;
  margin-bottom:28px;
}
.about-pg-num{
  font-family:'Cormorant Garamond',serif;
  font-size:3.5rem;font-weight:700;
  color:rgba(255,255,255,0.15);line-height:1;
}
.about-slash{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;font-weight:300;
  color:rgba(255,255,255,0.15);
}
.about-pg-label{
  font-size:0.7rem;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;
  color:rgba(255,255,255,0.4);
}

.about-hero-h1{
  font-family:'Cormorant Garamond',serif;
  font-weight:700;line-height:1.0;
  margin-bottom:28px;
  display:flex;flex-direction:column;gap:0;
}
.about-hero-word{
  font-size:clamp(3.5rem,10vw,8rem);
  color:rgba(255,255,255,0.9);
  display:block;
}
.about-hero-word-accent{color:var(--peach);}

.about-hero-sub{
  font-size:1.05rem;color:rgba(255,255,255,0.5);
  line-height:1.75;max-width:540px;
}

/* Stats strip */
.about-hero-stats{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:36px 0;
}
.about-hero-stats-inner{
  display:flex;align-items:flex-start;gap:0;
}
.about-stat-col{flex:1;padding:0 32px;}
.about-stat-col:first-child{padding-left:0;}
.about-stat-col:last-child{padding-right:0;}
.about-stat-divider{
  width:1px;background:rgba(255,255,255,0.1);
  align-self:stretch;
}
.about-stat-num{
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem;font-weight:700;
  color:var(--peach);margin-bottom:4px;
}
.about-stat-label{
  font-size:0.7rem;font-weight:700;
  letter-spacing:0.1em;text-transform:uppercase;
  color:rgba(255,255,255,0.4);margin-bottom:8px;
}
.about-stat-desc{
  font-size:0.85rem;color:rgba(255,255,255,0.4);line-height:1.6;
}

/* ── STORY ── */
.story-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:60px;align-items:center;
}
.about-phone-wrap{
  display:flex;align-items:center;justify-content:center;
  padding:40px;
  background:var(--ash-lt);
  border-radius:var(--r-lg);
  border:var(--rule);
}

.about-phone-step{
  display:flex;align-items:flex-start;gap:10px;
  padding:8px 0;
  position:relative;
}
.apstep-dot{
  width:10px;height:10px;
  border-radius:50%;flex-shrink:0;
  margin-top:3px;
}
.apstep-done-dot{background:var(--peach-dk);}
.apstep-active-dot{
  background:var(--peach);
  box-shadow:0 0 0 3px rgba(232,147,106,0.25);
}
.apstep-pending-dot{
  background:var(--ash);
  border:1.5px solid var(--ash-dk);
}
.apstep-line{
  position:absolute;left:4px;top:16px;bottom:-4px;
  width:2px;background:var(--ash);
}
.apstep-done-line{background:var(--peach-lt);}
.apstep-title{font-size:0.62rem;font-weight:700;color:var(--ink);}
.apstep-time{font-size:0.55rem;color:var(--grey);}

/* ── MVV ── */
.mvv-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:0;
  border:var(--rule);
  border-radius:var(--r-md);
  overflow:hidden;
  margin-top:-1px;
}
.mvv-card{
  padding:40px 32px;
  border-right:var(--rule);
  background:var(--white);
  position:relative;
  overflow:hidden;
}
.mvv-card:last-child{border-right:none;}
.mvv-card::before{
  content:'';
  position:absolute;top:0;left:0;right:0;
  height:3px;
  background:var(--accent,var(--peach));
}
.mvv-num{
  font-family:'Cormorant Garamond',serif;
  font-size:4rem;font-weight:700;
  color:var(--ash);
  position:absolute;top:12px;right:16px;
  line-height:1;pointer-events:none;
}

/* ── TRUST ── */
.trust-grid{
  display:grid;grid-template-columns:1fr 1.6fr;
  gap:80px;align-items:start;
}
.trust-item{
  display:flex;align-items:flex-start;gap:20px;
  padding:24px 0;
  border-bottom:var(--rule);
}
.trust-item:last-child{border-bottom:none;}
.trust-item-rule{
  width:3px;min-height:60px;
  background:linear-gradient(180deg,var(--peach),var(--peach-lt));
  border-radius:3px;flex-shrink:0;margin-top:3px;
}

/* ── LOCATION ── */
.loc-grid{
  display:grid;grid-template-columns:1.2fr 1fr;
  gap:60px;align-items:start;
}
.loc-details{display:flex;flex-direction:column;gap:14px;}
.loc-item{
  display:flex;align-items:flex-start;gap:10px;
  font-size:0.9rem;color:rgba(255,255,255,0.55);
  line-height:1.6;
}
.loc-item svg{flex-shrink:0;margin-top:2px;}

.loc-card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--r-md);
  padding:32px 28px;
}
.loc-hours-title{
  font-size:0.7rem;font-weight:700;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--peach);
  margin-bottom:20px;
}
.loc-hours-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:10px 12px;margin-bottom:20px;
}
.loc-day{font-size:0.85rem;color:rgba(255,255,255,0.5);}
.loc-time{font-size:0.85rem;color:rgba(255,255,255,0.85);font-weight:600;}
.loc-note{
  display:flex;align-items:center;gap:6px;
  font-size:0.78rem;color:rgba(255,255,255,0.4);
  padding-top:16px;border-top:1px solid rgba(255,255,255,0.08);
}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .about-hero-stats-inner{flex-direction:column;gap:24px;}
  .about-stat-col{padding:0;}
  .about-stat-divider{width:100%;height:1px;align-self:auto;}
  .story-grid{grid-template-columns:1fr;}
  .about-phone-wrap{display:none;}
  .mvv-grid{grid-template-columns:1fr;}
  .mvv-card{border-right:none;border-bottom:var(--rule);}
  .mvv-card:last-child{border-bottom:none;}
  .trust-grid{grid-template-columns:1fr;}
  .loc-grid{grid-template-columns:1fr;}
}
