/* Page-specific styles for about-us.html. Fonts, nav, footer, buttons and
   cards all come from assets/styles.css. */

html, body { background: #fff; }

.hero-section {
  position: relative;
  height: 60vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/images/about-hero-opt.jpg') center 25% / cover no-repeat;
}
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(36,17,20,0.35), rgba(36,17,20,0.68));
}
.hero-text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 64px);
  text-align: center;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  padding: 0 20px;
}

.about-body { max-width: 900px; text-align: center; }
.about-p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 720px;
  margin: 24px auto 50px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  text-align: center;
}
.feature-card { padding: 28px 20px; }
.feature-card .quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--brand);
  font-size: 20px;
  margin-bottom: 14px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.feature-card.is-hoverable:hover .quick-icon {
  background: linear-gradient(135deg, #dcbb6d, var(--gold) 60%, #a9863a);
  color: #2a1216;
  transform: scale(1.08);
}
.feature-card h3 { font-family: var(--font-display); color: var(--brand); margin: 0 0 8px; font-size: 17px; }
.feature-card p { margin: 0; font-size: 14px; }

.about-cta { margin-top: 10px; }

@media (max-width: 900px) {
  .about-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .hero-section { height: 50vh; min-height: 320px; }
}
