* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-family: 'Cormorant Garamond', serif; line-height: 1.8; font-size: 18px; }
body { color: #333; background-color: #f9f7f5; overflow-x: hidden; }
.container { margin: 0 auto; padding: 0 3rem; max-width: 1100px; }
.site-header { background-color: #ffffff; color: #333; padding: 2rem 0; border-bottom: 1px solid #eaeaea; position: sticky; top: 0; z-index: 100; }
.logo { font-size: 2.2rem; font-weight: 600; margin: 0 auto; display: flex; justify-content: center; font-style: italic; letter-spacing: 1px; }
.content { padding: 3rem 0; min-height: 70vh; margin: 0 auto; width: 100%; }
.content p { margin-bottom: 2rem; font-size: 1.2rem; line-height: 1.9; color: #555; }
.content img { max-width: 100%; height: auto; margin: 2.5rem auto; display: block; border-radius: 4px; box-shadow: 0 15px 30px rgba(0,0,0,0.08); transition: all 0.4s ease; }
.content img:hover { transform: scale(1.01); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.site-footer { background-color: #ffffff; color: #333; padding: 3rem 0; display: flex; justify-content: center; flex-direction: column; align-items: center; border-top: 1px solid #eaeaea; }
.links { margin-bottom: 2rem; font-weight: 500; display: flex; gap: 2.5rem; }
.links a { text-decoration: none; color: #333; font-size: 1.1rem; transition: all 0.3s ease; position: relative; }
.links a::before { content: ''; position: absolute; width: 100%; height: 1px; bottom: -3px; left: 0; background-color: #333; transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease; }
.links a:hover::before { transform: scaleX(1); transform-origin: left; }
.copyright { opacity: 0.7; font-size: 0.9rem; font-family: 'Helvetica', sans-serif; }

@media (max-width: 768px) {
  html { font-size: 16px; }
  .container { padding: 0 2rem; }
  .logo { font-size: 1.8rem; }
  .links { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .content { padding: 2rem 0; }
}
