/* Signarama Temecula — campaign landing pages
   Plain CSS, no framework. Shared by every page under /marketing/public. */

:root {
  /* Brand accent. build.js injects a per-brand override in each page's
     <head>, so these values are just the Signarama default. */
  --accent: #af1e2d;
  --accent-dark: #8c1724;
  --accent-rgb: 175, 30, 45;
  --accent-light: #e8808d;
  --ink: #0e1116;
  --ink-2: #39424e;
  --ink-3: #6b7684;
  --line: #e2e6ec;
  --bg: #ffffff;
  --bg-2: #f6f8fa;
  --bg-3: #0e1116;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(14, 17, 22, .06), 0 8px 24px rgba(14, 17, 22, .07);
  --wrap: 1120px;
  --font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --wrap-wide: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 750; }
h3 { font-size: 1.13rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--accent-dark); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 20px;
  min-height: 68px;
}
.site-header img { height: 34px; width: auto; display: block; }
.site-header nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.site-header nav a {
  color: var(--ink-2); text-decoration: none; font-size: .94rem; font-weight: 600;
}
.site-header nav a:hover { color: var(--accent-dark); }
.header-phone { font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (max-width: 760px) {
  .site-header nav a.nav-hide { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; text-decoration: none; border: 1px solid transparent;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink-3); }

/* ---------- hero ---------- */
.hero {
  background: var(--bg-3);
  color: #cfd5de;
  padding: clamp(52px, 8vw, 92px) 0;
  background-image: radial-gradient(900px 420px at 12% -10%, rgba(var(--accent-rgb), .30), transparent 62%);
}
.hero h1 { color: #fff; max-width: 17ch; }
.hero .lede { font-size: clamp(1.05rem, 2.1vw, 1.24rem); max-width: 56ch; color: #c3cad4; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .09em;
  font-size: .76rem; font-weight: 800; color: var(--accent-light); margin-bottom: 14px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-points { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 9px; }
.hero-points li { padding-left: 27px; position: relative; color: #c3cad4; }
.hero-points li::before {
  content: ""; position: absolute; left: 2px; top: .55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

/* Hero with a project photo behind it. The scrim keeps headline contrast well
   clear of WCAG AA no matter how bright the photo is. */
.hero.has-photo {
  background-image:
    radial-gradient(900px 420px at 12% -10%, rgba(var(--accent-rgb), .34), transparent 62%),
    linear-gradient(100deg, rgba(14, 17, 22, .97) 0%, rgba(14, 17, 22, .94) 44%, rgba(14, 17, 22, .60) 78%, rgba(14, 17, 22, .45) 100%),
    var(--hero-photo);
  background-size: auto, auto, cover;
  background-position: center, center, center 40%;
  background-repeat: no-repeat;
}
@media (max-width: 760px) {
  /* On a narrow screen the photo sits behind the text rather than beside it,
     so darken further instead of letting the headline fight the image. */
  .hero.has-photo {
    background-image:
      linear-gradient(rgba(14, 17, 22, .93), rgba(14, 17, 22, .90)),
      var(--hero-photo);
    background-size: auto, cover;
  }
}

/* ---------- work gallery ---------- */
.gallery {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 360px));
  justify-content: center;
}
.gallery figure {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.gallery img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption {
  padding: 11px 14px; font-size: .87rem; font-weight: 600; color: var(--ink-2);
  border-top: 1px solid var(--line);
}

/* ---------- trust strip ---------- */
.trust { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px 0; }
.trust ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center;
  font-size: .92rem; font-weight: 600; color: var(--ink-2);
}

/* ---------- sections ---------- */
section { padding: clamp(46px, 7vw, 76px) 0; }
section.alt { background: var(--bg-2); }
.section-head { max-width: 60ch; margin-bottom: 34px; }
.section-head p { color: var(--ink-3); margin-bottom: 0; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
/* Exactly four cards: 2x2 on desktop so the fourth never orphans onto its
   own row, which is what auto-fit at minmax(300px,1fr) produced at 1120px. */
.grid-services { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }
.card .tag {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px;
}
a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { border-color: var(--ink-3); }
a.card .more { color: var(--accent-dark); font-weight: 700; font-size: .93rem; }

/* numbered process steps */
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; gap: 18px; }
.steps li { counter-increment: s; padding-left: 52px; position: relative; }
.steps li::before {
  content: counter(s); position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; font-size: .95rem;
  display: grid; place-items: center;
}
.steps strong { display: block; color: var(--ink); }

.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.checks li { padding-left: 30px; position: relative; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--accent); font-weight: 800;
}

/* ---------- FAQ ---------- */
details {
  border-bottom: 1px solid var(--line); padding: 16px 0;
}
details summary {
  cursor: pointer; font-weight: 700; color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details .answer { padding-top: 12px; color: var(--ink-2); }
details .answer p:last-child { margin-bottom: 0; }

/* ---------- mid-page CTA band ---------- */
/* Second conversion point, so acting never requires scrolling back up. */
.cta-band {
  background: var(--accent); color: #fff;
  padding: clamp(34px, 5vw, 52px) 0;
}
.cta-band h2 { color: #fff; margin-bottom: 20px; max-width: 22ch; }
.cta-band .hero-cta { margin-top: 0; }
.cta-band .btn-primary { background: #fff; color: var(--accent-dark); }
.cta-band .btn-primary:hover { background: #f1f1f1; }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.cta-band .btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

/* Landing-page footer: contact details only, no link columns. */
.footer-tight { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); max-width: 720px; }

/* ---------- quote form ---------- */
.quote { background: var(--bg-3); color: #c3cad4; }
.quote h2 { color: #fff; }
.quote-layout { display: grid; gap: 34px; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; }
@media (max-width: 860px) { .quote-layout { grid-template-columns: 1fr; } }
.quote-form {
  background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.quote-form label { display: block; font-weight: 700; color: var(--ink); font-size: .9rem; margin-bottom: 6px; }
.field { margin-bottom: 16px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: 11px 13px; font: inherit; font-size: .97rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 2px solid rgba(var(--accent-rgb), .35); outline-offset: 1px; border-color: var(--accent);
}
.quote-form textarea { min-height: 104px; resize: vertical; }
.quote-form .btn { width: 100%; }
.form-note { font-size: .84rem; color: var(--ink-3); margin: 12px 0 0; text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-block { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.contact-block a { color: #fff; }
.contact-block strong { color: #fff; display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: #8d97a5; margin-bottom: 2px; }

/* ---------- footer ---------- */
.site-footer { background: #070a0e; color: #8d97a5; padding: 44px 0 32px; font-size: .92rem; }
.site-footer a { color: #c3cad4; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.site-footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid #1c222b; margin-top: 32px; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .85rem;
}

/* ---------- sticky mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 700px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--line); box-shadow: 0 -2px 14px rgba(0, 0, 0, .14);
  }
  .callbar a {
    background: #fff; text-align: center; padding: 14px 8px;
    font-weight: 700; text-decoration: none; color: var(--ink); font-size: .95rem;
  }
  .callbar a.primary { background: var(--accent); color: #fff; }
  body { padding-bottom: 56px; }
}

/* ==========================================================================
   EDITORIAL SYSTEM — the navigable site (home, our work, permits, about,
   contact). The four campaign pages keep the tighter funnel styling above.
   ========================================================================== */

h1, h2, h3 { text-wrap: balance; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; padding: 0 40px; }
@media (max-width: 700px) { .wrap-wide { padding: 0 20px; } }

/* ---------- site nav ---------- */
.site-header nav a.nav-main {
  color: var(--ink-2); text-decoration: none; font-size: .95rem; font-weight: 600;
  padding: 4px 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
.site-header nav a.nav-main:hover { color: var(--accent-dark); }
.site-header nav a.nav-main[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }
.site-header .brandmark { display: flex; align-items: center; gap: 12px; }
.site-header .brandmark .place {
  font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); border-left: 1px solid var(--line); padding-left: 12px;
}
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.site-header .header-phone {
  color: var(--ink); font-weight: 700; text-decoration: none; font-size: 1rem;
}
.site-header .header-phone:hover { color: var(--accent-dark); }
@media (max-width: 620px) { .site-header .header-phone { display: none; } }
@media (max-width: 900px) {
  .site-header .wrap-wide { flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
  .site-header nav { width: 100%; order: 3; gap: 18px; overflow-x: auto; padding-bottom: 2px; }
  .site-header .brandmark .place { display: none; }
}

/* ---------- full-bleed photographic hero ---------- */
.hero-full {
  position: relative; display: flex; align-items: flex-end;
  min-height: clamp(430px, 64vh, 620px);
  background: var(--bg-3) var(--hero-photo) center 42% / cover no-repeat;
}
.hero-full::after {
  content: ""; position: absolute; inset: 0;
  /* Two layers: a vertical wash for the whole frame, plus a horizontal one that
     darkens the text column so the headline never fights the sign behind it. */
  background:
    linear-gradient(96deg, rgba(14,17,22,.80) 0%, rgba(14,17,22,.60) 42%, rgba(14,17,22,.08) 82%),
    linear-gradient(180deg, rgba(14,17,22,.52) 0%, rgba(14,17,22,.20) 32%, rgba(14,17,22,.92) 100%);
}
@media (max-width: 760px) {
  /* Narrow screens put the text over the middle of the photo, so drop the
     horizontal layer and darken uniformly instead. */
  .hero-full::after {
    background: linear-gradient(180deg, rgba(14,17,22,.72) 0%, rgba(14,17,22,.62) 40%, rgba(14,17,22,.94) 100%);
  }
}
.hero-full .wrap-wide { position: relative; z-index: 1; width: 100%; padding-top: 96px; padding-bottom: 58px; }
.hero-full h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 4.7rem); font-weight: 900; max-width: 15ch; margin-bottom: .3em; }
.hero-full .lede { color: #d7dce2; font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.5; max-width: 58ch; margin-bottom: 30px; }
.hero-credit { position: absolute; right: 20px; bottom: 14px; z-index: 1; font-size: .7rem; color: rgba(255,255,255,.5); }

/* Slimmer hero for the secondary pages. */
.hero-page { background: var(--bg-3); padding: clamp(54px, 8vw, 84px) 0 clamp(46px, 6vw, 62px);
  background-image: radial-gradient(900px 400px at 8% -20%, rgba(var(--accent-rgb), .30), transparent 62%); }
.hero-page h1 { color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 900; max-width: 18ch; margin-bottom: .35em; }
.hero-page .lede { color: #c8cfd7; font-size: clamp(1.02rem, 1.6vw, 1.18rem); line-height: 1.55; max-width: 62ch; }

/* ---------- stats strip ---------- */
.stats { background: var(--bg-3); border-top: 1px solid #232830; padding: 28px 0; }
.stats ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.stats .n { display: block; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 900; color: #fff;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stats .n .star { color: var(--accent-light); font-size: .74em; }
.stats .l { font-size: .84rem; color: #98a2ae; line-height: 1.45; }
.stats a.l { color: #98a2ae; text-decoration: none; border-bottom: 1px solid #3a424e; }
.stats a.l:hover { color: #fff; border-bottom-color: #6b7684; }

/* ---------- section furniture ---------- */
.band { padding: clamp(56px, 7vw, 84px) 0; }
.band.tint { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band.dark { background: var(--bg-3); }
.band.dark h2, .band.dark h3 { color: #fff; }
.band.dark p { color: #a8b1bc; }
.band-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 34px; flex-wrap: wrap; }
.band-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; max-width: 20ch; }
.band-head .aside { font-size: 1rem; line-height: 1.6; max-width: 40ch; color: var(--ink-3); }

/* ---------- photographic service tiles ---------- */
.tiles { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
a.tile {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius);
  min-height: 320px; text-decoration: none; color: #fff; box-shadow: var(--shadow);
  background: var(--bg-3) var(--tile-photo) center / cover no-repeat;
}
a.tile::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,17,22,.10) 32%, rgba(14,17,22,.90) 100%); transition: background .2s; }
a.tile:hover::after { background: linear-gradient(180deg, rgba(14,17,22,.26) 18%, rgba(14,17,22,.94) 100%); }
a.tile:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.tile-body { position: absolute; z-index: 1; inset: auto 0 0 0; padding: 24px 26px; }
.tile-body h3 { color: #fff; font-size: 1.45rem; font-weight: 800; margin-bottom: .2em; }
.tile-body p { color: #d3d9e0; font-size: .95rem; margin: 0; line-height: 1.5; }
.tile-body .more { display: inline-block; margin-top: 11px; font-weight: 700; font-size: .9rem; color: #fff; }
a.tile:hover .more { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- work grid ---------- */
.work { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.work.featured { grid-template-columns: 1fr; }
@media (min-width: 900px) { .work.featured { grid-template-columns: 1.35fr 1fr 1fr; } }
.work figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow); }
.work img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.work .big { grid-row: span 2; }
@media (min-width: 900px) { .work .big img { aspect-ratio: auto; height: 396px; } }
.work figcaption { padding: 14px 16px; }
.work .t { display: block; font-weight: 700; color: var(--ink); font-size: .98rem; }
.work .m { display: block; font-size: .86rem; color: var(--ink-3); margin-top: 2px; }

/* ---------- process timeline ---------- */
.steps-h { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.steps-h .num { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff;
  font-weight: 800; font-size: .95rem; display: grid; place-items: center; flex: none; }
.steps-h .when { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-light); }
.steps-h h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .35em; }
.steps-h .row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

/* ---------- testimonials ---------- */
.quotes { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
blockquote.q { margin: 0; background: var(--bg-2); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 26px; }
blockquote.q .stars { color: var(--accent); font-size: .9rem; letter-spacing: 2px; margin-bottom: 12px; }
blockquote.q p { font-size: 1.06rem; line-height: 1.55; color: var(--ink); margin-bottom: 14px; }
blockquote.q footer { font-size: .84rem; color: var(--ink-3); }

/* ---------- feature row (photo + copy) ---------- */
.feature { display: grid; gap: clamp(26px, 4vw, 52px); align-items: center; }
@media (min-width: 880px) { .feature { grid-template-columns: 1fr 1.05fr; } .feature.flip .feature-media { order: 2; } }
.feature-media img { display: block; width: 100%; height: auto; border-radius: var(--radius);
  box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.feature-media .placeholder {
  border-radius: var(--radius); background: var(--line); border: 1px dashed var(--line-strong, #b8c0cb);
  aspect-ratio: 4 / 3; display: grid; place-items: center; text-align: center; padding: 30px;
  font-size: .9rem; color: var(--ink-3); line-height: 1.6;
}
.meta-pair { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 24px; }
.meta-pair dt { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.meta-pair dd { margin: 0; font-size: 1rem; color: var(--ink); line-height: 1.5; }

/* ---------- FAQ list ---------- */
.faq-list { }
.faq-list .item { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-list .item:last-child { border-bottom: 1px solid var(--line); }
.faq-list h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .4em; }
.faq-list p { font-size: 1rem; line-height: 1.65; }
.split { display: grid; gap: clamp(28px, 4vw, 56px); }
@media (min-width: 880px) { .split { grid-template-columns: .8fr 1.2fr; } }

/* ---------- prose ---------- */
.prose { max-width: 68ch; }
.prose p { font-size: 1.06rem; line-height: 1.7; margin-bottom: 1.1em; }
.prose h3 { font-size: 1.3rem; margin: 1.7em 0 .5em; }
.prose ul { padding-left: 1.15em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .55em; line-height: 1.65; }

/* ---------- site footer (navigable pages) ---------- */
.site-footer .brandmark img { height: 40px; width: auto; }
