/* FILE: /styles/about.css
   About page — lighter, more corporate/professional.
   No "guarantee" language, no hype blocks.
*/

:root{
  --bb-ink: rgba(255,255,255,.92);
  --bb-muted: rgba(255,255,255,.72);

  --bb-bg: #0b0f13;
  --bb-panel: rgba(255,255,255,.06);
  --bb-line: rgba(255,255,255,.10);

  --teal: #1aa6ad;
  --teal-deep: #0b6f74;
  --tan: rgba(228,221,189,.95);

  --shadow: 0 18px 44px rgba(0,0,0,.40);
  --radius: 18px;

  /* Light page system */
  --paper: #f4f6f8;
  --paper-2: #ffffff;
  --ink: rgba(12,16,20,.92);
  --muted: rgba(12,16,20,.70);
  --line: rgba(12,16,20,.10);
  --soft: rgba(12,16,20,.06);
  --shadow-soft: 0 18px 44px rgba(0,0,0,.12);
}

/* Page base */
.bb-about{
  background:
    radial-gradient(900px 520px at 10% -10%, rgba(26,166,173,.14), transparent 58%),
    radial-gradient(860px 520px at 90% 0%, rgba(228,221,189,.22), transparent 62%),
    linear-gradient(180deg, var(--paper) 0%, #eef2f5 100%);
  color: var(--ink);
}
.site-header a, .brand-name{
  color:#0b0f13;
}

.about-main{ width: 100%; overflow-x: hidden; }
.wrap{ width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* ensures dropdown/header has room; NO TEXT here */
.about-clearance{ height: 26px; }

/* Section heading */
.section-head{
  margin: 0 0 18px 0;
  max-width: 820px;
}
.section-head h2{
  margin: 0 0 6px 0;
  font-size: clamp(1.5rem, 1.7vw + 1.05rem, 2.05rem);
  letter-spacing: -0.02em;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.03rem;
}

/* Buttons (scoped to page so it won't break your site) */
.about-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}
.about-btn:focus-visible{
  outline: 3px solid rgba(26,166,173,.30);
  outline-offset: 2px;
}
.about-btn:hover{ transform: translateY(-1px); }

.about-btn--primary{
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11,111,116,.22);
}
.about-btn--ghost{
  background: rgba(255,255,255,.84);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

/* Banner (NO TEXT) */
.about-banner{ padding: 10px 0 10px; }
.about-banner__inner{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-height: 240px;
}
.about-banner__grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  height: 240px;
}
.banner-tile{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(520px 240px at 25% 10%, rgba(26,166,173,.16), transparent 60%),
    radial-gradient(420px 220px at 85% 10%, rgba(228,221,189,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
  border-right: 1px solid var(--line);
}
.banner-tile:last-child{ border-right: 0; }
.banner-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45; /* placeholder look */
  filter: saturate(.9) contrast(.95);
}

.about-banner__mark{
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.about-banner__mark img{
  width: 70%;
  height: 70%;
  object-fit: contain;
}

/* Intro */
.about-intro{ padding: 20px 0 12px; }
.intro{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,.80);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
}
.eyebrow{
  margin: 0 0 10px 0;
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(26,166,173,.12);
  border: 1px solid rgba(26,166,173,.22);
  color: rgba(11,111,116,.92);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .75rem;
}
.intro h1{
  margin: 0;
  font-size: clamp(2rem, 2.6vw + 1.1rem, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.lead{
  margin: 2px 0 14px 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.06rem;
}
.intro__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 14px 0;
}

/* Facts */
.facts{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}
.fact{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}
.fact dt{
  font-weight: 900;
  font-size: .9rem;
  color: rgba(12,16,20,.86);
}
.fact dd{
  margin: 4px 0 0 0;
  color: var(--muted);
  line-height: 1.35;
}

/* People cards */
.about-founders{ padding: 22px 0 10px; }
.people{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.person{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
}
.person__photo img{
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.03);
}
.person__role{
  margin: 2px 0 10px 0;
  color: rgba(11,111,116,.92);
  font-weight: 900;
}
.person__bio{
  margin: 0 0 10px 0;
  color: var(--muted);
  line-height: 1.7;
}
.person__list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.person__list li{ margin: 2px 0; }

/* Timeline */
.about-process{ padding: 22px 0 8px; }
.timeline{
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 18px;
}
.timeline::before{
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(26,166,173,.55), rgba(11,111,116,.30));
  border-radius: 2px;
}
.t-step{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}
.t-dot{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 14px;
  background: linear-gradient(180deg, var(--teal), var(--teal-deep));
  box-shadow: 0 10px 18px rgba(11,111,116,.18);
}
.t-card{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,.07);
}
.t-card h3{
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}
.t-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Projects grid */
.about-featured{ padding: 22px 0 34px; }
.proj-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.proj{
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,.10);
  transition: transform .15s ease, box-shadow .15s ease;
}
.proj:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0,0,0,.16);
}
.proj__img{
  height: 200px;
  background: var(--soft);
}
.proj__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55; /* placeholder feel */
}
.proj__meta{
  padding: 12px 12px 14px;
  display: grid;
  gap: 4px;
}
.proj__title{
  font-weight: 900;
  letter-spacing: -0.01em;
}
.proj__sub{
  color: var(--muted);
  font-size: .95rem;
}

.bottom-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* =========================================================
   About Page – FAQ Section (LIGHT THEME, matches about.css)
========================================================= */

.about-faq{
  padding: 22px 0 34px;            /* matches your section spacing rhythm */
}

.about-faq__inner{
  width: min(1120px, calc(100% - 40px));  /* matches .wrap */
  margin: 0 auto;
}

.about-faq__header{
  margin: 0 0 18px 0;
  max-width: 820px;               /* matches .section-head */
}

.about-faq__header h2{
  margin: 0 0 6px 0;
  font-size: clamp(1.5rem, 1.7vw + 1.05rem, 2.05rem); /* same as your h2 */
  letter-spacing: -0.02em;
}

.about-faq__header p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.03rem;
}

/* FAQ List */
.about-faq__list{
  display: grid;
  gap: 12px;
}

/* Each FAQ card matches your “panel” look */
.about-faq__item{
  background: rgba(255,255,255,.86);       /* consistent with .t-card/.proj */
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
  padding: 14px 14px;
}

/* Summary row */
.about-faq__item summary{
  cursor: pointer;
  font-weight: 900;                        /* matches your strong headings */
  letter-spacing: -0.01em;
  list-style: none;
  position: relative;
  padding: 2px 40px 2px 0;                 /* room for icon on right */
}

.about-faq__item summary::-webkit-details-marker{
  display: none;
}

/* Plus/Minus icon that matches your brand */
.about-faq__item summary::after{
  content: "+";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(26,166,173,.10);
  border: 1px solid rgba(26,166,173,.22);
  color: rgba(11,111,116,.92);
  font-size: 18px;
  font-weight: 900;
}

.about-faq__item[open] summary::after{
  content: "–";
}

/* Answer */
.about-faq__item p{
  margin: 10px 0 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Subtle hover (desktop only) */
@media (hover:hover){
  .about-faq__item:hover{
    box-shadow: 0 20px 42px rgba(0,0,0,.14);
  }
}

/* Mobile spacing */
@media (max-width: 560px){
  .about-faq__item{
    padding: 14px 12px;
  }
  .about-faq__item summary{
    padding-right: 44px;
  }
}

/* Responsive */
@media (max-width: 980px){
  .intro{ grid-template-columns: 1fr; }
  .facts{ grid-template-columns: 1fr; }
  .people{ grid-template-columns: 1fr; }
  .person{ grid-template-columns: 1fr; }
  .proj-grid{ grid-template-columns: 1fr 1fr; }
  .about-banner__grid{ grid-template-columns: 1fr; height: 260px; }
  .banner-tile{ border-right: 0; border-bottom: 1px solid var(--line); }
  .banner-tile:last-child{ border-bottom: 0; }
}
@media (max-width: 560px){
  .proj-grid{ grid-template-columns: 1fr; }
  .about-banner__inner{ min-height: 220px; }
}