body {
  padding-top: 76px;
  background: linear-gradient(180deg, #edfff5 0%, #fffdf0 100%);
  overflow-x: hidden;
}

.about-page {
  position: relative;
  z-index: 1;
}

/* Decorative background text */
.editorial-mark {
  position: absolute;
  top: 15%;
  right: -5%;
  font-family: 'Playfair Display', serif;
  font-size: 15vw;
  font-weight: 900;
  color: rgba(255, 215, 0, 0.04);
  pointer-events: none;
  z-index: -1;
  white-space: nowrap;
  letter-spacing: -0.05em;
  font-style: italic;
}

/* HERO SECTION */
.about-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 80px;
  padding: 100px 7% 100px;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 0.95;
  color: var(--text-dark);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.about-hero h1 em,
.about-cta h2 em {
  color: var(--gold-dark);
  font-style: italic;
}

.about-hero p {
  max-width: 600px;
  color: var(--text-mid);
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
}

.about-hero-visual {
  aspect-ratio: 4/5;
  border-radius: 4px;
  background: #f0f0f0;
  box-shadow: 40px 40px 0px rgba(255, 215, 0, 0.05);
  overflow: visible;
  position: relative;
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: sepia(20%) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-hero:hover img {
  transform: scale(1.03);
}

/* QUOTE SECTION */
.about-quote {
  padding: 120px 10%;
  background: white;
  text-align: center;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 32px;
  position: relative;
}

.about-quote blockquote::before {
  content: '“';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: rgba(255, 215, 0, 0.1);
  font-family: serif;
}

.about-quote cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  font-style: normal;
}

/* BAND SECTION */
.about-band {
  background: #0d1f14;
  color: white;
  padding: 100px 7%;
}

.about-band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-band .sec-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 300;
}

/* PILLARS SECTION */
.about-pillars {
  padding: 120px 7%;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.pillar-card {
  background: white;
  border-radius: 2px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.pillar-num {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pillar-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 215, 0, 0.3);
}

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.pillar-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  border-color: var(--gold);
}

/* VALUES SECTION */
.about-values-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 120px 7%;
  background: #fffdf6;
  align-items: center;
}

.values-list {
  display: grid;
  gap: 20px;
}

.value-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 32px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.value-row:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transform: translateX(10px);
}

.value-row strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.value-row span {
  color: var(--text-mid);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 300;
}

/* CTA SECTION */
.about-cta {
  text-align: center;
  padding: 140px 5%;
  background: #0d1f14;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background-image: url('images/ee-pattern-bg.jpg');
  background-size: 400px;
  opacity: 0.03;
  pointer-events: none;
}

.about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.about-cta .sec-label {
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.about-cta .btn-gold {
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .about-hero,
  .about-band-grid,
  .about-values-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .editorial-mark {
    font-size: 25vw;
  }
}

@media (max-width: 600px) {
  body { padding-top: 68px; }
  .about-hero {
    padding: 60px 5%;
  }
  .about-hero h1 {
    font-size: 3rem;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .value-row {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}
