:root {
  color-scheme: dark;
  --ink: #f0f0ea;
  --muted: #b6b8b1;
  --edge: rgba(231, 234, 224, .22);
  --gutter: clamp(1.5rem, 4.4vw, 5.5rem);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  background: #111313;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-width: 280px; }
body { min-height: 100svh; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 8px; }
::selection { background: #deded1; color: #111313; }

.site {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: clip;
}
.landscape, .landscape::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.landscape { overflow: hidden; background: #111313; }
.landscape__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  opacity: .94;
  animation: arrive 2s cubic-bezier(.18,.67,.34,1) both;
}
.landscape::after {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(13,15,15,.79), rgba(13,15,15,.30) 45%, transparent 74%),
    linear-gradient(180deg, rgba(13,15,15,.26), transparent 25%, transparent 70%, rgba(13,15,15,.65));
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 var(--gutter);
  padding: 2.05rem 0;
  border-bottom: 1px solid var(--edge);
}
.brand { display: inline-flex; align-items: center; min-width: 0; min-height: 44px; }
.brand__wordmark { display: block; font-size: 1.625rem; font-weight: 700; letter-spacing: .45em; line-height: 1; white-space: nowrap; }
.contact { display: inline-flex; align-items: center; gap: 1.8rem; min-height: 44px; font-size: .875rem; }
.contact span { position: relative; }
.contact span::after { content: ""; position: absolute; bottom: -.35rem; left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.contact:hover span::after { transform: scaleX(1); }
.contact svg { width: 19px; height: 19px; transition: transform .25s; }
.contact:hover svg { transform: translate(2px, -2px); }

.hero {
  display: flex;
  align-items: center;
  flex: 1;
  padding: clamp(6rem, 11vh, 9rem) var(--gutter) clamp(6rem, 12vh, 10rem);
}
.hero__copy { max-width: 52rem; animation: reveal .95s .15s both; }
h1 { margin: 0; font-size: clamp(4.5rem, 8.5vw, 9.5rem); font-weight: 400; line-height: .99; letter-spacing: -.055em; }
.footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem 2rem; margin: 0 var(--gutter); padding: 1.65rem 0; border-top: 1px solid var(--edge); color: var(--muted); }
.footer small, .footer__note { font-size: .75rem; line-height: 1.6; }
.footer__note { letter-spacing: .015em; }

@keyframes arrive { from { opacity: 0; transform: scale(1.035); } to { opacity: .94; transform: scale(1); } }
@keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (min-width: 1700px) {
  .hero { padding-top: 10rem; padding-bottom: 11rem; }
}
@media (max-width: 700px) {
  .masthead { padding: 1.2rem 0; }
  .brand__wordmark { font-size: 1.2rem; }
  .contact { gap: .7rem; }
  .landscape__image { object-position: 62% center; }
  .landscape::after { background: linear-gradient(90deg, rgba(13,15,15,.72), rgba(13,15,15,.18)), linear-gradient(180deg, rgba(13,15,15,.15), transparent 20%, rgba(13,15,15,.35) 70%, rgba(13,15,15,.75)); }
  .hero { align-items: flex-end; padding-top: 9rem; padding-bottom: 5rem; }
  h1 { font-size: clamp(3.6rem, 13.7vw, 5.7rem); }
  .footer { padding: 1.25rem 0; align-items: flex-end; }
  .footer__note { max-width: 10rem; text-align: right; }
}
@media (max-width: 360px) {
  .masthead { gap: .5rem; }
  .brand__wordmark { font-size: 1rem; }
  .contact { gap: .4rem; }
  .footer__note { max-width: 8rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
