* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #f7f4ef;
    color: #111111;
    font-family: 'Cormorant Garamond', serif;
    min-height: 100vh;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    padding: 40px 24px;
  }
  
  .container {
    width: 100%;
    max-width: 720px;
  }
  
  h1 {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
    line-height: 1;
  }
  
  .intro {
    font-size: 1.7rem;
    margin-bottom: 28px;
  }
  
  p {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .contact {
    margin-top: 40px;
  }
  
  a {
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #111111;
    transition: opacity 0.2s ease;
  }
  
  a:hover {
    opacity: 0.6;
  }
  
  