/*
   Colleen Isherwood site theme
   Base visual system derived from proposal.html, with content styles
   for existing page markup blocks.
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1c2741;
  --navy-dk: #111a2e;
  --crimson: #8b1c2e;
  --crimson-hover: #a8223a;
  --gold: #c9a84c;
  --cream: #f5f1eb;
  --warm-white: #faf8f5;
  --text-dark: #2a2826;
  --text-mid: #6b6560;
  --border: #e0dbd4;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  background: var(--warm-white);
  color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.site-nav ul {
  list-style: none;
  display: flex;
}

.site-nav ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 16px;
  min-height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}

.site-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav ul li a:hover { color: #fff; }
.site-nav ul li a:hover::after,
.site-nav ul li a.active::after { transform: scaleX(1); }
.site-nav ul li a.active { color: #fff; }

.site-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 40px 64px;
}

.page-content {
  background: #fff;
  border-left: 4px solid var(--crimson);
  border-radius: 2px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  padding: 46px;
}

.content-columns {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.content-image {
  flex: 0 0 300px;
  max-width: 300px;
}

.content-image img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.content-text {
  flex: 1;
  min-width: 0;
}

.content-text h1,
.content-text h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 18px;
}

.content-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.review {
  margin-top: 22px;
  margin-bottom: 22px;
  background: var(--cream);
  border-left: 3px solid var(--crimson);
  padding: 20px 22px;
}

.review-text {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.review-attribution {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.story-entry,
.interview-entry {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}

.story-entry:last-child,
.interview-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.story-entry h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.story-entry h3 a,
.interview-entry a {
  color: var(--crimson);
}

.story-entry h3 a:hover,
.interview-entry a:hover {
  color: var(--crimson-hover);
}

.interview-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.buy-strip {
  background: var(--crimson);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px 20px;
}

.buy-strip a {
  display: inline-block;
  padding: 12px 18px;
  border: 2px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.buy-strip a:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.site-footer {
  background: var(--navy-dk);
  padding: 56px 40px 28px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 34px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-name {
  color: #fff;
  font-size: 18px;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

.footer-nav-col h4,
.footer-connect h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-nav-col ul,
.footer-social {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col ul li a,
.footer-social a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover { color: #fff; }
.footer-social a:hover { color: var(--gold); }

.footer-connect {
  text-align: right;
}

.footer-social {
  align-items: flex-end;
}

.footer-bottom {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .header-inner {
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 8px;
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav ul li a {
    min-height: 48px;
    padding: 0 10px;
    font-size: 11px;
  }

  .site-main {
    padding: 32px 20px 42px;
  }

  .page-content {
    padding: 28px 22px;
  }

  .content-columns {
    flex-direction: column;
    gap: 30px;
  }

  .content-image {
    flex: none;
    max-width: 260px;
    margin: 0 auto;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-connect {
    text-align: left;
  }

  .footer-social {
    align-items: flex-start;
  }
}
