@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Inter:wght@400;500&display=swap');

:root {
  --bg: #F5F1EA;
  --text: #2B2A28;
  --accent: #7A8471;
  --muted: #6B6864;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

a:hover, a:focus {
  border-bottom-color: var(--accent);
}

.site-header {
  padding: 1.75rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.site-header .brand {
  display: inline-block;
}

main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 0 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.35;
  margin: 0 0 2rem;
  max-width: 28ch;
}

.hero .subtitle {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 36ch;
}

.notice {
  margin-top: 6rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact {
  margin-top: 1.75rem;
  text-align: center;
  line-height: 1.85;
}

.contact .name {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.15rem;
}

.contact .role {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.contact .details a {
  display: inline-block;
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer a {
  margin: 0 0.6rem;
}

.page h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 2rem 0 2.5rem;
}

.page h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem;
}

.page p {
  margin: 0.5rem 0 1rem;
}

.page .back {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 1.25rem 1.25rem;
    text-align: center;
  }

  main {
    padding: 1rem 1.25rem 3rem;
  }

  .hero {
    min-height: 60vh;
    padding: 2rem 0 1.5rem;
  }

  .notice {
    margin-top: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
