/* ================================================
   SEAN THURSTON PHOTOGRAPHY — v2
   Mobile-first. Brand-true. Performance-ready.
   ================================================ */

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

:root {
  --navy:       #222c45;
  --navy-deep:  #0f1420;
  --navy-mid:   #192035;
  --navy-card:  #1e2740;
  --silver:     #a8b0be;
  --silver-lt:  #c8cdd6;
  --slash:      #8a95a8;
  --cream:      #f0ece4;
  --cream-dim:  #c8c4bc;
  --white:      #ffffff;
  --muted:      #5c6475;
  --gap:        3px;
}

html { scroll-behavior: smooth; }

/* BASE — mobile first */
body {
  background: var(--navy-deep);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

img { display: block; max-width: 100%; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
}
h1 { font-size: clamp(1.4rem, 2.8vw, 2.8rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
em { font-style: italic; color: var(--silver-lt); }
p { line-height: 1.75; }

/* ---- CSS LOGO (no PNG dependency) ---- */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.logo-mark .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
}
.logo-mark .logo-sean  { font-size: 1.2rem; letter-spacing: 0.18em; }
.logo-mark .logo-slash {
  display: inline-block;
  width: 1px;
  height: 2.2rem;
  background: var(--slash);
  transform: rotate(-25deg) translateY(-1px);
  margin: 0 4px;
  flex-shrink: 0;
}
.logo-mark .logo-thurston { font-size: 1.2rem; letter-spacing: 0.18em; }
.logo-mark .logo-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--slash);
  margin-top: 3px;
  text-align: right;
}

/* ---- EYEBROW ---- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slash);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--slash);
  flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.28s, color 0.28s, border-color 0.28s;
  white-space: nowrap;
}
.btn-ghost {
  border-color: var(--silver);
  color: var(--silver);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.05); }
.btn-solid {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}
.btn-solid:hover { background: transparent; color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-navy:hover { background: transparent; color: var(--silver-lt); border-color: var(--silver); }
.btn-full { display: block; text-align: center; width: 100%; }

/* ---- NAV ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  transition: padding 0.35s, background 0.35s, box-shadow 0.35s;
}
#nav.scrolled {
  padding: 14px 24px;
  background: rgba(15,20,32,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(138,149,168,0.15);
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 510;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,20,32,0.99);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  z-index: 490;
  list-style: none;
}
.nav-menu.open { display: flex; }
.nav-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu .nav-book {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slash);
  border: 1px solid var(--slash);
  padding: 12px 32px;
  margin-top: 8px;
  transition: all 0.3s;
}
.nav-menu .nav-book:hover { color: var(--white); border-color: var(--white); }

/* ---- HERO ---- */
/* ---- HERO — full-width cinematic band, fixed height ---- */
.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
.page-hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
/* Image fills the hero band, cropped to fit — fix crop point inline */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
/* Overlay covers the whole hero area including dark bg gaps */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(15,20,32,0.15) 0%,
    rgba(15,20,32,0.05) 25%,
    rgba(15,20,32,0.45) 65%,
    rgba(15,20,32,0.88) 100%
  );
  z-index: 1;
}
/* Content sits at bottom of the hero */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px 24px 48px;
  animation: fadeUp 1.1s ease-out 0.3s both;
}
.hero-content h1 { margin-bottom: 16px; }
.hero-content h1 { line-height: 1.15; }
.hero-content .hero-sub {
  font-size: 0.9rem;
  color: var(--cream-dim);
  max-width: 380px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.page-hero .hero-content .hero-sub {
  font-size: 0.82rem;
  margin-bottom: 20px;
}
.page-hero .hero-content .eyebrow {
  margin-bottom: 8px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- SCROLL CUE ---- */
.scroll-cue {
  display: none; /* hidden mobile */
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 3;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--slash), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
.scroll-cue span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
@keyframes pulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ---- LAYOUT BLOCKS ---- */
.pad  { padding: 64px 24px; }
.pad-sm { padding: 48px 24px; }
.pad-lg { padding: 80px 24px; }

.bg-deep  { background: var(--navy-deep); }
.bg-mid   { background: var(--navy-mid); }
.bg-navy  { background: var(--navy); }
.bg-card  { background: var(--navy-card); }
.bg-light {
  background: #edeae3;
  color: var(--navy-deep);
}
.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4 { color: var(--navy-deep); }
.bg-light p { color: #3d4459; }
.bg-light .eyebrow { color: var(--navy); }
.bg-light .eyebrow::before { background: var(--navy); }

.container { max-width: 1160px; margin: 0 auto; }
.text-center { text-align: center; }

/* ---- SERVICE PANELS ---- */
.service-panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.service-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.service-panel:hover .service-panel-bg { transform: scale(1.04); }
.service-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,20,32,0.92) 0%, rgba(15,20,32,0.2) 55%);
  transition: background 0.4s;
}
.service-panel-content {
  position: relative;
  z-index: 2;
  padding: 36px 28px;
  width: 100%;
}
.service-panel-content h3 { margin-bottom: 10px; }
.service-panel-content .desc {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 340px;
}
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s;
}
.arrow-link::after { content: '→'; }
.arrow-link:hover { color: var(--white); gap: 14px; }

/* ---- GALLERY ---- */
.gallery-natural {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.gallery-natural .wide { grid-column: span 2; }
.gallery-natural .tall { grid-row: span 2; }
.g-item {
  overflow: hidden;
  background: var(--navy-mid);
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.g-item:hover img { transform: scale(1.04); }

/* ---- PRICING CARDS ---- */
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.pricing-card {
  background: var(--navy-card);
  border-top: 2px solid var(--slash);
  padding: 36px 28px;
}
.pricing-card.featured {
  border-top-color: var(--silver-lt);
  background: var(--navy);
}
.pricing-card .price-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slash);
  margin-bottom: 8px;
}
.pricing-card.featured .price-label { color: var(--silver-lt); }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.pricing-card .price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card ul li {
  font-size: 0.875rem;
  color: var(--cream-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pricing-card ul li::before {
  content: '/';
  position: absolute;
  left: 0;
  color: var(--slash);
  font-family: 'Cormorant Garamond', serif;
}

/* ---- REVIEW CARDS ---- */
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.review-card {
  padding: 36px 28px;
  background: var(--navy-card);
  border-top: 2px solid var(--slash);
}
.review-stars {
  color: var(--silver);
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 16px;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 18px;
}
.review-author {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slash);
}

/* ---- QUOTE BLOCK ---- */
.quote-block {
  padding: 72px 24px;
  text-align: center;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.quote-mark {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16rem;
  color: rgba(138,149,168,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 18px;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.quote-attr {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slash);
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid rgba(138,149,168,0.15);
  padding: 20px 0;
}
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.3;
}
.faq-q::after {
  content: '+';
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  color: var(--slash);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.3s;
}
.faq-item.open .faq-a { max-height: 500px; padding-top: 14px; }

/* ---- VETERAN BADGE ---- */
.vet-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(138,149,168,0.2);
  border-left: 3px solid var(--slash);
  margin-top: 32px;
}
.vet-badge .vet-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slash);
  line-height: 1.6;
}
.vet-badge strong {
  display: block;
  font-size: 0.78rem;
  color: var(--cream);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* ---- CONTACT FORM ---- */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slash);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.03);
  border: none;
  border-bottom: 1px solid rgba(138,149,168,0.35);
  padding: 11px 0;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  width: 100%;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--silver-lt); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--navy-deep); }

/* ---- CONTACT GRID ---- */
.contact-grid {
  display: flex;
  flex-direction: column;
}
.contact-info {
  width: 100%;
}
.contact-form-col {
  width: 100%;
}

/* ---- FOOTER ---- */
footer {
  padding: 44px 24px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(138,149,168,0.1);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 28px;
  list-style: none;
}
.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--silver); }
.footer-copy {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.7;
}

/* ---- INFO STRIP ---- */
.info-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 24px;
  background: var(--navy-mid);
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(138,149,168,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slash);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-text .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slash);
  margin-bottom: 3px;
}
.info-text a, .info-text span {
  font-size: 0.9rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}
.info-text a:hover { color: var(--silver-lt); }

/* ================================================
   TABLET & UP  (640px+)
   ================================================ */
@media (min-width: 640px) {
  .pad    { padding: 80px 40px; }
  .pad-sm { padding: 60px 40px; }
  .pad-lg { padding: 100px 40px; }

  .hero-content { padding: 24px 40px 56px; }

  .gallery-natural { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { flex-direction: row; flex-wrap: wrap; }
  .pricing-card { flex: 1 1 280px; }
  .reviews-grid { flex-direction: row; flex-wrap: wrap; }
  .review-card { flex: 1 1 280px; }
  .form-row { flex-direction: row; }
  .info-strip { flex-direction: row; flex-wrap: wrap; }
  .info-item { flex: 1 1 220px; }
  footer { padding: 44px 40px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ================================================
   DESKTOP  (960px+)
   ================================================ */
@media (min-width: 960px) {
  #nav { padding: 28px 56px; }
  #nav.scrolled { padding: 16px 56px; }

  /* Show desktop nav, hide toggle */
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 36px;
    z-index: auto;
    inset: auto;
  }
  .nav-menu a {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--cream-dim);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--slash);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .nav-menu a:hover::after,
  .nav-menu a.active::after { transform: scaleX(1); }
  .nav-menu a:hover, .nav-menu a.active { color: var(--white); }
  .nav-menu .nav-book {
    font-size: 0.68rem;
    padding: 10px 22px;
    border: 1px solid rgba(138,149,168,0.4);
    color: var(--cream);
  }
  .nav-menu .nav-book::after { display: none; }
  .nav-menu .nav-book:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.06); }

  .pad    { padding: 100px 64px; }
  .pad-sm { padding: 72px 64px; }
  .pad-lg { padding: 120px 64px; }

  .hero-content { padding: 24px 64px 72px; max-width: 800px; }

  /* Service panels side by side */
  .service-split { display: grid; grid-template-columns: 1fr 1fr; }
  .service-panel { min-height: 600px; }
  .service-panel-content { padding: 52px 48px; }

  /* Nat gallery larger */
  .gallery-natural { grid-template-columns: repeat(4, 1fr); }

  /* Reviews 3-col */
  .reviews-grid { flex-wrap: nowrap; }
  .review-card { flex: 1; }

  /* Pricing 3-col */
  .pricing-grid { flex-wrap: nowrap; }



  /* Split layout — desktop refinement */
  .split-photo-panel {
    width: 160px;
  }
  .split-2col .split-img {
    flex: 0 0 50%;
    width: 50%;
    background-size: cover;
    background-position: center;
    min-height: 500px;
  }

  footer { padding: 48px 64px; }
  .info-strip { padding: 44px 64px; }
  .quote-block { padding: 100px 64px; }
  .quote-mark { font-size: 22rem; }

  /* Contact page two-col layout */
  .contact-grid {
    flex-direction: row;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
  }
  .contact-info {
    flex: 0 0 38%;
    width: 38%;
  }
  .contact-form-col {
    flex: 1;
    width: auto;
  }
}

/* ================================================
   EDITORIAL GALLERY — shared across pages
   ================================================ */




/* ── Split layout — photo beside text ── */
.split-2col {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
}
.split-content {
  flex: 1;
  padding: 0;
}

/* ── Photo panel — small fixed width ── */
.split-photo-panel {
  flex: 0 0 auto;
  width: 140px;
}
.split-photo-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

/* Mobile: stack */
@media (max-width: 599px) {
  .split-2col {
    flex-direction: column;
    align-items: center;
  }
  .split-photo-panel {
    width: 120px;
  }
}


/* ── Logo image — ensure no background ── */
.nav-logo-link { background: none !important; }
.nav-logo-link img { background: none !important; display: block; }

/* ── Masonry gallery (CSS columns) ── */
.masonry {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  background: var(--navy-deep);
}
.masonry-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.masonry-col img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .masonry { flex-direction: column; }
  .masonry-col { flex: none; width: 100%; }
}
