/* home.css */
.home-wrap {
  display: flex;
  flex-direction: row;
  min-height: calc(100vh - var(--nav-h) - var(--foot-h));
}

/* ── Left panel ── */
.home-left {
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 48px;
  border-right: 1px solid var(--gold-rule);
  position: relative;
  gap: 24px;
}
.home-left::after {
  content: '';
  position: absolute; right: -1px; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  opacity: 0.25;
}

/* ── Logo ── */
.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.logo-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  display: block;
}

.logo-conductor {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--gold-dark);
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  text-transform: uppercase;
  text-align: center;
}

/* Remove the ::after rule we no longer need */
.logo-mark::after { display: none; }

/* ── Social links ── */
.social-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 100%;
}
.social-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  color: var(--gold-mid);
  font-family: var(--font-display);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  transition: color 0.3s, transform 0.3s;
}
.social-list li a:hover { color: var(--gold); transform: translateX(4px); }

.soc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
  line-height: 1;
}
.soc-icon i {
  font-size: 0.82rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  /* Fine-tune per icon to sit perfectly centred */
}
.soc-icon .fa-facebook-f {
  margin-left: 2px; /* Facebook f is visually off-centre */
}
.soc-icon .fa-instagram {
  font-size: 0.88rem;
  margin-left: 2px; /* correct 2px left offset */
}
.social-list li a:hover .soc-icon {
  background: var(--gold-tint);
  box-shadow: 0 0 12px #8B650828;
}

/* ── Right panel — portrait ── */
.home-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.home-portrait {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .home-wrap { flex-direction: column; }
  .home-left {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--gold-rule);
    padding: 48px 28px;
  }
  .home-left::after { display: none; }
  .home-right { min-height: 60vw; }
}

@media (max-width: 600px) {
  .social-list {
    flex-direction: column;
    gap: 14px;
  }
}
