/* Bellvenor LLC — company one-pager.
   Identity: "the fine huntsman" (belle + vēnor). Evening-pine ground, parchment
   text, brass accents; Marcellus for the engraved-roman display voice,
   Alegreya Sans for body. No JavaScript anywhere on this site. */

@font-face {
  font-family: "Marcellus";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/marcellus-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/alegreya-sans-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/alegreya-sans-500-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/alegreya-sans-700-latin.woff2") format("woff2");
}

:root {
  --pine: #122820;
  --pine-deep: #0c1d17;
  --parchment: #eae3d2;
  --parchment-dim: #b0ab99;
  --brass: #c9a45c;
  --brass-soft: #a98b4e;
  --hairline: rgba(234, 227, 210, 0.16);
  --display: "Marcellus", "Iowan Old Style", Georgia, serif;
  --body: "Alegreya Sans", "Gill Sans", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--pine);
  background-image: radial-gradient(115% 70% at 50% 0%, rgba(234, 227, 210, 0.045), transparent 62%);
  background-repeat: no-repeat;
  color: var(--parchment);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 41rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

a {
  color: var(--brass);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--brass-soft);
}
a:hover { text-decoration-thickness: 2px; }
a:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ------------------------------------------------------------------ header */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
}
.top .house {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--parchment);
}
.top .house svg { display: block; }
.top .house span {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.top .reach {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

/* -------------------------------------------------- hero: dictionary entry */
.hero { padding: 6.5rem 0 4.5rem; }

.entry-word {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.9rem, 9.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0.015em;
}
.entry-word .sep { color: var(--brass); padding-inline: 0.06em; }

.entry-meta {
  margin-top: 0.9rem;
  color: var(--parchment-dim);
  font-size: 1rem;
}
.entry-meta .pos {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-left: 0.6rem;
}

.entry-senses {
  list-style: none;
  margin-top: 2.2rem;
  display: grid;
  gap: 1.15rem;
}
.entry-senses li {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.4rem;
}
.entry-senses .n {
  font-family: var(--display);
  color: var(--brass);
  line-height: 1.65;
}
.entry-def {
  margin-top: 2.2rem;
  color: var(--parchment-dim);
  max-width: 36rem;
}

/* --------------------------------------------------------------- dividers */
.rule {
  position: relative;
  border: 0;
  border-top: 1px solid var(--hairline);
  overflow: visible;
}
.rule::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--brass);
}

/* ---------------------------------------------------------------- sections */
.section { padding: 3.6rem 0; }

.section h2 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.6rem;
}

.section p { color: var(--parchment-dim); }
.section p + p { margin-top: 1rem; }
.section p strong { color: var(--parchment); font-weight: 500; }

/* products */
.product {
  display: block;
  padding: 1.5rem 1.6rem;
  margin-top: 0.4rem;
  border: 1px solid var(--hairline);
  background: var(--pine-deep);
  text-decoration: none;
  transition: border-color 160ms ease;
}
.product:hover { border-color: var(--brass-soft); }
.product .name {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--parchment);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.product .name .go { font-family: var(--body); font-size: 0.9rem; color: var(--brass); letter-spacing: 0.06em; }
.product .blurb { margin-top: 0.5rem; color: var(--parchment-dim); }
.more { margin-top: 1.3rem; font-size: 0.95rem; color: var(--parchment-dim); }

/* contact */
.contact-mail {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  overflow-wrap: anywhere;
}

/* ------------------------------------------------------------------ footer */
footer {
  border-top: 1px solid var(--hairline);
  margin-top: 1.5rem;
}
footer .wrap {
  padding-block: 1.6rem 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--parchment-dim);
}

/* ------------------------------------------------------------------ motion */
@media (prefers-reduced-motion: no-preference) {
  .hero > * {
    animation: settle 700ms cubic-bezier(0.22, 0.6, 0.2, 1) both;
  }
  .hero > *:nth-child(2) { animation-delay: 90ms; }
  .hero > *:nth-child(3) { animation-delay: 180ms; }
  @keyframes settle {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
  }
}

@media (max-width: 520px) {
  .hero { padding-top: 4.5rem; }
  .top .house span { letter-spacing: 0.22em; }
}
