@font-face {
  font-family: Graphik;
  src: url('assets/GraphikLCG-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root { color-scheme: light; font-family: Graphik, Arial, sans-serif; color: #111; background: #fff; }
* { box-sizing: border-box; }
body { margin: 0; }
.page {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(32px, 5vw, 72px) 6.15vw clamp(30px, 5.8vh, 64px);
  display: flex;
  flex-direction: column;
}
.brand { display: flex; align-items: center; gap: 26px; }
.logo { width: 80px; height: 80px; flex: 0 0 80px; background: #000; border-radius: 50%; transition: box-shadow 200ms ease; }
.logo img { display: block; width: 100%; height: 100%; }
.descriptor { margin: 0; font-size: 14px; line-height: 1.45; }
main { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 80px 0 100px; }
h1 { margin: 0; font-size: clamp(42px, 5.85vw, 100px); line-height: 1.12; font-weight: 400; letter-spacing: -.045em; }
.line { display: block; }
.mobile-break { display: none; }
.coming-soon { margin: 58px 0 0; font-size: clamp(16px, 1.65vw, 24px); line-height: 1.5; letter-spacing: .025em; color: #666; }
footer { display: flex; align-items: baseline; gap: 36px; flex-wrap: wrap; font-size: 14px; line-height: 1.6; color: #626262; }
footer a { position: relative; color: inherit; text-decoration: none; white-space: nowrap; }
footer a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 280ms ease; }
footer a:focus-visible { outline: 1px solid currentColor; outline-offset: 7px; }
footer a:focus-visible::after { transform: scaleX(1); }
.address { margin: 0 0 0 auto; }
@media (hover: hover) and (pointer: fine) {
  .logo:hover { box-shadow: 0 0 0 7px #000; }
  footer a:hover::after { transform: scaleX(1); }
}
@media (max-width: 1023px) {
  footer { gap: 18px 32px; }
  .address { flex-basis: 100%; margin-left: 0; }
  main { padding: 80px 0; }
}
@media (max-width: 600px) {
  .page { padding: 30px 24px 28px; }
  .brand { gap: 20px; }
  .logo { width: 64px; height: 64px; flex-basis: 64px; }
  .descriptor { font-size: 12px; }
  main { padding: 76px 0 80px; }
  h1 { font-size: clamp(27px, 7.6vw, 45px); line-height: 1.17; letter-spacing: -.045em; }
  .mobile-break { display: block; }
  .coming-soon { margin-top: 36px; font-size: 16px; }
  footer { flex-direction: column; align-items: flex-start; gap: 14px; font-size: 12px; }
  .address { max-width: 290px; flex-basis: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
