:root {
  color-scheme: dark;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 255, 255, 0.42);
  --shadow: rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.42)),
    url("/assets/ashworth-place.jpg") center / cover fixed;
}

a {
  color: inherit;
}

.site-shell {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(28px, 8vw, 86px);
}

.content {
  width: min(610px, 100%);
  text-shadow: 0 2px 22px var(--shadow);
}

.kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.25rem, 9vw, 6.85rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0;
}

address {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.32rem);
  font-style: normal;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(42px, 7vw, 72px);
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 550;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.link-button:hover,
.link-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.link-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.36);
  outline-offset: 3px;
}

.link-button svg {
  width: 1.1em;
  height: 1.1em;
  margin-right: 9px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 700px) {
  body {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.48)),
      url("/assets/ashworth-place.jpg") center / cover;
  }

  .site-shell {
    align-items: flex-end;
    padding: 28px;
  }

  h1 {
    max-width: 9ch;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
