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

body {
    font-family: 'Montserrat', sans-serif;
    color: #4a4038;
    background: #fdfaf6;
    line-height: 1.7;
}

a {
    color: #4a4038;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.hero {
    position: relative;
    min-height: 350px;
    max-height: 400px;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image:
        url('../images/paper-texture.svg'),
        radial-gradient(circle at 50% 40%, #fffdf9 0%, #fbf3e6 60%, #f7ead3 100%);
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    background-position: center, center;
    background-blend-mode: multiply, normal;
    color: #4a3626;
    padding: 2rem;
    overflow: hidden;
}

.leaf-corner {
    position: absolute;
    width: 400px;
    height: 400px;
    opacity: 0.95;
    pointer-events: none;
}

.corner-tl {
    /*left: 0;*/
    left: -25px;
}

.corner-tr {
    /*right: 0;*/
    right: -25px;
}

/*.corner-bl {*/
/*    bottom: -10px;*/
/*    left: -10px;*/
/*    transform: scaleY(-1);*/
/*}*/

/*.corner-br {*/
/*    bottom: -10px;*/
/*    right: -10px;*/
/*    transform: scale(-1, -1);*/
/*}*/

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #8d722f;
}

.hero h1 {
    /*font-size: 4.5rem;*/
    font-size: 2.7rem;
    font-weight: 400;
    color: #3d2b1c;
    text-shadow: 0 1px 3px rgba(255, 253, 249, 0.6);
}

.hero .amp {
    font-style: italic;
    color: #b3392c;
}

.hero .date {
    margin-top: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #6b5138;
}

.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.55rem 1.5rem;
    text-align: center;
}

/*.section.bottom {*/
/*    font-size: 0.8em;*/
/*}*/

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #8a4a24;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.detail-card {
    background: #fff;
    border: 1px solid #f0d9b5;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.detail-card h3 {
    color: #c0662a;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.btn {
    margin-top: 1.5rem;
    padding: 0.9rem 1.8rem;
    background: #c0662a;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn:hover {
    background: #a4531e;
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    color: #8a6a4a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}
