/* ==========================================================================
   Personal — design system for the freelance-creative demo (Lena Hartmann).

   Warm EDITORIAL look: cream paper, a serif display face, terracotta accent,
   a portrait hero and hand-set details. Distinct from the IT demo (light-blue
   sans) and the owner's dark portfolio.
   ========================================================================== */

:root {
  --paper:     #faf5ee;
  --paper-2:   #f2e9dc;   /* tinted panels */
  --card:      #fffdf9;
  --ink:       #241d17;
  --ink-2:     #4a4038;
  --muted:     #6f6459;
  --muted-2:   #9a8d7e;

  --accent:    #c65a3f;   /* terracotta */
  --accent-2:  #7c7a4a;   /* olive */
  --accent-050:#f6e7df;
  --dark:      #2a211b;   /* warm dark band */
  --on-dark:   #ece2d4;
  --on-dark-mut:#b3a493;

  --line:      #e4d8c6;
  --line-2:    #d8c9b3;

  --radius:   20px;
  --radius-sm:13px;
  --wrap: 1120px;
  --pad: clamp(20px, 5vw, 40px);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow:    0 26px 60px -30px rgba(58, 40, 26, .35);
  --shadow-sm: 0 12px 30px -20px rgba(58, 40, 26, .3);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; font-family: var(--sans); color: var(--ink-2);
  background: var(--paper); line-height: 1.7; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0 0 .5em; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
h4 { margin: 0 0 .5em; font-family: var(--sans); }
p  { margin: 0 0 1rem; overflow-wrap: break-word; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.center { text-align: center; }
.accent { color: var(--accent); font-style: italic; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* eyebrow: a dash + small caps, not a pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em; margin: 0 0 1.1rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
.eyebrow i { display: none; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--muted); max-width: 60ch; }

/* buttons — pill, warm */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; font-family: var(--sans); font-weight: 600; font-size: .98rem; line-height: 1; padding: 13px 24px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn i, .btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -14px rgba(198,90,63,.7); }
.btn-primary:hover { transform: translateY(-2px); background: #b34e35; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-on-dark { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-on-dark:hover { background: rgba(255,255,255,.2); }

/* nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,245,238,.86); backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 20px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark .mark-ring { stroke: var(--accent); }
.brand-mark .mark-spark { fill: var(--accent); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.24rem; color: var(--ink); }
.brand-sub { font-size: .7rem; color: var(--muted-2); letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.nav-links > li { display: flex; }
.nav-links a { padding: 9px 14px; border-radius: 999px; color: var(--ink-2); font-weight: 500; font-size: .96rem; transition: color .15s, background .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--accent-050); }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--ink) !important; font-weight: 600; }
.nav-phone i { width: 16px; height: 16px; color: var(--accent); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 10px 20px !important; }
.nav-cta:hover { background: #b34e35 !important; transform: translateY(-1px); }
.nav-burger { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 999px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line-2); background: var(--card); }
.nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links { position: fixed; inset: 74px 0 auto 0; margin: 0; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px var(--pad) 24px; background: var(--paper); border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .28s ease; box-shadow: var(--shadow); max-height: calc(100vh - 74px); overflow-y: auto; }
  .nav-toggle:checked ~ .nav-links { transform: translateY(0); }
  .nav-links a { padding: 13px; font-size: 1.05rem; }
  .nav-cta, .nav-phone { justify-content: center; }
  .nav-cta-li, .nav-phone-item { margin-top: 6px; }
}

/* sections */
.section { position: relative; padding: clamp(64px, 9vw, 122px) 0; }
.section-alt { background: var(--paper-2); }
.section-head { max-width: 60ch; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.head-center { margin-inline: auto; text-align: center; }
.section-head.head-center .eyebrow::before { display: none; }
.section-head .lead { margin-top: .5rem; }
.section-dark { position: relative; background: var(--dark); color: var(--on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead { color: var(--on-dark-mut); }
.section-dark .eyebrow { color: #e6a58f; }
.section-dark .eyebrow::before { background: #e6a58f; }

/* ---- hero (editorial split + portrait) --------------------------------- */
.pe-hero { position: relative; overflow: hidden; padding: clamp(60px, 9vw, 120px) 0 clamp(56px, 8vw, 100px); background: radial-gradient(70% 90% at 88% 0%, var(--accent-050), transparent 60%), var(--paper); }
.pe-hero-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 920px) { .pe-hero-grid { grid-template-columns: 1fr; } }
.pe-hero-text h1 { margin-bottom: .3em; }
.hero-sub { font-size: clamp(1.08rem, 1.9vw, 1.34rem); color: var(--muted); max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
@media (max-width: 460px) { .hero-cta .btn { width: 100%; } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 26px 0 0; padding: 0; list-style: none; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); font-style: italic; font-family: var(--serif); }
.hero-badges i { width: 15px; height: 15px; color: var(--accent); }

.pe-hero-aside { position: relative; }
.pe-portrait { position: relative; aspect-ratio: 4/5; border-radius: 160px 160px 22px 22px; overflow: hidden; background: linear-gradient(165deg, #d98b6e, #c65a3f 55%, #8f4633); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.pe-monogram { font-family: var(--serif); font-size: clamp(3rem, 8vw, 5rem); color: rgba(255,255,255,.9); font-weight: 700; letter-spacing: .02em; }
.pe-portrait-tag { position: absolute; bottom: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.pe-portrait-tag i { width: 20px; height: 20px; }
.pe-avail { position: relative; margin: -34px 0 0 -14px; margin-left: auto; width: min(88%, 300px); background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-sm); }
.pe-avail-head { display: flex; align-items: center; gap: 9px; font-weight: 650; font-size: .95rem; color: var(--ink); }
.pe-dot { width: 9px; height: 9px; border-radius: 50%; background: #4f9d5f; box-shadow: 0 0 0 4px rgba(79,157,95,.18); }
.pe-avail ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.pe-avail li { position: relative; padding-left: 18px; font-size: .9rem; color: var(--muted); }
.pe-avail li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.pe-avail-note { margin: 12px 0 0; font-size: .82rem; color: var(--muted-2); font-style: italic; }

/* trust */
.trust { background: var(--card); border-block: 1px solid var(--line); padding: clamp(40px, 5vw, 60px) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: 30px; }
.trust-item i { width: 24px; height: 24px; color: var(--accent); margin-bottom: 12px; }
.trust-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.trust-item p { font-size: .92rem; color: var(--muted); margin: 0; }

/* services — warm cards, circular icon */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 24px; }
.service-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; transition: transform .2s, box-shadow .2s; min-width: 0; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--accent-050); color: var(--accent); margin-bottom: 18px; }
.service-icon i { width: 26px; height: 26px; }
.service-media { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/10; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 1.35rem; }
.service-card p { color: var(--muted); }
.service-bullets { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.service-bullets li { position: relative; padding-left: 22px; font-size: .9rem; color: var(--ink-2); }
.service-bullets li::before { content: "✳"; position: absolute; left: 0; color: var(--accent); font-size: .8rem; top: .15em; }

/* story */
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(30px, 5vw, 62px); align-items: center; }
.story-body { min-width: 0; }
.story-text { color: var(--muted); font-size: 1.08rem; }
.story-text strong { color: var(--ink); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr)); gap: 24px; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line); }
.stat-value { font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 2.7rem); font-weight: 700; color: var(--accent); }
.stat-label { font-size: .86rem; color: var(--muted-2); margin-top: 2px; }
.story-figure { border-radius: 30px 30px 30px 120px; overflow: hidden; min-height: 300px; box-shadow: var(--shadow); }
.story-figure img { width: 100%; height: 100%; object-fit: cover; }
.story-figure.is-empty { background: linear-gradient(160deg, #e7d3c4, #c65a3f); }

/* steps — on the warm dark band */
.steps-grid { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 24px; }
.step { counter-increment: step; position: relative; padding: 8px 0 0; border-top: 2px solid rgba(255,255,255,.16); min-width: 0; }
.step::before { content: counter(step); font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: #e6a58f; display: block; margin-bottom: 8px; }
.step h3 { font-size: 1.2rem; color: #fff; }
.step p { color: var(--on-dark-mut); font-size: .95rem; margin: 0; }

/* testimonials — big editorial quotes */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 26px; }
.quote-card { background: transparent; padding: 8px 4px; display: flex; flex-direction: column; min-width: 0; }
.quote-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--accent); }
.quote-stars i { width: 16px; height: 16px; fill: currentColor; }
.quote-card blockquote { margin: 0 0 18px; font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.quote-meta { margin-top: auto; }
.quote-author { font-weight: 650; }
.quote-place { font-size: .86rem; color: var(--muted-2); }

/* faq */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item summary { cursor: pointer; list-style: none; padding: 22px 4px; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-weight: 300; font-size: 1.7rem; line-height: 1; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 4px 22px; color: var(--muted); }
.faq-answer p { margin: 0 0 .7em; }
.faq-answer strong { color: var(--ink); }

/* contact / CTA */
.cta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(28px, 4vw, 52px); align-items: center; }
.cta-body { min-width: 0; }
.contact-panel { background: var(--dark); color: var(--on-dark); border-radius: var(--radius); padding: 36px; min-width: 0; }
.contact-panel h3 { color: #fff; font-size: 1.4rem; }
.panel-lead { color: var(--on-dark-mut); }
.contact-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci { flex: none; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); color: #e6a58f; display: inline-flex; align-items: center; justify-content: center; }
.ci i { width: 20px; height: 20px; }
.contact-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--on-dark-mut); }
.contact-value { font-weight: 640; color: #fff; }
.contact-value a { color: #fff; }
.contact-value .small { display: block; font-weight: 400; font-size: .88rem; color: var(--on-dark-mut); white-space: pre-line; }

/* footer */
.footer { background: var(--dark); color: var(--on-dark-mut); padding: clamp(50px, 6vw, 76px) 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 820px) { .footer-top { grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); } }
.footer .brand { margin-bottom: 14px; }
.footer .brand-name { color: #fff; }
.footer .brand-mark .mark-ring { stroke: #e6a58f; }
.footer .brand-mark .mark-spark { fill: #e6a58f; }
.footer-about { color: var(--on-dark-mut); font-size: .9rem; max-width: 42ch; }
.footer h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: #e7d8c8; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--on-dark-mut); font-size: .93rem; }
.footer a:hover { color: #fff; }
.contact-line { display: flex; gap: 10px; align-items: flex-start; color: var(--on-dark-mut); font-size: .93rem; }
.contact-line a { color: var(--on-dark-mut); }
.contact-line a:hover { color: #fff; }
.contact-line i { width: 16px; height: 16px; color: #e6a58f; flex: none; margin-top: 3px; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; color: var(--on-dark-mut); font-size: .84rem; }
.footer-bottom nav { display: flex; gap: 18px; }

/* call bar */
.call-bar { display: none; }
@media (max-width: 640px) {
  .call-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; gap: 1px; background: var(--line-2); border-top: 1px solid var(--line-2); padding-bottom: env(safe-area-inset-bottom); }
  .call-bar a { flex: 1 1 0; min-width: 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 8px; font-weight: 650; font-size: .96rem; }
  .call-bar i { width: 18px; height: 18px; }
  .cb-call { background: var(--card); color: var(--ink); }
  .cb-quote { background: var(--accent); color: #fff; }
  body { padding-bottom: 60px; }
}

/* full-bleed background media */
.has-bg-media, .hero-has-media { position: relative; }
.has-bg-media > .wrap, .hero-has-media > .wrap { position: relative; z-index: 2; }
.dd-bg-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.dd-bg-el { width: 100%; height: 100%; object-fit: cover; }
.dd-bg-video-poster { position: absolute; inset: 0; display: none; }
.dd-bg-overlay { position: absolute; inset: 0; z-index: 1; }
.dd-bg-overlay.ov-light  { background: linear-gradient(180deg, rgba(42,33,27,.5), rgba(42,33,27,.66)); }
.dd-bg-overlay.ov-medium { background: linear-gradient(180deg, rgba(42,33,27,.7), rgba(42,33,27,.82)); }
.dd-bg-overlay.ov-strong { background: linear-gradient(180deg, rgba(42,33,27,.85), rgba(42,33,27,.93)); }
@media (prefers-reduced-motion: reduce) { .dd-bg-video { display: none; } .dd-bg-video-poster { display: block; } }

/* ==========================================================================
   BESPOKE EDITORIAL STRUCTURES (Personal only)
   Distinct DOM from the other demos: left-set section heads, a numbered ledger
   instead of service cards, a vertical timeline instead of a step grid, an
   inline values strip instead of a trust grid, oversized stacked pull-quotes,
   and a statement-style close instead of a two-column contact panel.
   ========================================================================== */

/* left-aligned editorial section head with a hanging accent rule */
.pe-sec-head { max-width: 62ch; margin-bottom: clamp(38px, 5vw, 60px); }
.pe-sec-head h2 { position: relative; }
.pe-sec-head .lead { margin-top: .8rem; }
.section-dark .pe-sec-head .lead { color: var(--on-dark-mut); }

/* --- services → numbered ledger ----------------------------------------- */
.pe-ledger { border-top: 1px solid var(--line-2); }
.pe-ledger-row {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(18px, 4vw, 52px);
  align-items: start; padding: clamp(26px, 3.6vw, 44px) 0; border-bottom: 1px solid var(--line-2);
  transition: background .2s;
}
.pe-ledger-row:hover { background: linear-gradient(90deg, var(--accent-050), transparent 70%); }
.pe-ledger-num { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; color: var(--accent); line-height: 1; padding-top: .1em; font-variant-numeric: tabular-nums; }
.pe-ledger-main { min-width: 0; }
.pe-ledger-main h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: .35em; }
.pe-ledger-main p { color: var(--muted); max-width: 60ch; margin: 0; }
.pe-ledger-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 18px 0 0; padding: 0; }
.pe-ledger-tags li { font-family: var(--sans); font-size: .78rem; letter-spacing: .02em; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; }
.pe-ledger-media { width: clamp(120px, 16vw, 210px); aspect-ratio: 4/5; border-radius: 14px 14px 14px 60px; overflow: hidden; box-shadow: var(--shadow-sm); }
.pe-ledger-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .pe-ledger-row { grid-template-columns: auto 1fr; }
  .pe-ledger-media { grid-column: 1 / -1; width: 100%; aspect-ratio: 16/9; border-radius: 14px; }
}

/* --- process → vertical timeline ---------------------------------------- */
.pe-timeline { list-style: none; margin: 0; padding: 0; position: relative; max-width: 760px; }
.pe-timeline::before { content: ""; position: absolute; left: 23px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(rgba(230,165,143,.55), rgba(230,165,143,.12)); }
.pe-tl-item { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 22px; padding: 0 0 clamp(30px, 4vw, 46px); }
.pe-tl-item:last-child { padding-bottom: 0; }
.pe-tl-marker { position: relative; z-index: 1; width: 48px; height: 48px; border-radius: 50%; background: var(--dark); border: 2px solid #e6a58f; display: flex; align-items: center; justify-content: center; }
.pe-tl-marker span { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: #f3d9cc; font-variant-numeric: tabular-nums; }
.pe-tl-body { padding-top: 6px; min-width: 0; }
.pe-tl-body h3 { color: #fff; font-size: 1.3rem; margin-bottom: .3em; }
.pe-tl-body p { color: var(--on-dark-mut); margin: 0; }

/* --- trust → aligned 2-column values grid with hairline dividers -------- */
.pe-values-band { background: var(--card); border-block: 1px solid var(--line); padding: 0; }
.pe-values { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.pe-value { display: flex; align-items: flex-start; gap: 14px; padding: clamp(20px, 2.6vw, 30px) clamp(20px, 3vw, 40px); min-width: 0; border-top: 1px solid var(--line); }
.pe-value:nth-child(-n+2) { border-top: 0; }
.pe-value:nth-child(odd) { border-right: 1px solid var(--line); }
.pe-value > i { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.pe-value-text { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.pe-value-text strong { font-family: var(--serif); font-size: 1.12rem; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.pe-value-text span { font-size: .9rem; color: var(--muted); }
@media (max-width: 640px) {
  .pe-values { grid-template-columns: 1fr; }
  .pe-value { border-right: 0; border-top: 1px solid var(--line); }
  .pe-value:first-child { border-top: 0; }
}

/* --- testimonials → stacked pull-quotes ---------------------------------- */
.pe-quotes { max-width: 900px; }
.pe-quote { margin: 0; padding: clamp(28px, 4vw, 46px) 0; border-top: 1px solid var(--line-2); }
.pe-quote:first-child { border-top: 0; padding-top: 0; }
.pe-quote blockquote { margin: 0 0 18px; font-family: var(--serif); font-style: italic; font-weight: 600; font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.32; color: var(--ink); letter-spacing: -.01em; }
.pe-quote figcaption { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }
.pe-quote-author { font-weight: 650; color: var(--ink); }
.pe-quote-author::before { content: "— "; color: var(--accent); }
.pe-quote-meta { font-size: .9rem; color: var(--muted-2); font-style: italic; }

/* --- contact → editorial statement close --------------------------------- */
.pe-contact { text-align: left; }
.pe-contact-line { font-size: clamp(2.1rem, 5.6vw, 4rem); max-width: 16ch; margin-bottom: .3em; }
.pe-contact .lead { max-width: 54ch; }
.pe-contact-email { display: inline-flex; align-items: center; gap: .3em; margin: 18px 0 8px; font-family: var(--serif); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; transition: color .15s; }
.pe-contact-email i { width: .7em; height: .7em; }
.pe-contact-email:hover { color: #b34e35; }
.pe-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
@media (max-width: 460px) { .pe-contact-actions .btn { width: 100%; } }
.pe-contact-meta { display: flex; flex-wrap: wrap; gap: 8px 26px; margin: 28px 0 0; color: var(--muted); font-size: .92rem; }
.pe-contact-meta span { display: inline-flex; align-items: center; gap: 8px; }
.pe-contact-meta i { width: 16px; height: 16px; color: var(--accent); }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
