:root {
  --paper: #f6f5f4;
  --ink: #746657;
  --deep: #342e28;
  --line: rgba(116, 102, 87, 0.2);
  --moss: #405547;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.head-screen {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 28px 18px;
}

.landing-panel {
  display: grid;
  justify-items: center;
  width: min(100% - 44px, 920px);
  margin: 0 auto;
  padding: 0 0 48px;
  text-align: center;
}

.landing-logo {
  width: min(1120px, 96vw);
  max-height: 88svh;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  object-fit: contain;
}

.dictionary-entry {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(280px, 1fr);
  gap: 56px;
  width: min(100%, 760px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
  text-align: left;
}

.source-label {
  margin: 0 0 14px;
  color: var(--moss);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  line-height: 1.7;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(30px, 4vw, 46px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  text-transform: lowercase;
}

.phonetic {
  margin: 12px 0 0;
  color: rgba(52, 46, 40, 0.58);
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

blockquote {
  margin: 0 0 18px;
  max-width: 560px;
  color: var(--deep);
  font-size: clamp(20px, 2.7vw, 28px);
  line-height: 1.24;
}

.entry-definition p {
  max-width: 560px;
  margin: 0;
  color: rgba(52, 46, 40, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 28px;
  border: 1px solid currentColor;
  padding: 0 20px;
  color: var(--moss);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.source-link:hover {
  background: var(--moss);
  color: white;
}

.soon {
  margin-top: 46px;
  color: var(--deep);
  font-family: Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.soon p {
  margin: 0 0 14px;
  font-size: 14px;
}

.soon a {
  font-size: 13px;
  text-decoration: none;
}

.soon a:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .head-screen {
    padding: 22px 12px;
  }

  .landing-panel {
    width: min(100% - 36px, 920px);
    padding-bottom: 34px;
  }

  .dictionary-entry {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0;
  }

  .soon {
    letter-spacing: 0.08em;
  }
}
