/* =============================================
   ABOUT US PAGE
   ============================================= */

/* -- Hero -- */
.about-hero {
  position: relative;
  padding: clamp(56px, 7vw, 100px) 0;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.92) 0%, rgba(20,18,16,0.7) 50%, rgba(20,18,16,0.45) 100%);
}
.about-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.about-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass, #B8860B);
  margin-bottom: 10px;
}
.about-hero__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.15;
}
.about-hero__desc {
  font-size: clamp(13px, 1.3vw, 16px);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
}

/* -- Intro (text + image) -- */
.about-intro {
  padding: 72px 0;
}
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-intro__text h2 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--charcoal, #1A1A1A);
}
.about-intro__text p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 16px;
}
.about-intro__image {
  border-radius: 6px;
  overflow: hidden;
}
.about-intro__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* -- Values -- */
.about-values {
  padding: 64px 0;
  background: #fafaf8;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.about-value {
  text-align: center;
  padding: 32px 20px;
}
.about-value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eee;
  color: var(--brass, #B8860B);
}
.about-value h3 {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--charcoal, #1A1A1A);
}
.about-value p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #777;
}

/* -- Philosophy / Quote -- */
.about-philosophy {
  padding: 64px 0;
  background: #fff;
}
.about-philosophy__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-philosophy__quote {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal, #1A1A1A);
  margin: 0 0 20px;
  padding: 0;
  border: none;
  position: relative;
}
.about-philosophy__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--brass, #B8860B);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  line-height: 1;
}
.about-philosophy__author {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #999;
}

/* -- Showroom CTA -- */
.about-showroom {
  position: relative;
  padding: clamp(56px, 6vw, 88px) 0;
  overflow: hidden;
  text-align: center;
}
.about-showroom__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.about-showroom__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.88) 0%, rgba(20,18,16,0.7) 100%);
}
.about-showroom__content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.about-showroom__content h2 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 400;
  margin-bottom: 24px;
}
.about-showroom__details {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.about-showroom__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}
.about-showroom__detail svg {
  color: var(--brass, #B8860B);
  flex-shrink: 0;
}

/* -- Responsive -- */
@media (max-width: 960px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .about-value {
    padding: 24px 16px;
  }
  .about-showroom__details {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
