/* =====================================================================
   pages.css  —  McKim & Co. page-layout layer
   ---------------------------------------------------------------------
   Consolidates the per-page <style> blocks that used to live inline in
   Default / Products / About / Contact / Events .aspx files.

   LOAD ORDER (in Site.Master <head>):
     1. bootstrap.min.css   (CDN)
     2. /Content/site.css
     3. /Content/brand.css   (design tokens + chrome + shared utilities)
     4. /Content/pages.css   (THIS FILE — page layout; must load LAST)

   SCOPING RULE
     Each marketing page's rules are scoped under that page's wrapper
     class (.home-wrap / .products-wrap / .about-wrap / .contact-wrap)
     so identically-named classes on different pages can never collide.
     Two classes (.causes-intro and the modal styles) genuinely differed
     between pages; scoping preserves each page's original rendering.

     Events uses unique class names, so its rules stay global (unscoped).

   This file consumes the design tokens (--ink, --signal, --serif, ...)
   defined once in brand.css :root. It defines no tokens of its own.
   ===================================================================== */


/* =====================================================================
   SHARED — Learn More modal (used by Home and Events)
   Promoted from two near-identical inline copies to one definition.
   Uses brand tokens (was #6c757d / #333 in the Events copy).
   ===================================================================== */
.modal-event-title { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.modal-event-meta  { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.modal-event-body  { font-size: 14px; color: var(--ink); white-space: pre-wrap; }


/* =====================================================================
   HOME  (Default.aspx)  —  scoped under .home-wrap
   ===================================================================== */
.home-wrap { max-width: 960px; margin: 0 auto; }
.home-wrap > section { padding: 56px 0; border-bottom: 1px solid var(--paper-3); }
.home-wrap > section:last-child { border-bottom: none; }

/* HERO */
.home-wrap .hero { padding-top: 36px; }
.home-wrap .hero-headline { font-size: clamp(38px, 6vw, 72px); margin: 16px 0 26px; max-width: 32ch; }
.home-wrap .hero-deck { font-family: var(--serif); font-size: clamp(18px, 2.2vw, 24px);
             line-height: 1.45; color: var(--muted); max-width: 66ch; margin-bottom: 30px; }
.home-wrap .hero-cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* FAILURE BAND (dark) */
.home-wrap .fail-band { padding: 48px 40px; border-radius: 5px; }
.home-wrap .fail-headline { font-size: clamp(26px, 3.6vw, 42px); margin: 14px 0 36px; max-width: none }
.home-wrap .fail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.home-wrap .fail-fig { font-family: var(--serif); font-size: clamp(34px, 4.6vw, 54px);
            line-height: 1; color: var(--signal); letter-spacing: -0.02em; }
.home-wrap .fail-desc { font-size: 14px; font-weight: 600; color: var(--paper); margin-top: 10px; }
.home-wrap .fail-src { font-size: 11px; color: rgba(245,244,240,0.6); line-height: 1.5; margin-top: 8px; }
.home-wrap .fail-thesis { font-family: var(--serif); font-size: 16px; line-height: 1.6;
               color: rgba(245,244,240,0.85); max-width: none; margin: 40px 0 0;
               padding-top: 26px; border-top: 1px solid rgba(245,244,240,0.15); }

/* BRIDGE PULLQUOTE */
.home-wrap .bridge { text-align: center; }
.home-wrap .bridge .pullquote { max-width: 42ch; margin: 0 auto; }
.home-wrap .bridge .pullquote em { color: var(--steel); }
.home-wrap .bridge-attr { font-family: var(--mono); font-size: 11px; text-transform: uppercase;
               letter-spacing: 0.12em; color: var(--muted); margin-top: 18px; }

/* CAUSES (condensed) */
.home-wrap .causes-headline { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; }
.home-wrap .causes-intro { font-family: var(--serif); font-size: 18px; line-height: 1.55;
                color: var(--muted); max-width: 78ch; margin-bottom: 36px; }
.home-wrap .causes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.home-wrap .cause-num { font-family: var(--mono); font-size: 12px; color: var(--signal);
             font-weight: 600; margin-bottom: 8px; }
.home-wrap .cause-title { font-family: var(--serif); font-weight: 600; font-size: 17px;
               line-height: 1.3; margin-bottom: 8px; }
.home-wrap .cause-body { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* PROOF (marquee) */
.home-wrap .proof-headline { font-size: clamp(24px, 3vw, 36px); margin: 14px 0 36px; }
.home-wrap .proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.home-wrap .proof-stat .stat-figure { font-size: clamp(40px, 5vw, 60px); }

/* WEBINAR / EVENTS STRIP */
.home-wrap .events-headline { font-size: clamp(22px, 3vw, 32px); margin: 14px 0 28px; }
.home-wrap .event-card { border: 1px solid var(--paper-3); border-radius: 5px;
              padding: 20px; background: #fff; height: 100%; }
.home-wrap .event-time { font-family: var(--mono); font-size: 11px; text-transform: uppercase;
              letter-spacing: 0.08em; color: var(--signal); margin-bottom: 8px; }
.home-wrap .event-title { font-family: var(--serif); font-weight: 600; font-size: 17px;
               line-height: 1.3; margin-bottom: 8px; }
.home-wrap .event-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }

@media (max-width: 700px) {
  .home-wrap .fail-grid { grid-template-columns: 1fr 1fr; }
  .home-wrap .causes-grid, .home-wrap .proof-grid { grid-template-columns: 1fr; }
}


/* =====================================================================
   PRODUCTS  (Products.aspx)  —  scoped under .products-wrap
   ===================================================================== */
.products-wrap { max-width: 960px; margin: 0 auto; }
.products-wrap > section { padding: 52px 0; border-bottom: 1px solid var(--paper-3); }
.products-wrap > section:last-child { border-bottom: none; }

/* HEADER */
.products-wrap .prod-headline { font-size: clamp(32px, 4.5vw, 52px); margin: 14px 0 16px; }
.products-wrap .prod-deck { font-family: var(--serif); font-size: clamp(17px, 2vw, 21px);
             color: var(--muted); max-width: 52ch; margin: 0; }

/* THESIS */
.products-wrap .thesis { text-align: center; }
.products-wrap .thesis .pullquote {
    max-width: 56ch; margin: 0 auto;
    background: var(--signal); color: var(--paper);
    padding: 32px 40px; border-radius: 3px;
  }
.products-wrap .thesis .pullquote em { color: #FFFFFF; font-weight: 600; }
.products-wrap .thesis-attr { font-family: var(--mono); font-size: 11px; text-transform: uppercase;
               letter-spacing: 0.12em; color: var(--muted); margin-top: 18px; }

/* CAUSES (expanded list) */
.products-wrap .causes-headline { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; }
.products-wrap .causes-intro { font-family: var(--serif); font-size: 18px; line-height: 1.55;
                color: var(--muted); max-width: none; margin-bottom: 30px; }
/* CAUSES — 5-up column grid (fits 960px) */
.products-wrap .causes-grid5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(15,20,25,0.10);   /* the hairline dividers */
  border: 1px solid rgba(15,20,25,0.10);
}
.products-wrap .cause-col { background: var(--paper); padding: 22px 16px 26px; }
.products-wrap .cause-col .cause-num   { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
                          color: var(--signal); font-weight: 600; margin-bottom: 14px; }
.products-wrap .cause-col .cause-title { font-family: var(--serif); font-weight: 600; font-size: 15px;
                          line-height: 1.28; letter-spacing: -0.01em; margin-bottom: 10px;
                          color: var(--ink); }
.products-wrap .cause-col .cause-body  { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

@media (max-width: 820px) { .products-wrap .causes-grid5 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 480px) { .products-wrap .causes-grid5 { grid-template-columns: 1fr; } }

/* METHOD */
.products-wrap .method-headline { font-size: clamp(26px, 3.4vw, 40px); margin: 14px 0 14px; }
.products-wrap .method-sub { font-family: var(--serif); font-size: 17px; line-height: 1.55;
              color: var(--muted); max-width: none; margin-bottom: 26px; }
.products-wrap .mike-quote { border-left: 3px solid var(--signal); padding: 6px 0 6px 20px; margin: 0 0 32px; }
.products-wrap .mike-quote-text { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink); }
.products-wrap .mike-quote-attr { font-family: var(--mono); font-size: 11px; text-transform: uppercase;
                   letter-spacing: 0.1em; color: var(--muted); margin-top: 8px; }
/* METHOD — 5-up phase grid (fits 960px) */
.products-wrap .flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(15,20,25,0.10);
  border: 1px solid rgba(15,20,25,0.10);
}
.products-wrap .flow-step    { background: var(--paper); padding: 22px 16px 26px; }
.products-wrap .flow-marker  { font-family: var(--mono); font-size: 10px; text-transform: uppercase;
                letter-spacing: 0.12em; color: var(--steel); font-weight: 600; margin-bottom: 14px; }
.products-wrap .flow-name    { font-family: var(--serif); font-style: italic; font-weight: 400;
                font-size: 26px; line-height: 1.02; letter-spacing: -0.02em;
                margin-bottom: 6px; color: var(--ink); }
.products-wrap .flow-tagline { font-family: var(--serif); font-style: italic; color: var(--signal);
                font-size: 13px; line-height: 1.3; margin-bottom: 12px; }
.products-wrap .flow-detail  { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.products-wrap .flow-detail strong { color: var(--ink); font-weight: 600; }

@media (max-width: 820px) { .products-wrap .flow { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 480px) { .products-wrap .flow { grid-template-columns: 1fr; } }

/* OFFERINGS (catalog) */
.products-wrap .offerings-headline { font-size: clamp(24px, 3vw, 34px); margin: 0 0 10px; }
.products-wrap .offerings-intro { font-family: var(--serif); font-size: 17px; color: var(--muted);
                   max-width: none; margin-bottom: 28px; }
.products-wrap .product-row { border: 1px solid var(--paper-3); border-radius: 5px;
               padding: 24px 28px; margin-bottom: 18px; background: #fff;
               transition: box-shadow 0.2s; }
.products-wrap .product-row:hover { box-shadow: 0 2px 14px rgba(15,20,25,0.07); }
.products-wrap .product-name { font-family: var(--serif); font-size: 21px; font-weight: 600;
                color: var(--ink); margin-bottom: 8px; }
.products-wrap .product-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
.products-wrap .product-price-col { border-left: 1px solid var(--paper-3); padding-left: 24px;
                     text-align: center; display: flex; flex-direction: column;
                     justify-content: center; align-items: center; }
.products-wrap .product-price { font-family: var(--mono); font-size: 34px; font-weight: 600;
                 color: var(--steel); line-height: 1; margin-bottom: 4px; }
.products-wrap .product-price-label { font-family: var(--mono); font-size: 10px; color: var(--muted);
                       text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.products-wrap .price-login-prompt { font-size: 12px; color: var(--muted); font-style: italic; margin-bottom: 16px; }
.products-wrap .product-detail { display: none; margin-top: 16px; padding-top: 16px;
                  border-top: 1px solid var(--paper-3); font-size: 13px; color: var(--muted); }
@media (max-width: 768px) {
  .products-wrap .product-price-col { border-left: none; border-top: 1px solid var(--paper-3);
                       padding-left: 0; padding-top: 16px; margin-top: 16px; }
}


/* =====================================================================
   ABOUT  (About.aspx)  —  scoped under .about-wrap
   ===================================================================== */
.about-wrap { max-width: 920px; margin: 0 auto; }
.about-wrap > section { padding: 52px 0; border-bottom: 1px solid var(--paper-3); }
.about-wrap > section:last-child { border-bottom: none; }

/* WHO */
.about-wrap .who-headline { font-size: clamp(30px, 4.5vw, 46px); margin: 14px 0 30px; }
.about-wrap .who-lead { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 38px; }
.about-wrap .who-photo {
  width: 132px; height: 132px; border-radius: 4px; flex-shrink: 0; overflow: hidden;
  background: var(--paper-3); display: flex; align-items: center;
  justify-content: center; color: var(--muted); font-size: 46px;
}
.about-wrap .who-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-wrap .who-bio { font-family: var(--serif); font-size: 19px; line-height: 1.5; margin: 0; }
.about-wrap .who-role {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--steel); font-weight: 600; margin: 14px 0 0;
}
.about-wrap .who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule); margin-bottom: 44px;
}
.about-wrap .who-cell { background: var(--paper-3); padding: 24px; }
.about-wrap .who-cell-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--steel); font-weight: 600; margin-bottom: 8px;
}
.about-wrap .who-cell-val { font-family: var(--serif); font-size: 15px; line-height: 1.5; }
.about-wrap .who-cv-title { font-size: clamp(22px, 3vw, 30px); margin: 6px 0 16px; }
.about-wrap .sector { padding: 18px 0; border-top: 1px solid var(--paper-3); }
.about-wrap .sector-name { font-family: var(--serif); font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.about-wrap .sector-detail { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* STATS BAND (dark) */
.about-wrap .stats-band { padding: 48px 40px; border-radius: 5px; }
.about-wrap .stats-band .brand-display em { color: var(--signal); }   /* steel is too dark on ink */
.about-wrap .stats-headline { font-size: clamp(26px, 3.5vw, 38px); margin: 14px 0 38px; max-width: 22ch; }
.about-wrap .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 40px; }
.about-wrap .stat-context { font-size: 13px; color: rgba(245,244,240,0.7); line-height: 1.55; margin-top: 8px; }

/* PRINCIPLES */
.about-wrap .principles-headline { font-size: clamp(24px, 3vw, 34px); margin: 14px 0 4px; }
.about-wrap .principles-sub { font-family: var(--serif); font-style: italic; color: var(--muted); margin: 8px 0 26px; }
.about-wrap .principle { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid var(--paper-3); }
.about-wrap .principle-num { font-family: var(--mono); font-size: 13px; color: var(--signal); font-weight: 600; flex-shrink: 0; padding-top: 3px; }
.about-wrap .principle-title { font-family: var(--serif); font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.about-wrap .principle-body { font-size: 14px; color: var(--muted); line-height: 1.65; }
    /* HERO ---------------------------------------------------------------- */
    .about-wrap .hero-provenance {
        display: flex;
        align-items: center;
        gap: 16px;
        margin: 0 0 40px;
    }

        .about-wrap .hero-provenance::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--paper-3);
            max-width: 160px;
        }

    .about-wrap .hero-statement {
        font-size: clamp(40px, 6vw, 84px);
        line-height: 1.0;
        letter-spacing: -0.03em;
        max-width: 18ch;
        margin: 0 0 56px;
    }

        .about-wrap .hero-statement .hero-light {
            display: block;
            font-weight: 300;
            font-style: italic;
            color: var(--muted);
        }

        .about-wrap .hero-statement .hero-heavy {
            display: block;
            font-weight: 600;
            color: var(--ink);
        }

    /* PROSPECTUS — two structured columns under the statement ------------- */
    .about-wrap .prospectus {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-top: 1px solid var(--rule);
    }

    .about-wrap .prospectus-col {
        padding: 32px 40px 8px 0;
        border-right: 1px solid var(--paper-3);
    }

        .about-wrap .prospectus-col:last-child {
            border-right: none;
            padding-right: 0;
            padding-left: 40px;
        }

    .about-wrap .prospectus-label {
        font-family: var(--mono);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 18px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--paper-3);
    }

    .about-wrap .prospectus-body {
        font-size: 14px;
        line-height: 1.75;
        color: var(--ink);
    }

        .about-wrap .prospectus-body p {
            margin: 0 0 14px;
            color: var(--ink);
        }

            .about-wrap .prospectus-body p:last-child {
                margin-bottom: 0;
            }

    /* THE WORK — dark band + 5-up phase grid ----------------------------- */
    .about-wrap .work-band {
        padding: 48px 40px;
        border-radius: 5px;
    }

    .about-wrap .work-headline {
        font-size: clamp(26px, 3.6vw, 44px);
        margin: 12px 0 14px;
        max-width: 22ch;
    }

    .about-wrap .work-intro {
        font-family: var(--serif);
        font-size: 16px;
        line-height: 1.6;
        color: rgba(245,244,240,0.75);
        max-width: 60ch;
        margin: 0;
    }

    .about-wrap .phase-grid {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        margin-top: 36px;
        border-top: 1px solid rgba(245,244,240,0.18);
    }

    .about-wrap .phase {
        padding: 26px 22px 8px 0;
        border-right: 1px solid rgba(245,244,240,0.12);
    }

        .about-wrap .phase:last-child {
            border-right: none;
            padding-right: 0;
        }

    .about-wrap .phase-num {
        font-family: var(--mono);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.12em;
        color: var(--signal);
        margin-bottom: 20px;
    }

    .about-wrap .phase-name {
        font-family: var(--serif);
        font-style: italic;
        font-weight: 400;
        font-size: clamp(24px, 2.6vw, 32px);
        line-height: 1.0;
        letter-spacing: -0.02em;
        color: var(--paper);
        margin-bottom: 12px;
    }

    .about-wrap .phase-rule {
        width: 22px;
        height: 1px;
        background: var(--signal);
        margin-bottom: 12px;
    }

    .about-wrap .phase-body {
        font-size: 12.5px;
        line-height: 1.65;
        color: rgba(245,244,240,0.62);
    }

    /* RESPONSIVE (these are NEW breakpoints; keep the existing About 640px
       media block as-is) -------------------------------------------------- */
    @media (max-width: 820px) {
        .about-wrap .phase-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .about-wrap .phase {
            padding-right: 0;
        }

            .about-wrap .phase:nth-child(2n) {
                border-right: none;
            }
    }

    @media (max-width: 700px) {
        .about-wrap .prospectus {
            grid-template-columns: 1fr;
        }

        .about-wrap .prospectus-col {
            border-right: none;
            padding: 24px 0 8px;
            border-bottom: 1px solid var(--paper-3);
        }

            .about-wrap .prospectus-col:last-child {
                padding-left: 0;
                border-bottom: none;
            }
    }

    @media (max-width: 480px) {
        .about-wrap .phase-grid {
            grid-template-columns: 1fr;
        }

        .about-wrap .phase {
            border-right: none;
            padding-right: 0;
        }
    }

@media (max-width: 640px) {
  .about-wrap .who-grid, .about-wrap .stats-grid { grid-template-columns: 1fr; }
  .about-wrap .who-lead { flex-direction: column; }
}


/* =====================================================================
   CONTACT  (Contact.aspx)  —  scoped under .contact-wrap
   ===================================================================== */
.contact-wrap { max-width: 900px; margin: 0 auto; }

.contact-wrap .contact-head { margin-bottom: 28px; padding-bottom: 18px;
                border-bottom: 1px solid var(--paper-3); }
.contact-wrap .contact-head h2 { margin: 8px 0 0; }

/* Direct-contact panel */
.contact-wrap .contact-info { background: var(--paper-2);
                border: 1px solid var(--paper-3);
                border-radius: 5px; padding: 24px; margin-bottom: 24px; }
.contact-wrap .contact-info h4 { margin: 0 0 14px; font-family: var(--mono);
                   font-size: 11px; letter-spacing: 0.12em;
                   text-transform: uppercase; color: var(--steel);
                   font-weight: 600; }
.contact-wrap .contact-lead { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.contact-wrap .contact-item { display: flex; align-items: flex-start; gap: 10px;
                margin-bottom: 12px; font-size: 14px; color: var(--ink); }
.contact-wrap .contact-icon { color: var(--steel); font-size: 16px; margin-top: 2px;
                flex-shrink: 0; }

/* Form chrome → brand */
.contact-wrap .panel { border: 1px solid var(--paper-3);
                       border-radius: 5px; box-shadow: none; }
.contact-wrap .panel-heading { background: var(--paper-2);
                               border-bottom: 1px solid var(--paper-3); }
.contact-wrap .panel-title { font-family: var(--serif);
                             font-size: 18px; color: var(--ink); }
.contact-wrap .form-group label { font-family: var(--mono);
                                   font-size: 11px; letter-spacing: 0.06em;
                                   text-transform: uppercase;
                                   color: var(--muted); font-weight: 600; }
.contact-wrap .text-danger { color: var(--danger) !important; }


/* =====================================================================
   EVENTS  (Events.aspx)  —  unique class names, kept global
   (Modal styles are in the SHARED section at the top of this file.)
   ===================================================================== */
.events-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f8f9fa;
}
.events-table td {
  vertical-align: middle !important;
  font-size: 13px;
}
.status-open      { color:#5cb85c; font-weight:600; }
.status-closed    { color:#f0ad4e; font-weight:600; }
.status-completed { color:#6c757d; font-weight:600; }
.event-title-cell { font-weight:600; font-size:14px; }
.event-short-desc { font-size:12px; color:#6c757d;
                    margin-top:4px; }
.suggest-panel    { background:#f8f9fa;
                    border:1px solid #dee2e6;
                    border-radius:6px;
                    padding:20px 24px;
                    margin-top:24px; }
.suggest-panel h4 { margin-top:0; }

/* ============================================================
   TESTIMONIALS  —  shared global content, three placements
   Card treatment mirrors the founder .who-cell boxes: a tinted
   --paper-3 panel that stands out from the --paper page background,
   with a --signal top bar and a --rule hairline between quote and
   attribution, so each quote reads as a discrete card rather than a
   run of inserted paragraphs. 2-up grid; collapses to 1 on mobile.
   ============================================================ */

/* shared card shell + attribution (Home strip + full quote cards) */
.home-wrap .tcard, .about-wrap .tquote-full, .products-wrap .tquote-full {
    margin: 0; padding: 26px 28px; background: var(--paper-3);
    border-top: 3px solid var(--signal); }
.home-wrap .tattr, .about-wrap .tattr, .products-wrap .tattr {
    display: block; margin-top: 16px; padding-top: 14px;
    border-top: 1px solid var(--rule); }
.home-wrap .tname, .about-wrap .tname, .products-wrap .tname {
    display: block; font-family: var(--serif); font-weight: 600;
    font-size: 14px; color: var(--ink); }
.home-wrap .trole, .about-wrap .trole, .products-wrap .trole {
    display: block; font-family: var(--mono); font-size: 10.5px;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--steel); margin-top: 4px; }

/* Home — compact strip, short pull-quotes */
.home-wrap .testimonials { text-align: center; }
.home-wrap .tstrip { display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; max-width: 900px; margin: 22px auto 0; align-items: start; }
.home-wrap .tcard { text-align: left; }
.home-wrap .tquote { margin: 0; padding: 0; border: 0;
    font-family: var(--serif); font-style: italic; font-size: 17px;
    line-height: 1.5; color: var(--ink); }
.home-wrap .tquote::before { content: "\201C"; }
.home-wrap .tquote::after  { content: "\201D"; }
@media (max-width: 700px) { .home-wrap .tstrip { grid-template-columns: 1fr; } }

/* About + Products — full quotes, 2-up cards */
.about-wrap .testimonials-headline, .products-wrap .testimonials-headline {
    font-size: clamp(24px, 3vw, 34px); margin: 12px 0 28px; }
.about-wrap .tlist, .products-wrap .tlist {
    display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.about-wrap .tquote-body, .products-wrap .tquote-body {
    margin: 0; padding: 0; border: 0;
    font-family: var(--serif); font-size: 14px; line-height: 1.6; color: var(--ink); }
@media (max-width: 760px) {
    .about-wrap .tlist, .products-wrap .tlist { grid-template-columns: 1fr; } }
