@font-face {
  font-family: "Rye";
  src: url("assets/fonts/rye.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IM Fell English";
  src: url("assets/fonts/im-fell-english.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IM Fell English";
  src: url("assets/fonts/im-fell-english-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f3eddf;
  --ink: #302b23;
  --muted-ink: #675b48;
  --red-ink: #843d32;
  --rule: #a89a7e;
  --body-font: "IM Fell English", Georgia, serif;
}

* { box-sizing: border-box; }

html {
  min-width: 20rem;
  background: #e5ddcd;
  color: var(--ink);
  font-family: var(--body-font);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: clamp(0.75rem, 2.4vw, 2rem);
}

::selection { color: var(--paper); background: var(--red-ink); }

.advertisement {
  max-width: 77rem;
  margin-inline: auto;
  padding: clamp(1rem, 3.5vw, 3.1rem);
  border: 1px solid var(--ink);
  outline: 3px double var(--ink);
  outline-offset: -8px;
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse at 50% 35%, #fffaf04d, transparent 75%),
    repeating-linear-gradient(0deg, #302b2305 0, #302b2305 1px, transparent 1px, transparent 4px);
  box-shadow: 0 5px 24px #302b2310;
}

.imprint {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.875rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.imprint-motto { font-style: italic; letter-spacing: 0.02em; text-transform: none; }

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  margin-top: 1.2rem;
}

.brand-logo {
  display: block;
  flex: none;
  width: clamp(5.5rem, 20vw, 14rem);
  height: auto;
}

h1 { flex: 0 1 auto; min-width: 0; margin: 0; text-align: center; font-weight: 400; }

.brand-name {
  display: block;
  font-family: "Rye", Georgia, serif;
  font-size: clamp(1.8rem, 6.5vw, 5.3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.brand-trade {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 2.8rem);
  margin-top: 0.25rem;
  font-size: clamp(1.1rem, 3vw, 2.05rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.brand-trade span { color: var(--red-ink); font-size: 0.7em; letter-spacing: 0; }

.masthead-caption {
  margin: 0.8rem 0 0;
  padding-bottom: 1.2rem;
  border-bottom: 4px double var(--ink);
  font-size: 1.0625rem;
  font-style: italic;
  text-align: center;
}

.announcement {
  padding-block: 2.4rem 2.1rem;
}

.announcement-copy { max-width: 42rem; margin-inline: auto; text-align: center; }

.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--red-ink);
  font-size: 0.875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h2 { margin: 0; font-size: clamp(1.85rem, 3.2vw, 2.65rem); font-weight: 400; line-height: 1.15; }
h2 em { color: var(--red-ink); font-weight: 400; }

.small-rule {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  width: 9rem;
  margin: 1.1rem auto 0.6rem;
  color: var(--muted-ink);
  font-size: 1.4rem;
}

.small-rule::before, .small-rule::after { content: ""; flex: 1; border-top: 1px solid var(--rule); }
.notices { margin: 1.4rem 0 0; padding: 0; list-style: none; }

.notice {
  display: grid;
  grid-template-columns: 3.8rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding-block: 1.1rem;
  text-align: left;
}

.notice[hidden] { display: none; }

.manicule {
  color: var(--red-ink);
  font-family: Georgia, "Segoe UI Symbol", "Apple Symbols", serif;
  font-size: 3.6rem;
  line-height: 1;
}

.notice-title { margin: 0; font-size: 1.25rem; line-height: 1.3; }
.notice-detail { margin: 0.35rem 0 0; color: var(--muted-ink); font-size: 1.0625rem; font-style: italic; line-height: 1.4; }

.proclamation {
  padding-block: 1.15rem;
  border-block: 4px double var(--ink);
  text-align: center;
}

.proclamation p { margin: 0; font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.proclamation em { color: var(--red-ink); }

.colophon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.1rem;
  color: var(--muted-ink);
  font-size: 0.875rem;
}

.colophon-flower { color: var(--red-ink); font-size: 1.5rem; }

@media (max-width: 48rem) {
  .imprint { gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.04em; }
  .imprint-motto { display: none; }
  .masthead-caption { font-size: 1rem; }
  .brand-trade { gap: 0.5rem; font-size: clamp(0.875rem, 2.4vw, 1.5rem); letter-spacing: 0.16em; }
  .announcement { padding-block: 1.7rem 2rem; }
  .announcement-copy { max-width: 30rem; margin-inline: auto; }
  h2 { font-size: clamp(2rem, 5.5vw, 2.7rem); }
  .colophon { flex-direction: column; gap: 0.6rem; text-align: center; }
  .colophon-flower { display: none; }
}

@media (max-width: 24rem) {
  .brand-name { font-size: 1.5rem; }
  .wide-only { display: none; }
  .notice { grid-template-columns: 2.8rem minmax(0, 1fr); gap: 0.65rem; }
  .manicule { font-size: 2.8rem; }
}

@media print {
  html, body { background: white; }
  body { padding: 0; }
  .advertisement { max-width: none; box-shadow: none; }
}
/* A quiet route from the holding page to the separate company workspace. */
.portal-link {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
}
.portal-link a {
  color: inherit;
  text-underline-offset: 4px;
}
