.breadcrumb {
  font-size: 0.9rem;
  color: #bdbfc4;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.breadcrumb a {
  color: #d1a855;
}
.page-header {
  background: #0f0f11;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.page-header h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

.about-wrap {
  padding: 2rem 0 3rem;
}
.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr 0.9fr;
}
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.strip-card {
  background: #e0c69a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}
.strip-card .strip {
  background: #b89462;
  color: #0e0f12;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.strip-card .content {
  padding: 1.1rem 1.2rem;
  color: #d9d9d9;
}
.strip-card .content p {
  margin: 0.9rem 0;
}

.about-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.section h2 {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}

.accordion {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}
.accordion-item + .accordion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.accordion-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  background: #0f1115;
  cursor: pointer;
}
.accordion-summary h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.accordion-content {
  padding: 0 1.1rem 1rem;
  display: none;
}
.accordion-item.is-open .accordion-content {
  display: block;
}
.accordion-item.is-open .accordion-summary {
  background: #13161d;
}

/* Light section background to emulate reference */
.section-light {
  background: #f7f7f7;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* Two-column layout */
.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
}
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Accordion list style (headers only visible when collapsed) */
.about-accordion {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9e9e9;
}
.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.2rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.about-row:last-child {
  border-bottom: 0;
}

/* header variants */
.about-row.is-primary {
  background: #c5a174;
  color: #fff;
} /* tan bar */
.about-row.is-primary .about-plus {
  color: #fff;
}
.about-row.is-muted {
  background: #f2f2f2;
  color: #222;
}

.about-title {
  font-weight: 800;
  letter-spacing: 0.06em;
}
.about-plus {
  font-weight: 900;
  font-size: 1.25rem;
  color: #666;
}

/* Hidden content blocks */
.about-content {
  display: none;
  padding: 1.1rem 1.2rem;
  background: #fff;
  color: #333;
}
.about-content p {
  margin: 0.9rem 0;
  color: #444;
}

/* When open, show content under its header */
.about-item.is-open .about-content {
  display: block;
}

/* Right image */
.about-photo {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9e9e9;
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.section-light {
  background: #f7f7f7;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-accordion {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.about-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border: 0;
  background: #fafafa;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
  transition: background 0.2s ease;
}
.about-row:hover {
  background: #f1f1f1;
}
.about-row--primary {
  background: #c5a174;
  color: #fff;
}
.about-row--primary:hover {
  background: #bb9765;
}

.about-title {
  font-size: 0.95rem;
}
.about-icon {
  width: 18px;
  height: 18px;
  position: relative;
}
.about-icon::before,
.about-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-icon::before {
  width: 12px;
  height: 2px;
}
.about-icon::after {
  width: 2px;
  height: 12px;
  transition: opacity 0.2s ease;
}
.about-item.is-open .about-icon::after {
  opacity: 0;
} /* minus when open */

.about-content {
  display: none;
  padding: 1.1rem 1.25rem 1.25rem;
  border-top: 1px solid #efefef;
  color: #444;
}
.about-content p {
  margin: 0.8rem 0;
}
.about-content ul {
  padding-left: 1.2rem;
}
.about-photo {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.about-photo {
  height: 100%;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* la hace simétrica, elegante y sin deformarse */
  border-radius: 12px; /* coincide con tu diseño */
}
