/* ═══════════════════════════════════════════════
   Aurista Interiors — About Page Styles
   ═══════════════════════════════════════════════ */

.about-hero {
  background: var(--charcoal);
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
}
.about-hero-content h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.about-hero-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-top: 20px;
  font-weight: 300;
}
.about-hero-content .section-label span {
  color: var(--gold-light);
}
.about-hero-content .section-label::before {
  background: var(--gold);
}
.about-hero-img {
  position: relative;
}
.about-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  padding: 24px 32px;
  text-align: center;
}
.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: white;
  font-weight: 600;
  display: block;
}
.about-badge .label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ── VALUES ── */
.values-section {
  background: var(--warm-white);
  padding: 90px 8%;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
}
.value-item {
  background: var(--warm-white);
  padding: 40px 30px;
  text-align: center;
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.value-desc {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── TEAM ── */
.team-section {
  padding: 90px 8%;
}
/* ── TEAM ── */
.team-section {
  padding: 90px 8%;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
}

.team-card {
  text-align: center;
  width: calc(25% - 18px);
  min-width: 200px;
  flex-shrink: 0;
}

.team-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
  filter: grayscale(20%);
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.team-role {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* Carousel mode — activates when .has-carousel is added by JS */
.team-carousel-wrap {
  position: relative;
  margin-top: 60px;
}

.team-carousel-track-outer {
  overflow: hidden;
}

.team-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.team-carousel-track .team-card {
  width: calc(25% - 18px);
  flex-shrink: 0;
}

.team-carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: white;
  color: var(--gold-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s;
}

.team-carousel-btn:hover {
  background: var(--gold);
  color: white;
}

.team-carousel-btn.prev {
  left: -22px;
}
.team-carousel-btn.next {
  right: -22px;
}

.team-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.team-carousel-dots .dot {
  width: 28px;
  height: 2px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.team-carousel-dots .dot.active {
  background: var(--gold);
  width: 44px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .team-card {
    width: calc(50% - 12px);
  }
  .team-carousel-track .team-card {
    width: calc(50% - 12px);
  }
}

@media (max-width: 500px) {
  .team-card {
    width: 100%;
  }
  .team-carousel-track .team-card {
    width: 100%;
  }
}
.team-card {
  text-align: center;
}
.team-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
  filter: grayscale(20%);
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.team-role {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-badge {
    bottom: -10px;
    left: -10px;
    padding: 16px 20px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ── FOOTER LOGO ── */
.footer-logo-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: white;
  letter-spacing: 2px;
}

.footer-logo-text .tagline {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  display: block;
  margin-bottom: 0;
}
