/* =============================================
   About Us — Shared Styles & Variables
============================================= */

:root {
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-blur: 16px;
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-border-top: rgba(255, 255, 255, 0.3);
  --glass-border-left: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  --glass-radius: 24px;
}

/* Base background for full-bleed sections */
.about-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Shared content wrapper */
.about-section-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 3vw;
}

/* Shared typography components */
.about-panel-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #a8947a;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.about-panel-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}
