body {
    margin: 0;
    padding: 50px 20px;
    background: #faf7f2; 
    color: #1a1a1a;      
    line-height: 1.7;
  }
  
  .wrapper {
    max-width: 660px;
    margin: 0 auto;
  }
  
  .top {
    text-align: center;
    margin-top: -5rem;
    margin-bottom: 3.2rem;
  }
  
  h1 {
    font-family: "Cinzel Decorative", serif;
    margin-bottom: 1.4rem;
    font-size: 6rem;
    color: #bda671; 
    font-weight: 400;
    line-height: 1.3;
  }
  
  h2 {
    font-family: "Cormorant", serif; /* Updated name */
    font-size: clamp(1.8rem, 2.5vw, 1.7rem);
    font-style: italic;
    letter-spacing: 0.06em; /* Updated spacing */
    font-weight: 400;
    margin-top: 0.4rem;
    color: #73631f; 
    opacity: 0.8;
  }
  
  h3 {
    font-family: "Cormorant", serif; /* Updated name */
    font-size: 1.6rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 1.8rem;
    margin-bottom: 0rem;
    color: #937837;
    border-bottom: 2px solid #e9e3d7;
    display: inline-block;
  }
  
  .meta {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #13586f; 
    font-weight: 500;
    margin-top: 1.8rem;
    margin-bottom: 3.2em;
  }
  
  p {
    font-size: 1.22rem;
    font-family: "Spectral", "Garamond", serif;
    word-spacing: 0.01rem;;
    line-height: 2.2rem;
    margin-bottom: 1.3em;
    margin-top: 0.4rem;
  }

 li {
    font-size: 1.22rem;
    font-family: "Spectral", "Garamond", serif;
    line-height: 2.2rem;
  }
  
  a, a:active {
    color: #507294; 
    text-decoration: none;
    text-decoration-color: #507294; 
  }
  
  a:hover {
    color: #a6637a;
    text-decoration-color: #a6637a;
  }
  
  hr {
    border: none;
    border-top: 1px solid rgba(189, 166, 113, 0.3);
    margin: 2.4em 0;
  }
  
  #mattis {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 0rem;
    padding: 2rem 2rem 1rem 2rem;
    background: white;
    border: 1px solid #eee;
  }
  
  #mattis-image {
    flex: 0 0 auto;
    max-width: 180px;
  }
  
  
  #mattis-text {
    margin: -1rem 0rem 0rem 0rem;
  }
  

  #mattis-image img {
    max-width: 100%;
    width: 100%;
    border-radius: 4px;
    filter: contrast(1.05) saturate(0.9);
  }
  
  .button {
    display: inline-block;
    margin-top: -0.2rem;
    margin-bottom: 1rem;
    padding: 0.9rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    border-radius: 2px;
    border: 1px solid #1a1a1a;
    color: white;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
  }
  
  .button:hover {
    background-color: transparent;
    color: #1a1a1a;
  }
  
  .note {
    font-size: 0.86rem;
    color: #777;
    margin-top: 1.6rem;
    line-height: 1.8rem;
  }
  
  .gold {
    color: #bda671;
    font-weight: 600;
  }


  @media (max-width: 640px) {
  
    h1 {
      margin-top: 6rem;
      font-size: 3rem;
    }

    h2 {
      font-size: 1.4rem;
      line-height: 1rem;
    }
  
  
    #mattis {
      flex-direction: column-reverse;
      gap: 1rem;
      align-items: flex-start;
      margin-bottom: 1.4rem;
    }
  
    #mattis-image {
      max-width: 280px;
      margin-top: 0.2rem;
      margin-bottom: 0;
    }
  
    #mattis-image img {
      width: 100%;
      height: auto;
    }
  
    #mattis-text {
      margin: 0;
      padding-right: 0;
    }
  
  }
  
