/* GLOBAL RESET FOR THE CEDAR BED COLLECTION */
* {
  box-sizing: border-box;
}

/* TYPOGRAPHY SYSTEM */
body {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #f4f1ea;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }

/* NAVIGATION */
nav.breadcrumbs {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

nav a {
  color: #2d4a26;
  text-decoration: none;
  border-bottom: 1px solid #2d4a26;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

nav a:hover {
  color: #8b3a3a;
  border-color: #8b3a3a;
}

/* HERO SECTION */
header.hero {
  padding: 6rem 2rem 4rem;
  border-bottom: 4px double #1a1a1a;
  background: linear-gradient(to bottom, #f4f1ea 0%, #e8e4da 100%);
}

/* IMAGES */
img.hero-image {
  filter: contrast(1.05) saturate(1.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

img.hero-image:hover {
  transform: scale(1.01);
}

/* LEDGER ENTRIES */
.ledger-entry {
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 6px 6px 0px #d4af37;
  padding: 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 2.5rem 0;
  overflow-x: auto;
}

.ledger-entry::before {
  content: '>>';
  color: #8b3a3a;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* UTILITIES */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #2d4a26;
  text-align: center;
  margin: 4rem 0;
  padding: 0 3rem;
  line-height: 1.2;
}

.fig-caption {
  font-style: italic;
  color: #2d4a26;
  font-size: 0.9rem;
  display: block;
  text-align: center;
  margin-top: 0.75rem;
}

/* FOOTER */
footer.signoff {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-align: center;
  padding: 4rem 2rem;
  border-top: 4px double #1a1a1a;
  margin-top: 6rem;
}
