/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.75);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand Column */
.footer-brand { }
.footer-brand__logo { display: block; margin-bottom: 12px; }
.footer-brand__logo img { width: 80px; height: 80px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-brand__tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 16px;
}
.footer-brand__desc { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-top: 12px; }

/* Social */
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social__link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--t-fast);
}
.footer-social__link:hover { background: var(--brand-maroon); color: #fff; border-color: var(--brand-maroon); transform: translateY(-2px); }
.footer-social__link svg { width: 18px; height: 18px; }

/* Columns */
.footer-col { }
.footer-col__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-col__dot--events   { background: var(--brand-maroon); }
.footer-col__dot--interior { background: var(--in-silver); }
.footer-col__list { display: flex; flex-direction: column; gap: 10px; }
.footer-col__list li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col__list li a::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--brand-gold);
  transition: width var(--t-fast);
}
.footer-col__list li a:hover { color: var(--brand-gold); }
.footer-col__list li a:hover::before { width: 14px; }

/* Contact */
.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; font-style: normal; }
.footer-contact__item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact__item svg { width: 18px; height: 18px; color: var(--brand-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact__item span,
.footer-contact__item a { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-contact__item a:hover { color: var(--brand-gold); }

/* Map */
.footer-map { border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }

/* Ornamental Divider in Footer */
.site-footer .ornamental-divider::before,
.site-footer .ornamental-divider::after { background: linear-gradient(to right, transparent, rgba(200,154,90,0.4)); }
.site-footer .ornamental-divider span { color: rgba(200,154,90,0.6); }

/* Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom__copy,
.footer-bottom__dev {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom__copy a,
.footer-bottom__dev a { color: var(--brand-gold); transition: color var(--t-fast); }
.footer-bottom__copy a:hover,
.footer-bottom__dev a:hover { color: var(--brand-gold-light); }

/* ============================================================
   BLOG INDEX GRID
   ============================================================ */
.blog-index { }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t-mid);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__thumb { display: block; overflow: hidden; height: 200px; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__body { padding: 28px; }
.blog-card__date { color: var(--brand-gold); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card__title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; line-height: 1.3; }
.blog-card__title a:hover { color: var(--brand-maroon); }
.blog-card__excerpt { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

/* ============================================================
   RESPONSIVE — FOOTER
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 24px; }
  .footer-brand__desc { grid-column: 2; }
  .footer-social { grid-column: 2; }
}
@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-template-columns: 1fr; }
  .footer-brand__desc, .footer-social { grid-column: auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
}
