.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #fff;
  color: #1a1510;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 999;
}

.skip-link:focus {
  top: 0;
}

html {
  background-color: #f5f0e8;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 24px,
      rgba(0, 0, 0, 0.03) 24px,
      rgba(0, 0, 0, 0.03) 25px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 24px,
      rgba(0, 0, 0, 0.015) 24px,
      rgba(0, 0, 0, 0.015) 25px
    );
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(245, 240, 232, 0.92) 100%);
  pointer-events: none;
  z-index: 0;
}

body {
  font-family: "Source Serif 4", Georgia, serif;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Header */
.site-header {
  background-color: #1a1510;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 24px,
      rgba(255, 255, 255, 0.03) 24px,
      rgba(255, 255, 255, 0.03) 25px
    );
  color: #f5f0e8;
  border-bottom: 4px double #c8a96e;
}

.header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
}

.header-label {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 1rem;
}

.site-header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1.2;
  color: #f5f0e8;
  margin: 0 0 1.25rem;
  max-width: 760px;
}

.header-meta {
  font-size: 0.95rem;
  color: #d4ccc0;
  letter-spacing: 0.02em;
  margin: 0;
}

.header-meta .separator {
  margin: 0 0.6rem;
}

/* Nav */
.site-nav {
  background-color: #2c2218;
  border-bottom: 1px solid #3d3020;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: flex-start;
  margin-left: -1.25rem;
}

.site-nav a {
  color: #c8a96e;
  text-decoration: none;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover {
  background-color: #3d3020;
  color: #f5f0e8;
}

/* Page content */
.content-body {
  max-width: 760px;
  margin: 3rem auto;
  padding: 0 2rem;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  color: #222;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.25rem;
}

p {
  margin: 1rem 0;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #1a1510;
  color: #c8a96e;
  border: 1px solid #c8a96e;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 200;
}

.scroll-top.visible {
  opacity: 1;
}

.scroll-top:hover {
  background-color: #c8a96e;
  color: #1a1510;
}
