:root {
  --ink: #171719;
  --paper: #fbfaf6;
  --white: #ffffff;
  --citrus: #d6fa45;
  --coral: #ef6254;
  --sky: #93cad2;
  --blue: #26599f;
  --muted: #686866;
  --line: #d9d8d2;
  --display: "Bodoni 72", Didot, "Iowan Old Style", Georgia, serif;
  --body: "Avenir Next", Avenir, "Century Gothic", "Segoe UI", sans-serif;
  --measure: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--citrus); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-150%);
  background: var(--white);
  border: 2px solid var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 4vw;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.brand span { color: var(--citrus); font-family: var(--body); font-size: 0.68rem; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a {
  position: relative;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--citrus);
  transition: transform 180ms ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--white);
  content: "";
}
.nav-toggle span::before { transform: translateY(-0.38rem); }
.nav-toggle span::after { transform: translateY(0.26rem); }

.hero {
  position: relative;
  min-height: min(43rem, calc(100vh - 4.5rem));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}
.hero::before {
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  content: "";
  background-color: var(--sky);
  background-image: linear-gradient(rgba(23,23,25,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(23,23,25,0.12) 1px, transparent 1px);
  background-size: 46px 46px;
}
.hero::after {
  position: absolute;
  z-index: -1;
  right: 4vw;
  bottom: -3.5rem;
  content: "MAUREEN";
  color: rgba(255,255,255,0.2);
  font-family: var(--display);
  font-size: 10rem;
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}
.hero-inner {
  width: min(92%, var(--measure));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 5rem;
}
.hero-copy { width: min(60%, 43rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow::before { width: 2.5rem; height: 3px; background: var(--coral); content: ""; }
.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--display);
  font-size: 7.7rem;
  font-weight: 700;
  line-height: 0.83;
  letter-spacing: 0;
}
.hero h1 em { color: var(--citrus); font-weight: inherit; }
.hero .lede { max-width: 34rem; margin: 1.8rem 0 0; font-size: 1.22rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  border: 2px solid var(--ink);
  background: var(--citrus);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover, .button:focus-visible { transform: translate(-3px,-3px); box-shadow: 4px 4px 0 var(--coral); }
.button-ghost { border-color: rgba(255,255,255,0.6); background: transparent; color: var(--white); }
.hero-portrait {
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 0;
  width: min(38vw, 31rem);
  filter: saturate(0.85) contrast(1.04);
}
.hero-caption {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 10%;
  width: 9.5rem;
  padding: 0.65rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-articles { padding: 4.75rem 4vw 5.5rem; background: var(--white); }
.section-shell { width: min(100%, var(--measure)); margin: 0 auto; }
.section-heading { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1.25fr); gap: 3rem; align-items: end; }
.section-heading h2, .band-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 5.1rem;
  font-weight: 700;
  line-height: 0.92;
}
.section-heading p { max-width: 42rem; margin: 0; color: var(--muted); }
.article-tabs { max-width: 100%; min-width: 0; margin-top: 2.5rem; overflow: hidden; border-top: 2px solid var(--ink); }
.tab-list { display: flex; width: 100%; max-width: 100%; min-width: 0; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: thin; }
.tab-button {
  flex: 0 0 auto;
  min-height: 3.2rem;
  padding: 0.7rem 1.2rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.tab-button[aria-selected="true"] { background: var(--ink); color: var(--white); }
.tab-button:focus-visible { outline: 3px solid var(--coral); outline-offset: -3px; }
.tab-panel { padding: 0.8rem 0 0; }
.js .tab-panel[hidden] { display: none; }
.article-index { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; margin: 0; padding: 0; list-style: none; }
.article-index li { min-width: 0; border-bottom: 1px solid var(--line); }
.article-index a {
  display: grid;
  min-height: 3.75rem;
  grid-template-columns: 4.4rem minmax(0,1fr) 1.2rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  text-decoration: none;
}
.article-index time { color: var(--muted); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
.article-index strong { min-width: 0; font-size: 0.9rem; line-height: 1.3; }
.article-index .arrow { color: var(--coral); font-size: 1.15rem; transition: transform 160ms ease; }
.article-index a:hover strong, .article-index a:focus-visible strong { text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: 0.2rem; }
.article-index a:hover .arrow, .article-index a:focus-visible .arrow { transform: translateX(0.25rem); }
[data-na-home-published-list]:empty { display: none; }

.expertise-band { padding: 5.5rem 4vw; background: var(--citrus); border-top: 2px solid var(--ink); }
.band-heading { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; }
.band-heading p { max-width: 43rem; margin: 0.25rem 0 0; font-size: 1.08rem; }
.expertise-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 3.5rem; border-top: 2px solid var(--ink); }
.expertise-item { position: relative; min-height: 13rem; padding: 1.8rem 3rem 2rem 0; border-bottom: 1px solid rgba(23,23,25,0.45); }
.expertise-item:nth-child(odd) { padding-right: 2.5rem; border-right: 1px solid rgba(23,23,25,0.45); }
.expertise-item:nth-child(even) { padding-left: 2.5rem; }
.expertise-item .number { color: var(--coral); font-family: var(--display); font-size: 1.2rem; font-weight: 700; }
.expertise-item h3 { margin: 0.25rem 0 0.5rem; font-family: var(--display); font-size: 1.75rem; line-height: 1; }
.expertise-item p { max-width: 31rem; margin: 0; font-size: 0.9rem; }
.expertise-item a { display: inline-block; margin-top: 0.8rem; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; text-underline-offset: 0.24rem; }

.work-band { padding: 5.5rem 4vw; background: var(--sky); border-top: 2px solid var(--ink); }
.work-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 4rem; }
.work-intro { position: sticky; top: 2rem; align-self: start; }
.work-intro h2 { margin: 0; overflow-wrap: anywhere; font-family: var(--display); font-size: 6rem; line-height: 0.88; }
.work-intro p { max-width: 24rem; }
.work-list { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.work-list li { display: grid; grid-template-columns: minmax(8rem, 0.55fr) minmax(0,1.45fr); gap: 2rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(23,23,25,0.45); }
.work-list strong { font-family: var(--display); font-size: 1.3rem; line-height: 1.1; }
.work-list span { font-size: 0.88rem; }

.portrait-band { position: relative; padding: 6rem 4vw; background: var(--coral); border-top: 2px solid var(--ink); }
.portrait-layout { display: grid; grid-template-columns: minmax(14rem,0.65fr) minmax(0,1.35fr); gap: clamp(2rem,6vw,6rem); align-items: center; }
.portrait-layout > *, .work-layout > * { min-width: 0; }
.portrait-frame { position: relative; width: 100%; min-width: 0; }
.portrait-frame::before { position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem; border: 2px solid var(--ink); content: ""; }
.portrait-frame img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border: 2px solid var(--ink); }
.portrait-copy blockquote { margin: 0; font-family: var(--display); font-size: 4.7rem; font-weight: 700; line-height: 0.95; }
.portrait-copy p { max-width: 43rem; margin: 1.5rem 0 0; }
.portrait-copy .signature { margin-top: 2rem; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }

.site-footer { padding: 3.5rem 4vw 2rem; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; width: min(100%,var(--measure)); margin: 0 auto; }
.footer-mark { max-width: 17rem; }
.footer-mark strong { font-family: var(--display); font-size: 2.2rem; }
.footer-mark p { color: #c9c9c5; font-size: 0.82rem; }
.footer-links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0.5rem 2rem; align-content: start; }
.footer-links a { color: var(--white); font-size: 0.78rem; font-weight: 700; text-decoration-color: var(--coral); text-underline-offset: 0.25rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; width: min(100%,var(--measure)); margin: 2.5rem auto 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.25); color: #b5b5b2; font-size: 0.68rem; text-transform: uppercase; }

.page-hero {
  padding: 5.25rem 4vw 4.5rem;
  background: var(--ink);
  color: var(--white);
  border-bottom: 0.75rem solid var(--citrus);
}
.page-hero-inner { width: min(100%, var(--measure)); margin: 0 auto; }
.page-hero h1 { max-width: 13ch; margin: 0; font-family: var(--display); font-size: 7.4rem; line-height: 0.87; }
.page-hero p { max-width: 47rem; margin: 1.4rem 0 0; color: #d8d8d3; font-size: 1.08rem; }
.content-band { padding: 5rem 4vw; }
.content-band.white { background: var(--white); }
.content-band.sky { background: var(--sky); }
.content-band.citrus { background: var(--citrus); }
.content-grid { display: grid; grid-template-columns: minmax(15rem,0.65fr) minmax(0,1.35fr); gap: clamp(2.5rem,7vw,7rem); width: min(100%,var(--measure)); margin: 0 auto; }
.content-grid h2 { margin: 0; overflow-wrap: anywhere; font-family: var(--display); font-size: 3.5rem; line-height: 0.95; }
.prose { max-width: 48rem; }
.prose > :first-child { margin-top: 0; }
.prose h2, .prose h3 { margin: 2.2rem 0 0.7rem; font-family: var(--display); line-height: 1.05; }
.prose h2 { font-size: 2rem; }
.prose h3 { font-size: 1.4rem; }
.prose p, .prose li { color: #343436; }
.prose a { text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: 0.2rem; }
.prose blockquote { margin: 2rem 0; padding: 1.2rem 0 1.2rem 1.5rem; border-left: 0.35rem solid var(--coral); font-family: var(--display); font-size: 1.45rem; line-height: 1.25; }
.prose img { max-height: 38rem; margin: 2rem auto; object-fit: contain; border: 1px solid var(--line); }
.service-rows, .portfolio-rows { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.service-rows li, .portfolio-rows li { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 2rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(23,23,25,0.35); }
.service-rows strong, .portfolio-rows strong { font-family: var(--display); font-size: 1.35rem; line-height: 1.1; }
.service-rows p, .portfolio-rows p { margin: 0; }
.mini-kicker { margin: 0 0 0.8rem; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }

.article-hero { padding: 4.75rem 4vw 4rem; background: var(--sky); border-bottom: 2px solid var(--ink); }
.article-hero-inner { width: min(100%,62rem); margin: 0 auto; }
.article-hero .article-meta { margin: 0 0 1.2rem; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }
.article-hero h1 { max-width: 15ch; margin: 0; font-family: var(--display); font-size: 6.2rem; line-height: 0.92; overflow-wrap: anywhere; }
.article-hero .dek { max-width: 48rem; margin: 1.4rem 0 0; font-size: 1.06rem; }
.article-wrap { display: grid; grid-template-columns: 10rem minmax(0,46rem); justify-content: center; gap: 3rem; padding: 4rem 4vw 6rem; background: var(--white); }
.article-aside { align-self: start; position: sticky; top: 2rem; padding-top: 0.45rem; border-top: 3px solid var(--coral); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.article-body { min-width: 0; font-family: "Iowan Old Style", Georgia, serif; font-size: 1.17rem; line-height: 1.78; }
.article-body > :first-child { margin-top: 0; }
.article-body h2, .article-body h3, .article-body h4 { font-family: var(--body); line-height: 1.12; }
.article-body h2 { margin: 2.8rem 0 0.85rem; font-size: 1.8rem; }
.article-body h3 { margin: 2.1rem 0 0.7rem; font-size: 1.3rem; }
.article-body p { margin: 0 0 1.25rem; }
.article-body a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 0.18rem; overflow-wrap: anywhere; }
.article-body ul, .article-body ol { padding-left: 1.25rem; }
.article-body li { margin-bottom: 0.6rem; }
.article-body blockquote { margin: 2rem 0; padding: 1.25rem 1.5rem; border-left: 0.4rem solid var(--coral); background: var(--paper); font-family: var(--display); font-size: 1.35rem; line-height: 1.3; }
.article-body img { max-height: 42rem; margin: 2rem auto; object-fit: contain; border: 1px solid var(--line); }
.article-body table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; font-family: var(--body); font-size: 0.86rem; }
.article-body th, .article-body td { padding: 0.65rem; border: 1px solid var(--line); text-align: left; }
.article-cta { margin-top: 3rem; padding: 1.5rem; background: var(--citrus); border: 2px solid var(--ink); font-family: var(--body); }
.article-cta strong { display: block; font-family: var(--display); font-size: 1.55rem; }

.accordion-list { border-top: 2px solid var(--ink); }
.accordion-item { border-bottom: 1px solid var(--ink); }
.accordion-trigger { display: grid; width: 100%; grid-template-columns: 1fr 2rem; align-items: center; gap: 1rem; padding: 1rem 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion-trigger strong { font-family: var(--display); font-size: 1.3rem; }
.accordion-trigger span:last-child { font-size: 1.3rem; text-align: center; transition: transform 160ms ease; }
.accordion-trigger[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.accordion-panel { padding: 0 2.5rem 1.5rem 0; }
.accordion-panel[hidden] { display: none; }

.reveal { opacity: 1; transform: none; transition: transform 180ms ease; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 4vw 1rem;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .site-nav a::after { display: none; }
  .hero { min-height: 44rem; }
  .hero::before { right: -15%; top: 52%; width: 90%; height: 48%; }
  .hero::after { right: -2rem; bottom: -1.3rem; font-size: 6.5rem; }
  .hero-inner { align-items: flex-start; padding-top: 3.2rem; }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 8ch; font-size: 6.2rem; }
  .section-heading h2, .band-heading h2 { font-size: 4.3rem; }
  .work-intro h2 { font-size: 5rem; }
  .portrait-copy blockquote { font-size: 3.8rem; }
  .page-hero h1 { font-size: 5.3rem; }
  .content-grid h2 { font-size: 3.5rem; }
  .article-hero h1 { font-size: 4.8rem; }
  .hero .lede { max-width: 29rem; padding-right: 1rem; font-size: 0.98rem; }
  .hero-portrait { right: 4%; width: min(54vw, 23rem); }
  .hero-caption { display: none; }
  .section-heading, .band-heading, .work-layout, .portrait-layout, .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-heading p { max-width: 34rem; }
  .work-intro { position: static; }
  .article-wrap { grid-template-columns: minmax(0,46rem); }
  .article-aside { position: static; }
}

@media (max-width: 620px) {
  .site-header { min-height: 4rem; padding-inline: 1rem; }
  .brand { font-size: 1.35rem; }
  .hero { min-height: 42rem; }
  .hero-inner { width: calc(100% - 2rem); padding-top: 2.6rem; }
  .hero h1 { font-size: 4rem; }
  .hero .lede { max-width: 21rem; font-size: 0.88rem; line-height: 1.5; }
  .hero-actions { margin-top: 1.2rem; }
  .button { min-height: 2.7rem; padding: 0.62rem 0.8rem; font-size: 0.69rem; }
  .hero-portrait { right: -2%; width: min(58vw, 19rem); }
  .home-articles, .expertise-band, .work-band, .portrait-band, .content-band { padding: 3.75rem 1rem; }
  .section-heading { gap: 1.2rem; }
  .section-heading h2, .band-heading h2 { font-size: 3.15rem; }
  .content-grid h2 { font-size: 3rem; }
  .portrait-copy blockquote { overflow-wrap: anywhere; font-size: 3rem; }
  .article-index { grid-template-columns: 1fr; }
  .article-index a { min-height: 3.45rem; grid-template-columns: 3.8rem minmax(0,1fr) 1rem; }
  .article-index strong { font-size: 0.83rem; }
  .expertise-list { grid-template-columns: 1fr; }
  .expertise-item, .expertise-item:nth-child(odd), .expertise-item:nth-child(even) { min-height: 0; padding: 1.4rem 0; border-right: 0; }
  .work-list li, .service-rows li, .portfolio-rows li { grid-template-columns: 1fr; gap: 0.4rem; }
  .portrait-layout { padding-right: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.3rem; }
  .page-hero, .article-hero { padding: 3.8rem 1rem 3.2rem; }
  .page-hero h1 { font-size: 4rem; }
  .article-hero h1 { font-size: 3.4rem; }
  .article-wrap { padding: 3rem 1rem 4.5rem; }
  .article-body { font-size: 1.03rem; }
  .article-body h2 { font-size: 1.55rem; }
}

@media (max-width: 360px) {
  .site-header { gap: 0.75rem; }
  .brand span { display: none; }
  .hero h1 { font-size: 3.45rem; }
}
