/* A modest personal page: type and prose first, photographs as objects. */
.quiet-home {
  --paper: #f7f6f2;
  --ink: var(--navy);
  --muted: #5f7184;
  --rule: #ced5dc;
  --accent: #a23b49;
  --accent-soft: #ead0d2;
  background: var(--paper);
  color: var(--ink);
}
html:has(.quiet-home) { scroll-padding-top: 100px; }
.quiet-home .site-head,
.quiet-home #main,
.quiet-home .site-foot {
  width: min(1040px, calc(100% - var(--edge) * 2));
  max-width: 1040px;
  margin-inline: auto;
}
.quiet-home .site-head {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 80px;
  background: var(--paper);
  border-bottom: 1px solid color-mix(in srgb, var(--navy) 32%, transparent);
}
.quiet-home .site-head::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 48px; height: 2px; background: var(--accent); }
.quiet-home .wordmark { font-size: 13px; }
.quiet-home .site-nav { font-size: 13px; gap: 24px; }
.quiet-home .header-navigation { gap: 24px; }
.quiet-home .social-icons { padding-left: 16px; border-color: var(--rule); }
.quiet-home .social-icons a { color: var(--ink); }
.quiet-home .social-icons a:hover { color: var(--accent); }

.profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  padding-top: 64px;
}
.quiet-home .about-summary { max-width: 690px; }
.profile-heading { margin-bottom: 24px; }
.profile-heading h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.3vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.profile-heading h1 em { font-weight: 400; color: var(--accent); }
.profile-heading .name-stop { color: var(--ink); }
.quiet-home .profile-positioning {
  margin: 14px 0 0;
  font: 14px/1.7 var(--sans);
  color: var(--ink);
}
.profile-positioning span { color: var(--muted); margin-left: 6px; }
.quiet-home .about-summary > p { font: 16px/1.85 var(--sans); color: var(--navy); margin: 0; }
.quiet-home .about-summary > p a { color: var(--ink); text-decoration-color: #8ca0b3; }
.quiet-home .about-summary > p a:hover { color: var(--accent); text-decoration-color: currentColor; }
.profile-aside { padding-top: 4px; }
.quiet-home .square-portrait { width: 148px; border-radius: 14px; box-shadow: none; }
.quiet-home .current-location {
  margin: 14px 0 0;
  font: 12px/1.6 var(--sans);
  text-align: center;
  color: var(--muted);
}

.quiet-home .portfolio-section { margin-top: 56px; padding: 30px 0 0; border-top: 1px solid var(--rule); }
.quiet-home .portfolio-heading { margin-bottom: 24px; }
.quiet-home .portfolio-heading h2,
.quiet-home .portfolio-contact h2 { font: 500 15px/1.5 var(--sans); letter-spacing: 0; }
.quiet-home .portfolio-project {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.25fr);
  gap: 48px;
  padding: 28px 0 32px;
  border-color: var(--rule);
}
.quiet-home .portfolio-project:first-child { padding-top: 0; border-top: 0; }
.quiet-home .project-role { font-size: 10px; letter-spacing: .06em; margin-bottom: 12px; color: var(--accent); }
.quiet-home .portfolio-project h3 { font-family: var(--serif); font-size: 26px; line-height: 1.18; margin: 0; }
.quiet-home .portfolio-project h3 a { padding-right: 26px; }
.quiet-home .portfolio-project h3 a > span { font-size: 18px; top: 2px; color: var(--accent); }
.quiet-home .project-detail > p { font: 15px/1.8 var(--sans); color: var(--navy); }
.quiet-home .project-destinations { font-size: 12px; gap: 10px 22px; margin-top: 16px; }
.quiet-home .photo-collection { padding: 24px 0 32px; background: transparent; overflow: visible; }
.quiet-home .photo-prints {
  /* The sum of the six original aspect ratios is 4.466667. Size by height,
     preserve every composition, and let the strip scroll on narrow screens. */
  --print-height: min(216px, calc((100vw - var(--edge) * 2 - 60px) / 4.466667));
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: none;
  padding: 5px 0 14px;
  perspective: none;
  align-items: start;
  overflow: visible;
  scrollbar-width: thin;
  scrollbar-color: #9eafbf transparent;
  scroll-snap-type: x proximity;
}
.quiet-home .photo-print,
.quiet-home .photo-print:nth-child(2),
.quiet-home .photo-print:nth-child(even) {
  --angle: 0deg;
  margin: 0;
  flex: none;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 2px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: none;
  transform-style: flat;
  scroll-snap-align: start;
  transition: none;
}
.quiet-home .photo-print img { width: auto; max-width: none; height: var(--print-height); border-radius: 2px; }
.quiet-home .photo-print::after { content: none; }
.quiet-home .photo-print:hover,
.quiet-home .photo-print:focus-visible { transform: none; box-shadow: none; }
.quiet-home .portfolio-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  background: var(--navy);
  color: #f7f6f2;
  border-top: 2px solid var(--accent);
  padding: 28px 32px;
  min-height: 146px;
  gap: 24px;
}
.quiet-home .portfolio-contact h2 { margin-bottom: 10px; }
.quiet-home .portfolio-contact p,
.quiet-home .portfolio-contact a { font: 13px/1.8 var(--sans); }
.quiet-home .portfolio-contact p { color: #d4dde6; }
.quiet-home .portfolio-contact a { color: #fff; border-color: #9daebe; padding-bottom: 2px; }
.quiet-home .portfolio-contact a:hover { color: #efadb3; border-color: currentColor; }
.contact-copy { position: relative; z-index: 1; }
.horizon-mark { display: block; flex: 0 0 230px; width: 230px; height: auto; }
.horizon-outline { stroke: #b7c8d8; stroke-width: 1; }
.horizon-contour { stroke: #6e8ca8; stroke-width: .7; opacity: .45; }
.ascent-arc { stroke: #d2717c; stroke-width: 1.3; }
.ascent-point { fill: #e7979f; }
.horizon-crescent { fill: #d6e1eb; }
.quiet-home .site-foot { padding-block: 20px 32px; font-size: 11px; border: 0; color: var(--muted); }

@media(max-width:750px) {
  .profile-intro { grid-template-columns: minmax(0, 1fr) 112px; gap: 30px; padding-top: 44px; }
  .quiet-home .square-portrait { width: 112px; }
  .profile-positioning span { display: block; margin-left: 0; }
  .quiet-home .portfolio-project { grid-template-columns: 1fr; gap: 18px; padding-block: 24px; }
  .quiet-home .portfolio-project h3 { font-size: 25px; }
  .quiet-home .portfolio-project h3 em { font-style: italic; }
  .quiet-home .photo-prints { --print-height: 190px; overflow-x: auto; }
  .quiet-home .portfolio-contact { display: flex; }
  .horizon-mark { flex-basis: 150px; width: 150px; }
}
@media(max-width:550px) {
  html:has(.quiet-home) { scroll-padding-top: 84px; }
  .quiet-home .site-head { height: 64px; padding: 0; flex-wrap: nowrap; }
  .quiet-home .wordmark { display: none; }
  .quiet-home .header-navigation { width: 100%; gap: 12px; }
  .quiet-home .site-nav { gap: 16px; }
  .quiet-home .social-icons { padding-left: 12px; }
  .profile-intro { grid-template-columns: minmax(0, 1fr) 80px; gap: 20px; padding-top: 34px; }
  .quiet-home .about-summary { display: contents; }
  .profile-heading { align-self: center; margin: 0; }
  .profile-heading h1 { font-size: clamp(28px, 7.7vw, 38px); }
  .quiet-home .profile-positioning { margin-top: 10px; font-size: 12px; line-height: 1.6; }
  .quiet-home .about-summary > p { grid-column: 1 / -1; grid-row: 2; font-size: 15px; line-height: 1.8; }
  .profile-aside { grid-column: 2; grid-row: 1; padding: 0; align-self: center; }
  .quiet-home .square-portrait { width: 80px; border-radius: 10px; }
  .quiet-home .current-location { font-size: 10px; margin-top: 8px; }
  .quiet-home .location-label { display: block; }
  .quiet-home .portfolio-section { margin-top: 36px; }
  .quiet-home .portfolio-contact { display: block; padding: 24px; }
  .horizon-mark { width: 112px; margin: 20px 0 0 auto; }
}
@media(max-width:380px) {
  .quiet-home .site-nav { gap: 12px; }
  .quiet-home .header-navigation { gap: 8px; }
}
@media(prefers-reduced-motion:reduce) {
  .quiet-home .photo-print:hover { transform: none; }
  html:has(.quiet-home) { scroll-behavior: auto; }
}
