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

:root {
  --paper: #f5f2ed;
  --slate: #1a1a18;
  --accent: #b8382b;
  --green: #6dbf7e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--slate);
  color: var(--paper);
  font-family: system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 960px; margin: 0 auto; padding: 0 2.5rem; }

/* NAV */
nav {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-name {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: rgba(245,242,237,0.5);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--paper); }

/* HEADER */
header { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.byline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 1rem;
}

/* SECTIONS */
section { padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
section:last-of-type { border-bottom: none; }
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }

h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 1.25rem;
}

p {
  font-size: 14px;
  color: rgba(245,242,237,0.65);
  margin-bottom: 1rem;
  max-width: 620px;
  line-height: 1.75;
}
p:last-child { margin-bottom: 0; }
p strong { color: var(--paper); font-weight: 400; }

/* AVAILABILITY TAG */
.availability-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 1rem;
}
.availability-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* CTA BUTTON */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid rgba(245,242,237,0.2);
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.cta:hover { border-color: rgba(245,242,237,0.6); }

/* FOOTER */
footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-name { font-family: Georgia, serif; font-size: 1rem; color: rgba(245,242,237,0.3); }
.footer-note { font-size: 11px; color: rgba(245,242,237,0.25); }

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  header { padding: 2.5rem 0 2rem; }
  section { padding: 2.5rem 0; }
  nav { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
