.fc-hero {
    padding: 160px 5vw 80px;
    text-align: center;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.fc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 10%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}
.fc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: var(--cream);
}
.fc-title span {
    color: var(--gold);
    font-style: italic;
}
.fc-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(248, 244, 238, 0.6);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}
.fc-filters {
    background: var(--cream);
    padding: 30px;
    border-radius: 4px;
    max-width: 1000px;
    margin: -60px auto 60px;
    position: relative;
    z-index: 10;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px rgba(10, 10, 15, 0.08);
    border: 1px solid var(--border);
}
.fc-filters form {
    display: flex;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
}
.fc-input, .fc-select, .fc-btn {
    padding: 14px 20px;
    border-radius: 2px;
    border: 1px solid rgba(10, 10, 15, 0.1);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s;
}
.fc-input:focus, .fc-select:focus {
    border-color: var(--gold);
}
.fc-input, .fc-select {
    flex: 1;
    min-width: 200px;
}
.fc-btn {
    background: var(--ink);
    color: var(--cream);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}
.fc-btn:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
}
.fc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 40px 5vw 80px;
    max-width: 1400px;
    margin: 0 auto;
}
.fc-card {
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10,10,15,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10, 10, 15, 0.05);
}
.fc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10,10,15,0.08);
    border-color: rgba(201, 168, 76, 0.3);
}
.fc-iframe-container {
    width: 100%;
    height: 240px;
    background: #e8e4dc;
    border-bottom: 1px solid rgba(10, 10, 15, 0.05);
    position: relative;
    overflow: hidden;
}
.fc-iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    filter: grayscale(20%);
    transition: filter 0.3s;
}
.fc-card:hover .fc-iframe {
    filter: grayscale(0%);
}
.fc-iframe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,15,0.02);
    z-index: 5;
    cursor: pointer;
}
.fc-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.fc-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}
.fc-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 25px;
    line-height: 1.6;
    flex: 1;
}
.fc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-family: 'Space Mono', monospace;
}
.fc-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.08);
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(201, 168, 76, 0.2);
}
.fc-meta-item svg {
    color: var(--gold);
}
.fc-action {
    display: inline-block;
    text-align: center;
    padding: 14px 0;
    width: 100%;
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}
.fc-card:hover .fc-action {
    background: var(--ink);
    color: var(--cream);
}
.fc-empty {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
    font-family: 'DM Sans', sans-serif;
    color: var(--muted);
}
