*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #FAF7F2; font-family: Lato, sans-serif; font-weight: 300; color: #2C2420; height: 100vh; overflow: hidden; }
a { font-family: inherit; text-decoration: none; }

/* ── Header ── */
#hub-header { text-align: center; padding: 44px 24px 32px; }
.hub-brand { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 14px; }
.hub-brand-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #2C2420; letter-spacing: 0.01em; }
.hub-brand-name span { color: #C9A96E; }
.hub-brand-sub { font-family: Lato, sans-serif; font-size: 11px; color: #9A8878; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 300; }
.hub-tagline { font-family: Lato, sans-serif; font-size: 14px; color: #6A5848; max-width: 480px; margin: 0 auto; line-height: 1.6; }

/* ── Hub cards ── */
.hub-cards { display: flex; height: calc(100vh - 168px); min-height: 420px; }
.hub-card {
  position: relative; flex: 1; overflow: hidden; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; transition: flex 0.4s ease;
}
.hub-card:hover { flex: 1.15; }
.hub-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,22,18,0.92) 0%, rgba(28,22,18,0.55) 45%, rgba(28,22,18,0.15) 100%);
  transition: background 0.3s ease;
}
.hub-card:hover .hub-card-overlay { background: linear-gradient(to top, rgba(28,22,18,0.94) 0%, rgba(28,22,18,0.6) 45%, rgba(28,22,18,0.2) 100%); }
.hub-card-content { position: relative; z-index: 2; padding: 48px; max-width: 480px; }
.hub-card-label { font-family: Lato, sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #C9A96E; }
.hub-card-title { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 600; color: #FAF7F2; line-height: 1.1; margin: 14px 0 14px; }
.hub-card-desc { font-family: Lato, sans-serif; font-size: 14px; line-height: 1.7; color: #D8CFC4; margin-bottom: 26px; }
.hub-card-btn {
  display: inline-block; font-family: Lato, sans-serif; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #FAF7F2; border: 1.5px solid #C9A96E; padding: 12px 26px; transition: background 0.2s, color 0.2s;
}
.hub-card:hover .hub-card-btn { background: #C9A96E; color: #2C2420; }

/* ── Footer ── */
.hub-footer { display: flex; justify-content: space-between; align-items: center; padding: 18px 32px; background: #2C2420; }
.hub-footer-brand { font-family: 'Playfair Display', serif; font-size: 14px; color: #C9A96E; }
.hub-footer-brand span { color: #FAF7F2; }
.hub-footer-brand sub { font-family: Lato, sans-serif; font-size: 9px; color: #7A6858; font-weight: 300; }
.hub-footer-copy { font-family: Lato, sans-serif; font-size: 11px; color: #7A6858; }

/* ── Responsive ── */
@media (max-width: 768px) {
  body { height: auto; overflow: auto; }
  #hub-header { padding: 36px 20px 24px; }
  .hub-cards { flex-direction: column; height: auto; }
  .hub-card { min-height: 340px; }
  .hub-card:hover { flex: 1; }
  .hub-card-content { padding: 32px 28px; max-width: 100%; }
  .hub-card-title { font-size: 30px; }
  .hub-footer { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
}
