:root {
  --paper: #f4ead8;
  --paper-deep: #dfc79d;
  --ink: #15120e;
  --ink-soft: #32291f;
  --burnt: #bf3f20;
  --burnt-dark: #7f2416;
  --sand: #c9a66f;
  --ochre: #d49a2a;
  --rule: 3px solid var(--ink);
  --thin-rule: 1px solid rgba(21, 18, 14, 0.55);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Condensed", "Arial Narrow", sans-serif;
  --body: Georgia, "Times New Roman", serif;
  --utility: "Arial Narrow", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(21, 18, 14, 0.09) 1px, transparent 0) 0 0 / 18px 18px,
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.45vw + 0.9rem, 1.2rem);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--burnt-dark);
}

.skip-link {
  background: var(--ink);
  color: var(--paper);
  inset-inline-start: 1rem;
  padding: 0.65rem 0.9rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-160%);
  z-index: 10;
}

.skip-link:focus {
  transform: translateY(0);
}

.cover {
  border-bottom: 6px solid var(--ink);
  min-height: 92vh;
  padding: clamp(1rem, 3vw, 2.5rem);
  position: relative;
}

.cover::after {
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0,
    var(--ink) 8px,
    transparent 8px,
    transparent 18px
  );
  bottom: 0;
  content: "";
  height: clamp(1.3rem, 2.4vw, 2.25rem);
  left: 0;
  position: absolute;
  right: 0;
}

.cover__rule {
  align-items: center;
  background: var(--burnt);
  border: var(--rule);
  color: var(--paper);
  display: flex;
  font-family: var(--utility);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 900;
  height: clamp(1.4rem, 3vw, 2.2rem);
  justify-content: center;
  letter-spacing: 0.1em;
  margin-bottom: clamp(1rem, 2vw, 1.8rem);
  text-transform: uppercase;
}

.cover__nav {
  align-items: stretch;
  border-bottom: var(--rule);
  border-top: var(--rule);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--utility);
  font-size: 0.82rem;
  font-weight: 800;
  gap: 0;
  letter-spacing: 0.08em;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  text-transform: uppercase;
}

.section-links,
.language-switch {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.language-switch {
  margin-inline-start: auto;
}

.cover__nav a {
  align-items: center;
  border-inline-end: var(--thin-rule);
  display: flex;
  padding: 0.6rem 0.8rem;
  text-decoration: none;
  white-space: nowrap;
}

.section-links a:first-child,
.language-switch a:first-child {
  border-inline-start: var(--thin-rule);
}

.cover__nav a:hover {
  background: var(--burnt);
  color: var(--paper);
}

.language-switch a[aria-current="page"] {
  box-shadow: inset 0 -4px 0 var(--burnt);
}

.nav-full {
  display: none;
}

.cover__nav a:hover .nav-short,
.cover__nav a:focus-visible .nav-short,
.language-switch a:hover .language-short,
.language-switch a:focus-visible .language-short {
  display: none;
}

.cover__nav a:hover .nav-full,
.cover__nav a:focus-visible .nav-full,
.language-switch a:hover .language-full,
.language-switch a:focus-visible .language-full {
  display: inline;
}

.language-full {
  display: none;
}

.cover__grid {
  align-items: end;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  margin: 0 auto;
  max-width: 1180px;
  padding-bottom: 4rem;
}

.masthead-wrap {
  background: var(--burnt);
  border: 7px solid var(--ink);
  min-width: 0;
  overflow: hidden;
  padding: clamp(0.9rem, 2.5vw, 1.6rem);
}

.edition-label,
.section-label,
.utility-line,
.platform-line,
.contact-line,
.site-footer {
  font-family: var(--utility);
}

.edition-label {
  border-bottom: var(--rule);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 clamp(0.75rem, 1.6vw, 1.1rem);
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}

.masthead {
  color: var(--paper);
  display: grid;
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.78;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 var(--ink);
}

.masthead span {
  display: block;
}

.masthead span:empty {
  display: none;
}

.masthead span:nth-child(1),
.masthead span:nth-child(2) {
  font-size: clamp(5.2rem, 15vw, 14rem);
}

.masthead span:nth-child(3) {
  font-size: clamp(8.5rem, 23vw, 21rem);
}

.cover__copy {
  min-width: 0;
  padding-left: 0;
}

.tagline {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.utility-line {
  border-top: var(--rule);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 0;
  padding-top: 1rem;
  text-transform: uppercase;
}

.platform-line {
  background: var(--ink);
  color: var(--paper);
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin: 1.2rem 0 0;
  padding: 0.65rem 0.75rem;
  text-transform: uppercase;
}

.panel,
.contact-panel {
  border-bottom: var(--rule);
  display: grid;
  grid-template-columns: minmax(11rem, 0.36fr) minmax(0, 1fr);
  min-height: 38vh;
}

.section-label {
  background: var(--paper-deep);
  border-inline-end: var(--rule);
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  padding: clamp(1rem, 2.5vw, 2rem);
  text-transform: uppercase;
}

.panel__body,
.contact-panel__body {
  padding: clamp(2rem, 6vw, 5.5rem);
}

h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 1.2rem;
  max-width: 12ch;
  text-transform: uppercase;
}

.panel p,
.contact-panel p {
  font-size: clamp(1.25rem, 1.4vw, 1.7rem);
  margin: 0;
  max-width: 48rem;
}

.feature-panel {
  background: var(--paper);
}

.feature-panel h2 {
  max-width: none;
}

.feature-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}

.feature-block {
  background: var(--paper-deep);
  border: var(--rule);
  min-height: 15rem;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.feature-block + .feature-block {
  border-inline-start: 0;
}

.feature-block:hover {
  background: var(--ochre);
}

.feature-block h3 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.feature-block p {
  font-family: var(--utility);
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.urgency-panel {
  background: var(--burnt);
  color: var(--paper);
}

.urgency-panel .section-label {
  background: var(--ink);
  color: var(--paper);
}

.urgency-panel h2,
.urgency-panel p {
  color: var(--paper);
}

.audience-panel {
  background:
    linear-gradient(90deg, rgba(21, 18, 14, 0.08) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--paper);
}

.contents-panel h2 {
  max-width: 16ch;
}

.contents-list {
  border-top: var(--rule);
  list-style: none;
  margin: clamp(1.6rem, 3vw, 2.6rem) 0 0;
  max-width: 56rem;
  padding: 0;
}

.contents-list li {
  align-items: baseline;
  border-bottom: var(--thin-rule);
  display: grid;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 4.4rem);
  gap: 1rem;
  grid-template-columns: 2.25rem 1fr;
  letter-spacing: 0;
  line-height: 0.95;
  padding: 0.45rem 0;
  text-transform: uppercase;
}

.contents-list span {
  color: var(--burnt);
  font-family: var(--utility);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 0.65;
}

.contact-panel {
  background: var(--ink);
  color: var(--paper);
}

.contact-panel .section-label {
  background: var(--burnt);
  color: var(--paper);
}

.contact-panel h2 {
  color: var(--paper);
  max-width: 11ch;
}

.contact-line {
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: 1.3rem !important;
  text-transform: uppercase;
}

.site-footer {
  align-items: center;
  background: var(--paper-deep);
  display: flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 0.9rem clamp(1rem, 3vw, 2rem);
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

html[dir="rtl"] {
  --body: Tahoma, Arial, sans-serif;
  --display: Tahoma, Arial, sans-serif;
  --utility: Tahoma, Arial, sans-serif;
}

html[dir="rtl"] body {
  line-height: 1.8;
}

html[dir="rtl"] .cover__nav,
html[dir="rtl"] .cover__rule,
html[dir="rtl"] .edition-label,
html[dir="rtl"] .section-label,
html[dir="rtl"] .utility-line,
html[dir="rtl"] .platform-line,
html[dir="rtl"] .contact-line,
html[dir="rtl"] .site-footer,
html[dir="rtl"] .feature-block p {
  letter-spacing: 0;
}

html[dir="rtl"] .masthead {
  line-height: 0.9;
}

html[dir="rtl"] .cover__grid {
  align-items: start;
}

html[dir="rtl"] .masthead span,
html[dir="rtl"] .tagline,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  overflow-wrap: anywhere;
}

html[dir="rtl"] .masthead span:nth-child(2) {
  font-size: clamp(3.8rem, 8vw, 7.2rem);
}

html[dir="rtl"] .masthead span:nth-child(3) {
  font-size: clamp(6.5rem, 14vw, 12.5rem);
}

html[dir="rtl"] .tagline {
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

html[dir="rtl"] h2 {
  font-size: clamp(2.4rem, 4.7vw, 4.7rem);
}

html[dir="rtl"] .utility-line {
  font-weight: 400;
}

html[dir="rtl"] .feature-block {
  min-height: 11rem;
}

html[dir="rtl"] .feature-block h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

html[dir="rtl"] h2,
html[dir="rtl"] .tagline,
html[dir="rtl"] .feature-block h3,
html[dir="rtl"] .contents-list li {
  line-height: 1.25;
}

@media (max-width: 900px) {
  .cover {
    min-height: auto;
  }

  .cover__grid {
    grid-template-columns: 1fr;
  }

  .cover__copy {
    border-top: var(--rule);
    padding-top: 1.4rem;
  }

  .panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-label {
    border-bottom: var(--rule);
    border-inline-end: 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-block:nth-child(3) {
    border-inline-start: var(--rule);
  }

  .feature-block:nth-child(n + 3) {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at 1px 1px, rgba(21, 18, 14, 0.08) 1px, transparent 0) 0 0 / 14px 14px,
      var(--paper);
  }

  .cover {
    padding: 0.75rem;
  }

  .cover__nav a {
    flex: 1 1 auto;
    padding: 0.55rem 0.65rem;
  }

  .section-links {
    flex: 1 1 100%;
    width: 100%;
  }

  .language-switch {
    border-top: var(--thin-rule);
    flex: 1 1 100%;
    justify-content: flex-end;
    width: 100%;
  }

  .masthead-wrap {
    border-width: 5px;
  }

  .masthead {
    text-shadow: 3px 3px 0 var(--ink);
  }

  .masthead span:nth-child(1),
  .masthead span:nth-child(2) {
    font-size: clamp(4.7rem, 24vw, 7.5rem);
  }

  .masthead span:nth-child(3) {
    font-size: clamp(7rem, 38vw, 11rem);
  }

  html[dir="rtl"] .masthead span:nth-child(2) {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  html[dir="rtl"] .masthead span:nth-child(3) {
    font-size: clamp(5.5rem, 28vw, 8rem);
  }

  html[dir="rtl"] .tagline {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  html[dir="rtl"] h2 {
    font-size: clamp(2.1rem, 10vw, 3.6rem);
  }

  html[dir="rtl"] .feature-block h3 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .platform-line {
    display: block;
  }

  .panel__body,
  .contact-panel__body {
    padding: 1.5rem 1rem 2rem;
  }

  h2 {
    font-size: clamp(2.4rem, 16vw, 4.8rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-block,
  .feature-block:nth-child(3) {
    border-inline-start: var(--rule);
  }

  .feature-block + .feature-block {
    border-inline-start: var(--rule);
    border-top: 0;
  }

  .feature-block {
    min-height: 11rem;
  }

  .contents-list li {
    grid-template-columns: 2rem 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}
