/* STIGMAT / standalone contact page. */
:root {
  color-scheme: light;
  --paper: #fff;
  --ink: #151515;
  --muted: #777;
  --rule: #ddd;
  --gutter: clamp(22px, 3.2vw, 72px);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
body, h1, h2 { margin: 0; }
body { min-width: 280px; background: var(--paper); }
a { color: inherit; }
::selection { color: var(--paper); background: var(--ink); }
.landing {
  min-height: 100vh;
  min-height: 100svh;
  padding: 24px var(--gutter);
  display: flex;
  flex-direction: column;
}
.identity { width: 86%; max-width: 1200px; margin-inline: auto; }
.identity h1 { font-size: 0; }
.wordmark { display: block; width: 100%; height: auto; }
.information { text-align: center; padding: clamp(20px, 3vw, 44px) 0 60px; }
.contact h2 {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 10px;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1.1px;
}
.email {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(20px, 2.05vw, 30px);
  line-height: 1.3;
  letter-spacing: -.6px;
  text-decoration: none;
  transition: color .2s ease;
}
.email svg { width: 22px; height: 22px; flex: 0 0 auto; transition: transform .2s ease; }
.email:hover { color: var(--muted); }
.email:hover svg { transform: translate(2px, -2px); }
.email:focus-visible { outline: 1px solid var(--ink); outline-offset: 8px; }
.footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .8px;
}
@media (max-width: 680px) {
  .landing { padding-top: 20px; padding-bottom: 20px; }
  .identity { width: 94%; }
  .information { padding-top: 26px; padding-bottom: 44px; }
  .email { font-size: clamp(20px, 6vw, 26px); gap: 20px; }
  .contact h2 { font-size: 9px; letter-spacing: .8px; }
  .footer { font-size: 8px; gap: 12px; padding-top: 18px; }
}
@media (max-height: 600px) and (min-width: 681px) {
  .identity { max-width: 700px; }
  .information { padding-top: 12px; padding-bottom: 32px; }
}
@media (prefers-reduced-motion: reduce) { .email, .email svg { transition: none; } }

/* Silver reflections drift through a fixed, softly rippled surface.
   Lighten compositing confines the effect to the original letter shapes. */
.effect-definitions { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }
.identity h1 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
}
@supports (mix-blend-mode: lighten) {
  .identity h1::after {
    content: '';
    position: absolute;
    inset: -8%;
    pointer-events: none;
    mix-blend-mode: lighten;
    filter: url(#liquid-metal);
    background-image:
      repeating-linear-gradient(98deg, rgb(255 255 255 / 18%) 0px, rgb(255 255 255 / 0%) 1px, rgb(70 70 70 / 12%) 2px, rgb(255 255 255 / 0%) 4px),
      radial-gradient(ellipse at center, rgb(255 255 255 / 85%) 0%, rgb(255 255 255 / 22%) 22%, rgb(255 255 255 / 0%) 58%),
      linear-gradient(116deg, #747474 0%, #b9b9b9 15%, #eeeeee 23%, #858585 34%, #d4d4d4 46%, #919191 61%, #ededed 73%, #909090 85%, #c8c8c8 100%);
    background-blend-mode: soft-light, screen, normal;
    background-size: 120% 140%, 180% 200%, 240% 180%;
    background-position: 0% 0%, 0% 20%, 100% 40%;
    animation: wordmark-flow 8s ease-in-out infinite alternate;
  }
}
@keyframes wordmark-flow {
  0% { background-position: 0% 0%, 0% 20%, 100% 40%; }
  50% { background-position: 45% 25%, 60% 80%, 48% 65%; }
  100% { background-position: 100% 50%, 100% 30%, 0% 35%; }
}
@media (prefers-reduced-motion: reduce) {
  .identity h1::after { animation: none; filter: none; }
}

/* Keep the entire identity/contact group centred; the footer stays at the bottom. */
.landing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 32px;
  text-align: center;
}
.landing-content .identity { flex: 0 0 auto; }
.landing-content .information { width: 100%; padding-bottom: 0; }
@media (max-width: 680px) {
  .landing-content { padding-block: 28px; }
}
