:root {
  color-scheme: light;
  --ink: #14263c;
  --muted: #526173;
  --blue: #2665dc;
  --line: #dce2e8;
  --paper: #f5f7fa;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
}
* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }
.wrap { width: min(1440px, calc(100% - 112px)); margin-inline: auto; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 34px; }
.wordmark { display: inline-flex; gap: .22em; font-size: 1.65rem; font-weight: 800; letter-spacing: -.065em; text-decoration: none; }
.wordmark span { font-weight: 400; letter-spacing: -.045em; }
.domain { font-size: .875rem; color: var(--muted); }
.home-page { min-height: 100svh; display: flex; flex-direction: column; }
.home-main { display: flex; flex: 1; padding-block: 12px 40px; }
.home-hero { width: 100%; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: white; }
.home-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(36px, 5.5vw, 88px); }
.short-rule { display: block; width: 52px; height: 5px; background: #73a6ff; margin-bottom: 44px; }
.home-copy h1 { font-size: clamp(2.9rem, 5.8vw, 6.4rem); line-height: 1.03; font-weight: 500; letter-spacing: -.06em; margin: 0 0 36px; }
.home-intro { font-size: 1.4rem; margin: 0 0 12px; }
.coming-soon { color: #ccd7e4; font-size: 1rem; line-height: 1.65; margin: 0; max-width: 22em; }
.home-photo { min-width: 0; min-height: 540px; }
.home-photo img { width: 100%; height: 100%; object-fit: cover; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding-block: 0 26px; color: var(--muted); font-size: .875rem; }
.gallery-page { background: #fff; }
.gallery-page .site-header { border-bottom: 1px solid var(--line); }
.gallery-heading { padding-block: 54px 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.eyebrow { margin: 0 0 12px; font-size: .875rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }
.gallery-heading h1 { font-size: clamp(3.7rem, 7vw, 6rem); font-weight: 500; letter-spacing: -.065em; line-height: 1; margin: 0; }
.gallery-date { color: var(--muted); font-size: 1rem; margin: 0 0 6px; }
.gallery-instructions { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px 30px; padding-block: 22px; border-top: 1px solid var(--line); margin-bottom: 12px; }
.gallery-instructions p { margin: 0; line-height: 1.6; color: var(--muted); }
.gallery-instructions strong { color: var(--ink); font-weight: 600; }
.photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 24px; padding-block: 8px 64px; }
.photo-card { margin: 0; min-width: 0; }
.photo-link { display: block; background: var(--paper); position: relative; text-decoration: none; }
.photo-link img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.photo-link::after { content: 'View larger'; position: absolute; right: 12px; bottom: 12px; padding: 8px 11px; color: white; background: #14263ce6; font-size: .875rem; border-radius: 3px; opacity: 0; transition: opacity .15s; }
.photo-link:hover::after, .photo-link:focus-visible::after { opacity: 1; }
.photo-caption { display: flex; align-items: center; gap: 12px; padding-top: 13px; line-height: 1.4; }
.photo-letter { display: grid; place-items: center; flex: 0 0 38px; height: 38px; background: var(--ink); color: white; font-size: 1.15rem; font-weight: 700; border-radius: 3px; }
.photo-description { font-size: .9375rem; }
.gallery-page .site-footer { padding-top: 22px; border-top: 1px solid var(--line); }
.lightbox { width: min(1140px, calc(100% - 32px)); max-height: calc(100svh - 32px); margin: auto; padding: 0; border: 0; border-radius: 5px; background: #101b2a; color: #fff; }
.lightbox::backdrop { background: #07101de8; }
.lightbox-inner { padding: 18px; }
.lightbox-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 14px; }
.lightbox-title { display: flex; align-items: center; gap: 12px; margin: 0; font-size: 1rem; font-weight: 400; }
.lightbox-title .photo-letter { background: white; color: var(--ink); }
.lightbox-close, .lightbox-nav button { border: 1px solid #748296; background: transparent; color: white; padding: 10px 16px; min-height: 44px; cursor: pointer; border-radius: 3px; }
.lightbox-close:hover, .lightbox-nav button:hover { background: #2b3d54; }
.lightbox-image { width: 100%; height: min(72svh, 820px); object-fit: contain; }
.lightbox-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; }
.lightbox-count { color: #d0d9e5; font-size: .875rem; }
body.modal-open { overflow: hidden; }
@media (max-width: 1050px) {
  .wrap { width: calc(100% - 64px); }
  .home-copy { padding: 40px; }
  .home-photo { min-height: 480px; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .wrap { width: calc(100% - 36px); }
  .site-header { padding-block: 24px; }
  .wordmark { font-size: 1.45rem; }
  .domain { display: none; }
  .home-main { padding-top: 0; }
  .home-hero { grid-template-columns: 1fr; }
  .home-copy { padding: 38px 28px 44px; }
  .home-copy h1 { font-size: clamp(2.7rem, 11vw, 4.4rem); margin-bottom: 24px; }
  .short-rule { margin-bottom: 30px; }
  .home-photo { min-height: 0; aspect-ratio: 1; }
  .gallery-heading { padding-top: 36px; gap: 16px; flex-wrap: wrap; }
  .gallery-date { font-size: .9375rem; }
  .photo-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .lightbox { width: calc(100% - 16px); max-height: calc(100svh - 16px); }
  .lightbox-inner { padding: 12px; }
  .lightbox-title { gap: 9px; font-size: .875rem; }
  .lightbox-close { padding-inline: 12px; }
  .lightbox-image { height: 60svh; }
  .lightbox-nav button { padding-inline: 12px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
