/* penghuang.co — v3 "line sheet" system (Sep 15, 2026)
   White ground, true black ink, ticket-stock grey, and ONE red — the markdown-sticker red —
   used only where something is marked down or cash is trapped. Square corners, 1px rules.
   Previous version backed up in ../www-v2-backup. */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@62..125,100..900&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

:root {
  --paper: #FFFFFF;
  --stock: #F3F3F1;      /* hang-tag card stock; secondary bands */
  --ink: #0F0F0F;
  --muted: #666663;
  --line: #D8D8D5;
  --red: #CF2A1E;        /* markdown sticker — reserved for markdowns / trapped cash */
  --red-tint: #FBEAE7;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--ink); text-underline-offset: 3px; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.nb { white-space: nowrap; }

/* .shell owns horizontal padding. Anything sharing an element with .shell
   (.nav, .hero) sets only vertical padding, or it zeroes the sides on mobile. */
.shell { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* Labels — mono, like a line sheet field or a price ticket */
.label, .hero .kicker {
  font-family: var(--mono); font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.hero .kicker { margin-bottom: 22px; }

/* Header — fashion-house wordmark */
header.site { border-bottom: 1px solid var(--ink); background: var(--paper); }
.nav {
  display: flex; align-items: center; gap: 30px;
  padding-top: 22px; padding-bottom: 22px;
  flex-wrap: wrap;
}
.wordmark {
  font-family: var(--sans); font-stretch: 125%; font-weight: 800; font-size: 19px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; margin-right: auto;
}
.wordmark span { display: none; }
.nav a.link {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding-bottom: 3px; border-bottom: 1px solid transparent;
}
.nav a.link:hover, .nav a.link[aria-current="page"] { border-bottom-color: var(--ink); }
@media (max-width: 600px) {
  .nav { gap: 10px 16px; padding-top: 16px; padding-bottom: 16px; }
  .nav a.link { font-size: 11.5px; }
  .nav .btn { padding: 9px 14px; }
}

/* Buttons — square, black, ticket-mono */
.btn {
  display: inline-block; background: var(--ink); color: #fff; border: 1px solid var(--ink);
  font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 13px 22px; border-radius: 0; cursor: pointer;
}
.btn:hover { background: #fff; color: var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn:focus-visible, a:focus-visible, summary:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hero */
.hero { padding-top: 72px; padding-bottom: 64px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: end; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; } }
.hero-grid > *, .two > * { min-width: 0; }
.hero h1 {
  font-stretch: 115%; font-weight: 800;
  font-size: clamp(34px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -0.015em;
  text-wrap: balance; max-width: 16ch; margin-bottom: 26px;
}
.hero p.sub { font-size: 19px; line-height: 1.55; max-width: 46ch; margin-bottom: 22px; }
.hero p.sub strong { font-weight: 700; }
.guarantee-line { font-size: 15px; color: var(--muted); max-width: 48ch; margin-bottom: 30px; }
.guarantee-line strong { color: var(--ink); }

/* Sections */
section.band { padding: 72px 0; }
section.band.alt { background: var(--stock); }
h2.sec {
  font-stretch: 112%; font-weight: 800;
  font-size: clamp(26px, 3.4vw, 40px); line-height: 1.08; letter-spacing: -0.01em;
  text-wrap: balance; max-width: 22ch; margin-bottom: 22px;
}
.prose { max-width: 64ch; }
.prose p + p { margin-top: 14px; }
.prose .lead { font-size: 19px; }
.prose ul, .offer ul { margin: 14px 0 0 0; list-style: none; }
.prose li, .offer li { margin-top: 10px; padding-left: 22px; position: relative; }
.prose li::before, .offer li::before {
  content: ""; position: absolute; left: 0; top: 0.8em; width: 11px; height: 1px; background: var(--ink);
}
.prose ul + p { margin-top: 18px; }
.muted { color: var(--muted); }

/* Graphics */
figure { margin: 0; }
figcaption {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); margin-top: 10px;
}
.figbox { background: var(--paper); border: 1px solid var(--ink); padding: 20px; }
svg { display: block; width: 100%; height: auto; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; align-items: start; }
.two.flush { margin-top: 0; align-items: center; gap: 44px; }
@media (max-width: 820px) { .two, .two.flush { grid-template-columns: 1fr; } }

/* Hang tags — the service line sheet.
   Outer = 1px ink "border" via clip-path; inner inset so the chamfered edge keeps a ~1px rule. */
.tickets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 880px) { .tickets { grid-template-columns: 1fr; max-width: 440px; } }
.ticket {
  display: flex; background: var(--ink); padding: 1px;
  clip-path: polygon(22px 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%, 0 22px);
}
.ticket-inner {
  position: relative; flex: 1; background: var(--stock);
  clip-path: polygon(18.5px 0, calc(100% - 18.5px) 0, 100% 18.5px, 100% 100%, 0 100%, 0 18.5px);
  padding: 50px 24px 24px; display: flex; flex-direction: column; gap: 12px;
}
.ticket-inner::before {
  content: ""; position: absolute; top: 17px; left: 50%;
  width: 12px; height: 12px; margin-left: -6px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--ink);
}
.ticket .sku { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.ticket h3 { font-stretch: 112%; font-weight: 800; font-size: 21px; line-height: 1.15; }
.ticket p { font-size: 15.5px; }
.ticket .price {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--ink);
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.ticket .was { font-family: var(--mono); font-size: 14px; color: var(--muted); text-decoration: line-through; }
.ticket .now { font-stretch: 112%; font-weight: 800; font-size: 30px; line-height: 1; color: var(--red); }
.ticket .flat { font-stretch: 112%; font-weight: 800; font-size: 22px; line-height: 1; }
.ticket .note { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* The sale — one featured product, the rest as "after" */
.feature { display: grid; grid-template-columns: 360px 1fr; gap: 52px; margin-top: 36px; align-items: start; }
@media (max-width: 880px) { .feature { grid-template-columns: 1fr; gap: 36px; } .feature .ticket { max-width: 440px; } }
.feature > * { min-width: 0; }
.ticket-lg .now { font-size: 42px; }
.ticket .btn { margin-top: 8px; text-align: center; }
h3.mini {
  font-family: var(--mono); font-size: 12px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.gets, .steps { list-style: none; margin-bottom: 30px; }
.gets li { position: relative; padding: 11px 0 11px 24px; border-top: 1px solid var(--line); }
.gets li:last-child { border-bottom: 1px solid var(--line); }
.gets li::before { content: ""; position: absolute; left: 0; top: 1.35em; width: 12px; height: 1px; background: var(--ink); }
.steps li { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps .when { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; padding-top: 2px; }
.guar-inline { border: 1px solid var(--ink); padding: 14px 16px; font-size: 15.5px; }
.after { margin-top: 60px; padding-top: 22px; border-top: 1px solid var(--ink); }
.after .label { display: block; margin-bottom: 20px; }
.after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .after-grid { grid-template-columns: 1fr; gap: 24px; } }
.after-item .sku { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.after-item h3 { font-stretch: 112%; font-weight: 800; font-size: 20px; line-height: 1.2; margin-bottom: 6px; }
.after-item p { font-size: 15.5px; }

/* The system — the whole planning function, by stage */
.system { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 36px; align-items: start; }
@media (max-width: 900px) { .system { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .system { grid-template-columns: 1fr; } }
.system > * { min-width: 0; }
.stage { border-top: 1px solid var(--ink); padding-top: 14px; }
.stage .label { display: block; margin-bottom: 4px; }
.module { padding: 12px 0; border-bottom: 1px solid var(--line); }
.module h3 { font-stretch: 112%; font-weight: 800; font-size: 18px; line-height: 1.2; margin-bottom: 4px; }
.module p { font-size: 15px; color: var(--muted); }
.system-also { margin-top: 18px; font-size: 15px; color: var(--muted); }

/* Portrait (hero + About) */
.portrait { margin: 0; }
.portrait img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--ink); }
.hero-grid .portrait { width: 100%; max-width: 420px; justify-self: end; }
@media (max-width: 880px) { .hero-grid .portrait { justify-self: start; max-width: 340px; } }

/* "Worked at" strip, directly under the hero */
.worked-strip {
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  padding: 14px 0; display: flex; gap: 18px; align-items: baseline; flex-wrap: wrap;
}
.worked-strip .label { flex: none; }
.worked-strip .brands {
  font-stretch: 115%; font-weight: 700; font-size: 14.5px; letter-spacing: 0.06em;
  text-transform: uppercase; line-height: 1.7;
}

/* About page: text + portrait */
.about-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.about-grid > * { min-width: 0; }
.about-grid .portrait { order: 2; position: sticky; top: 24px; }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-grid .portrait { order: 0; position: static; max-width: 320px; }
}

/* Credibility */
.cred { max-width: 70ch; }
.cred p { font-size: 18px; }
.cred .who {
  margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--ink);
  font-stretch: 115%; font-weight: 700; font-size: 15px; letter-spacing: 0.06em;
  text-transform: uppercase; line-height: 1.9;
}
.cred .who .label { display: block; font-stretch: 100%; margin-bottom: 6px; }

/* Offer detail blocks (Work With Me) */
.offer { border-top: 1px solid var(--ink); padding: 40px 0; display: grid; grid-template-columns: 260px 1fr; gap: 36px; }
@media (max-width: 760px) { .offer { grid-template-columns: 1fr; gap: 12px; } }
.offer .tag { font-stretch: 112%; font-weight: 800; font-size: 22px; line-height: 1.15; }
.offer .tag .p {
  display: block; margin-top: 10px; font-family: var(--mono); font-stretch: 100%;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
}
.offer .for { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.guar { border: 1px solid var(--ink); background: var(--paper); padding: 16px 18px; margin-top: 20px; font-size: 15.5px; }

/* FAQ */
details { border-bottom: 1px solid var(--line); padding: 18px 0; max-width: 70ch; }
details:first-of-type { border-top: 1px solid var(--ink); }
details summary {
  font-weight: 700; cursor: pointer; font-size: 17px; list-style: none;
  display: flex; justify-content: space-between; gap: 16px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-family: var(--mono); font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { margin-top: 10px; color: var(--muted); max-width: 62ch; }

/* Forms */
.formbox { background: var(--paper); border: 1px solid var(--ink); padding: 28px; max-width: 560px; margin-top: 32px; }
.formbox label {
  display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; margin: 16px 0 6px;
}
.formbox input, .formbox select, .formbox textarea {
  width: 100%; padding: 11px 12px; font: inherit; font-size: 16px;
  border: 1px solid var(--ink); border-radius: 0; background: var(--paper); color: var(--ink);
}
.formbox .btn { margin-top: 20px; }
.formbox .hint { font-family: var(--sans); font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--muted); margin-left: 6px; }
.formbox fieldset.checks { border: 0; margin: 18px 0 0; padding: 0; }
.formbox fieldset.checks legend {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.formbox .opts { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px; }
@media (max-width: 520px) { .formbox .opts { grid-template-columns: 1fr; } }
.formbox .checks label {
  display: flex; align-items: center; gap: 10px; margin: 6px 0;
  font-family: var(--sans); font-size: 15.5px; letter-spacing: 0; text-transform: none; cursor: pointer;
}
.formbox .checks input { width: 16px; height: 16px; padding: 0; flex: none; accent-color: var(--ink); }
.formbox p { font-size: 16px; }

/* CTA band */
.cta { background: var(--ink); color: #fff; padding: 80px 0; }
.cta h2 {
  font-stretch: 115%; font-weight: 800; font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.05; letter-spacing: -0.01em; max-width: 20ch; text-wrap: balance; margin-bottom: 16px;
}
.cta p { color: #BDBDBA; max-width: 54ch; margin-bottom: 28px; }
.cta .btn { background: #fff; color: var(--ink); border-color: #fff; }
.cta .btn:hover { background: transparent; color: #fff; }

/* Footer */
footer.site {
  border-top: 1px solid var(--ink); padding: 28px 0 40px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted);
}
footer.site .shell { display: flex; gap: 24px; flex-wrap: wrap; align-items: baseline; }
footer.site a { color: var(--muted); }
footer.site .spacer { margin-left: auto; }

/* Symptom → what it costs */
.symptoms { list-style: none; margin-top: 30px; max-width: 78ch; }
.symptoms li {
  display: grid; grid-template-columns: 1fr auto; gap: 10px 28px; align-items: baseline;
  padding: 15px 0; border-top: 1px solid var(--line);
}
.symptoms li:last-child { border-bottom: 1px solid var(--line); }
.symptoms .sym { font-size: 16.5px; }
.symptoms .cost {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.symptoms .cost.red { color: var(--red); }
@media (max-width: 640px) {
  .symptoms li { grid-template-columns: 1fr; gap: 6px; }
  .symptoms .cost { white-space: normal; }
}

/* Proof — real numbers, each with an honest little chart */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 36px; }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr; gap: 30px; max-width: 520px; } }
.stats > * { min-width: 0; }
.stat { border-top: 1px solid var(--ink); padding-top: 14px; }
.stat .cap { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.stat .big { font-stretch: 112%; font-weight: 800; font-size: clamp(28px, 3.1vw, 38px); line-height: 1; letter-spacing: -0.015em; }
.stat .viz { margin: 20px 0 16px; }
.stat p { font-size: 15px; color: var(--muted); }

/* Qualifier lists — a fit / not a fit */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 30px; }
.fit.one { grid-template-columns: 1fr; max-width: 62ch; }
@media (max-width: 760px) { .fit { grid-template-columns: 1fr; gap: 28px; } }
.fit > * { min-width: 0; }
.fit ul { list-style: none; }
.fit li { position: relative; padding: 11px 0 11px 26px; border-top: 1px solid var(--line); font-size: 15.5px; }
.fit li:last-child { border-bottom: 1px solid var(--line); }
.fit li::before { content: ""; position: absolute; left: 0; top: 1.35em; width: 12px; height: 1px; background: var(--ink); }
.fit .no li::before, .fit div.no li::before { background: var(--red); }

/* Utilities */
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 28px; } .mt-4 { margin-top: 44px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
