:root {
  --navy: #0b1f3a;
  --navy-2: #152a4a;
  --ink: #0b1f3a;
  --paper: #f6f3ec;
  --paper-2: #ebe6db;
  --cream: #fbfaf6;
  --muted: #5c6573;
  --red: #9e2a2b;
  --red-2: #b93a3c;
  --line: rgba(11, 31, 58, 0.12);
  --line-strong: rgba(11, 31, 58, 0.22);
  --white: #fffcf7;
  --display: "Newsreader", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --max: 1180px;
  --pad: clamp(20px, 5vw, 56px);
  --header: 76px;
  --radius: 10px;
  --shadow: 0 28px 60px rgba(11, 31, 58, 0.12);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--white);
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 600;
}

.wrap {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}

.header-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-joe {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.brand-rest {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.site-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.site-nav a {
  text-decoration: none;
  color: color-mix(in srgb, var(--navy) 68%, #6b7280);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-strong);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}
.btn.solid {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn.solid:hover { background: var(--red-2); border-color: var(--red-2); }
.btn.ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn.ghost:hover { border-color: var(--navy); }
.btn.navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn.navy:hover { background: var(--navy-2); }
.btn.small { padding: 10px 14px; font-size: 12px; }
.btn-short { display: none; }

.hero {
  position: relative;
  padding: clamp(40px, 7vw, 88px) 0 clamp(28px, 4vw, 48px);
  background: var(--paper);
  color: var(--navy);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero-grid > *,
.split > *,
.footer-grid > * { min-width: 0; }
.hero-copy { max-width: 38rem; }
.kicker {
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 16px;
  overflow-wrap: anywhere;
}
.hero h1,
.page-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  font-optical-sizing: auto;
}
.lede {
  font-size: 1.12rem;
  max-width: 44ch;
  color: color-mix(in srgb, var(--navy) 78%, var(--muted));
  margin: 0 0 28px;
  line-height: 1.55;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-frame {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-frame figcaption {
  padding: 14px 18px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-frame {
    animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-frame { animation-delay: 0.1s; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.ledger-bar {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ledger-item {
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--line);
}
.ledger-item:last-child {
  border-right: 0;
  padding-right: 0;
}
.ledger-k {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.ledger-item strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

section { padding: clamp(56px, 8vw, 100px) 0; }
.band-navy { background: var(--navy); color: var(--cream); }
.band-cream { background: var(--cream); }
.band-paper { background: var(--paper); }

.section-head { max-width: 40rem; margin-bottom: 40px; }
.section-head.center { text-align: center; margin-inline: auto; }
h1, h2 { overflow-wrap: anywhere; text-wrap: pretty; }
h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 12px;
}
.section-head p { margin: 0; color: var(--muted); }
.band-navy .section-head p { color: rgba(246, 243, 236, 0.72); }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.service-grid,
.why-grid,
.card-grid,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-grid {
  border-bottom: 1px solid var(--line);
}
.card {
  background: transparent;
  padding: 28px 28px 28px 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.service-grid .card:nth-child(3n),
.spec-grid li:nth-child(3n) {
  border-right: 0;
  padding-right: 0;
}
.card h3,
.spec-grid h3 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--navy);
}
.card p,
.spec-grid p { margin: 0; color: var(--muted); font-size: 1rem; }
.card a { color: var(--navy); text-underline-offset: 3px; }

.spec-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.spec-grid li {
  padding: 28px 28px 32px 0;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.spec-n {
  display: block;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-grid a,
.shot {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
}
.gallery-grid img,
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.gallery-grid a:first-child {
  grid-row: 1 / span 2;
}
.gallery-grid a:first-child img { aspect-ratio: auto; height: 100%; min-height: 420px; }
.shot-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(11, 31, 58, 0.82));
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 22px;
}
.note a { color: var(--navy); text-underline-offset: 3px; }

.cta-band {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0;
}
.cta-band h2 { color: var(--cream); max-width: 16ch; }
.cta-band p {
  max-width: 42ch;
  margin: 0 0 28px;
  color: rgba(246, 243, 236, 0.78);
}
.cta-band .btn.ghost {
  color: var(--cream);
  border-color: rgba(246, 243, 236, 0.35);
}
.cta-band .btn.ghost:hover { border-color: var(--cream); }
.cta-band .kicker,
.band-navy .kicker {
  color: rgba(246, 243, 236, 0.55);
}

.page-hero {
  background: var(--paper);
  color: var(--navy);
  padding: clamp(48px, 7vw, 88px) 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-hero p { margin: 0; max-width: 46ch; color: var(--muted); }

.prose { max-width: 40rem; }
.prose p { margin: 0 0 1em; }
.prose a { color: var(--navy); text-underline-offset: 3px; }
.prose h2 { margin: 1.4em 0 0.4em; }

.service-block {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.service-block:last-of-type { border-bottom: 1px solid var(--line); }
.service-block h2 { font-size: clamp(26px, 3vw, 34px); margin: 0; }
.service-block p { margin: 0 0 0.8em; color: var(--muted); }
.service-block p:last-child { margin-bottom: 0; }

.form {
  display: grid;
  gap: 16px;
  max-width: 36rem;
}
.form .btn { justify-self: start; }
label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
input, textarea, select {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--navy);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--navy);
}
textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.alert { background: #f6e4e4; border-left: 3px solid var(--red); padding: 12px 16px; }
.ok { background: #e7efe8; border-left: 3px solid #2d6a3e; padding: 12px 16px; }

.panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px;
}
.panel h2 { font-size: 32px; margin: 0 0 12px; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.project {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.project img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.project-body { padding: 18px 20px 22px; }
.project-meta {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
}
.project h3 { margin: 0 0 8px; font-size: 18px; }
.empty {
  border: 1px dashed var(--line-strong);
  padding: 48px 28px;
  text-align: center;
  background: var(--cream);
  border-radius: 12px;
}
.empty h2 { margin-bottom: 10px; }

.review-list { display: grid; gap: 18px; }
.review {
  background: var(--cream);
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--navy);
  border-radius: 0 10px 10px 0;
}
.review p { margin: 0 0 10px; }
.review cite {
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.site-footer .brand-joe { color: var(--cream); }
.site-footer .brand-rest { color: rgba(246, 243, 236, 0.62); }
.site-footer .logo-mark {
  border-radius: 11px;
  box-shadow: 0 0 0 1px rgba(246, 243, 236, 0.22);
}
.footer-tag {
  font-family: var(--display);
  letter-spacing: -0.02em;
  font-size: 24px;
  font-weight: 500;
  margin: 18px 0 8px;
}
.footer-area, .license, .footer-copy { color: rgba(246, 243, 236, 0.62); font-size: 0.95rem; }
.foot-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(246, 243, 236, 0.48);
  margin: 0 0 14px;
}
.site-footer nav { display: grid; gap: 8px; }
.site-footer nav a { text-decoration: none; color: rgba(246, 243, 236, 0.82); }
.site-footer nav a:hover { color: #fff; }
.footer-copy {
  border-top: 1px solid rgba(246, 243, 236, 0.12);
  padding-top: 18px;
}
.footer-copy a { color: var(--cream); }

@media (max-width: 900px) {
  .header-row { gap: 12px; }
  .header-cta .ghost { display: none; }
  .header-cta .btn-long { display: none; }
  .header-cta .btn-short { display: inline; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: calc(var(--pad) * -1);
    right: calc(var(--pad) * -1);
    background: var(--cream);
    flex-direction: column;
    padding: 8px var(--pad) 28px;
    z-index: 45;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav a { padding: 10px 0; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .hero-grid,
  .split,
  .service-grid,
  .why-grid,
  .card-grid,
  .spec-grid,
  .footer-grid,
  .project-grid,
  .service-block,
  .ledger {
    grid-template-columns: 1fr;
  }
  .ledger-item,
  .card,
  .spec-grid li,
  .service-grid .card:nth-child(3n),
  .spec-grid li:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }
  .ledger-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
  .ledger-item:last-child { border-bottom: 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid a:first-child { grid-row: auto; }
  .gallery-grid a:first-child img { min-height: 0; aspect-ratio: 4 / 3; }
  .hero-frame img { aspect-ratio: 16 / 10; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-band h2 { max-width: none; }
  .header-row { gap: 8px; }
  .header-cta { display: none; }
  .brand { gap: 8px; }
  .brand-rest { display: none; }
  .logo-mark { width: 36px; height: 36px; }
  .nav-toggle { padding: 7px 10px; }
}
