/* ==========================================================================
   About page

   The prose block is styled generically (h1/h2/p/em/strong/ul) rather than by
   class, because its HTML comes from the page editor — whatever the client
   writes there has to land looking right without extra markup.
   ========================================================================== */

/* ---------- banner ---------- */

.ev-about__banner {
    --ev-about-image: none;
    position: relative;
    min-height: clamp(300px, 36vw, 480px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6vw, 90px) var(--ev-gutter);
    background-image: linear-gradient(180deg, rgba(5, 13, 31, .35), rgba(5, 13, 31, .85)), var(--ev-about-image);
    background-color: var(--ev-navy-deep);
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--ev-bronze);
}
.ev-about__banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.ev-about__eyebrow {
    font-family: var(--ev-font-body);
    font-size: 11px;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--ev-cream);
}
.ev-about__title {
    margin: 0;
    font-family: var(--ev-font-display);
    font-weight: 400;
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: .05em;
    color: var(--ev-white);
    text-wrap: balance;
}

/* ---------- narrative ---------- */

.ev-about__prose {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(44px, 5.5vw, 90px) var(--ev-gutter);
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* Section headings. The old copy uses <h1> for every section — restyled as
   section marks rather than page titles, since the banner is the page title. */
.ev-about__prose h1,
.ev-about__prose h2 {
    margin: clamp(18px, 2.4vw, 34px) 0 0;
    font-family: var(--ev-font-display);
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 27px);
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ev-cream);
    text-align: center;
}
.ev-about__prose h1:first-child,
.ev-about__prose h2:first-child { margin-top: 0; }

/* a hairline under each section mark */
.ev-about__prose h1::after,
.ev-about__prose h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 1px;
    margin: 18px auto 0;
    background: rgba(163, 152, 115, .55);
}
.ev-about__prose h1 strong,
.ev-about__prose h2 strong { font-weight: 400; }

.ev-about__prose h3,
.ev-about__prose h4 {
    margin: 0;
    font-family: var(--ev-font-display);
    font-weight: 400;
    font-size: 17px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ev-cream);
}

.ev-about__prose p {
    margin: 0;
    font-family: var(--ev-font-accent);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, .7);
    text-wrap: pretty;
}

/* a lone emphasised line reads as the lede */
.ev-about__prose p em,
.ev-about__prose em {
    display: block;
    font-family: var(--ev-font-accent);
    font-style: italic;
    font-size: clamp(21px, 2.2vw, 28px);
    line-height: 1.6;
    color: var(--ev-cream);
    text-align: center;
}

.ev-about__prose strong { color: var(--ev-cream); font-weight: 400; }

/* the editor's centred paragraphs carry the house's cadence — give them room */
.ev-about__prose .ql-align-center,
.ev-about__prose p[style*="center"] { text-align: center; }

.ev-about__prose ul,
.ev-about__prose ol {
    margin: 0;
    padding-inline-start: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--ev-font-accent);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, .7);
}
.ev-about__prose li::marker { color: var(--ev-gold); }

.ev-about__prose a { color: var(--ev-gold-bright); text-decoration: underline; text-underline-offset: 4px; }

/* an empty paragraph is the editor's spacer — don't let it collapse the gap */
.ev-about__prose p:empty,
.ev-about__prose p > br:only-child { display: none; }

/* ---------- figures band ---------- */

.ev-about__figures {
    background-image: linear-gradient(180deg, rgba(5, 13, 31, .86), rgba(5, 13, 31, .94)), var(--ev-bg-1);
    background-size: cover;
    background-position: center;
    border-block: 2px solid var(--ev-bronze);
    padding: clamp(44px, 5.5vw, 90px) var(--ev-gutter);
}
.ev-about__figures-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(24px, 3vw, 48px);
}
.ev-about__figure { display: flex; flex-direction: column; gap: 12px; }
.ev-about__figure-value {
    font-family: var(--ev-font-display);
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1;
    color: var(--ev-cream);
}
.ev-about__figure-label {
    font-family: var(--ev-font-body);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5);
}

/* ---------- atelier strip ---------- */

.ev-about__atelier {
    max-width: var(--ev-maxw);
    margin: 0 auto;
    padding: clamp(44px, 5.5vw, 90px) var(--ev-gutter);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(18px, 2.4vw, 32px);
}
.ev-about__frame {
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(163, 152, 115, .5);
}
.ev-about__frame img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}
