.brand-page .brand-hero {
  position: relative;
  overflow: hidden;
  min-height: min(620px, 86vh);
  display: flex;
  align-items: flex-end;
  background: var(--dark);
}

.brand-page .brand-hero__bg,
.brand-page .brand-hero__overlay {
  position: absolute;
  inset: 0;
}

.brand-page .brand-hero__bg {
  background: url('/photos/apply-bg.webp') center/cover no-repeat;
}

.brand-page .brand-hero__overlay {
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 65, 90, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.16) 0%, rgba(10, 10, 10, 0.6) 52%, rgba(10, 10, 10, 0.92) 100%);
}

.brand-page .brand-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.brand-page .brand-hero__context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-page .brand-hero__crumb {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.brand-page .brand-hero__crumb--current {
  color: var(--white);
}

.brand-page .brand-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.brand-page .brand-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.8vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
}

.brand-page .brand-hero p {
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  font-size: 1.05rem;
}

.brand-page .brand-inline-link {
  color: inherit;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  text-decoration: none;
}

.brand-page .brand-inline-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.82);
}

.brand-page .brand-hero__actions,
.brand-page .brand-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.brand-page .brand-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.brand-page .brand-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.brand-page .brand-section {
  display: grid;
  gap: 2rem;
}

.brand-page .brand-section__header {
  max-width: 46rem;
}

.brand-page .brand-section__header--center {
  margin: 0 auto;
  text-align: center;
  max-width: 52rem;
}

.brand-page .brand-grid--compact {
  align-items: stretch;
}

.brand-page .brand-copy {
  max-width: 54rem;
  display: grid;
  gap: 1rem;
}

.brand-page .brand-copy p {
  color: #4b5563;
  line-height: 1.82;
}

.brand-page .brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.brand-page .brand-card,
.brand-page .brand-step,
.brand-page .brand-faq-item {
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(17, 17, 17, 0.05);
}

.brand-page .brand-card,
.brand-page .brand-step {
  padding: 1.55rem;
}

.brand-page .brand-card h3,
.brand-page .brand-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.brand-page .brand-card p,
.brand-page .brand-step p {
  color: #4b5563;
  line-height: 1.75;
}

.brand-page .brand-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-page .brand-card--accent {
  background: linear-gradient(180deg, #fff9fa 0%, #ffffff 100%);
  border-color: rgba(200, 65, 90, 0.18);
}

.brand-page .brand-step__number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-bg);
  color: var(--rose);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.brand-page .brand-checklist {
  display: grid;
  gap: 0.85rem;
}

.brand-page .brand-checklist li {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #4b5563;
  line-height: 1.75;
}

.brand-page .brand-checklist i {
  color: var(--rose);
  margin-top: 0.35rem;
}

.brand-page .brand-note {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--rose);
  background: rgba(255, 255, 255, 0.82);
  color: #4b5563;
  line-height: 1.72;
  border-radius: 12px;
}

.brand-page .brand-note--center {
  text-align: center;
  border-left: 0;
  border-top: 3px solid var(--rose);
}

.brand-page .brand-index {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.brand-page .brand-index__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.brand-page .brand-index__link:hover {
  transform: translateY(-1px);
  border-color: rgba(200, 65, 90, 0.24);
  background: var(--white);
}

.brand-page .brand-index__label {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

.brand-page .brand-index__meta {
  flex-shrink: 0;
  color: #6b7280;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-page .brand-faq {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
}

.brand-page .brand-faq-group {
  scroll-margin-top: 9rem;
  padding: 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.04);
  display: grid;
  gap: 0.85rem;
}

.brand-page .brand-faq-group__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.brand-page .brand-faq-group__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-page .brand-faq-group__note {
  color: #6b7280;
  line-height: 1.6;
  margin-top: 0.45rem;
}

.brand-page .brand-faq-group__count {
  flex-shrink: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--rose-bg);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-page .brand-faq-item {
  overflow: hidden;
}

.brand-page .brand-faq-item__button {
  width: 100%;
  text-align: left;
  padding: 1.05rem 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.brand-page .brand-faq-item__button:hover,
.brand-page .brand-faq-item__button[aria-expanded="true"] {
  background: var(--rose-bg);
  color: var(--rose);
}

.brand-page .brand-faq-item__button i {
  margin-top: 0.1rem;
  transition: transform 0.2s ease;
}

.brand-page .brand-faq-item__button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.brand-page .brand-faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.brand-page .brand-faq-item__panel p {
  padding: 0 1.15rem 1.15rem;
  color: #4b5563;
  line-height: 1.75;
}

.brand-page .brand-cta {
  background:
    radial-gradient(circle at 20% 22%, rgba(200, 65, 90, 0.2), transparent 24%),
    linear-gradient(135deg, #0f0f0f 0%, #231016 46%, #0f0f0f 100%);
}

.brand-page .brand-cta__inner {
  max-width: 48rem;
  text-align: center;
}

.brand-page .brand-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.brand-page .brand-cta p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (max-width: 980px) {
  .brand-page .brand-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .brand-page .brand-hero__inner {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .brand-page .brand-hero {
    min-height: auto;
  }

  .brand-page .brand-hero__context {
    gap: 0.35rem;
    font-size: 0.68rem;
  }

  .brand-page .brand-faq-group {
    padding: 1rem;
  }

  .brand-page .brand-faq-group__header {
    flex-direction: column;
  }

  .brand-page .brand-faq-group__count {
    align-self: flex-start;
  }

  .brand-page .brand-faq-item__button {
    padding: 1rem;
  }

  .brand-page .brand-faq-item__panel p {
    padding: 0 1rem 1rem;
  }
}
