/* ============================================================
   SOBRE — About page styles
   ============================================================ */

/* ── Page Header ── */
.page-header {
  position: relative;
  height: 520px;
}

.page-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.page-header-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,23,38,1) 0%, rgba(10,23,38,.65) 55%, rgba(10,23,38,.3) 100%);
}

.page-header-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 64px;
}

.page-header-title {
  font-size: 76px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

/* ── Intro ── */
.intro {
  background: var(--navy-mid);
  padding: 100px 80px;
}

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

.intro-lead {
  font-size: 22px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 28px;
}

.intro-body {
  font-size: 17px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--blue-muted);
}

.stats-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(196,163,94,.18);
}

.stat-cell {
  background: var(--navy);
  padding: 36px 32px;
}

.stat-num {
  font-size: 52px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-num.sm {
  font-size: 36px;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-muted);
  margin-top: 8px;
}

/* ── Timeline ── */
.timeline {
  background: var(--navy);
  padding: 120px 80px;
}

.tl-title {
  font-size: 60px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.04;
  margin-bottom: 80px;
}

.tl-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.tl-row:last-of-type { margin-bottom: 0; }

.tl-vline {
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  align-self: stretch;
}

.tl-year {
  font-size: 72px;
  font-weight: 600;
  color: rgba(196,163,94,.18);
  line-height: 1;
}

.tl-year.sm { font-size: 52px; }

.tl-heading {
  font-size: 40px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 18px;
}

.tl-body {
  font-size: 17px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--blue-muted);
}

.gimg { overflow: hidden; }

.gimg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}

.gimg:hover img { transform: scale(1.04); }

/* ── Today box ── */
.today-box {
  border: 1px solid rgba(196,163,94,.25);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.today-title {
  font-size: 44px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 22px;
}

.today-body {
  font-size: 17px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--blue-muted);
}

/* ── Portfolio Carousel ── */
.portfolio-section {
  background: var(--navy-mid);
  padding: 80px 80px 72px;
  border-top: 1px solid rgba(196,163,94,.12);
}
.portfolio-header {
  margin-bottom: 48px;
}
.portfolio-title {
  font-size: 48px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.04;
  margin-top: 10px;
}
.portfolio-track-outer {
  overflow: hidden;
}
.portfolio-track {
  display: flex;
  gap: 24px;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.portfolio-card {
  flex: 0 0 calc(33.333% - 16px);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.portfolio-card:hover { transform: translateY(-6px); }
.portfolio-img-wrap {
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 0;
}
.portfolio-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.04); }
.portfolio-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px 4px;
}
.portfolio-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
}
.portfolio-card-status {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 44px;
}
.portfolio-btn {
  background: none;
  border: 1px solid rgba(196,163,94,.4);
  color: var(--gold);
  font-size: 18px;
  width: 44px; height: 44px;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-btn:hover { background: var(--gold); color: var(--navy); }
.portfolio-dots {
  display: flex;
  gap: 10px;
}
.portfolio-dot {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(196,163,94,.3);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.portfolio-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

@media (max-width: 900px) {
  .page-header { height: 360px; }
  .page-header-title { font-size: 44px; }
  .page-header-content { padding: 0 28px 44px; }
  .intro { padding: 64px 28px; }
  .intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .intro-lead { font-size: 18px; }
  .timeline { padding: 64px 28px; }
  .tl-title { font-size: 34px; }
  .tl-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 52px; }
  .tl-vline { display: none; }
  .tl-year { font-size: 52px; }
  .tl-heading { font-size: 26px; }
  .tl-body { font-size: 15px; }
  .today-box { grid-template-columns: 1fr; padding: 40px 28px; gap: 36px; }
  .today-title { font-size: 28px; }
  .portfolio-section { padding: 60px 28px 52px; }
  .portfolio-title { font-size: 32px; }
  .portfolio-card { flex: 0 0 calc(78% - 12px); }
}
@media (max-width: 600px) {
  .page-header { height: 280px; }
  .page-header-title { font-size: 32px; }
  .portfolio-title { font-size: 28px; }
  .portfolio-card { flex: 0 0 calc(90% - 12px); }
}
