* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, sans-serif;
  font-size: 13px;
  background: #fff;
  color: #333;
}

/* shared */
.label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 12px;
}
.placeholder {
  background: #e8e8e8;
  border: 1px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 11px;
  text-align: center;
}
.section-tag {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
  border: 1px solid #ddd;
  display: inline-block;
  padding: 2px 7px;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ── NAV ── */
nav {
  height: 60px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}
.nav-logo { font-size: 15px; font-weight: bold; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-link  { font-size: 12px; text-decoration: none; color: #333; }
.nav-btn   { background: #ddd; border: 1px solid #bbb; padding: 6px 16px; font-size: 12px; cursor: pointer; }

/* ── SECTIONS ── */
section { padding: 80px 40px; border-bottom: 1px solid #e0e0e0; }

/* HERO */
#hero {
  min-height: 520px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 40px 60px;
}
#hero h1   { font-size: 48px; font-weight: bold; line-height: 1.1; margin-bottom: 0; }
.hero-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: #666; margin-bottom: 16px; }
.hero-btns { display: flex; gap: 12px; margin-top: 28px; }
.hero-btn-p { background: #aaa; border: 1px solid #888; padding: 10px 24px; font-size: 12px; cursor: pointer; }
.hero-btn-g { background: #ddd; border: 1px solid #bbb; padding: 10px 24px; font-size: 12px; cursor: pointer; }
h2 { font-size: 28px; font-weight: bold; line-height: 1.2; margin-bottom: 8px; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ccc;
  border: 1px solid #ccc;
}
.stat-cell { background: #f5f5f5; padding: 24px 20px; }
.stat-num { font-size: 36px; font-weight: bold; margin-bottom: 6px; }
.stat-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: #888; }

/* STRATEGY */
#strategy { background: #f7f7f7; }
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ccc;
  border: 1px solid #ccc;
  margin-top: 40px;
}
.asset-card { background: #efefef; padding: 28px 24px; }
.asset-num  { font-size: 11px; color: #999; margin-bottom: 10px; }
.asset-name { font-size: 16px; font-weight: bold; margin-bottom: 10px; }
.pillar-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #ccc;
}
.pillar-icon { background: #ddd; width: 32px; height: 32px; border-radius: 50%; margin-bottom: 14px; }
.pillar-ttl  { font-size: 14px; font-weight: bold; margin-bottom: 8px; }

/* PORTFOLIO */
.port-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}
.filter-item {
  font-size: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
}
.filter-item.active { color: #333; font-weight: bold; }
.filter-item.active::before { background: #333; }
.filter-item:hover { color: #333; }

/* TEAM */
#team { background: #f7f7f7; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ccc;
  border: 1px solid #ccc;
  margin-top: 40px;
}
.team-card { background: #efefef; padding: 36px 28px; }
.team-photo { background: #ddd; width: 60px; height: 60px; border-radius: 50%; margin-bottom: 20px; }
.team-name  { font-size: 18px; font-weight: bold; margin-bottom: 4px; }
.team-role  { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #888; margin-bottom: 16px; }
.team-div   { background: #ccc; width: 32px; height: 1px; margin-bottom: 14px; }

/* CRITERIA */
.criteria-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-top: 40px;
  align-items: start;
}
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ccc;
  border: 1px solid #ccc;
}
.criteria-cell { background: #f5f5f5; padding: 24px 20px; }
.crit-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: #888; margin-bottom: 8px; }

/* CONTACT */
#contact { background: #f7f7f7; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 40px;
}
.contact-block { margin-bottom: 28px; }
.c-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: #888; margin-bottom: 6px; }
.form-field {
  background: #e8e8e8;
  border: 1px solid #ccc;
  height: 40px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 2px;
}
.form-field.textarea { height: 100px; }
.form-btn { background: #bbb; width: 100%; height: 42px; border-radius: 2px; }

/* FOOTER */
footer {
  height: 60px;
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #f5f5f5;
}
.foot-logo  { font-size: 13px; font-weight: bold; }
.foot-links { display: flex; gap: 20px; }
.foot-link  { font-size: 11px; text-decoration: none; color: #555; }
.foot-copy  { font-size: 11px; color: #aaa; }
