:root {
    --bg: #faf7f2;
    --surface: #ffffff;
    --ink: #2b2a26;
    --muted: #6b6a63;
    --accent: #6b8e5a;
    --accent-dark: #4f6d42;
    --border: #e6e1d6;
    --shadow: 0 6px 24px rgba(43, 42, 38, 0.08);
    --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
}

.site-header {
    padding: 36px 20px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.logo-placeholder {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 28px;
    border: 2px dashed var(--border);
    border-radius: 10px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-dark);
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

.card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(43, 42, 38, 0.14);
}

.card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eee;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-label {
    padding: 18px 22px;
}

.card-label h2 {
    margin: 0 0 4px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--accent-dark);
}

.card-label p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 20px 0 48px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--accent-dark);
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all .2s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.contact {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px 32px;
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
}

.contact h2 {
    margin: 0 0 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-dark);
    text-align: center;
}

.contact-sub {
    text-align: center;
    color: var(--muted);
    margin: 0 0 28px;
}

form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

form label {
    display: block;
    margin-bottom: 16px;
}

form label span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
}

input, textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    background: #fdfbf7;
    color: var(--ink);
    transition: border-color .15s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

button {
    display: block;
    width: 100%;
    padding: 13px 20px;
    background: var(--accent-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
    margin-top: 8px;
}

button:hover:not(:disabled) { background: var(--accent); }
button:disabled { opacity: .6; cursor: not-allowed; }

.form-status {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: #e8f0e2;
    color: #385b2c;
    border: 1px solid #b8d1a8;
}

.form-status.error {
    display: block;
    background: #fbe6e6;
    color: #7a2626;
    border: 1px solid #e9b8b8;
}

.site-footer {
    padding: 24px 20px;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

@media (max-width: 720px) {
    .gallery { grid-template-columns: 1fr; }
    form .row { grid-template-columns: 1fr; }
    .contact { padding: 28px 20px; }
    .logo-text { font-size: 1.8rem; }
}
