/* 
* Site code © 2026 Quam Magnum. All rights reserved.
*/


/* --- Dress Code font: licensed webfont, not covered by the above --- */
/**
* @license
* MyFonts Webfont Build ID 380148
*
* The fonts listed in this notice are subject to the End User License
* Agreement(s) entered into by the website owner. All other parties are
* explicitly restricted from using the Licensed Webfonts(s).
*
* You may obtain a valid license from one of MyFonts official sites.
* http://www.fonts.com
* http://www.myfonts.com
* http://www.linotype.com
*
*/
/* --- End Dress Code font license --- */


@font-face {
  font-family: 'Dress Code';
  src: url('fonts/Dress_Code_Light.woff2') format('woff2'),
       url('fonts/Dress_Code_Light.woff') format('woff');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Dress Code';
  src: url('fonts/Dress_Code_Regular.woff2') format('woff2'),
       url('fonts/Dress_Code_Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #bfbfbf;
  --muted: #8A8A8A;
  --hairline: #2A2A2A;
  --red: #FF0000;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  min-height: 100%;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('bg-texture.jpg');
  background-repeat: no-repeat;
  background-position: top;
  background-size: 2000px;
  filter: grayscale(100%);
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}

.page, footer {
  position: relative;
  z-index: 1;
}

body {
  font-family: 'Crimson Text', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100svh;
  padding: 4vh 6vw 2vh;
}

.page {
  flex: 1 0 auto;
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  /* gap: 3rem; */
}

/* ---------- Mark ---------- */

.mark {
  width: min(100%, 600px);
}

.mark img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Body copy ---------- */

.statement {
  font-size: clamp(0.85rem, 2.1vw, 1.1rem);
  line-height: 1.35;
  color: var(--white);
  max-width: 72ch;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.statement em {
  font-style: italic;
  color: var(--muted);
}

/* ---------- Status line ---------- */

.status {
  font-family: 'Dress Code', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
}

.status .dot {
  color: var(--red);
  margin: 0 0.15em;
}

/* ---------- Contact ---------- */

.contact {
  font-family: 'Dress Code', sans-serif;
  font-weight: 300;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.contact a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  border-color: var(--red);
}

/* ---------- Footer ---------- */

footer {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
  font-family: 'Crimson Text', sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: #555555;
  padding-top: 1.5rem;
}

/* ---------- Email links (inline in statement + footer) ---------- */

.email-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.email-link:hover,
.email-link:focus-visible {
  color: #FF5C5C;
  text-decoration-color: transparent;
}

@media (max-width: 480px) {
  .page { gap: 2.5rem; }
}