:root {
  --color-text: #222;
  --color-text-light: #fff;
  --color-overlay: rgba(0, 0, 0, 0.35);
  --max-content-width: 80ch;
  --text-base: 1.25rem;
  --text-h1-min: 3rem;
  --text-h1-max: 5rem;
  --text-h2: 2rem;
  --text-sub-min: 1.8rem;
  --text-sub-max: 3rem;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
}

#site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  padding: 1.25rem 2rem;
  color: var(--color-text-light);
}

#site-header a { color: var(--color-text-light); text-decoration: none; font-weight: 600; }
#site-header nav a { margin-left: 1.5rem; opacity: 0.9; }
#site-header nav a:hover { opacity: 1; }

.cover-header {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cover-header-inner-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.cover-header-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-text-light);
  padding: 2rem;
}

.cover-header-inner h1 {
  font-size: clamp(var(--text-h1-min), 6vw, var(--text-h1-max));
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  margin-bottom: 0.5rem;
}

#subtitle {
  font-size: clamp(var(--text-sub-min), 3.6vw, var(--text-sub-max));
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.page-content {
  max-width: var(--max-content-width);
  margin: 4rem auto;
  padding: 0 2rem;
  line-height: 1.7;
  color: var(--color-text);
}

h2 {
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

h2:first-child {
  margin-top: 0;
}

.page-content > p {
  margin-bottom: 1.5rem;
}

address.contact-info {
  display: block;
  font-style: normal;
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 1.25rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info a {
  color: inherit;
  text-underline-offset: 0.15em;
}

.contact-info a:hover {
  text-decoration: none;
}
