body {
    font-family: 'Courier Prime', monospace;
    background: linear-gradient(45deg, #f5f5dc 25%, transparent 25%), linear-gradient(-45deg, #f5f5dc 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #d2b48c 75%), linear-gradient(-45deg, transparent 75%, #d2b48c 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
header {
    background: linear-gradient(to bottom, #8b0000, #654321);
    color: #f5f5dc;
    padding: 30px;
    text-align: center;
    border-bottom: 5px dashed #daa520;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 10px #daa520;
    letter-spacing: 2px;
}
.intro {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(245, 245, 220, 0.9);
    border: 2px dashed #654321;
    border-radius: 10px;
    font-style: italic;
    box-shadow: inset 0 0 10px rgba(218, 165, 32, 0.2);
}
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: #f5f5dc;
    border-top: 2px dashed #daa520;
}
nav a {
    background: linear-gradient(to bottom, #8b0000, #654321);
    color: #f5f5dc;
    padding: 15px 25px;
    text-decoration: none;
    border: 2px solid #daa520;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
nav a:hover {
    transform: rotate(2deg) scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.card {
    background: #f5f5dc;
    border: 3px dashed #654321;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(-45deg, transparent 12px, #daa520 12px);
    box-shadow: -1px 1px 2px rgba(0,0,0,0.3);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: sepia(40%) contrast(1.1);
}
.card h3 {
    margin: 10px;
    font-family: 'Playfair Display', serif;
    color: #8b0000;
    text-shadow: 1px 1px 2px rgba(218, 165, 32, 0.5);
}
.card p {
    margin: 10px;
    font-size: 0.9em;
}
footer {
    text-align: center;
    padding: 15px;
    background: linear-gradient(to bottom, #8b0000, #654321);
    color: #f5f5dc;
    border-top: 2px dashed #daa520;
    font-size: 0.8em;
    position: relative;
}
.stamp {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: #daa520;
    color: #8b0000;
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
    transform: rotate(-10deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
@media (max-width: 600px) {
    nav { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #8b0000;
    color: #f5f5dc;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}
.skip-link:focus { top: 6px; }