/* Lato — self-hosted */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lato-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lato-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/lato-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/lato-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
}

body {
  background: #6e86a7;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

/* ── Scene: fills the viewport, clips the top of the photo ── */
.scene {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

/* Photo is 100% wide, proportional, pinned to the bottom */
.bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

/* ── Logo + address block ──
   Left edge  = 25vw  (25% of viewport width)
   Top edge   = 12.5vw (half of 25vw, per spec)
   Logo width = 25vw  (spans 25 %→ 50 % of page)
──────────────────────────────────────────────── */
.content {
  position: absolute;
  left: 15%;          /* 25% of page width */
  top: 12.5vw;        /* half of 25vw */
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.logo {
  width: 100%;
  min-width: 200px;
  height: auto;
  display: block;
}

.address {
  align-self: flex-start;
  font-style: normal;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5;
  color: #041957;
  /* text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); */
  width: 70vw; /* 95vw page edge minus 25vw left offset = 70vw */
}

.attribution a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.attribution {
  position: absolute;
  bottom: 0.5em;
  right: 0.75em;
  font-size: clamp(0.5rem, 0.9vw, 0.7rem);
  color: rgba(255, 255, 255, 0.65);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
