:root {
    /* 19th Century Vintage Color Palette matched to the logo's hues */
    --paper-bg: #e6e6e2; /* Adjusted slightly greyer to match the logo's background closely */
    --paper-tint: #d8d8d0; /* Aged yellow-grey from the logo #e0e0c0 */
    --ink-black: #050a0f; /* Darkest navy/black from logo */
    --ink-faded: #2a3540; /* Faded charcoal/navy text */
    --teal-accent: #002828; /* The dark teal hue from the logo */
    --border-gilt: #c1b8a3; /* Faded gold/brass look */
}

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

body {
    /* Classic vintage book/shop font */
    font-family: 'Sorts Mill Goudy', serif;
    background-color: var(--paper-bg);
    background-image: radial-gradient(circle at center, var(--paper-bg) 0%, var(--paper-tint) 100%);
    color: var(--ink-black);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* Subtle darkened edges like aged paper */
.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 150px rgba(0, 20, 30, 0.05);
    z-index: 10;
}

/* Main Container - The "Placard" */
.placard {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    background: var(--paper-bg);
    border-radius: 40px; /* Completely soft edges */
    box-shadow: 0 20px 50px -15px rgba(0, 20, 30, 0.1), 
                0 0 0 1px rgba(193, 184, 163, 0.4);
}

.ornamental-border {
    padding: 60px 40px;
    border: 2px solid var(--border-gilt);
    border-radius: 25px; /* Soft inner edges */
    text-align: center;
    position: relative;
}

/* The Focal Point: Massive Logo */
.logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.logo {
    /* Massive size to make it the absolute focal point of the artifact */
    width: 100%;
    max-width: 500px; 
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Melts the logo securely into the parchment */
    
    /* Elegantly feather the edges of the square image so no sharp boundary is visible */
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    
    filter: sepia(10%) contrast(105%); /* Extremely subtle vintage color matching */
}

/* Typography */
.merchant-header {
    margin-bottom: 30px;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--ink-black);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.italics {
    font-style: italic;
    color: var(--teal-accent);
}

.flourish {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--border-gilt);
    margin-bottom: 20px;
    opacity: 0.8;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--ink-faded);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Accents */
.coming-soon-badge {
    display: inline-block;
    padding: 8px 30px;
    border-top: 1px solid var(--border-gilt);
    border-bottom: 1px solid var(--border-gilt);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal-accent);
    margin-bottom: 40px;
    font-style: italic;
}

/* Contact */
.contact-section {
    padding-top: 20px;
}

.inquiry-text {
    color: var(--ink-faded);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-style: italic;
}

.contact-button {
    display: inline-block;
    padding: 12px 40px;
    background-color: var(--ink-black);
    color: var(--paper-bg);
    text-decoration: none;
    border-radius: 50px; /* Completely soft, pill-shaped button */
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--ink-black);
}

.contact-button:hover {
    background-color: var(--paper-bg);
    color: var(--ink-black);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 640px) {
    .title {
        font-size: 2.2rem;
    }
    
    .ornamental-border {
        padding: 40px 20px;
    }
    
    .logo {
        max-width: 280px;
    }
}
