/* RENOVON page.css — shared interior-page components.
   Loads after tokens/base/layout. Home-only styles stay in home.css.
   Components: page hero, prose, cards, credential wall, affiliations,
   team, commitments, steps, scenario cards, articles, form, CTA band. */

/* ================= PAGE HERO (compact, dark) ================= */
.page-hero { position: relative; padding: calc(96px + var(--sect-y) * .55) 0 calc(var(--sect-y) * .55); overflow: hidden; }
.page-hero .crumb {
  font-family: var(--font-brand); font-weight: 600; font-size: .75rem;
  letter-spacing: .14em; text-transform: uppercase; opacity: .6; margin-bottom: 22px;
}
.page-hero .crumb a:hover { color: var(--premium-gold); }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); max-width: 18ch; }
.page-hero .lead { margin-top: 22px; }
.page-hero__ring {
  position: absolute; right: -140px; top: 50%; transform: translateY(-50%);
  width: clamp(260px, 30vw, 430px); opacity: .1; pointer-events: none;
}
.page-hero__ring circle { fill: none; stroke: var(--premium-gold); }

/* ================= PROSE ================= */
.prose { max-width: 68ch; }
.prose p { margin-bottom: 1.2em; opacity: .92; }
.prose h2 { margin: 1.6em 0 .6em; }
.prose h3 { margin: 1.4em 0 .5em; }
.prose ul { margin: 0 0 1.2em; padding-left: 1.1em; list-style: none; }
.prose ul li { position: relative; padding: 4px 0 4px 18px; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid var(--premium-gold);
}
.prose strong { font-weight: 700; }

/* ================= GRIDS ================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ================= DETAIL CARD (services, industries, offers) ================= */
.detail-card { padding: 34px 30px; position: relative; transition: transform .3s var(--ease-out), border-color .3s; }
.detail-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--premium-gold) 55%, transparent); }
.detail-card .num {
  font-family: var(--font-brand); font-weight: 800; font-size: .8rem;
  color: var(--premium-gold); letter-spacing: .12em;
}
.detail-card h3 { margin: 12px 0 10px; }
.detail-card .short { font-weight: 600; opacity: .95; margin-bottom: 10px; }
.detail-card p { font-size: .95rem; opacity: .82; }
.detail-card .list { margin-top: 14px; }
.detail-card .list li {
  position: relative; padding: 5px 0 5px 20px; font-size: .92rem; opacity: .85;
}
.detail-card .list li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 9px; height: 9px; border-radius: 50%;
  border: 2px solid var(--renovon-teal);
}
.detail-card .card-link {
  display: inline-flex; align-items: center; gap: .4em; margin-top: 18px;
  font-family: var(--font-brand); font-weight: 700; font-size: .85rem;
  color: var(--premium-gold);
}
.detail-card .card-link .arrow { transition: transform .25s var(--ease-out); }
.detail-card:hover .card-link .arrow { transform: translateX(4px); }

/* ================= CREDENTIAL WALL (typographic authority badges) ================= */
.cred-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .cred-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cred-wall { grid-template-columns: 1fr; } }
.cred-badge {
  padding: 26px 22px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .3s var(--ease-out), border-color .3s;
}
.cred-badge:hover { transform: translateY(-4px); border-color: var(--gold-soft); }
.cred-badge .seal {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--premium-gold);
  position: relative;
}
.cred-badge .seal::after {
  content: ""; position: absolute; inset: 5px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--premium-gold) 45%, transparent);
}
.cred-badge .seal svg { width: 26px; height: 26px; stroke: var(--premium-gold); fill: none; stroke-width: 1.8; }
.cred-badge .t { font-family: var(--font-brand); font-weight: 700; font-size: .98rem; line-height: 1.3; }
.cred-badge .d { font-size: .82rem; opacity: .7; line-height: 1.45; }

/* ================= AFFILIATIONS STRIP ================= */
.affil { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.affil__item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 999px;
  font-family: var(--font-brand); font-weight: 600; font-size: .88rem;
}
.affil__item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--premium-gold); flex: none; }

/* ================= TEAM ================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.team-card { overflow: hidden; }
.team-card .photo {
  aspect-ratio: 4 / 5; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 30%, color-mix(in srgb, var(--renovon-teal) 30%, transparent), transparent 70%),
    var(--charcoal);
  display: grid; place-items: center;
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .monogram {
  width: 108px; height: 108px; border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--premium-gold);
  font-family: var(--font-brand); font-weight: 800; font-size: 2rem;
  color: var(--premium-gold); letter-spacing: .04em;
}
.team-card .photo .frame-note {
  position: absolute; bottom: 12px; left: 0; right: 0; text-align: center;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .45;
  color: var(--light-stone);
}
.team-card .body { padding: 24px 26px 30px; }
.team-card h3 { font-size: 1.15rem; }
.team-card .role {
  font-family: var(--font-brand); font-weight: 600; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--premium-gold);
  margin: 6px 0 12px;
}
.team-card .creds { font-size: .82rem; opacity: .7; margin-bottom: 12px; line-height: 1.5; }
.team-card p { font-size: .92rem; opacity: .85; }

/* ================= COMMITMENTS (the trust contract) ================= */
.commit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 800px) { .commit-grid { grid-template-columns: 1fr; } }
.commit {
  display: flex; gap: 18px; padding: 24px 26px;
}
.commit .ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--renovon-teal) 18%, transparent);
}
.commit .ico svg { width: 22px; height: 22px; stroke: var(--premium-gold); fill: none; stroke-width: 2; }
.commit h3 { font-size: 1.02rem; margin-bottom: 6px; }
.commit p { font-size: .9rem; opacity: .82; }

/* ================= VERTICAL STEPS (method deep dive) ================= */
.vsteps { position: relative; max-width: 820px; }
.vsteps::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px;
  background: color-mix(in srgb, currentColor 15%, transparent);
}
.vstep { position: relative; display: flex; gap: 30px; padding: 26px 0; }
.vstep .n {
  flex: none; width: 56px; height: 56px; border-radius: 50%; z-index: 1;
  display: grid; place-items: center;
  background: var(--ink-navy); color: var(--premium-gold);
  border: 2px solid var(--premium-gold);
  font-family: var(--font-brand); font-weight: 800; font-size: 1.15rem;
}
body[data-theme="light"] .vstep .n { background: var(--light-stone); }
.vstep h3 { margin-bottom: 8px; }
.vstep .win {
  font-family: var(--font-brand); font-weight: 600; font-size: .76rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--renovon-teal);
  margin-bottom: 8px; display: block;
}
.vstep p { opacity: .85; max-width: 56ch; }
.vstep .out { margin-top: 10px; font-size: .88rem; opacity: .75; }
.vstep .out strong { color: var(--premium-gold); font-weight: 700; }

/* ================= SCENARIO CARDS (How We Deliver) ================= */
.scenario { padding: 36px 34px; }
.scenario .sector {
  font-family: var(--font-brand); font-weight: 700; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--renovon-teal);
}
.scenario h3 { margin: 10px 0 16px; font-size: 1.25rem; }
.scenario .phase { margin: 14px 0; }
.scenario .phase .k {
  font-family: var(--font-brand); font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--premium-gold);
  display: block; margin-bottom: 4px;
}
.scenario .phase p { font-size: .93rem; opacity: .85; }
.scenario-note {
  margin-top: 26px; padding: 16px 22px; border-radius: var(--radius);
  border: 1px dashed color-mix(in srgb, currentColor 25%, transparent);
  font-size: .85rem; opacity: .75; max-width: 68ch;
}

/* ================= MEASUREMENT / DELIVERABLES LIST ================= */
.deliver-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 34px; max-width: 900px; }
@media (max-width: 700px) { .deliver-list { grid-template-columns: 1fr; } }
.deliver-list li { position: relative; padding: 8px 0 8px 32px; font-size: .96rem; }
.deliver-list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--premium-gold);
  background:
    linear-gradient(45deg, transparent 44%, var(--premium-gold) 44% 56%, transparent 56%) no-repeat center / 9px 9px;
}

/* ================= INSIGHTS / ARTICLES ================= */
.article-card { display: flex; flex-direction: column; overflow: hidden; transition: transform .3s var(--ease-out), border-color .3s; }
.article-card:hover { transform: translateY(-4px); border-color: var(--gold-soft); }
.article-card .thumb {
  aspect-ratio: 1200 / 630; display: grid; place-items: center; position: relative;
  background:
    radial-gradient(ellipse 80% 90% at 70% 20%, color-mix(in srgb, var(--renovon-teal) 35%, transparent), transparent 65%),
    var(--ink-navy);
}
.article-card .thumb svg { width: 84px; height: 84px; }
.article-card .thumb svg circle { fill: none; stroke: var(--premium-gold); }
.article-card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-card .meta { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; opacity: .6; font-family: var(--font-brand); font-weight: 600; }
.article-card h3 { font-size: 1.12rem; line-height: 1.3; }
.article-card p { font-size: .92rem; opacity: .8; flex: 1; }

.article-hero { padding-top: calc(96px + var(--sect-y) * .4); }
.article-body { max-width: 720px; }
.article-body .prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.article-body .stat-callout {
  margin: 1.6em 0; padding: 22px 26px; border-left: 3px solid var(--premium-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: color-mix(in srgb, currentColor 5%, transparent);
  font-size: 1.05rem; font-weight: 600;
}
.article-body .src { font-size: .8rem; opacity: .6; display: block; margin-top: 6px; font-weight: 400; }
.article-meta-row {
  display: flex; gap: 18px; align-items: center; margin-top: 20px;
  font-size: .82rem; opacity: .7;
}

/* ================= CONTACT FORM ================= */
.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.field label {
  display: block; font-family: var(--font-brand); font-weight: 600; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; opacity: .8;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  font: inherit; color: inherit;
  background: color-mix(in srgb, currentColor 5%, transparent);
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  transition: border-color .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--premium-gold);
  background: color-mix(in srgb, currentColor 8%, transparent);
}
.field select { appearance: none; }
.field textarea { min-height: 140px; resize: vertical; }
.form .fine { font-size: .78rem; opacity: .6; }
.contact-side .block { padding: 26px 28px; margin-bottom: 20px; }
.contact-side h3 { font-size: 1rem; margin-bottom: 8px; }
.contact-side p, .contact-side a { font-size: .92rem; opacity: .85; display: block; }
.contact-side a:hover { color: var(--premium-gold); }

/* ================= FAQ ================= */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--font-brand); font-weight: 700; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--premium-gold); font-size: 1.4rem; font-weight: 400; transition: transform .3s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 20px; opacity: .82; max-width: 62ch; }

/* ================= CTA BAND (every page ends here) ================= */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band h2 { margin-inline: auto; }
.cta-band .lead { margin-inline: auto; }
.cta-band .btn { margin-top: 30px; }
.cta-band .reassure { margin-top: 20px; font-size: .85rem; opacity: .6; }

/* ================= UTIL ================= */
.center { text-align: center; }
.center .sect-head { margin-inline: auto; }
.center .rule { margin-inline: auto; }
.mt-lg { margin-top: 54px; }
.mt-md { margin-top: 34px; }
.max-70 { max-width: 70ch; }
