/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #EEF4F9;
  --white:   #FFFFFF;
  --charcoal:#2D2D2D;
  --mid:     #5A6A72;
  --blue:    #3A88B5;
  --blue-dk: #2E6B8E;
  --blue-xdk:#1E4A63;
  --blue-lt: #E5F0F8;
  --gold:    #B8935A;
  --border:  #CDE0EE;
  --shadow:  0 2px 20px rgba(46,107,142,.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.2;
  color: var(--charcoal);
}
h1, h2 { font-weight: 500; }
h3, h4 { font-weight: 600; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dk); }
img { display: block; max-width: 100%; }

/* ─── Logo Mark (shared nav + hero) ───────────── */
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
}
.logo-name {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
  color: var(--white);
}
.logo-first { font-weight: 300; }
.logo-last  { font-weight: 600; }
.logo-rule {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.35);
  margin: 5px 0 4px;
}
.logo-sub {
  font-family: 'Public Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1;
}

/* Nav sizing */
.site-nav .logo-mark { gap: 0; align-items: center; text-align: center; }
.site-nav .logo-name { font-size: 1.05rem; }
.site-nav .logo-sub  { font-size: .6rem; }
.site-nav .logo-rule { margin: 4px 0 3px; }

/* Hero sizing */
.hero-logo .logo-name { font-size: clamp(2rem, 5vw, 3.2rem); }
.hero-logo .logo-sub  { font-size: clamp(.65rem, 1.2vw, .9rem); }
.hero-logo .logo-rule { margin: 10px 0 8px; }

/* ─── Nav ──────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-xdk);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}


.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: .4rem 1rem;
  border-radius: 5px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--blue-dk) !important; }

/* ─── Six-Column Hero ──────────────────────────── */
.six-col-section {
  width: 100%;
  overflow: hidden;
  background: var(--blue);
  padding: 1.75rem 2rem;
}

.six-col-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.col-panel {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 8px;
}

.col-img {
  width: 100%;
  padding-bottom: 125%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  background-color: var(--blue-dk);
}

.col-panel:hover .col-img {
  transform: scale(1.06);
}

.col-panel::after {
  content: '';
  position: absolute;
  inset: 0 0 44px 0;
  background: rgba(30, 74, 99, 0);
  transition: background .35s;
  pointer-events: none;
}
.col-panel:hover::after {
  background: rgba(30, 74, 99, .35);
}

.col-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--blue-dk);
  color: var(--white);
  text-align: center;
  padding: .7rem .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-family: 'Public Sans', sans-serif;
  transition: background .2s;
  border-top: 1px solid rgba(255,255,255,.1);
}
.col-panel:hover .col-label {
  background: var(--blue);
}

@media (max-width: 900px) {
  .six-col-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 500px) {
  .six-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Site Intro Banner ────────────────────────── */
.site-intro {
  background: var(--blue);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}
.site-intro h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: .5rem;
}
.site-intro p {
  opacity: .85;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 1.75rem;
}

/* ─── Expertise Sub-Nav ────────────────────────── */
.expertise-subnav {
  background: var(--blue-lt);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.expertise-subnav ul {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.expertise-subnav a {
  display: block;
  padding: .75rem 1.25rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-dk);
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.expertise-subnav a:hover,
.expertise-subnav a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* ─── Page Header (inner pages) ───────────────── */
.page-header {
  background: var(--blue-dk);
  padding: 3.5rem 2rem 3rem;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: .5rem;
}
.page-header p {
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: .5rem auto 0;
  font-size: 1rem;
}
.page-header .eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}

/* ─── Layout ───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }

.section-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blue);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* ─── Two-col grid ─────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── Book Cards ───────────────────────────────── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem;
  box-shadow: none;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}
.book-card:hover { box-shadow: 0 10px 28px rgba(46,107,142,.12); transform: translateY(-2px); }
.book-cover {
  width: 112px;
  flex-shrink: 0;
  align-self: flex-start;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(46,107,142,.22);
}
.book-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.book-info .btn { margin-top: auto; align-self: flex-start; }
.book-listing-cover {
  float: left;
  width: 120px;
  margin: .25rem 1.5rem 1rem 0;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(46,107,142,.22);
}
@media (max-width: 420px) {
  .book-card { flex-direction: column; }
  .book-cover { width: 130px; }
}

.book-card-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blue);
  margin-bottom: .75rem;
}

.book-card h3 { font-size: 1.35rem; margin-bottom: .25rem; }
.book-card .subtitle {
  font-size: .9rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
}
.book-card p { font-size: .95rem; color: var(--mid); margin-bottom: 1.25rem; }
.book-details {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--mid);
}
.book-details p { margin-bottom: .25rem; }

/* ─── Testimonial / Blockquote ─────────────────── */
.quote-block {
  border-left: 3px solid var(--blue);
  padding: .25rem 0 .25rem 1.5rem;
  background: transparent;
  border-radius: 0;
  margin: 1.75rem 0;
}
.quote-block blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  font-size: 1.15rem;
  line-height: 1.6;
}
.quote-block cite {
  display: block;
  margin-top: .85rem;
  font-family: 'Public Sans', sans-serif;
  font-size: .78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue-dk);
}

/* ─── Info card ────────────────────────────────── */
.info-card {
  background: var(--blue-lt);
  border-radius: 3px;
  padding: 1.75rem;
  border: 1px solid var(--border);
}

/* ─── Step/principle list ──────────────────────── */
.principle-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}
.principle-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.principle-num {
  min-width: 44px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--blue);
}
.principle-item h4 { font-size: .975rem; margin-bottom: .25rem; }
.principle-item p { font-size: .88rem; color: var(--mid); margin: 0; }

/* ─── Areas pills ──────────────────────────────── */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}
.area-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--blue-dk);
  padding: .35rem .9rem;
  border-radius: 3px;
  font-size: .83rem;
  font-weight: 500;
}

/* ─── Topic grid (approach page) ──────────────── */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.4rem;
}
.topic-card h4 {
  font-size: .975rem;
  margin-bottom: .4rem;
  color: var(--blue-dk);
}
.topic-card p { font-size: .875rem; color: var(--mid); margin: 0; }

/* ─── Contact ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.contact-info p { color: var(--mid); margin-bottom: .5rem; font-size: .95rem; }
.contact-info a { color: var(--blue); }

.contact-detail-row {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: none;
  border: none;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: .2rem;
}
.contact-icon svg { stroke: var(--blue); width: 20px; height: 20px; }

.contact-form {
  background: var(--white);
  border-radius: 3px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: none;
}
.contact-form h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Public Sans', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { min-height: 130px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ─── Buttons ──────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .72rem 1.7rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: .92rem;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: 'Public Sans', sans-serif;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #9e7b47; color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dk); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* ─── Banner strip ─────────────────────────────── */
.banner {
  background: var(--blue-xdk);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 2rem;
}
.banner h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .75rem; }
.banner p { opacity: .85; max-width: 520px; margin: 0 auto 1.75rem; }

/* ─── Footer ───────────────────────────────────── */
.site-footer {
  background: #152535;
  color: rgba(255,255,255,.55);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.footer-brand .footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer-brand p { font-size: .875rem; max-width: 240px; }
.footer-links h4 {
  color: var(--white);
  font-size: .8rem;
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .78rem;
}

/* ─── Prose ────────────────────────────────────── */
.prose h2 { font-size: 1.45rem; margin: 2rem 0 .75rem; }
.prose h3 { font-size: 1.15rem; margin: 1.5rem 0 .5rem; }
.prose p { margin-bottom: 1.1rem; color: var(--mid); }
.prose p:first-child { color: var(--charcoal); font-size: 1.05rem; }

/* ─── Divider ──────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── Utility ──────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* ─── Nav "Areas of Focus" dropdown ────────────── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-label {
  font-family: 'Public Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: none;
  border: none;
  cursor: default;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.nav-dropdown-label::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255,255,255,.55);
  transition: transform .2s, border-top-color .2s;
}
.nav-dropdown:hover .nav-dropdown-label,
.nav-dropdown:focus-within .nav-dropdown-label { color: var(--white); }
.nav-dropdown:hover .nav-dropdown-label::after,
.nav-dropdown:focus-within .nav-dropdown-label::after {
  border-top-color: var(--white);
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 215px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(30,74,99,.20);
  list-style: none;
  padding: .4rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: .55rem .85rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none !important;
  color: var(--blue-dk) !important;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover {
  background: var(--blue-lt);
  color: var(--blue) !important;
}

/* ─── Inner-page aside image (expertise + approach) ─ */
.page-aside {
  float: right;
  width: 375px;
  max-width: 45%;
  margin: .35rem 0 1.25rem 2.25rem;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--blue-dk) 0%, var(--blue) 42%, rgba(58,136,181,0) 100%);
  box-shadow: 0 22px 55px rgba(30,74,99,.20);
}
.page-aside img {
  display: block;
  width: 100%;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(30,74,99,.30);
}
@media (max-width: 640px) {
  .page-aside { float: none; width: 100%; max-width: 320px; margin: 0 auto 1.5rem; }
}

/* ─── Strong lead paragraph (opening line) ─────── */
.prose p.strong-lead {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.65;
}

/* ─── Responsive nav (hamburger) ───────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.site-nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--blue-xdk);
    padding: .5rem 0 1.25rem;
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 16px 34px rgba(0,0,0,.28);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .site-nav.nav-open .nav-links { display: flex; }

  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    display: block;
    padding: .85rem 2rem;
    font-size: .9rem;
  }
  .nav-cta {
    display: inline-block;
    margin: .75rem 2rem 0;
    padding: .55rem 1.4rem;
  }

  /* "Areas of Focus" expands inline within the open menu */
  .nav-dropdown { display: block; }
  .nav-dropdown-label {
    width: 100%;
    padding: .85rem 2rem;
    font-size: .9rem;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    width: 100%;
    min-width: 0;
    background: rgba(0,0,0,.18);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: .25rem 0 .5rem;
  }
  .nav-dropdown-menu a {
    padding: .6rem 2rem .6rem 3rem;
    font-size: .85rem;
    color: rgba(255,255,255,.72) !important;
  }
  .nav-dropdown-menu a:hover {
    background: rgba(255,255,255,.07);
    color: var(--white) !important;
  }
}

/* ─── About page portrait ──────────────────────── */
.about-body { max-width: 880px; margin: 0 auto; }
.about-body::after { content: ""; display: block; clear: both; }
.about-portrait {
  float: right;
  width: 375px;
  max-width: 45%;
  margin: .35rem 0 1.25rem 2.25rem;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--blue-dk) 0%, var(--blue) 42%, rgba(58,136,181,0) 100%);
  box-shadow: 0 22px 55px rgba(30,74,99,.20);
}
.about-portrait img {
  display: block;
  width: 100%;
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(30,74,99,.30);
}
@media (max-width: 640px) {
  .about-portrait { float: none; width: 100%; max-width: 320px; margin: 0 auto 1.5rem; }
}
