/* ============================================================
   Option 3 — Premium Professional Electrician
   Editorial, restrained, considered. Charcoal + brass + serif.
   ============================================================ */

:root {
    --o3-ink: #1A1F2B;
    --o3-ink-deep: #0F131C;
    --o3-paper: #F4F0EA;
    --o3-paper-warm: #ECE5DA;
    --o3-brass: #B8945A;
    --o3-brass-dark: #9A7842;
    --o3-line: rgba(26,31,43,0.12);
    --o3-line-soft: rgba(26,31,43,0.06);
    --o3-body: #3D4452;
    --o3-muted: #767E8E;
    --o3-radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--o3-ink);
    background: var(--o3-paper);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }

.o3-serif { font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif; }

.o3-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 720px) { .o3-container { padding: 0 20px; } }

/* ─── Demo badge ─── */
.o3-demo-badge {
    background: var(--o3-ink);
    color: var(--o3-paper);
    text-align: center;
    padding: 7px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}
.o3-demo-badge a { color: var(--o3-brass); text-decoration: none; }

/* ─── Header ─── */
.o3-header {
    background: var(--o3-paper);
    border-bottom: 1px solid var(--o3-line);
}
.o3-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 24px;
}
.o3-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--o3-ink);
}
.o3-logo__mark {
    width: 38px; height: 38px;
    background: var(--o3-ink);
    color: var(--o3-paper);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}
.o3-logo__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.005em;
    font-size: 1.4rem;
    line-height: 1;
}
.o3-logo__text small {
    display: block;
    font-family: 'Inter', sans-serif;
    color: var(--o3-muted);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-top: 6px;
    white-space: nowrap;
}
@media (max-width: 1180px) {
    .o3-logo__text small { display: none; }
}
.o3-logo__img {
    height: 48px;
    width: auto;
    display: block;
    flex: 0 0 auto;
}
.o3-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.o3-nav a {
    color: var(--o3-ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.94rem;
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
}
.o3-nav a:not(.o3-nav__cta):hover { color: var(--o3-brass-dark); }
.o3-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--o3-ink);
    border: 1px solid var(--o3-ink);
    color: var(--o3-paper) !important;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    line-height: 1;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    margin-left: 12px;
}
.o3-nav__cta:hover {
    background: var(--o3-brass-dark);
    border-color: var(--o3-brass-dark);
    color: var(--o3-paper) !important;
}
@media (max-width: 880px) {
    .o3-nav { gap: 18px; }
    .o3-nav a:not(.o3-nav__cta) { display: none; }
    .o3-nav__cta { margin-left: 0; padding: 0 16px; min-height: 36px; font-size: 0.78rem; }
    .o3-logo__text { font-size: 1.2rem; }
    .o3-logo__text small { display: none; }
    .o3-logo__img { height: 40px; }
}

/* ─── Hero ─── */
.o3-hero {
    padding: 88px 0 100px;
    background: var(--o3-paper);
    position: relative;
}
.o3-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
}
@media (max-width: 880px) {
    .o3-hero { padding: 56px 0 64px; }
    .o3-hero__grid { grid-template-columns: 1fr; gap: 36px; }
}
.o3-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--o3-brass-dark);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: none;
    margin-bottom: 22px;
}
.o3-hero__eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--o3-brass);
}
.o3-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-weight: 600;
    margin: 0 0 26px;
    color: var(--o3-ink);
}
.o3-hero h1 em {
    font-style: italic;
    color: var(--o3-brass-dark);
}
.o3-hero p {
    font-size: 1.12rem;
    color: var(--o3-body);
    margin: 0 0 32px;
    max-width: 48ch;
    line-height: 1.65;
}
.o3-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: stretch;
}
@media (max-width: 480px) {
    .o3-hero__cta { flex-direction: column; align-items: stretch; }
    .o3-hero__cta .o3-btn { justify-content: center; }
}
.o3-hero p.o3-hero__helper,
.o3-hero__helper {
    margin: 26px 0 0;
    font-size: 0.86rem;
    color: var(--o3-muted);
    line-height: 1.5;
    max-width: 44ch;
    font-weight: 400;
    letter-spacing: 0.005em;
}

.o3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}
.o3-btn:hover { transform: translateY(-1px); }
.o3-btn--primary {
    background: var(--o3-ink);
    color: var(--o3-paper);
    border-color: var(--o3-ink);
}
.o3-btn--primary:hover { background: var(--o3-ink-deep); border-color: var(--o3-ink-deep); }
.o3-btn--ghost {
    color: var(--o3-ink);
    background: transparent;
    border-color: rgba(26,31,43,0.28);
}
.o3-btn--ghost:hover {
    background: var(--o3-ink);
    color: var(--o3-paper);
    border-color: var(--o3-ink);
}
.o3-btn--brass {
    background: var(--o3-brass);
    color: var(--o3-ink);
    border-color: var(--o3-brass);
}
.o3-btn--brass:hover { background: var(--o3-brass-dark); border-color: var(--o3-brass-dark); color: var(--o3-paper); }
.o3-btn--text {
    color: var(--o3-brass-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    border-bottom: 1px solid currentColor;
    padding: 0 0 2px;
    border-radius: 0;
    min-height: 0;
    background: transparent;
}
.o3-btn--text:hover { transform: none; color: var(--o3-ink); }
.o3-btn--lg {
    min-height: 50px;
    padding: 0 28px;
    font-size: 0.95rem;
}
@media (max-width: 480px) {
    .o3-btn--lg { width: 100%; }
}

.o3-hero__visual {
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(160deg, var(--o3-paper-warm), var(--o3-paper));
    border: 1px solid var(--o3-line);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.o3-hero__visual::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid var(--o3-brass);
    opacity: 0.3;
    pointer-events: none;
}
.o3-hero__placeholder-label {
    position: relative;
    z-index: 1;
    background: rgba(244,240,234,0.92);
    border: 1px dashed var(--o3-brass);
    padding: 16px 18px;
    border-radius: 2px;
    color: var(--o3-ink);
    font-size: 0.88rem;
}

/* ─── Trust line ─── */
.o3-trust {
    background: var(--o3-paper-warm);
    border-top: 1px solid var(--o3-line);
    border-bottom: 1px solid var(--o3-line);
    padding: 26px 0;
}
.o3-trust__row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.o3-trust__item {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--o3-body);
    font-weight: 500;
}
.o3-trust__sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--o3-brass);
}
@media (max-width: 720px) { .o3-trust__sep { display: none; } }

/* ─── Sections ─── */
.o3-section { padding: 80px 0; }
@media (max-width: 720px) { .o3-section { padding: 56px 0; } }
.o3-section--paper { background: var(--o3-paper); }
.o3-section--warm { background: var(--o3-paper-warm); }
.o3-section--dark { background: var(--o3-ink); color: var(--o3-paper); }
.o3-section__head {
    max-width: 56ch;
    margin: 0 auto 56px;
    text-align: center;
}
@media (max-width: 720px) { .o3-section__head { margin: 0 auto 40px; } }
.o3-section__head .o3-eyebrow {
    display: inline-block;
    color: var(--o3-brass-dark);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.o3-section--dark .o3-section__head .o3-eyebrow { color: var(--o3-brass); }
.o3-section__head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.4vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -0.012em;
    font-weight: 600;
    margin: 0 0 16px;
}
.o3-section__head p {
    color: var(--o3-body);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.65;
}
.o3-section--dark .o3-section__head p { color: rgba(244,240,234,0.78); }

/* ─── Services grid ─── */
.o3-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--o3-line);
    border: 1px solid var(--o3-line);
}
@media (max-width: 880px) { .o3-services { grid-template-columns: 1fr; } }
.o3-service {
    background: var(--o3-paper);
    padding: 36px 32px;
    transition: background 0.2s ease;
}
.o3-service:hover { background: var(--o3-paper-warm); }
.o3-service__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--o3-brass-dark);
    margin-bottom: 12px;
}
.o3-service h3 {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 0 0 12px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}
.o3-service p { margin: 0 0 18px; color: var(--o3-body); font-size: 0.98rem; }
.o3-service__link {
    color: var(--o3-brass-dark);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
.o3-service__link:hover { color: var(--o3-ink); }

/* ─── Editorial split ─── */
.o3-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
@media (max-width: 880px) { .o3-split { grid-template-columns: 1fr; gap: 36px; } }
.o3-split__copy h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.012em;
    font-weight: 600;
    margin: 0 0 20px;
}
.o3-split__copy p {
    color: var(--o3-body);
    font-size: 1.05rem;
    margin: 0 0 16px;
    line-height: 1.7;
}
.o3-split__list {
    list-style: none;
    margin: 18px 0;
    padding: 0;
}
.o3-split__list li {
    padding: 14px 0;
    border-top: 1px solid var(--o3-line);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.o3-split__list li:last-child { border-bottom: 1px solid var(--o3-line); }
.o3-split__list li::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--o3-brass);
    margin-top: 11px;
    flex-shrink: 0;
}
.o3-split__visual {
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, var(--o3-paper-warm), var(--o3-paper));
    border: 1px solid var(--o3-line);
    position: relative;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.o3-split__visual::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid var(--o3-brass);
    opacity: 0.3;
    pointer-events: none;
}

/* ─── Reviews ─── */
.o3-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
@media (max-width: 880px) { .o3-reviews { grid-template-columns: 1fr; } }
.o3-review {
    background: var(--o3-paper);
    padding: 32px 30px;
    border-top: 2px solid var(--o3-brass);
    position: relative;
    display: flex;
    flex-direction: column;
}
.o3-section--dark .o3-review {
    background: rgba(244,240,234,0.04);
    border-top-color: var(--o3-brass);
}
.o3-section--warm .o3-review { background: var(--o3-paper); }
.o3-review__theme {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--o3-brass-dark);
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}
.o3-review__quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.08rem;
    line-height: 1.55;
    margin: 0 0 22px;
    color: var(--o3-ink);
    flex: 1 1 auto;
}
.o3-section--dark .o3-review__quote { color: var(--o3-paper); }
.o3-review__attrib {
    font-size: 0.82rem;
    color: var(--o3-muted);
    padding-top: 14px;
    border-top: 1px solid var(--o3-line);
    letter-spacing: 0.02em;
    margin-top: auto;
}
.o3-section--dark .o3-review__attrib { border-top-color: rgba(244,240,234,0.12); color: rgba(244,240,234,0.6); }

/* ─── Process ─── */
.o3-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(244,240,234,0.12);
    border: 1px solid rgba(244,240,234,0.12);
}
@media (max-width: 880px) { .o3-process { grid-template-columns: 1fr; } }
.o3-process__step {
    background: var(--o3-ink);
    padding: 40px 32px;
}
.o3-process__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 2rem;
    color: var(--o3-brass);
    margin-bottom: 12px;
    line-height: 1;
}
.o3-process__step h4 {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 0 0 10px;
    font-size: 1.3rem;
    font-weight: 600;
}
.o3-process__step p { margin: 0; color: rgba(244,240,234,0.72); font-size: 0.95rem; line-height: 1.65; }

/* ─── Big CTA ─── */
.o3-bigcta {
    background: var(--o3-ink);
    color: var(--o3-paper);
    padding: 88px 0;
    text-align: center;
}
@media (max-width: 720px) { .o3-bigcta { padding: 64px 0; } }
.o3-bigcta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.4vw, 2.7rem);
    margin: 0 0 18px;
    letter-spacing: -0.012em;
    font-weight: 600;
    line-height: 1.15;
}
.o3-bigcta p {
    color: rgba(244,240,234,0.82);
    margin: 0 auto 32px;
    font-size: 1.05rem;
    max-width: 52ch;
    line-height: 1.65;
}
.o3-bigcta__btns {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
@media (max-width: 480px) {
    .o3-bigcta__btns { display: flex; flex-direction: column; width: 100%; }
    .o3-bigcta__btns .o3-btn { width: 100%; justify-content: center; }
}
.o3-bigcta .o3-btn--ghost {
    color: var(--o3-paper);
    border-color: rgba(244,240,234,0.32);
}
.o3-bigcta .o3-btn--ghost:hover {
    border-color: var(--o3-brass);
    color: var(--o3-ink);
    background: var(--o3-brass);
}

/* ─── Services list page ─── */
.o3-svc-stack {
    display: grid;
    gap: 1px;
    background: var(--o3-line);
    border-top: 1px solid var(--o3-line);
    border-bottom: 1px solid var(--o3-line);
}
.o3-svc-row {
    background: var(--o3-paper);
    padding: 36px 0;
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 32px;
    align-items: center;
}
@media (max-width: 880px) { .o3-svc-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; } }
.o3-svc-row__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--o3-brass);
}
.o3-svc-row h3 {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 0 0 6px;
    font-size: 1.4rem;
    font-weight: 600;
}
.o3-svc-row p {
    margin: 0;
    color: var(--o3-body);
    font-size: 0.98rem;
    max-width: 56ch;
}
.o3-svc-row__cta {
    color: var(--o3-brass-dark);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    justify-self: end;
}
@media (max-width: 880px) { .o3-svc-row__cta { justify-self: start; } }
.o3-svc-row__cta:hover { color: var(--o3-ink); }

/* ─── Contact ─── */
.o3-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
}
@media (max-width: 880px) { .o3-contact-grid { grid-template-columns: 1fr; } }
.o3-form {
    background: var(--o3-paper);
    border: 1px solid var(--o3-line);
    padding: 40px;
}
.o3-form label {
    display: block;
    font-weight: 500;
    margin: 0 0 8px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--o3-muted);
}
.o3-form input,
.o3-form textarea,
.o3-form select {
    width: 100%;
    border: 1px solid var(--o3-line);
    border-radius: 2px;
    padding: 13px 14px;
    font: inherit;
    background: transparent;
    margin-bottom: 22px;
    color: var(--o3-ink);
}
.o3-form textarea { min-height: 120px; resize: vertical; }
.o3-form input:focus,
.o3-form textarea:focus,
.o3-form select:focus {
    outline: 1px solid var(--o3-brass);
    outline-offset: 1px;
    border-color: var(--o3-brass);
}
.o3-contact__info {
    background: var(--o3-ink);
    color: var(--o3-paper);
    padding: 40px;
}
.o3-contact__info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 0 0 24px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--o3-brass);
}
.o3-contact__row {
    padding: 16px 0;
    border-bottom: 1px solid rgba(244,240,234,0.12);
}
.o3-contact__row:last-child { border-bottom: 0; }
.o3-contact__row strong {
    display: block;
    font-size: 0.72rem;
    color: rgba(244,240,234,0.55);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.o3-contact__row span { color: var(--o3-paper); font-size: 1rem; font-weight: 400; }

/* ─── Footer ─── */
.o3-footer {
    background: var(--o3-ink-deep);
    color: rgba(244,240,234,0.62);
    padding: 64px 0 28px;
}
.o3-footer__cols {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 44px;
}
@media (max-width: 880px) { .o3-footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .o3-footer__cols { grid-template-columns: 1fr; gap: 28px; } }
.o3-footer h5 {
    font-family: 'Inter', sans-serif;
    color: var(--o3-paper);
    margin: 0 0 16px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}
.o3-footer__brand {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--o3-paper);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.005em;
}
.o3-footer ul { list-style: none; margin: 0; padding: 0; }
.o3-footer li { margin-bottom: 10px; font-size: 0.92rem; line-height: 1.45; }
.o3-footer a { color: rgba(244,240,234,0.78); text-decoration: none; }
.o3-footer a:hover { color: var(--o3-brass); }
.o3-footer__legal {
    border-top: 1px solid rgba(244,240,234,0.1);
    padding-top: 22px;
    font-size: 0.8rem;
    text-align: center;
    color: rgba(244,240,234,0.45);
    letter-spacing: 0.02em;
}

/* Placeholder utility */
.ph {
    background: rgba(184,148,90,0.18);
    color: var(--o3-brass-dark);
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 500;
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.85em;
    white-space: nowrap;
}
.o3-section--dark .ph,
.o3-bigcta .ph,
.o3-contact__info .ph,
.o3-process__step .ph {
    background: rgba(184,148,90,0.18);
    color: var(--o3-brass);
}

/* ─── Hero editorial figure ─── */
.o3-hero__figure {
    margin: 0;
    position: relative;
    border: 1px solid var(--o3-line);
    background: var(--o3-paper-warm);
    padding: 14px 14px 22px;
    box-shadow: 0 1px 0 rgba(26,31,43,0.04);
}
.o3-hero__figure-img {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    position: relative;
}
.o3-hero__figure-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184,148,90,0.35);
    pointer-events: none;
    mix-blend-mode: multiply;
}
.o3-hero__figure figcaption {
    padding: 18px 8px 4px;
    text-align: left;
    border-top: 1px solid var(--o3-line);
    margin-top: 18px;
}
.o3-hero__figure .o3-figcap__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--o3-ink);
    margin: 0 0 6px;
    font-weight: 500;
}
.o3-hero__figure .o3-figcap__sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    color: var(--o3-muted);
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.55;
}

/* ─── Hero signals strip ─── */
.o3-hero__signals {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--o3-line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 720px) {
    .o3-hero__signals { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
    .o3-hero__signals { grid-template-columns: 1fr; gap: 14px; }
}
.o3-hero__signal {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.o3-hero__signal-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.05;
    color: var(--o3-brass-dark);
    letter-spacing: -0.01em;
}
.o3-hero__signal-num em {
    font-style: italic;
    font-weight: 500;
}
.o3-hero__signal-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--o3-body);
    line-height: 1.45;
}
@media (max-width: 720px) {
    .o3-hero__signal-num { font-size: 1.1rem; }
    .o3-hero__signal-label { font-size: 0.7rem; }
}

/* ─── Selected projects (project cards) ─── */
.o3-projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--o3-line);
    border: 1px solid var(--o3-line);
}
@media (max-width: 720px) { .o3-projects { grid-template-columns: 1fr; } }

.o3-projcard {
    display: flex;
    flex-direction: column;
    background: var(--o3-paper);
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease, transform 0.25s ease;
    overflow: hidden;
}
.o3-projcard:hover { background: var(--o3-paper-warm); }
.o3-projcard__img {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-color: var(--o3-paper-warm);
}
.o3-projcard__body {
    padding: 26px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}
.o3-projcard__tag {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--o3-brass-dark);
}
.o3-projcard__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
    color: var(--o3-ink);
    letter-spacing: -0.005em;
}
.o3-projcard__desc {
    margin: 0;
    color: var(--o3-body);
    font-size: 0.96rem;
    line-height: 1.6;
}
.o3-projcard__cta {
    margin-top: auto;
    padding-top: 6px;
    color: var(--o3-brass-dark);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.o3-projcard:hover .o3-projcard__cta { color: var(--o3-ink); }
.o3-projcard__cta::after {
    content: "→";
    transition: transform 0.25s ease;
    font-size: 1rem;
}
.o3-projcard:hover .o3-projcard__cta::after { transform: translateX(4px); }

/* ─── Accreditation row ─── */
.o3-accred {
    background: var(--o3-paper-warm);
    padding: 56px 0;
    border-top: 1px solid var(--o3-line);
    border-bottom: 1px solid var(--o3-line);
}
.o3-accred__head {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--o3-brass-dark);
    margin-bottom: 28px;
}
.o3-accred__row {
    display: flex;
    gap: 28px 48px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.o3-accred__row img {
    height: 56px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: saturate(0.6) opacity(0.85);
    transition: filter 0.2s ease;
}
.o3-accred__row img:hover {
    filter: saturate(1) opacity(1);
}
@media (max-width: 720px) {
    .o3-accred__row { gap: 22px 32px; }
    .o3-accred__row img { height: 44px; max-width: 110px; }
}

/* ─── Project detail page ─── */
.o3-crumb {
    background: var(--o3-paper);
    border-bottom: 1px solid var(--o3-line);
    padding: 18px 0;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--o3-muted);
}
.o3-crumb a {
    color: var(--o3-body);
    text-decoration: none;
    font-weight: 500;
}
.o3-crumb a:hover { color: var(--o3-brass-dark); }
.o3-crumb__sep {
    margin: 0 12px;
    color: var(--o3-line);
}
.o3-crumb__current { color: var(--o3-brass-dark); }

/* Project hero */
.o3-prj-hero {
    padding: 80px 0 72px;
    background: var(--o3-paper);
}
.o3-prj-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 880px) {
    .o3-prj-hero__grid { grid-template-columns: 1fr; gap: 36px; }
}
.o3-prj-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--o3-brass-dark);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.o3-prj-hero__tag::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--o3-brass);
}
.o3-prj-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    font-weight: 600;
    margin: 0 0 22px;
    color: var(--o3-ink);
}
.o3-prj-hero h1 em {
    font-style: italic;
    color: var(--o3-brass-dark);
}
.o3-prj-hero__lede {
    font-size: 1.12rem;
    color: var(--o3-body);
    margin: 0;
    max-width: 48ch;
    line-height: 1.65;
}
.o3-prj-hero__figure {
    margin: 0;
    border: 1px solid var(--o3-line);
    background: var(--o3-paper-warm);
    padding: 14px 14px 20px;
}
.o3-prj-hero__figure-img {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    position: relative;
}
.o3-prj-hero__figure-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184,148,90,0.35);
    pointer-events: none;
    mix-blend-mode: multiply;
}
.o3-prj-hero__figure figcaption {
    padding: 16px 6px 0;
    margin-top: 14px;
    border-top: 1px solid var(--o3-line);
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--o3-muted);
    line-height: 1.5;
}

/* At-a-glance band */
.o3-prj-glance {
    background: var(--o3-paper-warm);
    border-top: 1px solid var(--o3-line);
    border-bottom: 1px solid var(--o3-line);
    padding: 44px 0;
}
.o3-prj-glance__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
@media (max-width: 720px) {
    .o3-prj-glance__row { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.o3-prj-glance__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid var(--o3-line);
    padding-left: 22px;
}
.o3-prj-glance__item:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 720px) {
    .o3-prj-glance__item { border-left: 0; padding-left: 0; }
}
.o3-prj-glance__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--o3-brass-dark);
    font-weight: 500;
}
.o3-prj-glance__value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--o3-ink);
    font-weight: 600;
    line-height: 1.3;
}
.o3-prj-glance__value em {
    font-style: italic;
    color: var(--o3-brass-dark);
    font-weight: 500;
    margin-right: 6px;
}

/* Project body — editorial */
.o3-prj-body {
    padding: 96px 0;
    background: var(--o3-paper);
}
.o3-prj-body__wrap {
    max-width: 720px;
    margin: 0 auto;
}
.o3-prj-body h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.18;
    letter-spacing: -0.008em;
    font-weight: 600;
    margin: 48px 0 18px;
    color: var(--o3-ink);
}
.o3-prj-body h2:first-child { margin-top: 0; }
.o3-prj-body h2 em { font-style: italic; color: var(--o3-brass-dark); }
.o3-prj-body p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--o3-body);
    margin: 0 0 18px;
}
.o3-prj-body p:first-of-type::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.6rem;
    float: left;
    line-height: 0.9;
    padding: 6px 12px 0 0;
    color: var(--o3-brass-dark);
    font-weight: 600;
}
.o3-prj-body ul {
    padding: 0;
    margin: 18px 0 28px;
    list-style: none;
}
.o3-prj-body ul li {
    padding: 12px 0 12px 22px;
    border-top: 1px solid var(--o3-line);
    color: var(--o3-body);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}
.o3-prj-body ul li:last-child { border-bottom: 1px solid var(--o3-line); }
.o3-prj-body ul li::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--o3-brass);
    position: absolute;
    left: 0;
    top: 22px;
}
.o3-prj-body blockquote {
    margin: 36px -20px;
    padding: 28px 32px;
    border-left: 3px solid var(--o3-brass);
    background: var(--o3-paper-warm);
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.32rem;
    line-height: 1.45;
    color: var(--o3-ink);
}
.o3-prj-body blockquote cite {
    display: block;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--o3-muted);
}
@media (max-width: 720px) {
    .o3-prj-body blockquote { margin: 28px 0; padding: 22px 22px; }
}

/* Project gallery */
.o3-prj-gallery {
    padding: 0 0 96px;
    background: var(--o3-paper);
}
.o3-prj-gallery__head {
    max-width: 56ch;
    margin: 0 auto 44px;
    text-align: center;
}
.o3-prj-gallery__head .o3-eyebrow {
    display: inline-block;
    color: var(--o3-brass-dark);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.o3-prj-gallery__head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
}
.o3-prj-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 720px) { .o3-prj-gallery__grid { grid-template-columns: 1fr; } }
.o3-prj-gallery__item {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--o3-line);
    position: relative;
    overflow: hidden;
}
.o3-prj-gallery__item--wide {
    grid-column: span 3;
    aspect-ratio: 16 / 9;
}
@media (max-width: 720px) { .o3-prj-gallery__item--wide { grid-column: auto; aspect-ratio: 4 / 3; } }
.o3-prj-gallery__item--tall {
    grid-row: span 2;
    aspect-ratio: 3 / 4;
}
@media (max-width: 720px) { .o3-prj-gallery__item--tall { grid-row: auto; aspect-ratio: 4 / 3; } }
.o3-prj-gallery__cap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(15,19,28,0) 0%, rgba(15,19,28,0.72) 100%);
    color: var(--o3-paper);
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Related projects strip */
.o3-prj-related {
    background: var(--o3-paper-warm);
    padding: 80px 0;
    border-top: 1px solid var(--o3-line);
}
.o3-prj-related__head {
    text-align: center;
    margin-bottom: 40px;
}
.o3-prj-related__head .o3-eyebrow {
    display: inline-block;
    color: var(--o3-brass-dark);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.o3-prj-related__head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
}
.o3-prj-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--o3-line);
    border: 1px solid var(--o3-line);
}
@media (max-width: 720px) { .o3-prj-related__grid { grid-template-columns: 1fr; } }
.o3-prj-related__grid .o3-projcard { background: var(--o3-paper-warm); }
.o3-prj-related__grid .o3-projcard:hover { background: var(--o3-paper); }
.o3-prj-related__grid .o3-projcard__body { padding: 24px 26px 26px; }
.o3-prj-related__grid .o3-projcard__title { font-size: 1.35rem; }

/* ─── Image-led hero (homepage v2) ─── */
.o3-hero__image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--o3-paper-warm);
    border: 1px solid var(--o3-line);
}
.o3-hero__image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
    display: block;
}
.o3-hero__image::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(184,148,90,0.35);
    pointer-events: none;
}
.o3-hero__image__caption {
    position: absolute;
    left: 22px;
    bottom: 22px;
    right: 22px;
    background: rgba(15,19,28,0.62);
    backdrop-filter: blur(6px);
    color: var(--o3-paper);
    padding: 14px 18px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.45;
    z-index: 1;
}

/* Proper img tag support inside project/service cards */
.o3-projcard__img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    display: block;
    position: absolute;
    inset: 0;
}

/* 3-col variant of o3-projects (for service cards) */
.o3-projects--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
    .o3-projects--3col { grid-template-columns: 1fr; }
}
.o3-projcard__source {
    display: block;
    margin-top: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--o3-muted);
}

/* ─── Image-led "Been let down" section ─── */
.o3-letdown {
    background: var(--o3-paper-warm);
    padding: 88px 0;
    border-top: 1px solid var(--o3-line);
    border-bottom: 1px solid var(--o3-line);
}
.o3-letdown__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 880px) {
    .o3-letdown__grid { grid-template-columns: 1fr; gap: 36px; }
}
.o3-letdown__figure {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--o3-line);
    background: var(--o3-paper);
    position: relative;
}
.o3-letdown__figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.o3-letdown__figure::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(184,148,90,0.35);
    pointer-events: none;
}
.o3-letdown__copy h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.6vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.012em;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--o3-ink);
}
.o3-letdown__copy h2 em {
    font-style: italic;
    color: var(--o3-brass-dark);
}
.o3-letdown__copy p {
    color: var(--o3-body);
    font-size: 1.06rem;
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 50ch;
}

/* ─── Lighter process section ─── */
.o3-process--light {
    background: transparent;
    border: 1px solid var(--o3-line);
}
.o3-process--light .o3-process__step {
    background: var(--o3-paper);
    color: var(--o3-ink);
    padding: 40px 32px;
    border-right: 1px solid var(--o3-line);
}
.o3-process--light .o3-process__step:last-child { border-right: 0; }
@media (max-width: 880px) {
    .o3-process--light .o3-process__step { border-right: 0; border-bottom: 1px solid var(--o3-line); }
    .o3-process--light .o3-process__step:last-child { border-bottom: 0; }
}
.o3-process--light .o3-process__num { color: var(--o3-brass-dark); }
.o3-process--light .o3-process__step h4 { color: var(--o3-ink); }
.o3-process--light .o3-process__step p { color: var(--o3-body); }

/* o3-section--paper compatibility for process heads */
.o3-section--paper .o3-section__head .o3-eyebrow { color: var(--o3-brass-dark); }
.o3-section--paper .o3-section__head h2 { color: var(--o3-ink); }
.o3-section--paper .o3-section__head p { color: var(--o3-body); }

/* Service-card modifier reserved for future use — no decoration */

/* ─── Generic eyebrow utility ─── */
.o3-eyebrow {
    display: inline-block;
    color: var(--o3-brass-dark);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ============================================================
   Cinematic polish layer (v7)
   - Numbered card eyebrows in Playfair italic brass
   - Deeper hero image frame
   - Brass divider rule under section heads
   - Dark variant for "Been let down" rhythm moment
   - Hover lifts + tightened accreditations
   ============================================================ */

/* Section heads — brass divider under eyebrow */
.o3-section__head .o3-eyebrow,
.o3-prj-gallery__head .o3-eyebrow,
.o3-prj-related__head .o3-eyebrow,
.o3-section--paper .o3-section__head .o3-eyebrow {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 18px;
}
.o3-section__head .o3-eyebrow::after,
.o3-prj-gallery__head .o3-eyebrow::after,
.o3-prj-related__head .o3-eyebrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 36px;
    height: 1px;
    background: var(--o3-brass);
}

/* Hero image — deeper frame + subtle lift */
.o3-hero__image {
    box-shadow: 0 24px 60px -20px rgba(15,19,28,0.32), 0 4px 12px -4px rgba(15,19,28,0.12);
    border-color: rgba(26,31,43,0.15);
}
.o3-hero__image::after {
    border-color: rgba(184,148,90,0.55);
}
.o3-hero__image__caption {
    background: linear-gradient(180deg, rgba(15,19,28,0.0) 0%, rgba(15,19,28,0.78) 100%);
    backdrop-filter: none;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 56px 26px 22px;
    font-size: 0.95rem;
}

/* Numbered eyebrows on cards (service + project) */
.o3-projcard__img {
    position: relative;
}
.o3-projcard__num {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--o3-paper);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(15,19,28,0.55);
}
.o3-projcard__num::after {
    content: "";
    display: block;
    margin-top: 8px;
    width: 22px;
    height: 1px;
    background: var(--o3-brass);
}

/* Card hover lift */
.o3-projcard {
    transition: transform 0.3s ease, background 0.25s ease, box-shadow 0.3s ease;
}
.o3-projcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -20px rgba(15,19,28,0.22);
}
.o3-projcard__img > img {
    transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.o3-projcard:hover .o3-projcard__img > img {
    transform: scale(1.04);
}

/* Projects grid: stronger borders + spacing rhythm */
.o3-projects {
    gap: 24px;
    background: transparent;
    border: 0;
}
.o3-projects .o3-projcard {
    border: 1px solid var(--o3-line);
    background: var(--o3-paper);
}
.o3-projects--3col { gap: 24px; }
@media (max-width: 720px) {
    .o3-projects, .o3-projects--3col { gap: 18px; }
}

/* Larger, more case-study project titles */
.o3-projcard__title { font-size: 1.6rem; }
.o3-projects--3col .o3-projcard__title { font-size: 1.4rem; }

/* Dark "Been let down" variant — rhythm moment */
.o3-letdown {
    background: var(--o3-ink);
    color: var(--o3-paper);
    border-top: 0;
    border-bottom: 0;
}
.o3-letdown__copy .o3-eyebrow { color: var(--o3-brass); }
.o3-letdown__copy h2 { color: var(--o3-paper); }
.o3-letdown__copy h2 em { color: var(--o3-brass); }
.o3-letdown__copy p { color: rgba(244,240,234,0.78); }
.o3-letdown__figure {
    border-color: rgba(244,240,234,0.12);
    background: rgba(244,240,234,0.04);
}
.o3-letdown__figure::after {
    border-color: rgba(184,148,90,0.5);
}
.o3-letdown .o3-btn--brass {
    box-shadow: 0 12px 32px -12px rgba(184,148,90,0.5);
}

/* Process — brass top accent on each step */
.o3-process--light .o3-process__step {
    position: relative;
}
.o3-process--light .o3-process__step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--o3-brass) 0%, var(--o3-brass) 22%, transparent 22%);
}

/* Big CTA — cinematic vignette */
.o3-bigcta {
    position: relative;
    overflow: hidden;
}
.o3-bigcta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(184,148,90,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at top right, rgba(184,148,90,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.o3-bigcta > .o3-container { position: relative; z-index: 1; }
.o3-bigcta::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 36px;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--o3-brass);
    opacity: 0.6;
}

/* Accreditations — quieter, monochrome lockup */
.o3-accred {
    padding: 44px 0;
    background: var(--o3-paper);
    border-top: 1px solid var(--o3-line);
    border-bottom: 1px solid var(--o3-line);
}
.o3-accred__row img {
    height: 44px;
    max-width: 120px;
    filter: grayscale(1) brightness(0.65) opacity(0.7);
}
.o3-accred__row img:hover {
    filter: grayscale(0) opacity(1);
}
@media (max-width: 720px) {
    .o3-accred { padding: 36px 0; }
    .o3-accred__row img { height: 36px; max-width: 100px; }
}

/* Review cards — subtle pull quote feel */
.o3-review {
    border-top: 1px solid var(--o3-brass);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}
.o3-review::before {
    content: "“";
    position: absolute;
    top: 6px;
    right: 18px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.6rem;
    line-height: 1;
    color: var(--o3-brass);
    opacity: 0.25;
    pointer-events: none;
}
.o3-review__quote { padding-right: 6px; }

/* Hero CTA group — helper has breathing room (specific override) */
.o3-hero p.o3-hero__helper {
    margin-top: 26px;
    font-size: 0.86rem;
    color: var(--o3-muted);
}

/* Trust strip — more deliberate */
.o3-trust {
    background: var(--o3-paper);
    border-top: 1px solid var(--o3-line);
    border-bottom: 1px solid var(--o3-line);
    padding: 22px 0;
}
.o3-trust__item {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    color: var(--o3-muted);
    font-weight: 500;
}
.o3-trust__sep {
    background: var(--o3-brass);
    width: 5px;
    height: 5px;
}

/* Hero eyebrow nudge — feels more deliberate */
.o3-hero__eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Footer brand wordmark — slightly more weight */
.o3-footer__brand { font-size: 1.55rem; }


/* ============================================================
   v8 — push past Future Tech: editorial scale, corner marks,
   section numbering, refined motion. Static HTML/CSS only.
   ============================================================ */

/* Section numbering "01. / 02. / 03." */
.o3-section__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--o3-brass);
    font-size: 0.9rem;
    margin-right: 8px;
    letter-spacing: 0.04em;
}
.o3-section--dark .o3-section__num,
.o3-letdown .o3-section__num,
.o3-bigcta .o3-section__num { color: var(--o3-brass); }

/* Editorial-scale hero headline */
.o3-hero h1 {
    font-size: clamp(2.8rem, 6.6vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -0.022em;
    margin-bottom: 30px;
}
.o3-hero p { font-size: 1.16rem; max-width: 50ch; }

/* Brass L-corner marks on cinematic images */
.o3-hero__image::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
    width: 22px;
    height: 22px;
    border-top: 1.5px solid var(--o3-brass);
    border-left: 1.5px solid var(--o3-brass);
    pointer-events: none;
}
.o3-hero__image .o3-hero__image__cornermark {
    position: absolute;
    z-index: 3;
    bottom: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-bottom: 1.5px solid var(--o3-brass);
    border-right: 1.5px solid var(--o3-brass);
    pointer-events: none;
}

/* Tighter, more deliberate section heads */
.o3-section__head h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.05rem);
    line-height: 1.1;
    letter-spacing: -0.018em;
}
.o3-section__head p {
    font-size: 1.06rem;
    color: var(--o3-body);
    max-width: 48ch;
    margin-left: auto;
    margin-right: auto;
}

/* Big CTA scale up */
.o3-bigcta h2 {
    font-size: clamp(2.1rem, 4.8vw, 3.1rem);
    margin-bottom: 22px;
}

/* Letdown — bigger, more editorial */
.o3-letdown__copy h2 {
    font-size: clamp(2rem, 4.2vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.018em;
    margin-bottom: 22px;
}

/* Card refinement — premium hover ease */
.o3-projcard {
    transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.16, 0.84, 0.2, 1),
                background-color 0.25s ease;
    will-change: transform;
}
.o3-projcard:hover {
    box-shadow: 0 28px 56px -22px rgba(15,19,28,0.28),
                0 6px 14px -6px rgba(15,19,28,0.10);
}
.o3-projcard__img > img {
    transition: transform 0.9s cubic-bezier(0.16, 0.84, 0.2, 1);
}
.o3-projcard:hover .o3-projcard__img > img { transform: scale(1.06); }

/* Project / service card number — refined */
.o3-projcard__num {
    font-size: 1.65rem;
    top: 16px;
    left: 18px;
}
.o3-projcard__num::after {
    margin-top: 10px;
    width: 26px;
}

/* Section progression refinement (paper sections feel intentional) */
.o3-section--paper + .o3-section--paper { padding-top: 0; }

/* Subtle entrance — opt-in via @supports scroll-driven animation */
@supports (animation-timeline: view()) {
    .o3-section, .o3-letdown, .o3-bigcta, .o3-hero {
        animation: o3-rise linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }
    @keyframes o3-rise {
        from { opacity: 0.2; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    /* Don't fade the hero — it's already in view on load */
    .o3-hero { animation: none; }
    @media (prefers-reduced-motion: reduce) {
        .o3-section, .o3-letdown, .o3-bigcta { animation: none; }
    }
}

/* Footer brass accent under brand */
.o3-footer__brand {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 14px;
}
.o3-footer__brand::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 1px;
    background: var(--o3-brass);
    opacity: 0.7;
}

/* Brand title separator helper — use · middle dot */
.o3-sep {
    color: var(--o3-brass);
    margin: 0 8px;
    opacity: 0.8;
    font-weight: 400;
}

/* Header — slightly more weight to the logo lockup */
.o3-logo__text { letter-spacing: -0.01em; }

/* Tighten hero CTA cluster */
.o3-hero__cta { margin-top: 8px; }

/* Hero image — slightly bigger frame */
.o3-hero__image { aspect-ratio: 5 / 6; }
@media (max-width: 880px) { .o3-hero__image { aspect-ratio: 4 / 5; } }

/* Hero image caption refinement */
.o3-hero__image__caption {
    padding: 80px 28px 24px;
    font-size: 0.98rem;
    letter-spacing: 0.005em;
}

/* Letdown image corner mark */
.o3-letdown__figure::before {
    content: "";
    position: absolute;
    top: 12px; left: 12px;
    width: 18px; height: 18px;
    border-top: 1.5px solid var(--o3-brass);
    border-left: 1.5px solid var(--o3-brass);
    pointer-events: none;
    z-index: 2;
}

/* Section dividers — thin brass rules to mark section ends */
.o3-section::after { content: none; }
.o3-section--paper { position: relative; }

/* Eyebrow on dark sections */
.o3-letdown .o3-eyebrow,
.o3-letdown__copy .o3-eyebrow {
    color: var(--o3-brass);
}

/* Bigger trust separator dots */
.o3-trust__sep { width: 4px; height: 4px; }


/* ============================================================
   v9 — final premium pass
   - Remove oversized review quote glyph
   - Big CTA: restrained dark band (no radial vignette, no oval gold)
   - Subtle hero image tint for cohesion
   - Tighter section numbering + label rhythm
   ============================================================ */

/* Review quote glyph — remove (was too decorative) */
.o3-review::before { content: none; }
.o3-review__quote { padding-right: 0; }

/* Big CTA — strip radial / brass-oval treatment, restrained dark band */
.o3-bigcta::before { background: none !important; content: none !important; }
.o3-bigcta::after { display: none !important; content: none !important; }
.o3-bigcta {
    padding: 96px 0;
    background: var(--o3-ink);
}
@media (max-width: 720px) { .o3-bigcta { padding: 64px 0; } }
.o3-bigcta__eyebrow {
    display: inline-block;
    color: var(--o3-brass);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}
.o3-bigcta__eyebrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 32px;
    height: 1px;
    background: var(--o3-brass);
    opacity: 0.7;
}

/* Hero image — subtle premium tint over image (above img, below caption) */
.o3-hero__image__tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,14,22,0.10) 0%, rgba(10,14,22,0.22) 100%);
    pointer-events: none;
    z-index: 1;
}
.o3-hero__image__caption { z-index: 2; }
.o3-hero__image::before,
.o3-hero__image .o3-hero__image__cornermark { z-index: 3; }

/* Section number — slightly more restrained */
.o3-section__num {
    font-size: 0.82rem;
    color: var(--o3-brass);
    opacity: 0.9;
    margin-right: 10px;
}
.o3-letdown .o3-section__num { opacity: 1; }

/* Eyebrow — section labels feel calmer */
.o3-section__head .o3-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    font-weight: 600;
}

/* Refine "Been let down" CTA so it doesn't pop awkwardly */
.o3-letdown .o3-btn--brass {
    box-shadow: none;
}

/* Service card image — subtle dark overlay for cohesion */
.o3-projects--3col .o3-projcard__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,14,22,0.06) 0%, rgba(10,14,22,0.16) 100%);
    pointer-events: none;
    z-index: 1;
}
.o3-projects--3col .o3-projcard__num { z-index: 2; }

/* Project card image — keep clean (real Aaron work, no overlay) */
.o3-projects:not(.o3-projects--3col) .o3-projcard__img::after { display: none; }

/* Footer — tighter rhythm */
.o3-footer { padding: 72px 0 28px; }
.o3-footer h5 { margin-bottom: 18px; font-size: 0.68rem; letter-spacing: 0.2em; }
.o3-footer li { margin-bottom: 11px; }
.o3-footer__cols { gap: 44px; margin-bottom: 48px; }

/* Hero image corner marks — slightly thicker, more deliberate */
.o3-hero__image::before,
.o3-hero__image .o3-hero__image__cornermark {
    width: 26px;
    height: 26px;
    border-width: 2px;
    border-color: rgba(184,148,90,0.8);
}

/* Trust strip — refined */
.o3-trust { padding: 18px 0; }
.o3-trust__item { font-size: 0.72rem; letter-spacing: 0.2em; }

/* Hero h1 — slightly more refined max */
.o3-hero h1 {
    font-size: clamp(2.6rem, 6.2vw, 4.8rem);
    letter-spacing: -0.02em;
}

/* Accreditations — calmer rhythm */
.o3-accred { padding: 56px 0; }
.o3-accred__head { font-size: 0.68rem; letter-spacing: 0.22em; }

/* Card body padding rhythm */
.o3-projects--3col .o3-projcard__body { padding: 26px 26px 28px; }

/* Mobile rhythm tighter */
@media (max-width: 720px) {
    .o3-hero h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
    .o3-section__head h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
    .o3-letdown__copy h2 { font-size: clamp(1.7rem, 6vw, 2.1rem); }
    .o3-bigcta h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
    .o3-section { padding: 56px 0; }
    .o3-bigcta { padding: 56px 0; }
    .o3-footer { padding: 48px 0 20px; }
}


/* ============================================================
   v10 — review proof threading
   - Service-card review snippet
   - Review themes strip (5 across)
   - Subtle "Read more reviews" link
   - Proof line above big CTA
   ============================================================ */

/* Service card review snippet */
.o3-projcard__quote {
    margin: 4px 0 14px;
    padding: 14px 16px;
    background: rgba(184,148,90,0.06);
    border-left: 2px solid var(--o3-brass);
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--o3-ink);
}
.o3-projcard__quote-src {
    display: block;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--o3-muted);
}

/* Read-more link under review cards */
.o3-section__readmore {
    margin-top: 36px;
    text-align: center;
}
.o3-section__readmore a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--o3-brass-dark);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
.o3-section__readmore a:hover { color: var(--o3-ink); }
.o3-section__readmore a::after {
    content: "→";
    transition: transform 0.2s ease;
}
.o3-section__readmore a:hover::after { transform: translateX(3px); }

/* Review themes strip */
.o3-themes {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--o3-line);
}
.o3-themes__head {
    text-align: center;
    margin-bottom: 28px;
}
.o3-themes__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
@media (max-width: 880px) {
    .o3-themes__row { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 480px) {
    .o3-themes__row { grid-template-columns: 1fr; gap: 16px; }
}
.o3-themes__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 16px 14px;
    border-top: 1px solid var(--o3-brass);
    background: transparent;
}
.o3-themes__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    color: var(--o3-brass-dark);
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: -0.01em;
}
.o3-themes__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--o3-ink);
    font-weight: 500;
}

/* Big CTA proof line */
.o3-bigcta__proof {
    margin: 0 auto 36px;
    max-width: 56ch;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.5;
    color: rgba(244,240,234,0.86);
    text-align: center;
    position: relative;
    padding-top: 18px;
}
.o3-bigcta__proof::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1px;
    background: var(--o3-brass);
    opacity: 0.6;
}
.o3-bigcta__proof em {
    font-style: normal;
    color: var(--o3-brass);
}

