/* ICONIC — About page styles (migrated verbatim from about.html) */
/* ===== HERO ===== */
.about-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background: #1c1b1b center/cover no-repeat;  /* image set from CMS */
  padding-bottom: 5rem;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.15) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.about-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b07242;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}
.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}
.about-hero-subtitle {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  letter-spacing: 2px;
  color: #aaa;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
  max-width: 480px;
  line-height: 1.7;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== STATS BAND ===== */
.stats-band {
  background: #b07242;
  padding: 4rem 0;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-item .stat-number {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 0.4rem;
}

/* ===== WHO WE ARE ===== */
.who-we-are {
  background: #1c1b1b;
  padding: 7rem 0;
}
.who-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
}
.story-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b07242;
  margin-bottom: 1rem;
}
.story-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #b07242;
}

/* ===== PURPOSE CARDS ===== */
.our-purpose {
  background: #111;
  padding: 7rem 0;
}
.purpose-card {
  background: #1a1a1a;
  border: 1px solid #232323;
  border-radius: 12px;
  padding: 3rem 2rem;
  height: 100%;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.purpose-card:hover {
  border-color: #b07242;
  transform: translateY(-6px);
}
.purpose-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(176,114,66,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #b07242;
  margin-bottom: 1.5rem;
}
.purpose-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1rem;
}
.purpose-card p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.8;
}

/* ===== CORE PRINCIPLES ===== */
.core-principles {
  background: #161616;
  padding: 7rem 0;
}
.principle-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid #1f1f1f;
}
.principle-item:first-child {
  border-top: 1px solid #1f1f1f;
}
.principle-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(176,114,66,0.18);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.principle-content h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.principle-content p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.8;
}

/* ===== TEAM ===== */
.team-section {
  background: #111;
  padding: 7rem 0;
}
.team-card { text-align: center; }
.team-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b07242;
}
.team-divider {
  width: 32px;
  height: 1px;
  background: #b07242;
  margin: 1rem auto;
}
.team-bio {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: #b07242;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-band .cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.cta-btn {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b07242;
  background: #fff;
  border-radius: 50px;
  padding: 14px 36px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}
.cta-btn:hover {
  background: #111;
  color: #fff;
}
