/* Privet Row — calling card
   Palette: Parchment & Sage brand guide Nº 13 */

:root {
  --warm-white: #FDFBF3;
  --background: #F3EEE2;
  --muted:      #EDE7D5;
  --border:     #D8D0BD;
  --muted-fg:   #786E5E;
  --primary:    #3F6E5E;
  --sidebar:    #2E4F44;
  --foreground: #2A2622;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vmin 24px;
  background: var(--muted);
  color: var(--foreground);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.card {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero {
  width: 100%;
  height: auto;
  display: block;
}

.contact {
  margin: 12px 0 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact a {
  color: var(--primary);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--sidebar);
  border-color: var(--primary);
}

.contact a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Accessible heading for SEO / screen readers; logo carries the visual brand */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .contact a {
    transition: none;
  }
}
