@font-face {
  font-family: "Spirits Soft";
  src: url("/brand/fonts/SpiritsSoft.woff2") format("woff2"),
       url("/brand/fonts/SpiritsSoft.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("/brand/fonts/AktivGrotesk_Md.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}

.wb {
  --cream: #F8F3ED;
  --tan: #EAE2D8;
  --brown: #57331D;
  --dark-brown: #2E201B;
  --rose: #C9505F;
  --light-blue: #DADFF3;
  --teal: #335F62;
  --olive: #A68F31;
  --sage: #D4CC8F;
  --yellow: #FFD99D;

  background: var(--cream);
  color: var(--brown);
  font-family: "Aktiv Grotesk", system-ui, sans-serif;
  font-weight: 500;
  min-height: 100vh;
  line-height: 1.5;
  background-image:
    radial-gradient(rgba(87,51,29,0.018) 1px, transparent 1px),
    radial-gradient(rgba(87,51,29,0.013) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}
.wb * { box-sizing: border-box; }

/* HOMEPAGE */
.wb-home { padding: 56px 32px 48px; }
.wb-home .stage { width: 100%; max-width: 1180px; margin: 0 auto; }

.wb-masthead {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}
.wb-masthead .bird {
  width: 72px; height: auto; display: block; margin: 0 auto 16px;
}
.wb-masthead .name {
  font-family: "Spirits Soft", Georgia, serif;
  color: var(--brown);
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.005em;
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 400;
}
.wb-masthead .brand {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto;
}
.wb-masthead .is-row {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  margin: 14px 0 12px;
}
.wb-masthead .is-row::before, .wb-masthead .is-row::after {
  content: "";
  width: 36px; height: 1px;
  background: var(--brown); opacity: 0.4;
}
.wb-masthead .is {
  font-family: "Aktiv Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.2vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--brown);
  opacity: 0.65;
  margin: 0;
  display: block;
}

.wb-toc { margin-top: 40px; padding: 0 0 48px; }
.wb-toc-rule {
  display: flex; align-items: center; gap: 18px;
  margin: 0 auto 32px;
  max-width: 980px;
}
.wb-toc-rule::before, .wb-toc-rule::after {
  content: ""; flex: 1; height: 1px;
  background: var(--brown); opacity: 0.35;
}
.wb-toc-rule .label {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.7;
}

.wb-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .wb-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .wb-cards { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

.wb-card {
  text-decoration: none;
  color: var(--dark-brown);
  display: flex;
  flex-direction: column;
  padding: 16px 14px 18px;
  background: transparent;
  border-top: 1px solid rgba(46,32,27,0.32);
  transition: transform 160ms ease, background-color 160ms ease;
  position: relative;
}
.wb-card:hover {
  background: rgba(87,51,29,0.04);
  transform: translateY(-2px);
}
.wb-card .meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.wb-card .dept {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.78;
}
.wb-card .pageno {
  font-family: "Spirits Soft", Georgia, serif;
  font-size: 14px;
  color: var(--brown);
  opacity: 0.55;
}
.wb-card .art {
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: transparent;
}
.wb-card .art img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  display: block;
}
.wb-card .title {
  font-family: "Spirits Soft", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  color: var(--brown);
  margin: 0 0 6px;
}
.wb-card .dek {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--dark-brown);
  opacity: 0.78;
  margin: 0;
}

.wb-footer {
  margin-top: 56px;
  text-align: center;
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 11px;
  color: var(--brown);
  opacity: 0.55;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* SUBPAGE LAYOUT (Tools, About) */
.wb-sub { padding: 36px 32px 48px; }
.wb-sub .stage { width: 100%; max-width: 880px; margin: 0 auto; }

.wb-pageheader {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(46,32,27,0.25);
  margin-bottom: 56px;
}
.wb-pageheader a.home {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--brown);
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 160ms ease;
}
.wb-pageheader a.home:hover { opacity: 1; }
.wb-pageheader a.home img { height: 28px; width: auto; display: block; }
.wb-pageheader .crumb {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brown); opacity: 0.55;
}

.wb-titleblock { text-align: center; margin-bottom: 56px; }
.wb-titleblock .hero-img {
  width: 240px; height: auto; display: block; margin: 0 auto 18px;
}
.wb-titleblock .dept {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--brown); opacity: 0.65; margin-bottom: 12px;
}
.wb-titleblock h1 {
  font-family: "Spirits Soft", Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 86px);
  color: var(--brown);
  margin: 0 0 14px;
  line-height: 0.95;
}
.wb-titleblock .dek {
  font-family: "Spirits Soft", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--brown);
  opacity: 0.78;
  margin: 0 auto;
  max-width: 540px;
}

/* TOOLS PAGE */
.wb-tools { margin-top: 24px; }
.wb-tool {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid rgba(46,32,27,0.25);
  text-decoration: none;
  color: var(--dark-brown);
  transition: background-color 160ms ease;
}
.wb-tool:last-child { border-bottom: 1px solid rgba(46,32,27,0.25); }
.wb-tool:hover { background: rgba(87,51,29,0.04); }
.wb-tool .num {
  font-family: "Spirits Soft", Georgia, serif;
  font-size: 22px;
  color: var(--brown);
  opacity: 0.55;
  text-align: center;
}
.wb-tool .body { display: flex; flex-direction: column; }
.wb-tool .name {
  font-family: "Spirits Soft", Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--brown);
  margin: 0 0 6px;
  line-height: 1.1;
}
.wb-tool .desc {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--dark-brown);
  opacity: 0.78;
  margin: 0;
  max-width: 520px;
}
.wb-tool .cta {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .wb-tool { grid-template-columns: 1fr; gap: 6px; }
  .wb-tool .num { text-align: left; opacity: 0.5; font-size: 16px; }
  .wb-tool .cta { margin-top: 6px; }
}

/* ABOUT PAGE */
.wb-bio {
  border-top: 1px solid rgba(46,32,27,0.25);
  padding-top: 36px;
  max-width: 640px;
  margin: 0 auto;
}
.wb-bio p {
  font-family: "Spirits Soft", Georgia, serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--dark-brown);
  margin: 0 0 1.1em;
}
.wb-bio p:first-of-type::first-letter {
  font-family: "Spirits Soft", Georgia, serif;
  font-size: 64px;
  line-height: 0.85;
  float: left;
  color: var(--brown);
  margin: 4px 10px 0 0;
}

.wb-features {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(46,32,27,0.25);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.wb-features h2 {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--brown); opacity: 0.7;
  margin: 0 0 18px;
  font-weight: 500;
}
.wb-features ul { list-style: none; padding: 0; margin: 0; }
.wb-features li {
  font-family: "Spirits Soft", Georgia, serif;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--dark-brown);
}
.wb-features li a {
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(87,51,29,0.35);
  transition: border-color 160ms ease;
}
.wb-features li a:hover { border-bottom-color: var(--brown); }
.wb-features li .pub {
  font-style: italic;
  color: var(--brown);
  opacity: 0.65;
}

.wb-findme {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(46,32,27,0.25);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.wb-findme h2 {
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--brown); opacity: 0.7;
  margin: 0 0 18px;
  font-weight: 500;
}
.wb-findme ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px;
}
.wb-findme li {
  font-family: "Spirits Soft", Georgia, serif;
  font-size: 17px;
  line-height: 1.4;
}
.wb-findme a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,80,95,0.4);
  transition: border-color 160ms ease;
}
.wb-findme a:hover { border-bottom-color: var(--rose); }
.wb-findme li .where {
  display: block;
  font-family: "Aktiv Grotesk", sans-serif;
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brown); opacity: 0.55;
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .wb-findme ul { grid-template-columns: 1fr; }
}
