/* ═══════════════════════════════════════════════════════════════
   QUEEN'S COLLECTION — ABOUT & CONTACT STYLES
   about-contact.css

   Contents:
   1.  About Hero
   2.  Brand Story Section
   3.  Heritage / African Roots Section
   4.  Values Grid
   5.  Founder / Team Section
   6.  Stats Strip
   7.  Press / Featured In
   8.  Contact Page Layout
   9.  Contact Form
   10. Store Info Cards
   11. Map Embed
   12. Social Links
   13. Responsive
═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   1. ABOUT HERO
───────────────────────────────────────── */
.about-hero {
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 40px);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.2) 0%,
      rgba(0,0,0,0.1) 30%,
      rgba(0,0,0,0.8) 100%
    ),
    linear-gradient(135deg,
      #0a0505 0%,
      #1a0808 15%,
      #8B2020 40%,
      #6B521F 60%,
      #1A5C2E 80%,
      #050a05 100%
    );
}

.about-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      30deg,
      transparent, transparent 50px,
      rgba(201,168,76,0.05) 50px, rgba(201,168,76,0.05) 51px
    ),
    repeating-linear-gradient(
      -30deg,
      transparent, transparent 50px,
      rgba(201,168,76,0.03) 50px, rgba(201,168,76,0.03) 51px
    );
}

.about-hero__kente {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0, var(--gold) 16px,
    var(--black) 16px, var(--black) 20px,
    var(--kente-red) 20px, var(--kente-red) 32px,
    var(--black) 32px, var(--black) 36px,
    var(--kente-green) 36px, var(--kente-green) 48px,
    var(--black) 48px, var(--black) 52px
  );
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-16) 0;
  max-width: 820px;
}

.about-hero__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.about-hero__title em {
  display: block;
  color: var(--gold-light);
  font-style: italic;
}

.about-hero__tagline {
  font-size: var(--text-lg);
  color: var(--white-60);
  font-family: var(--font-display);
  font-style: italic;
  max-width: 520px;
  line-height: 1.6;
}


/* ─────────────────────────────────────────
   2. BRAND STORY SECTION
───────────────────────────────────────── */
.brand-story {
  padding: var(--space-32) 0;
}

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.brand-story__text-col {}

.brand-story__image-col {
  position: relative;
}

.brand-story__image-frame {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
}

.brand-story__image-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a0505, #8B2020 40%, #6B521F 70%, #1A5C2E);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-slow) var(--ease-out);
}

.brand-story__image-frame:hover .brand-story__image-fill {
  transform: scale(1.04);
}

.brand-story__image-icon {
  font-size: 6rem;
  color: rgba(201,168,76,0.12);
}

/* Gold accent bar beside image */
.brand-story__image-accent {
  position: absolute;
  left: calc(-1 * var(--space-4));
  top: var(--space-8);
  bottom: var(--space-8);
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.brand-story__image-caption {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--gold-alpha-20);
  padding: var(--space-3) var(--space-5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
}

.brand-story__image-caption p {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.brand-story__image-caption strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--white);
  display: block;
  margin-top: 2px;
}

/* Story text styling */
.brand-story__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.brand-story__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.brand-story__body {
  font-size: var(--text-base);
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: var(--space-6);
}

.brand-story__body + .brand-story__body {
  margin-top: 0;
}

.brand-story__pull-quote {
  border-left: 2px solid var(--gold);
  padding-left: var(--space-5);
  margin: var(--space-8) 0;
}

.brand-story__pull-quote p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--white-90);
  line-height: 1.5;
}

.brand-story__pull-quote cite {
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
  display: block;
  margin-top: var(--space-2);
}


/* ─────────────────────────────────────────
   3. HERITAGE / AFRICAN ROOTS SECTION
───────────────────────────────────────── */
.heritage-section {
  padding: var(--space-24) 0;
  background: var(--black-soft);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  position: relative;
  overflow: hidden;
}

.heritage-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent, transparent 80px,
      rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent, transparent 80px,
      rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px
    );
}

.heritage-section__inner {
  position: relative;
  z-index: 1;
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.heritage-card {
  text-align: center;
  padding: var(--space-6);
  border: 1px solid var(--black-border);
  background: var(--black-card);
  transition: all var(--dur-base);
  border-radius: var(--radius-md);
}

.heritage-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.heritage-card__symbol {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  display: block;
  filter: sepia(1) saturate(2) hue-rotate(5deg) brightness(0.9);
}

.heritage-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.heritage-card__text {
  font-size: var(--text-sm);
  color: var(--white-60);
  line-height: 1.7;
}

.heritage-card__origin {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: var(--space-3);
}


/* ─────────────────────────────────────────
   4. VALUES GRID
───────────────────────────────────────── */
.values-section {
  padding: var(--space-24) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.value-card {
  padding: var(--space-8);
  border: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base);
  border-radius: var(--radius-md);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity var(--dur-base);
}

.value-card:hover {
  border-color: var(--gold-alpha-20);
  background: var(--gold-alpha-05);
}

.value-card:hover::before { opacity: 1; }

.value-card__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--gold-alpha-10);
  line-height: 1;
  margin-bottom: var(--space-4);
  font-style: italic;
}

.value-card__icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-4);
  display: block;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.value-card__text {
  font-size: var(--text-sm);
  color: var(--white-60);
  line-height: 1.8;
}


/* ─────────────────────────────────────────
   5. FOUNDER / TEAM SECTION
───────────────────────────────────────── */
.founder-section {
  padding: var(--space-24) 0;
  background: var(--black-soft);
}

.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-top: var(--space-12);
}

.founder-image {
  position: relative;
}

.founder-image__frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.founder-image__fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0a0505, #3d1a0a 40%, #8B6F35 70%, #1A5C2E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(201,168,76,0.1);
  transition: transform var(--dur-slow) var(--ease-out);
}

.founder-image__frame:hover .founder-image__fill {
  transform: scale(1.04);
}

.founder-image__badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: var(--gold);
  color: var(--black);
  padding: var(--space-3) var(--space-5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.founder-image__accent {
  position: absolute;
  right: calc(-1 * var(--space-4));
  top: var(--space-8);
  bottom: var(--space-8);
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.founder-info__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.founder-info__title {
  font-size: var(--text-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: var(--border-gold);
}

.founder-info__text {
  font-size: var(--text-base);
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: var(--space-5);
}

.founder-info__signature {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-style: italic;
  color: var(--gold-light);
  margin-top: var(--space-6);
}


/* ─────────────────────────────────────────
   6. STATS STRIP
───────────────────────────────────────── */
.stats-strip {
  background: var(--gold);
  padding: var(--space-10) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(10,10,10,0.6);
  font-weight: 500;
}


/* ─────────────────────────────────────────
   7. PRESS / FEATURED IN
───────────────────────────────────────── */
.press-section {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.press-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--white-30);
  font-style: italic;
  letter-spacing: 2px;
  transition: color var(--dur-base);
  cursor: default;
}

.press-logo:hover { color: var(--gold-dim); }


/* ─────────────────────────────────────────
   8. CONTACT PAGE LAYOUT
───────────────────────────────────────── */
.contact-page {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: var(--space-24);
}

.contact-hero-strip {
  background: var(--black-soft);
  border-bottom: var(--border-gold);
  padding: var(--space-12) 0 var(--space-10);
  position: relative;
  overflow: hidden;
}

.contact-hero-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 40px,
    rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 41px
  );
}

.contact-hero-strip__content { position: relative; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-16);
  margin-top: var(--space-12);
  align-items: start;
}

.contact-form-col {}

.contact-info-col {
  position: sticky;
  top: calc(var(--nav-height) + 60px);
}


/* ─────────────────────────────────────────
   9. CONTACT FORM
───────────────────────────────────────── */
.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.contact-form-subtitle {
  font-size: var(--text-sm);
  color: var(--white-60);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact-form__label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
}

.contact-form__label span { color: var(--gold); }

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: var(--space-4);
  font-size: var(--text-sm);
  color: var(--white-90);
  outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  width: 100%;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: var(--white-30); }

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A84C' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.contact-form__checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-form__checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid var(--black-border);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: all var(--dur-fast);
  border-radius: 2px;
}

.contact-form__checkbox:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.contact-form__checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 11px;
  color: var(--black);
  font-weight: 700;
}

.contact-form__checkbox-label {
  font-size: var(--text-sm);
  color: var(--white-60);
  line-height: 1.5;
}

/* Success state */
.contact-success {
  display: none;
  text-align: center;
  padding: var(--space-16) var(--space-6);
  animation: fadeUp 0.6s var(--ease-out) both;
}

.contact-success.is-visible { display: block; }

.contact-success__icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.contact-success__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.contact-success__text {
  font-size: var(--text-base);
  color: var(--white-60);
  line-height: 1.8;
}


/* ─────────────────────────────────────────
   10. CONTACT INFO CARDS
───────────────────────────────────────── */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: var(--space-6);
  transition: border-color var(--dur-base);
  border-radius: var(--radius-md);
}

.contact-info-card:hover {
  border-color: var(--gold-dim);
}

.contact-info-card__icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: block;
}

.contact-info-card__title {
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: var(--space-3);
}

.contact-info-card__value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--space-1);
}

.contact-info-card__sub {
  font-size: var(--text-sm);
  color: var(--white-60);
}

.contact-info-card__link {
  font-size: var(--text-sm);
  color: var(--gold-dim);
  text-decoration: underline;
  transition: color var(--dur-fast);
}

.contact-info-card__link:hover { color: var(--gold); }

/* Business hours */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
}

.hours-row__day { color: var(--white-60); }
.hours-row__time { color: var(--white-90); }
.hours-row__time--closed { color: var(--white-30); }

/* Social links in info column */
.contact-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
  flex-wrap: wrap;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--black-border);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-60);
  transition: all var(--dur-base);
  border-radius: var(--radius-sm);
}

.contact-social-btn:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}


/* ─────────────────────────────────────────
   11. MAP EMBED
───────────────────────────────────────── */
.map-section {
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: 1px solid var(--black-border);
}

.map-container {
  height: 360px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
  margin-top: var(--space-8);
  border-radius: var(--radius-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(0.85) hue-rotate(180deg);
  opacity: 0.8;
}

/* Map placeholder (shown until iframe loads) */
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  background: linear-gradient(160deg, #0a0808, #1a1010, #0a0a0a);
}

.map-placeholder__icon { font-size: 3rem; color: var(--gold-dim); }
.map-placeholder__text { font-size: var(--text-sm); color: var(--white-60); text-align: center; }
.map-placeholder__address { font-family: var(--font-display); font-size: var(--text-lg); color: var(--white); }


/* ─────────────────────────────────────────
   12. RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .brand-story__grid,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .founder-grid { direction: rtl; }
  .founder-grid > * { direction: ltr; }

  .brand-story__image-accent,
  .founder-image__accent { display: none; }

  .heritage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-col { position: static; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem); }

  .heritage-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .press-logos { gap: var(--space-6); }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .map-container { height: 260px; }
}
