/* === ABOUT PAGE === */
.about-page { padding-top: 80px; }

.about-hero {
  background: var(--ink);
  padding: 80px 40px 60px;
}

.about-hero__inner { max-width: 1200px; margin: 0 auto; }

.about-hero__eyebrow {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.about-hero__headline {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.about-hero__title {
  font-size: 16px;
  color: rgba(217, 196, 160, 0.6);
  font-weight: 400;
}

/* === WORK SECTION === */
.about-work {
  padding: 100px 40px;
  background: var(--bg);
}

.about-work__inner { max-width: 1200px; margin: 0 auto; }

.about-work__header { margin-bottom: 64px; }

.about-work__title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
  color: var(--ink);
}

.about-work__sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
}

.about-work__brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.about-work__brands--row-2 {
  grid-template-columns: repeat(1, 1fr);
  max-width: 380px;
}

.about-work__brand {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 40px 36px;
}

.about-work__brand-name {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.about-work__brand-role {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === PHILOSOPHY SECTION === */
.about-philosophy {
  padding: 100px 40px;
  background: var(--white);
  border-top: 1px solid rgba(217, 196, 160, 0.3);
}

.about-philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-philosophy__eyebrow {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.about-philosophy__headline {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--ink);
}

.about-philosophy__body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-philosophy__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-philosophy__card {
  background: var(--bg);
  border: 1px solid var(--sand);
  overflow: hidden;
}

.about-philosophy__card-inner { padding: 28px 32px; }

.about-philosophy__card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: 'Fraunces', serif;
}

.about-philosophy__card-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === CTA SECTION === */
.about-cta {
  padding: 100px 40px;
  background: var(--bg-warm);
  text-align: center;
}

.about-cta__inner { max-width: 680px; margin: 0 auto; }

.about-cta__headline {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.about-cta__btn {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}

.about-cta__btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-work__brands { grid-template-columns: 1fr; }
  .about-philosophy__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .about-hero { padding: 60px 24px 48px; }
  .about-work, .about-philosophy, .about-cta { padding: 80px 24px; }
}