/* ═══════════════════════════════════════════════════════════
   ELEMENTS — Homepage (Part 3) Contacts, footer
   ═══════════════════════════════════════════════════════════ */

/* ── Contacts ─────────────────────────────────────────── */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contacts-info h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 32px;
    line-height: 1.2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-item:first-of-type { border-top: 1px solid var(--color-border); }

.contact-icon {
    width: 38px;
    height: 38px;
    background: var(--color-accent-lt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
}

.contact-value a {
    color: var(--color-accent);
    transition: color var(--transition);
}

.contact-value a:hover { color: #7a5c10; }

.contacts-hours {
    background: #FAFAF8;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contacts-hours h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(196,149,106,.20);
}

.hours-row:last-child { border-bottom: none; }

.hours-label {
    font-size: 14px;
    color: var(--color-muted);
    font-weight: 500;
}

.hours-value {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
}

.booking-cta-box {
    margin-top: 32px;
    padding: 28px;
    background: var(--color-obsidian, #1e1b21);
    border-radius: var(--radius-md);
    text-align: center;
    color: #fff;
}

.booking-cta-box p {
    font-family: var(--font-serif-body);
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 16px;
    font-style: italic;
}

.booking-cta-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.6);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: all var(--transition);
}

.booking-cta-box a:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
    background: var(--color-text);
    color: rgba(255,255,255,.75);
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .footer-logo {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.footer-brand .footer-logo-sub {
    font-weight: 300;
    letter-spacing: 0.04em;
    letter-spacing: -0.01em;
}

.footer-brand p {
    font-family: var(--font-serif-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
    max-width: 260px;
    font-style: italic;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #fff;
    margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    transition: color var(--transition);
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

/* ── Fade-in animation ────────────────────────────────── */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.js-ready .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-ready .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
