/* GMW Systems — "Drafting Room" v3
   System fonts. Cool blueprint white. Vermilion accent. No tricks.
*/

:root {
    --bg:           #f1f3f5;
    --bg-deep:      #e3e8ed;
    --ink:          #111824;
    --ink-soft:     #2c3645;
    --graphite:     #6e7480;
    --pencil:       #aab1ba;
    --rule:         #c9d2dc;
    --blue:         #2540e6;
    --blue-deep:    #1a2eb0;
    --vermilion:    #ff4f2a;
    --vermilion-deep:#d63a17;

    --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --mono: ui-monospace, SFMono-Regular, "Cascadia Mono", "Roboto Mono", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--bg);
    background-image:
        linear-gradient(to right, rgba(37, 64, 230, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(37, 64, 230, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; transition: color .12s; }
a:hover { color: var(--vermilion); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sans);
    color: var(--ink);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: .75rem;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; }
strong { font-weight: 700; }

.label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}
.label::before {
    content: "";
    width: 1.5rem;
    height: 2px;
    background: currentColor;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 720px; }

/* Header */
.site-header {
    border-bottom: 1px solid #000;
    background: rgba(17, 24, 36, 0.94);
    backdrop-filter: blur(8px);
    position: sticky; top: 0; z-index: 100;
}
.header-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: .3rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
}
.site-branding {
    display: flex; align-items: stretch;
    align-self: stretch;
}
.site-branding .branding-link {
    text-decoration: none;
    display: inline-flex; align-items: center; gap: .75rem;
    color: #fff;
    height: 100%;
}
.site-branding .custom-logo {
    height: calc(60px - .6rem);
    max-height: none;
    width: auto;
    display: block;
}
.site-branding .site-name {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
}
@media (max-width: 480px) {
    .site-branding .site-name { display: none; }
}
.main-navigation .nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.main-navigation .nav-menu a {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}
.main-navigation .nav-menu a:hover,
.main-navigation .nav-menu .current-menu-item a {
    color: var(--vermilion);
    border-bottom-color: var(--vermilion);
}

/* Push the right-hand cluster (nav + logon, or hamburger + logon) all the way right */
.main-navigation { margin-left: auto; }
@media (max-width: 720px) {
    .nav-toggle { margin-left: auto; }
}

/* Client logon button (always visible, always farthest right) */
.client-logon {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--mono);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--vermilion);
    border: 1.5px solid var(--vermilion);
    padding: .5rem .85rem;
    line-height: 1;
    transition: background .12s, color .12s, border-color .12s;
    white-space: nowrap;
}
.client-logon:hover,
.client-logon:focus-visible {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.client-logon__short { display: none; }
@media (max-width: 480px) {
    .client-logon { padding: .45rem .7rem; font-size: .72rem; letter-spacing: .06em; }
    .client-logon__label { display: none; }
    .client-logon__short { display: inline; }
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
    display: none;
    background: transparent; border: 0; padding: .5rem; cursor: pointer;
    color: #fff;
}
.nav-toggle-bars { display: inline-flex; flex-direction: column; gap: 5px; }
.nav-toggle-bars span {
    display: block; width: 24px; height: 2px; background: #fff;
    transition: transform .2s, opacity .2s;
}
body.nav-open .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .main-navigation {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--ink);
        border-top: 1px solid rgba(255,255,255,0.08);
        max-height: 0; overflow: hidden;
        transition: max-height .25s ease;
    }
    .main-navigation.is-open { max-height: 60vh; overflow: auto; }
    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: .5rem 0;
    }
    .main-navigation .nav-menu li { width: 100%; }
    .main-navigation .nav-menu a {
        display: block;
        padding: .85rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .main-navigation .nav-menu a:hover,
    .main-navigation .nav-menu .current-menu-item a {
        background: rgba(255,79,42,0.1);
        border-bottom-color: var(--vermilion);
    }
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .8rem 1.5rem;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--ink);
    background: var(--ink);
    color: var(--bg);
    cursor: pointer;
    border-radius: 0;
    transition: background .12s, color .12s, border-color .12s;
}
.btn:hover { background: var(--bg); color: var(--ink); }
.btn-vermilion { background: var(--vermilion); border-color: var(--vermilion); color: #fff; }
.btn-vermilion:hover { background: var(--vermilion-deep); border-color: var(--vermilion-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* Hero */
.hero { padding: 4.5rem 0 5rem; position: relative; }

/* Hero with Hurricane Ridge photo background */
.hero-photo {
    color: #fff;
    padding: 6rem 0 4.5rem;
    background-color: var(--ink);
    overflow: hidden;
}
.hero-photo .hero-bg {
    position: absolute; inset: 0;
    background-image: url("/wp-content/uploads/2026/05/hurricane-ridge.jpg");
    background-size: cover;
    background-position: center 35%;
    z-index: 0;
}
.hero-photo .hero-bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(110deg,
            rgba(17, 24, 36, 0.72) 0%,
            rgba(17, 24, 36, 0.52) 38%,
            rgba(17, 24, 36, 0.20) 70%,
            rgba(17, 24, 36, 0.05) 100%
        );
}
.hero-photo .container { position: relative; z-index: 1; }
.hero-photo .label { color: #ffd9cf; }
.hero-photo .label::before { background: #ffd9cf; }
.hero-photo .hero-headline { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,0.35); }
.hero-photo .hero-headline .accent { color: var(--vermilion); }
.hero-photo .hero-lede { color: rgba(255,255,255,0.95); text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.hero-photo .hero-meta { color: rgba(255,255,255,0.78); }
.hero-photo .hero-meta b { color: #fff; }
.hero-photo .btn-ghost { color: #fff; border-color: #fff; }
.hero-photo .btn-ghost:hover { background: #fff; color: var(--ink); }
.hero-credit {
    margin-top: 3rem;
    font-family: var(--mono);
    font-size: .72rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
}

.hero-side-onphoto {
    background: rgba(255,255,255,0.48) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    border: 1.5px solid rgba(17, 24, 36, 0.5) !important;
}
@media (max-width: 880px) {
    .hero-side-onphoto { background: rgba(255,255,255,0.65) !important; }
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } .hero { padding: 3rem 0 4rem; } }

.hero-headline {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 18ch;
}
.hero-headline .accent { color: var(--vermilion); }
.hero-lede {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 38rem;
    margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-meta {
    margin-top: 2.25rem;
    font-size: .9rem;
    color: var(--graphite);
    display: flex;
    flex-wrap: wrap;
    gap: .35rem 1rem;
}
.hero-meta b { color: var(--ink); font-weight: 600; }

/* Hero side card — "Who I work with", real list */
.hero-side {
    background: #fff;
    border: 1.5px solid var(--ink);
    padding: 1.5rem 1.5rem 1.4rem;
    font-size: .95rem;
    color: var(--ink-soft);
}
.hero-side h4 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--blue);
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero-side ul { list-style: none; padding: 0; }
.hero-side li {
    padding: .55rem 0;
    border-bottom: 1px solid var(--rule);
    display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.hero-side li:last-child { border-bottom: 0; }
.hero-side li b { color: var(--ink); font-weight: 600; }
.hero-side li span { font-family: var(--mono); font-size: .8rem; color: var(--graphite); }
.hero-side li.highlight {
    margin: .35rem -1.5rem -1.4rem;
    padding: .85rem 1.5rem 1rem;
    background: var(--vermilion);
    border-bottom: 0;
    border-top: 1.5px solid var(--ink);
    align-items: center;
}
.hero-side li.highlight b { color: #fff; }
.hero-side li.highlight span { color: rgba(255,255,255,0.9); font-weight: 600; }

/* Sections */
.section { padding: 5rem 0; }
.section + .section { border-top: 1px solid var(--rule); }
.section-light { background: var(--bg-deep); background-image: none; }
.section-dark { background: var(--ink); background-image: none; color: var(--bg); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--bg); }
.section-dark .label { color: var(--vermilion); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .9rem; }
.section-head p { font-size: 1.1rem; color: var(--ink-soft); }
.section-dark .section-head p { color: var(--pencil); }

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
}
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
    padding: 2rem 1.75rem 1.85rem;
    border-bottom: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
    background: transparent;
    transition: background .15s;
}
.pillar:nth-child(2n) { border-right: 0; }
@media (max-width: 720px) { .pillar { border-right: 0; } }
.pillar:hover { background: var(--bg); }
.pillar-num {
    font-family: var(--mono);
    font-size: .8rem;
    color: var(--blue);
    margin-bottom: .65rem;
}
.pillar h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.pillar p { color: var(--ink-soft); margin-bottom: 0; }
.pillar-tag {
    margin-top: 1rem;
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--graphite);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 1.75rem; } }
.about-photo {
    margin: 0 0 1.5rem;
    max-width: 280px;
}
.about-photo img {
    display: block;
    width: 100%;
    height: auto;
    border: 1.5px solid var(--ink);
    background: #fff;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.about-photo figcaption {
    margin-top: .65rem;
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--graphite);
}
@media (max-width: 880px) {
    .about-photo { max-width: 220px; }
}

.about-quote {
    font-size: 1.35rem;
    line-height: 1.4;
    color: var(--ink);
    border-left: 3px solid var(--vermilion);
    padding: .25rem 0 .25rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.about-sig {
    font-size: 1rem;
    color: var(--graphite);
    margin-top: 1.5rem;
    font-style: italic;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 880px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .portfolio-grid { grid-template-columns: 1fr; } }
.project {
    background: #1a2434;
    border: 1.5px solid #1a2434;
    transition: border-color .15s, transform .15s;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.project:hover { border-color: var(--vermilion); transform: translateY(-2px); }
.project-shot {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #0c1320 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%236e7480' stroke-width='1.5'><rect x='3' y='5' width='18' height='14' rx='1'/><path d='M3 9h18'/></svg>") center / 80px no-repeat;
    border-bottom: 1.5px solid #1a2434;
}
.project-shot img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .3s, opacity .3s;
    opacity: 0;
}
.project-shot img[src]:not([src=""]) { opacity: 1; }
.project:hover .project-shot img { transform: scale(1.03); }
.project-body { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.project-num {
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--pencil);
}
.project h3 { font-size: 1.1rem; margin-bottom: .15rem; color: var(--bg); }
.project-domain {
    font-family: var(--mono);
    font-size: .8rem;
    color: #6f8aff;
    align-self: flex-start;
    text-decoration: none;
    border-bottom: 1px dashed #6f8aff;
    padding-bottom: 1px;
}
.project-domain:hover { color: var(--vermilion); border-bottom-color: var(--vermilion); }
.project-desc { font-size: .88rem; color: var(--pencil); margin: .35rem 0 0; }

/* Pacific Northwest band */
.pnw-band {
    position: relative;
    min-height: 320px;
    background-image: url("/wp-content/uploads/2026/05/hurricane-ridge.jpg");
    background-size: cover;
    background-position: center 35%;
    color: #fff;
    display: flex; align-items: center;
    padding: 4rem 0;
    background-color: var(--ink);
    background-image: linear-gradient(rgba(17, 24, 36, 0.55), rgba(17, 24, 36, 0.55)), url("/wp-content/uploads/2026/05/hurricane-ridge.jpg");
}
.pnw-band-text { max-width: 640px; }
.pnw-band h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
    margin-bottom: .9rem;
}
.pnw-band p {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
    font-size: .95rem;
    margin: 0;
}
.label-light { color: #ffd9cf; }
.label-light::before { background: #ffd9cf; }

/* CTA */
.cta-strip {
    background: var(--vermilion);
    color: #fff;
    padding: 3.5rem 0;
    background-image: none;
}
.cta-strip h2 { color: #fff; margin-bottom: .75rem; }
.cta-strip p { color: rgba(255,255,255,0.94); font-size: 1.1rem; margin-bottom: 1.5rem; max-width: 38rem; }
.cta-strip a.contact-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}
.cta-strip a.contact-link:hover { color: var(--ink); }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; margin-top: 1.25rem; }
.cta-actions .btn { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta-actions .btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cta-meta { font-family: var(--mono); font-size: .9rem; color: #fff; }
.cta-meta a { color: #fff; text-decoration: underline; }
.cta-meta a:hover { color: var(--ink); }
.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.cta-photo { margin: 0; max-width: 480px; }
.cta-photo img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #fff;
    background: #fff;
}
.cta-photo figcaption {
    font-family: var(--mono);
    font-size: .78rem;
    color: rgba(255,255,255,0.9);
    margin-top: .65rem;
    line-height: 1.45;
    letter-spacing: .02em;
    border-left: 2px solid #fff;
    padding-left: .75rem;
}
@media (min-width: 820px) {
    .cta-grid { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
    .cta-photo { margin-left: auto; }
}

/* Content area */
.content-area { padding: 3.5rem 0 4.5rem; }
.content-area .container { max-width: 720px; }
.entry-title { margin-bottom: 1.75rem; }
.entry-title::after {
    content: "";
    display: block;
    width: 3rem;
    height: 3px;
    background: var(--vermilion);
    margin-top: 1rem;
}
.entry-content h2 { margin: 2.25rem 0 .9rem; }
.entry-content h3 { margin: 1.5rem 0 .5rem; }
.entry-content ul, .entry-content ol { margin: 0 0 1rem 1.5rem; }
.entry-content blockquote {
    border-left: 3px solid var(--vermilion);
    padding-left: 1.25rem;
    font-size: 1.2rem;
    color: var(--ink-soft);
    margin: 1.5rem 0;
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: var(--pencil);
    padding: 3.5rem 0 0;
    background-image: none;
}
.site-footer h4 {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}
.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem 2.25rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 3rem;
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 2.25rem; } }
.footer-branding .custom-logo { max-height: 72px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: var(--pencil); max-width: 28rem; font-size: .95rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--vermilion); text-decoration: underline; }
.footer-menu, .footer-contact ul { list-style: none; padding: 0; margin: 0; }
.footer-menu li, .footer-contact li { margin-bottom: .5rem; font-size: .92rem; }
.footer-bottom {
    border-top: 1px solid #2c3645;
    padding: 1.4rem;
    text-align: center;
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--graphite);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--pencil); text-decoration: none; }
.footer-bottom a:hover { color: var(--vermilion); text-decoration: underline; }

/* Contact page */
.contact-page .container { max-width: 760px; }
.contact-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2.25rem;
}
@media (min-width: 640px) {
    .contact-intro { grid-template-columns: 1fr auto; gap: 2rem; }
}
.contact-lede {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin: 0;
    max-width: 36rem;
}
.contact-portrait { margin: 0; max-width: 200px; }
.contact-portrait img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid var(--ink);
    background: #fff;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.contact-portrait figcaption {
    font-family: var(--mono);
    font-size: .75rem;
    color: var(--graphite);
    margin-top: .5rem;
    text-align: center;
}
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.contact-card {
    display: block;
    background: #fff;
    border: 2px solid var(--ink);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--ink);
    transition: background .12s, color .12s, border-color .12s, transform .12s;
}
.contact-card:hover,
.contact-card:focus-visible {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-1px);
}
.contact-card__label {
    display: block;
    font-family: var(--mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--vermilion);
    margin-bottom: .35rem;
}
.contact-card:hover .contact-card__label,
.contact-card:focus-visible .contact-card__label { color: var(--vermilion); }
.contact-card__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    word-break: break-word;
}
.contact-card__hint {
    display: block;
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--graphite);
    margin-top: .4rem;
}
.contact-card:hover .contact-card__hint,
.contact-card:focus-visible .contact-card__hint { color: var(--pencil); }

.contact-copy {
    justify-self: start;
    font-family: var(--mono);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    padding: .5rem .9rem;
    cursor: pointer;
    transition: background .12s, color .12s;
    margin-top: -.25rem;
}
.contact-copy:hover { background: var(--ink); color: #fff; }
.contact-copy.is-copied { background: var(--vermilion); border-color: var(--vermilion); color: #fff; }

.contact-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem 2rem;
    padding: 1.75rem 0 .25rem;
    border-top: 1px solid var(--rule);
    margin-top: 1rem;
}
.contact-meta > div { font-size: .95rem; color: var(--ink-soft); line-height: 1.5; }
.contact-meta__label {
    display: block;
    font-family: var(--mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--blue);
    margin-bottom: .35rem;
}
.contact-extra { margin-top: 2.25rem; padding-top: 1.5rem; border-top: 1px solid var(--rule); }

@media (min-width: 640px) {
    .contact-cards { grid-template-columns: 1fr 1fr; align-items: stretch; }
    .contact-copy { grid-column: 1 / 2; }
    .contact-card--phone { grid-column: 2 / 3; grid-row: 1 / 3; }
}

/* SkyFest case study */
.skyfest-page .container { max-width: 880px; }
.skyfest-lede { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 2rem; }
.skyfest-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 2.25rem;
}
.skyfest-meta > div { font-size: .95rem; color: var(--ink-soft); line-height: 1.5; }
.skyfest-meta__label {
    display: block;
    font-family: var(--mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--blue);
    margin-bottom: .3rem;
}
.skyfest-section-h { margin-top: 2rem; margin-bottom: .9rem; }
.skyfest-vintage {
    background: #fff;
    border-left: 3px solid var(--vermilion);
    padding: 1rem 1.25rem;
    color: var(--ink-soft);
    font-size: .98rem;
    margin-bottom: 2rem;
}
.skyfest-bullets { margin: 0 0 2rem 1.25rem; color: var(--ink-soft); }
.skyfest-bullets li { margin-bottom: .35rem; }
.skyfest-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 720px) {
    .skyfest-gallery { grid-template-columns: 1fr 1fr; }
}
.skyfest-shot {
    background: #fff;
    border: 1.5px solid var(--ink);
    margin: 0;
    overflow: hidden;
    transition: transform .15s, border-color .15s;
}
.skyfest-shot:hover { transform: translateY(-2px); border-color: var(--vermilion); }
.skyfest-shot a { display: block; line-height: 0; }
.skyfest-shot img { width: 100%; height: auto; display: block; }
.skyfest-shot figcaption {
    font-family: var(--mono);
    font-size: .8rem;
    color: var(--graphite);
    padding: .65rem .85rem .75rem;
    border-top: 1px solid var(--rule);
    line-height: 1.4;
}
.skyfest-back { margin-top: 1.5rem; }
.skyfest-back a { font-family: var(--mono); font-size: .9rem; }

/* WP utils */
.wp-caption { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
