/* Hunter House — West-coast-modern tribute page */
:root {
  --cedar: #5a3a20;
  --bark: #2a1f16;
  --stone: #eae3d6;
  --moss: #4a5a3a;
  --paper: #faf7f0;
  --charcoal: #1c1a16;
  --rust: #8a4a2a;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap.narrow { max-width: 760px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250,247,240,0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(90,58,32,0.12);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--bark);
}
.mark.small { font-size: 17px; letter-spacing: 0.06em; }
.nav a {
  margin-left: 28px;
  color: var(--bark);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
}
.nav a:hover { color: var(--rust); }
@media (max-width: 700px) { .nav { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--bark);
}
.hero-img { position: absolute; inset: 0; }
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,26,22,0.55) 0%, rgba(28,26,22,0.15) 40%, rgba(28,26,22,0.65) 100%);
}
.hero-text {
  position: absolute; left: 0; right: 0; bottom: 14vh;
  text-align: center;
  color: var(--paper);
  padding: 0 24px;
}
.hero-text h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  letter-spacing: 0.02em;
  margin: 0 0 16px 0;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero-text .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 26px);
  margin: 0;
  opacity: 0.92;
  letter-spacing: 0.02em;
}
.scroll-hint {
  position: absolute; bottom: 28px; left: 0; right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,247,240,0.7);
}

/* ---------- sections ---------- */
.section { padding: 112px 0; }
.section.dark {
  background: #1d1b16;
  color: #e9e2d1;
}
.section.dark h2 { color: #f0ead8; }
.section.dark .citation { color: rgba(233,226,209,0.65); }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: 0.01em;
  margin: 0 0 32px 0;
  color: var(--bark);
  line-height: 1.1;
}
h2::after {
  content: "";
  display: block;
  width: 44px; height: 2px;
  background: var(--rust);
  margin-top: 20px;
}
.section.dark h2::after { background: #c07d4e; }

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  font-weight: 400;
  margin: 0 0 28px 0;
  color: inherit;
}
p { margin: 0 0 20px 0; }

.citation {
  margin-top: 36px;
  font-size: 13px;
  color: rgba(28,26,22,0.55);
  font-style: italic;
}

/* ---------- split (house) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}
.split-img img {
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

.specs {
  list-style: none;
  margin: 32px 0 0 0;
  padding: 24px 0 0 0;
  border-top: 1px solid rgba(233,226,209,0.2);
}
.section:not(.dark) .specs { border-top-color: rgba(90,58,32,0.15); }
.specs li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(233,226,209,0.16);
  font-size: 14px;
}
.section:not(.dark) .specs li { border-bottom-color: rgba(90,58,32,0.12); }
.specs li span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  opacity: 0.7;
  align-self: center;
}
.specs li strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.02em;
}

/* ---------- full-width band ---------- */
.band {
  margin: 0;
  padding: 0;
  background: #1d1b16;
}
.band img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
  display: block;
}
.band figcaption {
  text-align: center;
  padding: 14px 24px 22px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(233,226,209,0.55);
  background: #1d1b16;
  letter-spacing: 0.04em;
}

/* ---------- gallery ---------- */
.gallery { padding: 56px 0 112px 0; }
.gallery .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tile { margin: 0; position: relative; }
.tile-wide { grid-column: span 2; }
.tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.98);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.35);
}
.tile figcaption {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(28,26,22,0.6);
  text-align: center;
}
@media (max-width: 700px) {
  .gallery .wrap { grid-template-columns: 1fr; }
  .tile-wide { grid-column: span 1; }
  .tile img { aspect-ratio: 4 / 3; }
}

/* ---------- footer ---------- */
.site-footer {
  background: #15120d;
  color: rgba(250,247,240,0.72);
  padding: 72px 0 60px 0;
  text-align: center;
}
.site-footer .mark { color: var(--paper); margin-bottom: 14px; }
.fine {
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 6px 0;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
  color: rgba(250,247,240,0.55);
}
