/* ============================================
   YELE — About / Contact / Wholesalers Pages
============================================ */

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--navy);
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-hero--accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-inv);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.page-hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-inv-2);
  font-style: italic;
  font-family: var(--font-serif);
}

/* ========== BREADCRUMB (light) ========== */
.breadcrumb--light {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
}
.breadcrumb--light a {
  color: var(--text-inv-2);
  transition: color 0.2s;
}
.breadcrumb--light a:hover { color: var(--text-inv); }
.breadcrumb--light i {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.3);
}
.breadcrumb--light span {
  color: var(--text-inv);
  font-weight: 500;
}

/* ========== PAGE SECTION ========== */
.page-section {
  padding: 4rem 0;
}

/* ========== PAGE GRID (sidebar layout) ========== */
.page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.page-main h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}
.page-main h2:first-child { margin-top: 0; }
.page-main p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ========== FEATURE GRID ========== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.feature-card__icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.feature-card p {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* ========== BRAND CARDS ========== */
.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border-top: 3px solid var(--accent);
}
.brand-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
.brand-card p {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* ========== SIDEBAR ========== */
.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 5rem;
}
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sidebar-card p {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.sidebar-card p i {
  color: var(--accent);
  width: 1.25rem;
  text-align: center;
  margin-right: 0.35rem;
}
.sidebar-card p a { color: var(--accent); }
.sidebar-card p a:hover { text-decoration: underline; }

.sidebar-card--cta {
  background: var(--navy);
  border-color: transparent;
}
.sidebar-card--cta h3 { color: var(--text-inv); }
.sidebar-card--cta p { color: var(--text-inv-2); }

.fact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.fact:last-child { border-bottom: none; padding-bottom: 0; }
.fact__val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 50px;
}
.fact__label {
  font-size: 0.8125rem;
  color: var(--text-2);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-info > p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contact-item__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.contact-item a,
.contact-item span {
  font-size: 0.8125rem;
  color: var(--text-2);
}
.contact-item a:hover { color: var(--accent); }

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 2rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-mid);
  border-radius: var(--r-md);
  padding: 1rem;
}
.contact-note > i {
  color: var(--accent);
  font-size: 0.875rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.contact-note p {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}
.contact-note a { color: var(--accent); font-weight: 600; }

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
}
.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.map-section {
  padding: 3rem 0 4rem;
}

/* ========== WHOLESALERS PAGE ========== */
.ws-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ws-benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.ws-benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.ws-benefit__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.ws-benefit h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ws-benefit p {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Category cards grid */
.ws-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ws-cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.ws-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--accent);
}
.ws-cat-card__icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.ws-cat-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.ws-cat-card span {
  font-size: 0.75rem;
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* Application section */
.ws-apply {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.ws-apply__text p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.ws-process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ws-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ws-step__num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.ws-step strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.ws-step p {
  font-size: 0.8125rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .page-grid { grid-template-columns: 1fr; }
  .page-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .page-sidebar .sidebar-card { flex: 1; min-width: 250px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ws-apply { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
  .brand-cards { grid-template-columns: 1fr; }
  .ws-benefits { grid-template-columns: 1fr; }
  .ws-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .page-sidebar { flex-direction: column; }
}
@media (max-width: 480px) {
  .ws-cat-grid { grid-template-columns: 1fr; }
}
