/* ===== Hero ===== */

.hero {
  padding: var(--space-6) 0 var(--space-5);
  background:
    radial-gradient(circle at 85% 10%, rgba(189, 107, 62, 0.08), transparent 45%),
    var(--paper);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
  align-items: center;
}

.hero h1 {
  font-size: var(--step-5);
  margin-top: var(--space-2);
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--resin-deep);
}

.hero__lede {
  margin-top: var(--space-3);
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero__actions {
  margin-top: var(--space-4);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* Portrait frame — real photo with offset layered borders
   behind it, echoing a laminate cross-section without being
   purely decorative. Each ply sits behind the photo, offset
   diagonally, like stacked plies peeking out from under it. */

.hero__visual {
  display: flex;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
}

.portrait-frame__ply {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1.5px solid var(--ply-green-deep);
}

.portrait-frame__ply[style*="--i:0"] {
  background: var(--thread);
  transform: translate(14px, 14px);
}
.portrait-frame__ply[style*="--i:1"] {
  background: var(--paper-deep);
  transform: translate(7px, 7px);
  border-color: var(--resin-deep);
}
.portrait-frame__ply[style*="--i:2"] {
  background: var(--sage);
  opacity: 0.4;
  transform: translate(-6px, -6px);
}

.portrait-frame__img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--ply-green-deep);
  box-shadow: 0 18px 40px -16px rgba(28, 37, 33, 0.45);
}

@media (max-width: 920px) {
  .portrait-frame { max-width: 280px; }
}

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero h1 { max-width: 100%; }
}

/* ===== Metrics strip ===== */

.metrics-section {
  background: var(--paper-deep);
  border-top: 1px solid var(--thread);
  border-bottom: 1px solid var(--thread);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}

@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: repeat(3, 1fr); row-gap: var(--space-4); }
}
@media (max-width: 520px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== About strip ===== */

.about-strip__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-5);
}

.about-strip h2 { font-size: var(--step-2); }
.about-strip p { color: var(--ink-soft); margin-top: var(--space-2); }

.text-link {
  display: inline-block;
  margin-top: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--resin-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.about-strip__list h3 {
  font-size: var(--step-0);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: var(--space-2);
}

.role-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.role-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--thread);
  font-size: var(--step--1);
}

@media (max-width: 760px) {
  .about-strip__inner { grid-template-columns: 1fr; }
}

/* ===== Pillar grid ===== */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.pillar-grid h3 {
  font-size: var(--step-1);
  margin-top: var(--space-2);
}

.pillar-grid p {
  color: var(--ink-soft);
  font-size: var(--step--1);
  margin-top: var(--space-2);
}

@media (max-width: 980px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ===== Network grid ===== */

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--thread);
  border: 1px solid var(--thread);
  border-radius: 10px;
  overflow: hidden;
}

.network-item {
  background: #fff;
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.network-item__country {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--resin-deep);
}

.network-item__detail {
  font-size: var(--step--1);
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .network-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .network-grid { grid-template-columns: 1fr; }
}

/* ===== CTA ===== */

.cta-section {
  padding: var(--space-6) 0 var(--space-7);
}

.cta-section__inner {
  background: var(--ply-green-deep);
  border-radius: 16px;
  padding: var(--space-5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.cta-section h2 {
  color: var(--paper);
  font-size: var(--step-2);
  max-width: 28ch;
}
