/* ── HERO ── */
.hero {
    position: relative;
    padding: 100px 60px 80px;
    text-align: center;
    overflow: hidden;
}

.hero h1 {
    font-family: 'garet-book';
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
    font-style: italic; color: var(--rust);
}
.hero-sub {
    margin-top: 20px;
    font-size: 1.1rem; font-weight: 300;
    color: var(--muted); max-width: 420px; margin-inline: auto;
    animation: fadeUp 0.6s 0.2s ease both;
}

/* Decorative arch lines */
.hero-arcs {
    position: absolute; inset: 0; pointer-events: none;
    overflow: hidden; z-index: -1;
}
.hero-arcs svg {
    position: absolute; top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 700px; opacity: 0.07;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── MAIN CONTENT ── */
.contact-layout {
    max-width: 500px; 
    margin: 0 auto;
    padding: 0 60px 100px;
    display: grid; 
    gap: 80px; align-items: start;
}

/* ── LEFT PANEL ── */
.left-panel { padding-top: 10px; }

.section-label {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--rust);
    margin-bottom: 24px;
}

.left-panel h2 {
    font-size: 2.2rem; line-height: 1.2;
    color: var(--ink); margin-bottom: 36px;
}

/* Info cards */
.info-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 14px;
    transition: all 0.25s;
    cursor: default;
}
.info-card:hover {
    border-color: var(--rust);
    box-shadow: 0 4px 24px rgba(196,80,26,0.1);
    transform: translateX(4px);
}
.info-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(196,80,26,0.08);
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 1.1rem;
    color: var(--rust);
}
.info-card h4 {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 4px;
}
.info-card p { font-size: 0.92rem; color: var(--ink); }

/* Social row */
.social-row {
    display: flex; gap: 12px; margin-top: 32px;
    justify-content: center;
}
.social-btn {
    width: 42px; height: 42px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--muted); text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.social-btn:hover {
    background: var(--rust); border-color: var(--rust);
    color: white; transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(196,80,26,0.25);
}

/* Divider rule */
.rule {
    display: flex; align-items: center; gap: 16px;
    margin: 36px 0;
    color: var(--muted); font-size: 0.75rem; letter-spacing: 0.08em;
    text-transform: uppercase;
}
.rule::before, .rule::after {
    content: ''; flex: 1; height: 1px; background: var(--line);
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none;  font-family: 'garet-book';}

@media (max-width: 900px) {
    .hero, .contact-layout, .footer-strip { padding-left: 24px; padding-right: 24px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px 22px; }
    .hero h1 { font-size: 3rem; }
}