/* about.html page-specific sections. Shared chrome/components live in marketing.css. */

/* founder bio with photo */
.founder {
  display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; box-shadow: var(--shadow);
}
.founder .photo { width: 100%; height: auto; border-radius: 14px; display: block; }
.founder h3 { font-size: 1.5rem; margin-bottom: 2px; }
.founder .role { color: var(--green); font-weight: 700; font-size: .92rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.facts span { background: var(--sand2); color: var(--green); font-weight: 700; font-size: .8rem; padding: 6px 12px; border-radius: 999px; }
@media (max-width: 760px) { .founder { grid-template-columns: 1fr; } .founder .photo { width: 100%; max-width: 280px; height: auto; } }

/* grit photo band (full images, no crop) */
.gritgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.gritgrid figure { margin: 0; border-radius: 14px; overflow: hidden; position: relative; box-shadow: var(--shadow); background: #0d241f; }
.gritgrid img { width: 100%; height: 300px; object-fit: contain; background: #0d241f; display: block; }
.gritgrid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(7,30,25,.92));
  color: #fff; font-size: .82rem; font-weight: 600; padding: 26px 14px 12px;
}
@media (max-width: 760px) { .gritgrid { grid-template-columns: 1fr; } .gritgrid img { height: 320px; } }

/* full-bleed feature image (uncropped) */
.featimg { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* timeline */
.timeline { position: relative; margin-top: 20px; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 14px; top: 6px; bottom: 6px; width: 3px; background: var(--sand2); }
.tl { position: relative; padding: 0 0 26px 52px; }
.tl::before {
  content: ""; position: absolute; left: 6px; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--emerald); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--emerald);
}
.tl .yr { font-weight: 800; color: var(--ink); font-size: 1.1rem; }
.tl .h { font-weight: 700; margin: 2px 0 4px; }
.tl p { margin: 0; color: var(--slate); }

/* before / after */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .ba { grid-template-columns: 1fr; } }
.ba figure { margin: 0; position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); background: #eef4f1; }
.ba img { width: 100%; height: 360px; object-fit: contain; background: #eef4f1; display: block; }
.ba .badge {
  position: absolute; top: 12px; left: 12px; font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; color: #fff; z-index: 2;
}
.ba .badge.b { background: #7a6a55; }
.ba .badge.a { background: var(--emerald); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.gallery img { width: 100%; height: 240px; object-fit: contain; background: #eef4f1; border-radius: 12px; box-shadow: var(--shadow); display: block; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery img { height: 190px; } }

/* property cards (uncropped cover) */
.prop-card .cover { width: 100%; height: 210px; object-fit: contain; background: #eef4f1; display: block; }
.props { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .props { grid-template-columns: 1fr; } }
.prop-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.prop-card .ph { background: var(--ink); color: #fff; padding: 16px 20px; }
.prop-card .addr { font-weight: 800; font-size: 1.05rem; }
.prop-card .sub { color: #a9d7c4; font-size: .85rem; margin-top: 2px; }
.prop-card .bd { padding: 16px 20px; }
.prop-card .metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.prop-card .m .k { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.prop-card .m .v { font-weight: 800; font-size: 1.05rem; }
.prop-card .m .v.cash { color: var(--green); }
.prop-card .note { color: var(--slate); font-size: .9rem; margin: 0; }

/* section-head helper */
.sec-head { max-width: 680px; margin-bottom: 36px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
