/* ── Brand Page Styles ─────────────────────────────────── */

/* Active nav link */
.nav-link-active {
  color: var(--gold) !important;
}

/* ── Brand Hero ──────────────────────────────────────────── */
.brand-hero {
  padding: 80px 0 100px;
  background: #1A1A18;
}

.brand-hero-inner {
  text-align: center;
}

.brand-hero-inner .section-label {
  justify-content: center;
}

.brand-hero-inner .section-label::before {
  display: none;
}

.brand-hero-sub {
  margin: 0 auto;
}

.brand-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin: 24px 0 32px;
  letter-spacing: -0.01em;
}

.brand-hero-sub {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ── Founders ────────────────────────────────────────────── */
.founders {
  padding: 200px 0 100px;
  border-top: 1px solid rgba(184, 150, 90, 0.08);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founders-photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%);
}

.founders-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.founders-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.founders-stat-label {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ── Production ──────────────────────────────────────────── */
.brand-production {
  padding: 100px 0;
  border-top: 1px solid rgba(184, 150, 90, 0.08);
}

.brand-production-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.brand-production-img {
  margin-bottom: 64px;
  overflow: hidden;
}
.brand-production-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.brand-production-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.brand-prod-item {
  padding: 40px 32px;
  background: rgba(184, 150, 90, 0.02);
  border: 1px solid rgba(184, 150, 90, 0.06);
  transition: background 0.4s ease;
}

.brand-prod-item:hover {
  background: rgba(184, 150, 90, 0.05);
}

.brand-prod-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(184, 150, 90, 0.15);
  line-height: 1;
  margin-bottom: 24px;
}

.brand-prod-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.brand-prod-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
}

/* ── Values ──────────────────────────────────────────────── */
.brand-values {
  padding: 100px 0;
  border-top: 1px solid rgba(184, 150, 90, 0.08);
}

.brand-values-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.brand-values-left {
  position: sticky;
  top: 120px;
}

.brand-values-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-value {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(184, 150, 90, 0.08);
}

.brand-value:first-child {
  border-top: 1px solid rgba(184, 150, 90, 0.08);
}

.brand-value-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
  width: 20px;
}

.brand-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.brand-value-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
}

/* ── Quote ───────────────────────────────────────────────── */
.brand-quote {
  padding: 100px 0;
  border-top: 1px solid rgba(184, 150, 90, 0.08);
}

.brand-blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
  position: relative;
}

.brand-blockquote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-size: 8rem;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(184, 150, 90, 0.1);
  line-height: 1;
  pointer-events: none;
}

.brand-blockquote-author {
  display: block;
  margin-top: 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .brand-production-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .brand-hero {
    padding: 140px 0 60px;
  }

  .founders-grid,
  .brand-values-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founders-photo img {
    height: 400px;
  }

  .brand-values-left {
    position: static;
  }

  .brand-production-grid {
    grid-template-columns: 1fr;
  }

  .founders-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .founders { padding: 60px 0; }
  .brand-production { padding: 60px 0; }
  .brand-values { padding: 60px 0; }
  .brand-quote { padding: 60px 0; }

  .brand-prod-item { padding: 28px 20px; }

  .brand-blockquote {
    font-size: 1.3rem;
    padding: 0 16px;
  }
  .brand-blockquote::before {
    font-size: 5rem;
    top: -24px;
    left: 16px;
  }

  .brand-value { gap: 16px; padding: 24px 0; }
}

@media (max-width: 480px) {
  .founders-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .founders-stat-value { font-size: 1.6rem; }
}
