/* ===== HERO ===== */
.about-hero {
  background: linear-gradient(135deg, #f3efe9 0%, #e9e3dc 50%, #f3efe9 100%);
  padding: 140px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content:''; position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(212,165,116,.06) 0%, transparent 70%);
  top:-200px; right:-200px; pointer-events:none;
}
.about-hero::after {
  content:''; position:absolute; width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(212,165,116,.04) 0%, transparent 70%);
  bottom:-100px; left:-100px; pointer-events:none;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  color: #2c2c2c;
  position:relative;
}

.about-hero p {
  margin-top: 20px;
  font-size: 18px;
  color: #6b6b6b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position:relative;
}

/* ===== STORY ===== */
.about-story {
  padding: 100px 8%;
  background: linear-gradient(180deg, #ffffff 0%, #fef9f3 100%);
  position:relative;
}
.about-story::before {
  content:''; position:absolute; width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(212,165,116,.03) 0%, transparent 70%);
  top:-100px; left:-200px; pointer-events:none;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.about-text {
  flex: 1;
}

.about-text .label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c59b6d;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 48px;
  margin: 15px 0;
  color: #2c2c2c;
  line-height: 1.2;
}

.about-text p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
}

/* IMAGE RIGHT */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== FEATURES ===== */
.about-features {
  background: linear-gradient(180deg, #f7f4ef 0%, #faf8f5 50%, #f7f4ef 100%);
  padding: 100px 8%;
  text-align: center;
  position: relative;
}
.about-features::before {
  content:''; position:absolute;
  background:radial-gradient(circle at 80% 20%, rgba(212,165,116,.05) 0%, transparent 50%);
  inset:0; pointer-events:none;
}

.about-features h2 {
  font-family: var(--font-display);
  font-size: 48px;
  margin-bottom: 50px;
  color: #2c2c2c;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.feature-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position:relative; overflow:hidden;
}
.feature-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, #d4a574, #e8c98a, #b8895a);
  opacity:0; transition:opacity .4s;
}
.feature-card:hover::before { opacity:1; }

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212,165,116,.12), 0 6px 16px rgba(0,0,0,.04);
  border-color: rgba(212,165,116,.2);
}

.feature-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.feature-card p {
  font-size: 14px;
  color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .about-text h2 {
    font-size: 32px;
  }
}


/* ══ PARENT COMPANY SECTION ══ */
.about-parent {
  padding: 8rem 5%;
  background: linear-gradient(135deg, #0d0802 0%, #1c1007 40%, #231508 60%, #0d0802 100%);
  position: relative;
  overflow: hidden;
}

/* Background glow orbs */
.about-parent::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(201,169,110,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(201,169,110,.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(201,169,110,.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Watermark text */
.about-parent::after {
  content: 'JRP';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 24vw; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,.03);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: .1em;
}

.parent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Eyebrow ── */
.parent-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .6rem; letter-spacing: .38em; text-transform: uppercase;
  color: #c9a96e; font-weight: 600; margin-bottom: 1.4rem;
}
.parent-eyebrow::before {
  content: ''; display: block; width: 1.4rem; height: 1px; background: #c9a96e;
}

/* ── Facts row ── */
.parent-facts {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,.15);
}
.parent-fact { display: flex; flex-direction: column; gap: .3rem; }
.parent-fact-val {
  font-family: var(--font-display, Georgia, serif);
  font-size: .95rem; font-weight: 500;
  color: #e8c98a; line-height: 1.2;
}
.parent-fact-label {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-weight: 400;
}

/* ── Trust checklist ── */
.parent-trust-row {
  display: flex; flex-direction: column; gap: .7rem;
  margin-top: 1.8rem;
}
.parent-trust-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 300;
}
.parent-trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #c9a96e; flex-shrink: 0;
}

/* ══ LOGO CARD ══ */
.parent-logo-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(201,169,110,.22);
  border-radius: 24px;
  padding: 2.8rem 2.4rem 2.2rem;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.16,1,.3,1);
}
.parent-logo-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(201,169,110,.4);
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0,0,0,.4), 0 0 0 1px rgba(201,169,110,.1);
}

/* Shimmer top line */
.parent-card-shimmer {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,.6) 50%, transparent 100%);
}

/* ── Actual logo image ── */
.parent-logo-img-wrap {
  padding: .5rem 1rem 1rem;
}
.parent-logo-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  margin: 0 auto;
  /* Invert the black logo to white/grey for the dark background */
  filter: invert(1) brightness(0.88);
  transition: filter .4s, transform .5s cubic-bezier(.16,1,.3,1);
}
.parent-logo-card:hover .parent-logo-img {
  filter: invert(1) brightness(1);
  transform: scale(1.02);
}

/* ── Card divider ── */
.parent-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.2), transparent);
  margin: 0 0 1.4rem;
}

/* ── Card meta text ── */
.parent-card-meta { text-align: center; }
.parent-card-role {
  font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  color: #c9a96e; font-weight: 600; margin-bottom: .5rem;
}
.parent-card-name {
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.05rem; font-weight: 400; color: #fff;
  line-height: 1.3; margin-bottom: .6rem;
}
.parent-card-location {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .68rem; color: rgba(255,255,255,.38);
  letter-spacing: .05em;
}

/* ══ BADGES ══ */
.parent-badges {
  display: flex; flex-direction: column; gap: .65rem;
  margin-top: 1.1rem;
}
.parent-badge {
  display: flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: .75rem 1.2rem;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.parent-badge:hover {
  background: rgba(201,169,110,.08);
  border-color: rgba(201,169,110,.22);
  transform: translateX(4px);
}
.parent-badge-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #c9a96e;
  transition: all .35s;
}
.parent-badge:hover .parent-badge-icon {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #1a1209;
}
.parent-badge span {
  font-size: .75rem; color: rgba(255,255,255,.55);
  font-weight: 300; letter-spacing: .03em;
  transition: color .35s;
}
.parent-badge:hover span { color: rgba(255,255,255,.8); }

/* ══ RESPONSIVE ══ */
@media (max-width: 960px) {
  .parent-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .parent-facts { flex-wrap: wrap; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .about-parent { padding: 5rem 5%; }
  .parent-logo-img { max-width: 260px; }
}