@charset "UTF-8";

:root {
  --ink: #090b0a;
  --paper: #f1f0e9;
  --gold: #e7c57f;
  --muted: #b0b2a9;
  --rule: #30342f;
  --page-gutter: clamp(1.5rem, 5.4vw, 6.5rem);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--paper);
  background: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html { min-width: 20rem; }
body { margin: 0; }
::selection { background: var(--gold); color: var(--ink); }

.page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  max-width: 120rem;
  margin-inline: auto;
  padding: 0 var(--page-gutter);
  background: radial-gradient(ellipse at 84% 43%, #171a132e 0%, transparent 55%);
}

.masthead {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-block: clamp(2rem, 4.2vh, 3.5rem);
}

.brand {
  position: relative;
  flex: 0 1 auto;
  width: clamp(17rem, 31vw, 30rem);
  max-width: 100%;
  aspect-ratio: 4.85;
  overflow: hidden;
  mix-blend-mode: screen;
}

.brand img {
  position: absolute;
  display: block;
  width: 111%;
  height: auto;
  max-width: none;
  left: -4.8%;
  top: 50%;
  transform: translateY(-48.4%);
}

.ownership {
  margin: 0;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
  letter-spacing: .035em;
}

.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 7.5vh, 6rem) clamp(4rem, 9vh, 7rem);
}

.hero-copy { position: relative; z-index: 1; }

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 5.75vw, 7.1rem);
  font-weight: 400;
  line-height: 1.075;
  letter-spacing: -.048em;
  animation: arrive .85s ease-out both;
}

h1 span { display: block; }

h1 .forward {
  color: var(--gold);
  font-style: italic;
  letter-spacing: -.055em;
  padding-bottom: .055em;
}

.emblem-wrap {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  width: clamp(44rem, 80vw, 94rem);
  right: -12%;
  top: 51%;
  transform: translateY(-50%);
  mix-blend-mode: screen;
  mask-image: linear-gradient(to right, transparent, #000 35%);
  animation: watermark-arrive 1.25s ease-out both;
}

.emblem {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  opacity: .11;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--rule);
  padding-block: 1.65rem 1.9rem;
}

.sectors {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
}

.sectors li + li { position: relative; }
.sectors li + li::before {
  content: "/";
  position: absolute;
  left: -1.08rem;
  color: #706b5b;
}

.copyright {
  margin: 0;
  color: #999c92;
  font-size: .8125rem;
  line-height: 1.5;
  white-space: nowrap;
}

@keyframes arrive {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes watermark-arrive {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  h1 { font-size: clamp(3rem, 6vw, 4rem); }
  .emblem-wrap { width: 58rem; right: -36%; }
}

@media (max-width: 640px) {
  .masthead { padding-block: 2rem 1.5rem; }
  .brand { width: min(100%, 20rem); }
  .ownership { display: none; }
  .hero {
    padding-block: 3rem 4rem;
  }
  .emblem-wrap {
    width: 46rem;
    right: -22rem;
    top: 51%;
    mask-image: linear-gradient(to right, transparent, #000 48%);
  }
  .emblem { opacity: .085; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(2.5rem, 10.2vw, 4rem); line-height: 1.085; letter-spacing: -.045em; }
  .footer { flex-wrap: wrap; gap: 1rem; padding-block: 1.25rem 1.5rem; }
  .sectors { gap: .65rem 1.55rem; }
  .sectors li + li::before { left: -.92rem; }
  .copyright { font-size: .75rem; }
}

@media (max-width: 360px) {
  :root { --page-gutter: 1.25rem; }
  h1 { font-size: 2.3rem; }
  .sectors { font-size: .8125rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
}

/* Contact details and privacy page. */
a { color: var(--gold); text-underline-offset: .2em; }
a:hover { color: var(--paper); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
.footer { flex-wrap: wrap; }
.footer-details { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: .65rem 1.25rem; font-size: .875rem; line-height: 1.6; }
.footer-details .copyright { font-size: .875rem; }
.footer-details a { overflow-wrap: anywhere; }
.policy-page .masthead { flex-wrap: wrap; }
.policy-page .brand { display: block; }
.back-link { font-size: .875rem; }
.policy { flex: 1; max-width: 48rem; padding-block: 2.5rem 5rem; font-size: 1rem; line-height: 1.75; }
.policy h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -.035em; line-height: 1.15; animation: none; }
.policy h2 { margin: 2rem 0 .5rem; font-size: 1.2rem; line-height: 1.4; font-weight: 600; }
.policy p { margin: .75rem 0; }
.policy .updated { color: var(--muted); font-size: .875rem; margin-top: 1rem; }
.policy a { overflow-wrap: anywhere; }
@media (max-width: 640px) {
  .footer-details { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .policy { padding-block: 2rem 3rem; }
}
