/**
 * About page — body layout from design reference (scoped to #bv-about-main).
 * Fonts: Montserrat + Cormorant Garamond (loaded from about-us.html).
 */
/* Crafto applies large section padding globally — neutralize inner sections */
#bv-about-main section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#bv-about-main {
  --gold: #cbae7f;
  --gold-light: #dac9a4;
  --gold-dim: rgba(203, 174, 127, 0.15);
  --black: #0c0c0c;
  --dark: #111;
  --text-dark: #1a1a1a;
  --text-mid: #555;
  --text-light: #888;
  --border: #e8e3dc;
  --cream: #f8f6f2;
  --white: #ffffff;
  font-family: Montserrat, var(--primary-font), sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TRUST BAR ── */
#bv-about-main .trust-bar {
  background: var(--black);
  border-top: 1px solid rgba(203, 174, 127, 0.15);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
#bv-about-main .trust-item {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
#bv-about-main .trust-item span {
  color: var(--gold);
  margin-right: 8px;
}

/* ── INTRO ── */
#bv-about-main .intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
#bv-about-main .intro-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
#bv-about-main .section-label {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
#bv-about-main .section-label strong {
  font-weight: 700;
  letter-spacing: inherit;
}
#bv-about-main .intro-text .intro-heading {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 28px;
}
#bv-about-main .intro-text .intro-heading strong {
  font-weight: 600;
}
#bv-about-main .intro-text .intro-heading em {
  font-style: italic;
  color: var(--gold);
}
#bv-about-main .intro-text p {
  font-size: clamp(15px, 1.12vw, 17px);
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}
#bv-about-main .intro-text p strong {
  color: var(--text-dark);
  font-weight: 500;
}
#bv-about-main .intro-photo {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
#bv-about-main .intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  transition: filter 0.6s ease;
}
#bv-about-main .intro-photo:hover img {
  filter: grayscale(0%);
}
#bv-about-main .intro-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 32px;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.7) 0%, transparent 100%);
}
#bv-about-main .intro-photo-caption span {
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* ── NUMBERS ── */
#bv-about-main .numbers {
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#bv-about-main .number-item {
  padding: 60px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
#bv-about-main .number-item:last-child {
  border-right: none;
}
#bv-about-main .number-val {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
#bv-about-main .number-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  line-height: 1.6;
}

/* ── STORY ── */
#bv-about-main .story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
#bv-about-main .story-image {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
#bv-about-main .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
}
#bv-about-main .story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(203, 174, 127, 0.15) 0%, transparent 60%);
}
#bv-about-main .story-content {
  padding: 100px 80px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#bv-about-main .story-heading {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 28px;
}
#bv-about-main .story-heading strong {
  font-weight: 600;
}
#bv-about-main .story-content p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}
#bv-about-main .story-content p:last-of-type {
  margin-bottom: 0;
}
#bv-about-main .story-pull {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}
#bv-about-main .story-pull strong {
  font-weight: 600;
}

/* ── METHOD ── */
#bv-about-main .method {
  background: var(--black);
  padding: 100px 80px;
}
#bv-about-main .method-header {
  max-width: min(680px, 100%);
  margin-bottom: 72px;
}
#bv-about-main .method-heading {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
#bv-about-main .method-heading em {
  font-style: italic;
  color: var(--gold);
}
#bv-about-main .method-header > p.method-lead {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.82;
}
#bv-about-main .method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
#bv-about-main .method-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, border-color 0.3s ease;
}
#bv-about-main .method-item:hover {
  background: rgba(203, 174, 127, 0.04);
  border-color: rgba(203, 174, 127, 0.2);
}
#bv-about-main .method-num {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(203, 174, 127, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}
#bv-about-main .method-title {
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
#bv-about-main .method-text {
  font-size: clamp(14px, 1.06vw, 16px);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.82;
}
#bv-about-main .method-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid rgba(203, 174, 127, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ── PROCESS ── */
#bv-about-main .process {
  background: var(--cream);
  padding: 100px 80px;
}
#bv-about-main .process-header {
  text-align: center;
  margin-bottom: 72px;
}
#bv-about-main .process-heading {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}
#bv-about-main .process-header > p.process-lead {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-light);
  line-height: 1.82;
  max-width: 540px;
  margin: 0 auto;
}
#bv-about-main .timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
#bv-about-main .timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: var(--border);
}
#bv-about-main .timeline-step {
  padding: 0 32px;
  text-align: center;
  position: relative;
}
#bv-about-main .timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  transition: background 0.3s ease, border-color 0.3s ease;
}
#bv-about-main .timeline-step:hover .timeline-dot {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
#bv-about-main .timeline-step h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
#bv-about-main .timeline-step p {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--text-light);
  line-height: 1.75;
}

/* ── PHILOSOPHY ── */
#bv-about-main .philosophy {
  background: var(--black);
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#bv-about-main .philosophy::before {
  content: "\"";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 400px;
  font-weight: 300;
  color: rgba(203, 174, 127, 0.04);
  line-height: 1;
  pointer-events: none;
}
#bv-about-main .philosophy blockquote {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 3.1vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.32;
  max-width: 900px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}
#bv-about-main .philosophy blockquote em {
  color: var(--gold);
  font-style: normal;
}
#bv-about-main .philosophy cite {
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  font-style: normal;
}

/* ── LOCATION ── */
#bv-about-main .location-strip {
  background: var(--cream);
  padding: 64px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#bv-about-main .location-text .location-heading {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}
#bv-about-main .location-text .location-heading strong {
  font-weight: 600;
}
#bv-about-main .location-text > p {
  font-size: clamp(15px, 1.05vw, 17px);
  color: var(--text-light);
  line-height: 1.78;
  max-width: 520px;
}
#bv-about-main .location-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
#bv-about-main .location-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
#bv-about-main .location-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── VALUES ── */
#bv-about-main .values {
  background: var(--white);
  padding: 100px 80px;
}
#bv-about-main .values-header {
  margin-bottom: 64px;
}
#bv-about-main .values-heading {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}
#bv-about-main .values-heading strong {
  font-weight: 600;
}
#bv-about-main .values-header > p.values-lead {
  font-size: clamp(15px, 1.08vw, 17px);
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.82;
}
#bv-about-main .values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
#bv-about-main .value-item {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.3s ease;
}
#bv-about-main .value-item:hover {
  background: var(--cream);
}
#bv-about-main .value-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--gold);
}
#bv-about-main .value-item .value-heading {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}
#bv-about-main .value-item .value-heading strong {
  font-weight: 600;
}
#bv-about-main .value-item > p {
  font-size: clamp(14px, 1.02vw, 16px);
  color: var(--text-mid);
  line-height: 1.82;
}

/* ── FINAL CTA ── */
#bv-about-main .final-cta {
  background: var(--cream);
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}
#bv-about-main .final-cta-heading {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 16px;
}
#bv-about-main .final-cta-heading strong {
  font-weight: 600;
}
#bv-about-main .final-cta-heading em {
  font-style: italic;
  color: var(--gold);
}
#bv-about-main .final-cta > p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.82;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
#bv-about-main .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
#bv-about-main .btn-primary-modern {
  display: inline-block;
  text-align: center;
  background: var(--black);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
#bv-about-main .btn-primary-modern:hover {
  background: #333;
  color: #fff;
}

@media (max-width: 1024px) {
  #bv-about-main .intro,
  #bv-about-main .story {
    grid-template-columns: 1fr;
  }
  #bv-about-main .intro-photo {
    min-height: 60vw;
  }
  #bv-about-main .story-image {
    min-height: 60vw;
  }
  #bv-about-main .numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  #bv-about-main .method-grid {
    grid-template-columns: 1fr;
  }
  #bv-about-main .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }
  #bv-about-main .timeline::before {
    display: none;
  }
  #bv-about-main .intro-text,
  #bv-about-main .story-content,
  #bv-about-main .method,
  #bv-about-main .process,
  #bv-about-main .philosophy,
  #bv-about-main .location-strip,
  #bv-about-main .values,
  #bv-about-main .final-cta {
    padding-left: 40px;
    padding-right: 40px;
  }
  #bv-about-main .trust-bar {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 640px) {
  #bv-about-main .numbers {
    grid-template-columns: 1fr 1fr;
  }
  #bv-about-main .timeline {
    grid-template-columns: 1fr;
  }
  #bv-about-main .values-grid {
    grid-template-columns: 1fr;
  }
  #bv-about-main .intro-text,
  #bv-about-main .story-content,
  #bv-about-main .method,
  #bv-about-main .process,
  #bv-about-main .philosophy,
  #bv-about-main .location-strip,
  #bv-about-main .values,
  #bv-about-main .final-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  #bv-about-main .trust-bar {
    padding-left: 24px;
    padding-right: 24px;
  }
}
