
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff9f8;
    color: #43302e;
}

.site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #fbe0dd;
    border-bottom: 1px solid #f1c5c0;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 122px;
    width: auto;
    border-radius: 12px;
}

.title-block {
    display: flex;
    flex-direction: column;
}

.site-title {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
}

.site-subtitle {
    margin: 0;
    font-size: 0.85rem;
    color: #7a4e52;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nav a {
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #7a4e52;
    border: 1px solid transparent;
}

.nav a:hover {
    border-color: #e79c97;
    background: #ffe9e6;
}

.content {
    max-width: 960px;
    margin: 1.5rem auto 2.5rem;
    padding: 0 1rem;
}

.hero {
    background: linear-gradient(135deg, #ffe9e6, #fff9f8);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    margin-bottom: 1.75rem;
}

.hero-text h2 {
    margin-top: 0;
    font-size: 1.65rem;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn.primary {
    background: #e97a72;
    color: white;
}

.btn.primary:hover {
    background: #d66761;
}

.btn.secondary {
    background: white;
    border-color: #e97a72;
    color: #e97a72;
}

.btn.secondary:hover {
    background: #ffe9e6;
}

.three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.card {
    background: white;
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.card h3 {
    margin-top: 0;
}

.highlight {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.highlight ol {
    padding-left: 1.25rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.gallery-item {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.03);
}

.center-text {
    text-align: center;
}

.form {
    max-width: 540px;
    margin-top: 1rem;
}

.form-row {
    margin-bottom: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

label {
    font-size: 0.9rem;
    color: #5b3e40;
}

input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
    padding: 0.5rem 0.6rem;
    border-radius: 10px;
    border: 1px solid #e2c5c3;
    font-size: 0.95rem;
}

textarea {
    resize: vertical;
}

.small-text {
    font-size: 0.8rem;
    color: #7a4e52;
}

.flash-container {
    margin-bottom: 1rem;
}

.flash {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.flash-success {
    background: #e4f7ea;
    color: #22522f;
}

.flash-error {
    background: #ffe4e4;
    color: #7c1f1f;
}

.site-footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    color: #7a4e52;
    border-top: 1px solid #f1c5c0;
    background: #fbe0dd;
}
@media (max-width: 640px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .logo-title {
        width: 100%;
        justify-content: flex-start;
    }
    .nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }
}



/* Featured strip on home page */
.featured-strip {
    margin: 1rem auto 2rem;
    max-width: 1100px;
}

.featured-strip h3 {
    margin-bottom: 0.25rem;
}

.featured-subtitle {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #7a4e52;
    font-size: 0.95rem;
}

.featured-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.featured-card {
    width: 140px;
    height: 160px;
    background: #ffecea;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}


.featured-tag {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7a4e52;
}

/* Gallery grid images */
.gallery-category {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.gallery-image-wrapper {
    background: #ffecea;
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.gallery-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.empty-note {
    font-size: 0.9rem;
    color: #7a4e52;
}

.btn.small {
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
}
