:root {
  --blue:       #0d5a8a;
  --blue-dark:  #083d5f;
  --blue-light: #e8f1f8;
  --ink:        #1a1a1a;
  --ink-mid:    #4a4a4a;
  --ink-muted:  #888;
  --rule:       #d8d8d8;
  --bg:         #faf9f7;
  --white:      #ffffff;
  --max:        880px;
  --col-gap:    clamp(1.6rem, 5vw, 3.2rem);
  --accent-font:'Unna', Georgia, serif;
  --ser-font:   'Source Serif 4', Georgia, serif;
  --sans-font:  'DM Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans-font);
  font-weight: 300;
  font-size: 13.6px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
.serif      { font-family: var(--accent-font); }
.serif-body { font-family: var(--ser-font); }
h1, h2, h3 {
  font-family: var(--accent-font);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}
.container {
  width: min(var(--max), 100% - 2 * clamp(1rem, 4vw, 2.4rem));
  margin-inline: auto;
}
section { padding-block: clamp(2.8rem, 8vw, 4.8rem); }
hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}
header {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54.4px;
}
.note {
  font-family: var(-sans-font);
  font-size: 0.576rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 1rem;
}
.logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-cta {
  font-size: 0.664rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em;
  color: var(--white) !important;
  background: var(--blue);
  padding: 0.44rem 1rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; color: var(--white) !important; }
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.68rem 1.6rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-text {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--blue); border-color: var(--blue); }
.section-eyebrow {
  font-size: 0.576rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}
.section-title {
  font-size: clamp(1.28rem, 3vw, 2rem);
  margin-top: 0.4rem;
}
.hero {
  background: var(--white);
  padding-block: clamp(2rem, 7vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: center;
}
.hero-35 {
  display: grid;
  grid-template-columns: 7fr 13fr;
  gap: var(--col-gap);
  align-items: center;
}
.hero-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(1.92rem, 4.5vw, 2.88rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-body {
  font-family: var(--ser-font);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero-right {
  border-left: 1px solid var(--rule);
  padding-left: var(--col-gap);
}
.hero-right p {
  font-family: var(--ser-font);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
}
.hero-right-meta {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-top: 1.2rem;
}
.hero-right-label {
  font-size: 0.576rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.2rem;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-list li {
  display: flex;
  align-items: baseline;
  gap: 0.68rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--ser-font);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink);
}
.service-list li:last-child { border-bottom: none; }
.service-num {
  font-family: var(--accent-font);
  font-size: 0.6rem;
  color: var(--blue);
  min-width: 0.96rem;
}
.intro-band {
  background: var(--blue);
  padding-block: clamp(2rem, 5vw, 2.8rem);
}
.intro-band-a {
  font-family: var(--sans-font);
  font-size: 0.576rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.intro-band-b {
  font-family: var(--accent-font);
  font-size: clamp(1.28rem, 3vw, 2rem);
  color: var(--white);
}
.intro-band-inner {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.intro-band blockquote {
  font-family: var(--accent-font);
  font-style: italic;
  font-size: clamp(1.04rem, 2.5vw, 1.4rem);
  color: var(--white);
  line-height: 1.4;
  flex: 1;
}
.intro-band-meta {
  flex: 0 0 192px;
  color: rgba(255,255,255,0.65);
  font-size: 0.68rem;
  line-height: 1.65;
  font-weight: 300;
}
.intro-band-meta h3 {
  color: rgba(255,255,255,0.65);
  font-size: 1.3rem;
  font-weight: 600;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.services-carousel {
  position: relative;
}
.services-grid {
  display: flex;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  cursor: default;
}
.service-card {
  flex: 0 0 33.333%;
  width: 33.333%;
  min-width: 0;
  scroll-snap-align: start;
  padding: 2.25rem 2rem 2.25rem 0;
  border-right: 1px solid var(--rule);
  user-select: none;
}
.service-card:last-child { border-right: none; }
.service-card:not(:first-child) { padding-left: 2rem; }
 
.service-card-num {
  font-family: var(--accent-font);
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 1rem;
}
 
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-family: var(--ser-font);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}
.articles { background: var(--white); }
.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.articles-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  gap: 0;
}
.article-card {
  padding-right: 2rem;
  border-right: 1px solid var(--rule);
}
.article-card:last-child { border-right: none; padding-right: 0; }
.article-card:not(:first-child) { padding-left: 2rem; }
.article-tag {
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.article-card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  transition: color 0.2s;
}
.article-card:hover h3 { color: var(--blue); }
.article-card.featured h3 { font-size: 1.36rem; }
.article-excerpt {
  font-family: var(--ser-font);
  font-size: 0.744rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.article-meta {
  font-size: 0.6rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--col-gap);
  align-items: start;
}
.about-photo-col {
  position: sticky;
  top: 70.4px;
}
.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--blue-light);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  position: relative;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--blue);
  opacity: 0.4;
}
.about-photo-placeholder svg { opacity: 0.6; }
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-cred-item {
  padding-block: 0.72rem;
  border-bottom: 1px solid var(--rule);
}
.about-cred-item:first-child { border-top: 1px solid var(--rule); }
.about-cred-label {
  font-size: 0.544rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.12rem;
  font-weight: 500;
}
.about-cred-value {
  font-family: var(--ser-font);
  font-size: 0.704rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.4;
}
.about-content { padding-top: 0.25rem; }
.about-content .section-eyebrow { margin-bottom: 0.5rem; }
.about-name {
  font-family: var(--accent-font);
  font-size: clamp(1.6rem, 3.5vw, 2.24rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.28rem;
}
.about-title {
  font-size: 0.656rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.about-lead {
  font-family: var(--accent-font);
  font-style: italic;
  font-size: clamp(0.88rem, 2vw, 1.04rem);
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--rule);
}
.about-body {
  font-family: var(--ser-font);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
}
.about-body p + p { margin-top: 1rem; }
.about-body strong {
  font-weight: 400;
  color: var(--ink);
}
.about-cta-row {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(2.4rem, 7vw, 4rem);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(1.92rem, 4.5vw, 3.04rem);
  line-height: 1.1;
  margin-top: 0.6rem;
}
.page-hero-right { padding-bottom: 0.2rem; }
.page-hero-right p {
  font-family: var(--ser-font);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
}
.about-page { background: var(--white); }
.about-page-inner {
  display: grid;
  grid-template-columns: 224px 1fr;
  gap: var(--col-gap);
  align-items: start;
}
.about-sidebar {
  position: sticky;
  top: 70.4px;
}
.cred-block { margin-bottom: 0; }
.cred-item {
  padding-block: 0.72rem;
  border-bottom: 1px solid var(--rule);
}
.cred-item:first-child { border-top: 1px solid var(--rule); }
.cred-label {
  font-size: 0.536rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.16rem;
}
.cred-value {
  font-family: var(--ser-font);
  font-size: 0.696rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.45;
}
.about-main { padding-top: 0.2rem; }
.bio-section { margin-bottom: 2.4rem; }
.bio-section-label {
  font-size: 0.544rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
}
.bio-body {
  font-family: var(--ser-font);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
}
.bio-body p + p { margin-top: 1rem; }
.bio-body strong {
  font-weight: 400;
  color: var(--ink);
}
.pull-quote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 2.4px solid var(--blue);
  background: var(--blue-light);
  border-radius: 0 1.6px 1.6px 0;
}
.pull-quote p {
  font-family: var(--accent-font);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--blue-dark);
  line-height: 1.6;
}
.interests-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.interest-tag {
  font-size: 0.624rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue-light);
  background: var(--blue-light);
  padding: 0.24rem 0.6rem;
  border-radius: 2px;
}
.about-cta {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding-block: clamp(2.4rem, 6vw, 4rem);
}
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.about-cta h2 { font-size: clamp(1.28rem, 3vw, 1.76rem); }
.about-cta p {
  font-family: var(--ser-font);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-mid);
  margin-top: 0.4rem;
  max-width: 384px;
}
.about-cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}
.cta-band {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: center;
}
.cta-text h2 {
  font-size: clamp(1.44rem, 3vw, 2.08rem);
  margin-bottom: 0.8rem;
}
.cta-text h2 em {
  color: var(--blue);
}
.cta-text p {
  font-family: var(--ser-font);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
}
.cta-contact {
  border-left: 1px solid var(--rule);
  padding-left: var(--col-gap);
}
.contact-item {
  padding-block: 1rem;
  border-bottom: 1px solid var(--rule);
}
.contact-item:first-child { border-top: 1px solid var(--rule); }
.contact-label {
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.16rem;
}
.contact-value {
  font-family: var(--accent-font);
  font-size: 0.84rem;
  color: var(--blue);
}
footer {
  background: var(--white);
  padding-block: clamp(2rem, 5vw, 2.8rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  gap: var(--col-gap);
  margin-bottom: 2.4rem;
}
.footer-brand p {
  font-size: 0.704rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 224px;
}
.footer-col h4 {
  font-family: var(--sans-font);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mid);
  margin-bottom: 0.8rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0rem; }
.footer-col ul li a {
  font-size: 0.704rem;
  font-weight: 300;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
}
.footer-legal {
  font-size: 0.624rem;
  color: var(--ink-muted);
  font-weight: 300;
}
.footer-legal a { color: var(--ink-muted); border-bottom: 1px solid var(--rule); padding-bottom: 1px; }
.footer-legal a:hover { color: var(--blue); }
.email > span:nth-child(2) { display: none; }
@media (max-width: 720px) {
  .hero-inner,
  .cta-inner { grid-template-columns: 1fr; }
  .hero-aside {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 2rem;
  }
  .cta-contact {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 2rem;
  }
  .services-grid.carousel-grid {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid.carousel-grid::-webkit-scrollbar { display: none; }
  .service-card.carousel-card {
    flex: 0 0 85%;
    width: 85%;
    scroll-snap-align: start;
    border-right: 1px solid var(--rule);
    border-bottom: none;
    padding: 1.6rem 1.2rem;
  }
  .service-card.carousel-card:last-child { border-right: none; }
  .articles-grid,
  .videos-grid { grid-template-columns: 1fr; }
  .article-card {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 1.6rem 0;
  }
  .service-card:last-child,
  .article-card:last-child { border-bottom: none; }
  .intro-band-inner { flex-direction: column; gap: 1.5rem; }
  .intro-band-meta { flex: unset; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-col { position: static; }
  .about-photo-frame { aspect-ratio: 4/3; max-width: 320px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .about-page-inner { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .about-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}