/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fraunces', serif;
    font-weight: 200;
    background-color: #00133d;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Layout */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    text-align: center;
    margin: 0 auto;
}

.card {
    border: 2px solid #c78851;
    border-radius: 0;
    padding: 8rem 4rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    background: #00133d;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid #c78851;
    pointer-events: none;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

/* Typography */
h1 {
    font-family: 'Viaoda Libre', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #c78851;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 
        1px 1px 0 #8b5a2b,
        2px 2px 0 #6b4421,
        3px 3px 0 #4b2e17,
        4px 4px 10px rgba(0, 0, 0, 0.6);
}

.byline {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.byline a {
  color: #ffffff;
  text-underline-offset: 4px;
}

.tagline {
    font-family: 'Fraunces', serif;
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    color: #ffffff;
    line-height: 1.5;
    font-weight: 200;
}

.mission {
    font-family: 'Fraunces', serif;
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 200;
}

.contact {
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.contact a {
    color: #c78851;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.contact a:hover {
    border-bottom-color: #c78851;
}

/* Responsive design */
@media (max-width: 768px) {
    main {
        padding: 1rem;
    }
    
    .card {
        padding: 7rem 2rem;
    }
    
    h1 {
        white-space: normal;
    }
    
    .byline {
        margin-bottom: 2rem;
    }
    
    .hero {
        margin: 2rem 0;
    }
    
    .tagline {
        white-space: normal;
    }
    
    .mission {
        margin-bottom: 2rem;
        white-space: normal;
    }
    
    footer {
        padding-bottom: 1rem;
    }
}