/* Home Straight — site styles
   Brand-locked: Cream / Sage / Charcoal / Terracotta / Warm grey.
   Headings Lora 500; body Inter 400. No drop shadows, no gradients.
*/

:root {
  --cream:      #F5F1E8;
  --sage:       #5B6B4F;
  --charcoal:   #2C2C28;
  --terracotta: #C76B3F;
  --warm-grey:  #968F82;
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --measure: 720px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container { max-width: var(--measure); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--charcoal); color: var(--cream);
  padding: 8px 14px; text-decoration: none; font-weight: 500;
}
.skip-link:focus { left: 12px; top: 12px; z-index: 1000; }

/* Wordmark + monogram */
.wordmark {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--charcoal);
  font-size: 26px;
  letter-spacing: -0.015em;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.wordmark .dot,
.monogram .dot { color: var(--terracotta); }
.monogram {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--charcoal);
}
.tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--sage);
  font-size: 15px;
  font-weight: 400;
}

/* Header — editorial masthead */
header.site-header {
  padding: 72px 0 48px;
  text-align: center;
  border-bottom: 1px solid rgba(91, 107, 79, 0.25);
}
header.site-header .container { display: block; }
header.site-header .wordmark {
  font-size: 56px;
  display: inline-block;
  margin: 0 auto 14px;
  letter-spacing: -0.02em;
  line-height: 1;
}
header.site-header .tagline {
  display: block;
  font-size: 18px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
}

/* Main + sections */
main { padding: 56px 0 80px; }
section { margin-bottom: 72px; }
section:last-child { margin-bottom: 0; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}
h1 { font-size: 40px; margin-bottom: 24px; letter-spacing: -0.01em; }
h2 { font-size: 28px; margin-bottom: 18px; letter-spacing: -0.01em; }
h3 { font-size: 20px; margin-bottom: 10px; }

p { margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }
.lede { font-size: 19px; }

.credit {
  color: var(--warm-grey);
  font-size: 15px;
  margin-top: 28px;
}

/* Editorial photography — restraint over decoration */
.photo {
  margin: 48px 0;
}
.photo img {
  width: 100%;
  height: auto;
  display: block;
}
.photo figcaption {
  color: var(--warm-grey);
  font-size: 13px;
  font-style: italic;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .photo { margin: 32px 0; }
}

em { font-style: italic; }
a { color: var(--charcoal); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--terracotta); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover, .btn:focus-visible {
  color: var(--cream);
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Sage block — full-bleed band */
.section--sage {
  background: var(--sage);
  color: var(--cream);
  padding: 64px 0;
  margin-bottom: 72px;
}
.section--sage h2, .section--sage h3 { color: var(--cream); }
.section--sage a:not(.btn) { color: var(--cream); }
.section--sage .btn { background: var(--cream); color: var(--charcoal); }
.section--sage .btn:hover { color: var(--charcoal); }

/* Footer */
footer.site-footer {
  border-top: 1px solid rgba(150, 143, 130, 0.4);
  padding: 48px 0 64px;
  font-size: 14px;
  color: var(--warm-grey);
}
footer.site-footer .tagline { font-size: 14px; display: block; margin-top: 8px; }
footer.site-footer ul {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 20px 0 16px;
  padding: 0;
}
footer.site-footer a {
  color: var(--charcoal);
  text-decoration: none;
}
footer.site-footer a:hover { text-decoration: underline; color: var(--terracotta); }
footer.site-footer p { margin-bottom: 8px; }

/* Long-form prose (privacy page) */
.prose h2 { margin-top: 40px; }
.prose h2:first-of-type { margin-top: 24px; }
.prose ul { margin: 0 0 18px 24px; }
.prose li { margin-bottom: 8px; }
.prose .meta { color: var(--warm-grey); font-style: italic; margin-bottom: 32px; }
.prose .note {
  background: rgba(91, 107, 79, 0.08);
  border-left: 3px solid var(--sage);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--charcoal);
}

/* 404 */
.notfound { text-align: center; padding: 96px 0; }
.notfound h1 { font-size: 56px; margin-bottom: 12px; }
.notfound p { margin-bottom: 28px; }

/* Mobile */
@media (max-width: 640px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  body { font-size: 16px; }
  main { padding: 40px 0 56px; }
  section { margin-bottom: 48px; }
  .section--sage { padding: 48px 0; margin-bottom: 48px; }
  header.site-header .container { flex-direction: column; align-items: flex-start; }
  header.site-header .tagline { text-align: left; max-width: 100%; }
  .lede { font-size: 17px; }
  .notfound h1 { font-size: 40px; }
}

/* Print */
@media print {
  body { background: #fff; }
  .btn, footer.site-footer ul { display: none; }
}
