/* =============================================
   PAGE — shared shell for /about /values /vision /contact
   ============================================= */

.pg-hero {
  padding: clamp(130px, 16vw, 190px) clamp(18px, 5vw, 56px) clamp(48px, 7vw, 78px);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(211, 168, 94, 0.06), transparent 60%),
    var(--bg2);
}
.pg-hero-inner { max-width: var(--maxw); margin: 0 auto; }
.pg-kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}
.pg-title {
  font-family: var(--font-display-jp);
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: var(--text);
}
.pg-lead {
  margin-top: 26px;
  font-size: clamp(14px, 1.2vw, 16.5px);
  line-height: 2.15;
  color: var(--text2);
  max-width: 44em;
}

.pg-body {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 56px) clamp(72px, 10vw, 120px);
}
.pg-body-inner {
  max-width: 780px;
  margin: 0 auto;
}
.pg-wide { max-width: var(--maxw); }

/* section block */
.pg-block { margin-bottom: clamp(52px, 7vw, 84px); }
.pg-block:last-child { margin-bottom: 0; }

.pg-h2 {
  font-family: var(--font-display-jp);
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
  color: var(--text);
  padding-bottom: 16px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.pg-h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 46px; height: 1px;
  background: var(--brass);
}
.pg-h2 .pg-h2-en {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--brass);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pg-h3 {
  font-family: var(--font-display-jp);
  font-size: 18.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 34px 0 14px;
}

.pg-p {
  font-size: 15px;
  line-height: 2.25;
  color: var(--text2);
  margin-bottom: 20px;
}
.pg-p:last-child { margin-bottom: 0; }
.pg-p strong { color: var(--brass); font-weight: 500; }

.pg-quote {
  margin: 32px 0;
  padding: 26px 30px;
  border-left: 2px solid var(--brass);
  background: var(--surface2);
  font-family: var(--font-display-jp);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--text);
}
.pg-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-style: normal;
  letter-spacing: 0.2em;
  color: var(--text4);
}

.pg-list {
  list-style: none;
  margin: 22px 0;
}
.pg-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 2.15;
  color: var(--text2);
  margin-bottom: 8px;
}
.pg-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 7px; height: 1px;
  background: var(--brass);
}

/* card grid reused on /values */
.pg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: 28px;
}
.pg-card {
  border: 1px solid var(--border);
  border-top: 2px solid var(--brass);
  border-radius: 3px;
  padding: 28px 26px 30px;
  background: var(--surface);
}
.pg-card-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--brass);
}
.pg-card h3 {
  font-family: var(--font-display-jp);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 12px 0 12px;
}
.pg-card p {
  font-size: 13.5px;
  line-height: 2.05;
  color: var(--text3);
}

/* do / don't columns */
.pg-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: 26px;
}
.pg-two-col {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 26px 24px;
  background: var(--surface);
}
.pg-two-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  margin-bottom: 14px;
}
.pg-two-col--do .pg-two-lbl { color: var(--brass); }
.pg-two-col--avoid .pg-two-lbl { color: var(--clay); }
.pg-two-col--avoid { border-color: var(--border2); }

/* next-page nav */
.pg-next {
  margin-top: clamp(56px, 8vw, 88px);
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  align-items: center;
}
.pg-next-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--text4);
}

/* contact page */
.pg-contact-card {
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--surface);
  padding: clamp(30px, 5vw, 48px);
  text-align: center;
}
.pg-contact-mail {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(15px, 2vw, 21px);
  letter-spacing: 0.1em;
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 168, 94, 0.4);
  padding-bottom: 6px;
  transition: border-color .2s ease;
  word-break: break-all;
}
.pg-contact-mail:hover { border-bottom-color: var(--brass); }
.pg-contact-note {
  margin-top: 22px;
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--text3);
}

/* 404 */
.pg-404 {
  min-height: 68svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 90px;
}
.pg-404-code {
  font-family: var(--font-mono);
  font-size: 58px;
  letter-spacing: 0.2em;
  color: var(--brass);
}
