@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,500&family=Poppins:wght@300;400;600&display=swap');

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

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f0edcc;
    color: #6b4a2b;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

header.site-header {
    background: linear-gradient(180deg, #f6e4b8 0%, #eecf94 100%);
    border-bottom: 3px solid #d9ab63;
    padding: 22px 5%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 2rem;
    color: #7a4a1f;
}

.logo small {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 4px;
    font-size: 0.7rem;
    color: #a97a3f;
    text-transform: uppercase;
}

nav.main-nav {
    background: #7a4a1f;
}
nav.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}
nav.main-nav a {
    display: block;
    padding: 14px 18px;
    color: #f6e4b8;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
nav.main-nav a:hover,
nav.main-nav a.active {
    background: #a97a3f;
    color: #fff;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 5% 60px;
}

.closed-notice {
    background: #f4d9c6;
    border: 1px solid #c98a5a;
    color: #7a3a1f;
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-align: center;
}

.hero {
    background: #fff;
    border: 1px solid #e6d29c;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(122, 74, 31, 0.08);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #7a4a1f;
    margin-bottom: 14px;
}

blockquote.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #a97a3f;
    text-align: center;
    margin: 40px 0;
    padding: 20px;
}
blockquote.quote cite {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    margin-top: 10px;
    color: #7a4a1f;
}

.panel {
    background: #fbf2d9;
    border: 1px solid #e6d29c;
    border-radius: 12px;
    padding: 26px 30px;
    margin-bottom: 26px;
}

.panel h2 {
    font-family: 'Playfair Display', serif;
    color: #7a4a1f;
    font-size: 1.3rem;
    border-bottom: 2px solid #d9ab63;
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.panel h3 {
    color: #8a5a26;
    font-size: 1rem;
    margin: 14px 0 6px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px 30px;
}

.services-grid ul {
    list-style: none;
}
.services-grid li {
    padding: 6px 0;
    border-bottom: 1px dashed #e6d29c;
}
.services-grid li:last-child { border-bottom: none; }

.note {
    font-style: italic;
    font-size: 0.85rem;
    color: #a97a3f;
    margin-top: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.contact-grid p { margin-bottom: 8px; }

footer {
    text-align: center;
    padding: 24px 5%;
    background: #7a4a1f;
    color: #f6e4b8;
    font-size: 0.85rem;
}
footer a { text-decoration: underline; }
