﻿
:root {
  --paper:      #faf7f1;
  --paper-warm: #f3ece1;
  --ink:        #2b2621;
  --body:       #4d463d;
  --muted:      #746b61;
  --brick:      #9a4a33;
  --glass:      #3f6d86;
  --glass-dark: #365e73;
  --line:       #e6ddd0;

  --serif: "Iowan Old Style", Charter, "Bitstream Charter", Georgia,
           "Times New Roman", serif;
  --sans:  ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
           Roboto, "Helvetica Neue", Arial, sans-serif;

  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.72;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  width: 100%;
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.7rem 1.15rem;
  border-radius: 0 0 4px 0;
  text-decoration: none;
}

.skip:focus {
  left: 0;
  color: var(--paper);
}

.site-head {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap { max-width: 70rem; }

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--serif);
  font-size: 1.06rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.wordmark img {
  display: block;
  height: 1.85rem;
  width: auto;
}

.wordmark:hover { color: var(--brick); }

.site-head nav { display: flex; gap: 1.6rem; }

.menu { position: relative; }

.menu summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--body);
  padding: 0.55rem 0.2rem;
  white-space: nowrap;
}

.menu summary::-webkit-details-marker { display: none; }
.menu summary::marker { content: ""; }

.menu summary:hover { color: var(--brick); }

.menu summary:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 3px;
  border-radius: 2px;
}

.menu nav {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  min-width: 10rem;
  padding: 0.35rem 0;
  background: var(--paper);
  border: 1px solid var(--line-quiet, #e6dccd);
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(43, 38, 33, .14);
}

.site-head nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--body);
  text-decoration: none;
  padding: 0.55rem 1rem;
}

.site-head nav a:hover { color: var(--brick); }

.site-head nav a[aria-current="page"] { color: var(--brick); }

.site-head nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.38rem;
  height: 2px;
  background: var(--brick);
}

@media (min-width: 36rem) {
  .menu[open] summary { display: none; }

  .menu[open] nav {
    position: static;
    flex-direction: row;
    gap: 0;
    min-width: 0;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  .menu[open] nav a { padding: 0.55rem 0.7rem; }
  .menu[open] nav a:last-child { padding-right: 0; }
  .menu[open] nav a[aria-current="page"]::after { left: 0.7rem; right: 0.7rem; }
  .menu[open] nav a:last-child[aria-current="page"]::after { right: 0; }
}

@media (max-width: 26rem) {
  .wordmark { font-size: 0.95rem; }
  .wordmark img { height: 1.6rem; }
}

.hero {
  padding: 4.5rem 0 2.75rem;
  text-align: left;
}

.place {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 1.1rem;
}

h1 {
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(1.7rem, 6.2vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.welcome {
  margin: 1.5rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.15rem, 3.4vw, 1.3rem);
  color: var(--body);
  text-wrap: pretty;
}

.hero-split .welcome { max-width: none; }

.hero-split {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-split .welcome { font-size: clamp(1.2rem, 3.4vw, 1.4rem); }

.hero-photo img { box-shadow: 0 26px 60px rgba(43, 38, 33, 0.17); }

@media (min-width: 54rem) {
  .split.hero-split { align-items: start; }

  .hero-split .welcome { margin-top: 1.9rem; }
}

.section-photo {
  margin: 0 0 2.75rem;
}

.section-photo img {
  display: block;
  width: 100%;
  height: clamp(11rem, 26vw, 17rem);
  object-fit: cover;
  object-position: center 55%;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(43, 38, 33, .12);
}

.split {
  display: grid;
  gap: 2.5rem;
}

.split h2 { text-align: left; }
.split h2::after { margin-left: 0; }

@media (min-width: 54rem) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: stretch;
  }

  .split .section-photo {
    margin: 0;
    display: flex;
  }

  .split .section-photo img {
    height: 100%;
    min-height: 20rem;
    max-height: 25rem;
  }

  .split .section-photo { align-items: start; }

  .split.split--middle { align-items: center; }

  .split--middle .section-photo img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

}

@media (max-width: 53.99rem) {
  .split .section-photo { margin: 0; }

  .split-text {
    max-width: 38rem;
    margin-left: 0;
    margin-right: auto;
  }
}

figure {
  margin: 0 0 4rem;
}

figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(60px, 22vw, 220px) clamp(60px, 22vw, 220px) 10px 10px;
  box-shadow: 0 18px 44px rgba(43, 38, 33, 0.14);
}

figcaption {
  margin-top: 0.9rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-photo { margin: 0; }

@media (min-width: 54rem) {
  .hero-photo img {
    border-radius: clamp(60px, 10vw, 105px) clamp(60px, 10vw, 105px) 8px 8px;
  }
}

section { padding: 3.25rem 0; }

section[id] { scroll-margin-top: 1.5rem; }

.band {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(1.5rem, 4.5vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0 0 1.75rem;
  text-align: left;
}

h2::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2px;
  border-radius: 1px;
  background: var(--brick);
  margin: 0.9rem 0 0;
}

#times .days     { margin-left: 0; }
.visit .landmark { margin-left: 0; }
.visit .or-write,
.contact .or-write { margin-left: 0; }

.days {
  display: grid;
  gap: 2.5rem;
  max-width: 40rem;
  margin: 0 auto;
}

@media (min-width: 38rem) {
  .days { grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
}

@media (min-width: 54rem) {
  #times .days {
    max-width: none;
    gap: 2rem 6rem;
  }
}

h3 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--glass);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.schedule { margin: 0; }

.schedule > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
}

.schedule dt {
  color: var(--ink);
  font-size: 1.06rem;
}

.schedule dd {
  margin: 0;
  flex: none;
  color: var(--brick);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.expect { margin: 0; }

.expect p { margin: 0 0 1.1rem; }
.expect p:last-child { margin-bottom: 0; }

.verse p {
  font-family: var(--serif);
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  margin: 0 0 0.9rem;
}

.verse--side {
  margin: 0;
  align-self: start;
  padding-left: 1.4rem;
  border-left: 2px solid var(--brick);
}

.verse--side p {
  font-size: 1.5rem;
  color: var(--ink);
}

.verse cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
}

address {
  font-style: normal;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 1rem;
}

.landmark {
  max-width: 26rem;
  margin: 0 auto 1.75rem;
  color: var(--muted);
}

.addr-lead {
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.addr-lead + address { margin-bottom: 0; }

.addr-cols {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 54rem) {
  .addr-cols {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.visit-cols {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 54rem) {
  .visit-cols {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
}

.or-write {
  max-width: 26rem;
  margin: 2.75rem auto 0.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (min-width: 54rem) {
  .or-write {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
}

a { color: var(--glass); text-underline-offset: 0.18em; }
a:hover { color: var(--brick); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 3px;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--paper);
  background: var(--glass);
  border-radius: 4px;
  padding: 0.8rem 1.5rem;
}

.btn:hover { background: var(--glass-dark); color: var(--paper); }

.btn--quiet {
  background: none;
  color: var(--glass);
  box-shadow: inset 0 0 0 1px var(--glass);
}

.btn--quiet:hover {
  background: var(--glass);
  color: var(--paper);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.contact { text-align: left; }

.contact p { margin-bottom: 0.6rem; }

.email {
  font-size: clamp(1.05rem, 3.6vw, 1.25rem);
  overflow-wrap: anywhere;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}

@media (min-width: 40rem) {
  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem 1.75rem;
  }
}

@media (min-width: 62rem) {
  .staff-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.75rem;
  }
}

.person { text-align: left; }

.portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(43, 38, 33, .12);
}

.person-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  border-bottom: 0;
  padding-bottom: 0;
  margin: 0.9rem 0 0.15rem;
}

.person-role {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0;
}

.hero--page h1 { font-size: clamp(2rem, 7vw, 4rem); }

.hero--page .split { margin-top: 1.75rem; }

@media (min-width: 54rem) {
  .hero--page .section-photo {
    position: relative;
    min-height: 14rem;
  }

  .hero--page .section-photo img {
    position: absolute;
    top: 0.44rem;
    left: 0;
    width: 100%;
    height: calc(100% - 0.44rem);
    min-height: 0;
    max-height: none;
  }

  .hero--page { padding-bottom: 4.5rem; }
  .hero--page .split { margin-top: 2.5rem; }
}

@media (min-width: 54rem) {
  .quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 36rem) minmax(0, 1fr);
    gap: 5rem;
    align-items: start;
  }
}

.pullquote {
  margin: 2.5rem 0 0;
  padding-top: 0.9rem;
  border-top: 2px solid var(--brick);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink);
  text-wrap: pretty;
}

@media (min-width: 54rem) {
  .pullquote { margin-top: 0.4rem; }
}

.pullquote cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.prose {
  max-width: 36rem;
  margin: 0;
}

.prose p { margin: 0 0 1.25rem; }
.prose p:last-child { margin-bottom: 0; }

.prose em {
  font-style: italic;
  color: var(--ink);
}

.lede {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--muted);
}

.wrap--wide { max-width: 62rem; }

.contact-cols {
  display: grid;
  gap: 3rem 3.5rem;
}

@media (min-width: 54rem) {
  .contact-cols { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact-cols h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-cols h2::after { margin-left: 0; }

.col-text h2:not(:first-child) { margin-top: 2.75rem; }

.col-text p { margin: 0 0 1.25rem; }
.col-text p:last-child { margin-bottom: 0; }

.contact-cols .form { max-width: none; margin: 0; }

.form {
  max-width: 32rem;
  margin: 0 auto;
  text-align: left;
}

.field { margin-bottom: 1.3rem; }

.field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.field .optional {
  font-weight: 400;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.7rem 0.85rem;
}

.field textarea { resize: vertical; min-height: 8.5rem; }

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 1px;
  border-color: var(--brick);
}

.gotcha {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-family: var(--sans);
  font-size: 0.94rem;
  padding: 0.8rem 1.6rem;
}

.legal {
  max-width: 40rem;
  margin: 0;
}

.legal h2 {
  text-align: left;
  font-size: 1.14rem;
  margin: 2.4rem 0 0.55rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.legal h2:first-child { margin-top: 0; }
.legal h2::after { content: none; }

.legal p { margin: 0 0 1rem; }
.legal p:last-child { margin-bottom: 0; }

.legal address {
  font-size: 1rem;
  color: var(--body);
  margin: 0 0 0.5rem;
}

.updated {
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0 0 2.5rem;
}

.short-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.short-page main {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

.short-page footer { margin-top: auto; }

.short-page h1 {
  font-size: clamp(1.6rem, 5.5vw, 2.3rem);
  margin-bottom: 1rem;
}

footer {
  padding: 2rem 0 2.25rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer .wrap { max-width: 70rem; }

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.75rem;
}

footer p { margin: 0; }

footer a { color: var(--muted); }
footer a:hover { color: var(--brick); }

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.4rem;
  margin: -0.45rem -0.7rem;
}

.foot-nav a {
  padding: 0.45rem 0.7rem;
  text-decoration: none;
}

.foot-nav a:hover { text-decoration: underline; }

.foot-nav a[aria-current="page"] { color: var(--brick); }

@media (max-width: 48rem) {
  .foot-inner { justify-content: center; text-align: center; }
}

