:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --ink: #181715;
  --muted: #5d5952;
  --line: #d8d2c8;
  --surface: #fffaf0;
  --shadow: rgba(29, 27, 22, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 68% 22%, rgba(226, 157, 79, 0.18), transparent 32rem),
    linear-gradient(135deg, #f7f5ef 0%, #f2eadb 100%);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.card {
  width: min(100%, 40rem);
}

.skyline-shot {
  position: relative;
  margin: 0 0 clamp(1.5rem, 5vw, 2.4rem);
}

.skyline-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(24, 23, 21, 0.16);
  border-radius: clamp(1rem, 3vw, 1.55rem);
  background: var(--surface);
  box-shadow: 0 24px 64px var(--shadow);
}

.skyline-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: clamp(1rem, 3vw, 1.55rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.skyline-shot figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 11vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  margin-top: 2.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  font-weight: 650;
}

a:hover { color: var(--muted); }

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

@media (max-width: 520px) {
  .card { width: 100%; }

  nav {
    gap: 0.55rem 1rem;
    margin-top: 1.8rem;
  }
}
