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

.ssa2-hero {
    margin-top: 5px;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ssa2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.ssa2-bg::after {
    content: '';
    position: absolute;
    inset: 0;
}
.ssa2-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 64px;
}
.ssa2-photos {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ssa2-photos img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(255,255,255,0.15);
}
.ssa2-photos a:first-child img { align-self: flex-start; }
.ssa2-photos a:last-child img  { align-self: flex-end; }
.ssa2-content { color: #fff; }
.ssa2-location {
    font-family: 'EB Garamond', Georgia, serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
    display: block;
}
.ssa2-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}
.ssa2-desc {
    font-family: 'EB Garamond', Georgia, serif;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
    margin-bottom: 32px;
    max-width: 380px;
}
.ssa2-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.ssa2-btn {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 28px;
    cursor: pointer;
    border-radius: 2px;
    display: inline-block;
    transition: all 0.2s ease;
}
.ssa2-btn-primary {
    border: 1px solid #fff;
}
.ssa2-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.45);
}
.ssa2-btn-outline:hover { border-color: #fff; }

@media (max-width: 640px) {
    .ssa2-inner { flex-direction: column; padding: 0 24px; gap: 32px; }
    .ssa2-photos { flex-direction: row; }
    .ssa2-photos img { width: 160px; height: 160px; }
}
