/* Strength page */

.strength-intro{
  padding:clamp(72px,10vw,110px) 0;
  background:#fff;
  border-bottom:1px solid rgba(231,226,215,.65);
}
.strength-intro__inner{
  max-width:720px;
  margin:0 auto;
  text-align:center;
}
.strength-intro__lead{
  margin:0 0 28px;
  font-size:clamp(17px,2vw,20px);
  font-weight:700;
  line-height:1.85;
  color:var(--ink);
  letter-spacing:.02em;
}
.strength-intro__text{
  margin:0;
  font-size:15px;
  color:#555;
  line-height:2;
}

.strength-detail-section{
  padding-top:clamp(88px,11vw,120px);
  background:#fafaf8;
}
.strength-detail-section .section-title{margin-bottom:clamp(48px,7vw,72px)}
.strength-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(22px,3vw,36px);
  align-items:stretch;
}
.strength-feature-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--line);
  overflow:hidden;
  transition:transform .28s ease,box-shadow .28s ease;
}
.strength-feature-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 48px rgba(0,0,0,.07);
}
.strength-feature-card__media{
  aspect-ratio:16 / 9;
  overflow:hidden;
}
.strength-feature-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.strength-feature-card__body{
  padding:clamp(26px,4vw,38px) clamp(22px,3vw,32px) clamp(30px,4vw,42px);
  display:flex;
  flex-direction:column;
  flex:1;
}
.strength-feature-card__body h3{
  margin:0 0 18px;
  font-size:clamp(20px,2.2vw,24px);
  font-weight:900;
  letter-spacing:.02em;
  line-height:1.35;
}
.strength-feature-card__body > p{
  margin:0 0 20px;
  font-size:14px;
  color:#555;
  line-height:1.85;
}
.strength-feature-list{
  margin:0 0 22px;
  padding:0;
  list-style:none;
  border-top:1px solid rgba(231,226,215,.9);
}
.strength-feature-list li{
  padding:14px 0 14px 18px;
  border-bottom:1px solid rgba(231,226,215,.75);
  font-size:14px;
  font-weight:600;
  color:#333;
  position:relative;
  letter-spacing:.02em;
}
.strength-feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:3px;
  height:3px;
  border-radius:50%;
  background:var(--gold);
}
.strength-feature-list li:last-child{border-bottom:0}

.strength-structure-section{
  padding:clamp(88px,11vw,120px) 0;
  background:#fff;
}
.strength-structure-section .section-title{margin-bottom:clamp(44px,6vw,60px)}
.strength-structure-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(18px,2.5vw,28px);
}
.strength-structure-cell{
  padding:clamp(28px,4vw,40px) clamp(20px,3vw,28px);
  border:1px solid var(--line);
  background:#fff;
  transition:border-color .25s ease,transform .25s ease;
}
.strength-structure-cell:hover{
  border-color:rgba(200,169,107,.45);
  transform:translateY(-2px);
}
.strength-structure-cell__label{
  display:block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold-dark);
  margin-bottom:14px;
}
.strength-structure-cell__title{
  margin:0 0 12px;
  font-size:clamp(20px,2.4vw,26px);
  font-weight:900;
  letter-spacing:.02em;
  color:var(--ink);
  line-height:1.2;
}
.strength-structure-cell__desc{
  margin:0;
  font-size:14px;
  color:#666;
  line-height:1.75;
}

.strength-domains-section{
  padding:clamp(88px,11vw,120px) 0;
  background:#fafaf8;
  border-top:1px solid rgba(231,226,215,.55);
}
.strength-domains-section .section-title{margin-bottom:clamp(40px,5vw,52px)}
.strength-domain-tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 14px;
  max-width:920px;
  margin:0 auto;
}
.strength-domain-tag{
  display:inline-flex;
  align-items:center;
  padding:14px 26px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  transition:border-color .22s ease,color .22s ease,transform .22s ease;
}
.strength-domain-tag:hover{
  border-color:var(--gold);
  color:var(--gold-dark);
  transform:translateY(-2px);
}

@media (max-width:1024px){
  .strength-feature-grid{grid-template-columns:1fr}
  .strength-structure-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:768px){
  .strength-structure-grid{grid-template-columns:1fr}
  .strength-intro__inner{text-align:left}
  .strength-domain-tags{justify-content:flex-start}
}
