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

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e5e5;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: #666;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #000;
}

.main {
  flex: 1;
  padding: 4rem 0;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer {
  background: #fafafa;
  border-top: 1px solid #e5e5e5;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand h4 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #666;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #666;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #000;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  color: #999;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1f2937;
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #000;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1em;
  color: #444;
}

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #666;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
    height: auto;
    padding: 1rem 0;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 {
    font-size: 2rem;
  }
}