:root {
  --bg: #f7f5f0;
  --ink: #0e0e10;
  --ink-soft: #4a4a52;
  --rule: #e6e2d8;
  --accent: #a9bde0; /* logo blue */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity .2s ease;
}
a:hover { opacity: .55; }

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 32px 48px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Masthead */
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  border: none;
  color: var(--ink);
}
.brand-mark {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
}
.brand-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .14em;
  color: var(--ink);
  /* "HERMITAGE" sets the bounding width — pull back trailing letter-spacing
     so the visible E sits at the container edge */
  margin-right: -.14em;
}
.brand-sub {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  color: var(--ink);
  width: 100%;
}

.meta {
  font-size: 14px;
  letter-spacing: .02em;
}
.meta a { border-bottom: none; }
.meta a:hover { opacity: .55; }

/* Hero */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 96px;
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.quote {
  margin: 0;
  padding: 0;
  border: none;
}

.quote p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 7.2vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.quote cite {
  display: block;
  margin-top: 36px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}

/* Footer */
.footer {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.footer-line {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer .dot { opacity: .5; }
.footer a { border-bottom: none; }
.footer a:hover { color: var(--ink); opacity: 1; }

.copyright { margin: 0; }

/* Small screens */
@media (max-width: 640px) {
  .page { padding: 24px 20px 32px; }
  .brand-mark { width: 24px; height: 24px; }
  .brand-name { font-size: 15px; letter-spacing: .14em; }
  .brand-sub { font-size: 9px; }
  .hero {
    justify-content: flex-start;
    padding: 64px 0 48px;
  }
  .quote p { font-size: clamp(38px, 11vw, 56px); }
  .hero { padding: 56px 0 64px; }
  .quote p { line-height: 1.08; }
  .quote cite { margin-top: 24px; }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
