:root {
  --bg: #FDFBF7;
  --ink: #161514;
  --soft: #5d574d;
  --line: #e6e0d4;
  --dusk-1: #e8d8c8;
  --dusk-2: #9fb3b8;
  --dusk-3: #2e4350;
  --serif: "Cormorant Garamond", Georgia, serif;
  --mono: "Overpass Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ---------- header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 3rem;
  background: var(--bg);
}

.site-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .01em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  align-items: center;
}

.site-nav a {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

.site-nav a:hover { color: var(--soft); }

.site-nav .nav-give {
  border: 1px solid var(--ink);
  padding: .55rem 1.1rem;
  border-radius: 2px;
  transition: background .2s, color .2s;
}

.site-nav .nav-give:hover { background: var(--ink); color: var(--bg); }

/* ---------- shared ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.4rem;
}

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: .8rem 1.5rem;
  margin-top: 1.6rem;
  transition: background .2s, color .2s;
}

.btn:hover { background: var(--ink); color: var(--bg); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .005em;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  color: #fdfbf7;
  background:
    linear-gradient(180deg,
      rgba(232,216,200,.92) 0%,
      rgba(159,179,184,.88) 38%,
      rgba(70,99,112,.94) 68%,
      rgba(28,42,52,.97) 100%);
}

.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  font-weight: 400;
  margin: 0;
  max-width: 16ch;
  text-shadow: 0 1px 30px rgba(20,30,38,.25);
}

.hero h1 em { font-style: italic; }

.hero-times {
  position: absolute;
  left: 3rem; right: 3rem; bottom: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-times div {
  border: 1px solid rgba(253,251,247,.85);
  padding: .9rem 1.5rem;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.9;
}

/* ---------- home sections ---------- */
.intro {
  padding: 7rem 3rem 3rem;
  max-width: 1100px;
}

.intro p {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.55;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 3rem;
}

.split.reverse { grid-template-columns: 1.15fr 1fr; }

.split .panel {
  aspect-ratio: 4 / 5;
  max-height: 520px;
  width: 100%;
  border-radius: 2px;
}

.panel-shore { background: linear-gradient(165deg, #e8d8c8 0%, #c9cdc3 45%, #7d97a0 100%); }
.panel-dusk  { background: linear-gradient(200deg, #f0e3d2 0%, #b9b9ad 50%, #5d7480 100%); }
.panel-deep  { background: linear-gradient(180deg, #d8d2c2 0%, #93a8ae 55%, #36505d 100%); }

.split h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 0 0 .5rem;
  max-width: 22ch;
}

.split p { max-width: 52ch; color: var(--ink); }

.home-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5.5rem 3rem;
  text-align: center;
}

.home-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  max-width: 28ch;
  margin: 0 auto;
}

/* ---------- inner pages ---------- */
.page-head {
  padding: 5.5rem 3rem 2rem;
  max-width: 1000px;
}

.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: .4rem 0 0;
}

.prose {
  padding: 1rem 3rem 6rem;
  max-width: 820px;
}

.prose h2 {
  font-size: 1.9rem;
  margin: 3rem 0 .8rem;
}

.prose h3 {
  font-size: 1.35rem;
  margin: 2.2rem 0 .5rem;
}

.prose blockquote {
  margin: 2.5rem 0;
  padding: 0 0 0 1.8rem;
  border-left: 1px solid var(--ink);
  font-style: italic;
  font-size: 1.25rem;
}

.prose ul { padding-left: 1.2rem; }
.prose li { margin: .4rem 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 3.5rem 0; }
.prose a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 4rem 3rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  font-size: 1rem;
}

.footer-wordmark {
  font-size: 1.45rem;
  margin: 0 0 .3rem;
}

.footer-tag { font-style: italic; color: var(--soft); margin: 0; }

.footer-grid a { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.footer-copy {
  margin: 3.5rem 0 0;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .site-header { flex-direction: column; gap: 1rem; padding: 1.4rem 1.4rem; }
  .site-nav { justify-content: center; gap: 1.1rem; }
  .hero, .intro, .split, .home-band, .page-head, .prose, .site-footer { padding-left: 1.4rem; padding-right: 1.4rem; }
  .hero-times { position: static; margin-top: 3rem; }
  .hero { display: block; padding-top: 5rem; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .split .panel { max-height: 300px; aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: 1fr; }
}
