/* ===== 공통 변수 재사용 (common.css의 --font-main, 색상 변수 그대로 사용) ===== */

.about-page { background:#fff; }

/* ---------- 서브 히어로 ---------- */
.sub-hero {
  position: relative;
  height: 46vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sub-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,31,58,0.55), rgba(11,31,58,0.85));
}
.sub-hero-inner { position: relative; z-index: 2; color: #fff; }
.breadcrumb { font-size: 13px; opacity: 0.8; margin-bottom: 14px; }
.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb span { color: #D4AF37; margin: 0 6px; }
.sub-hero-title { font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.sub-hero-sub { font-size: 15px; letter-spacing: 1px; color: #D4AF37; }

/* ---------- 인사말 (2컬럼) ---------- */
.about-greeting { padding: 120px 24px; background: #fff; }
.ag-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.eyebrow-dark {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 3px; color: #D4AF37; margin-bottom: 16px;
}
.eyebrow-dark.center { display:block; text-align:center; }
.ag-title { font-size: 32px; font-weight: 800; color: #0B1F3A; line-height: 1.4; margin-bottom: 24px; }
.ag-desc { font-size: 15.5px; line-height: 1.85; color: #4a5568; margin-bottom: 20px; }
.ag-desc strong { color: #0B1F3A; }
.ag-image img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: 14px; box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ---------- 핵심가치 ---------- */
.about-values { padding: 120px 24px; background: #f6f7f9; }
.av-inner { max-width: 1180px; margin: 0 auto; }
.av-title { font-size: 30px; font-weight: 800; color: #0B1F3A; margin-bottom: 14px; line-height:1.4; }
.av-sub { font-size: 15px; color: #6b7280; margin-bottom: 56px; }
.center { text-align: center; }
.gold-dark { color: #D4AF37; }

.value-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.value-card {
  background: #0B1F3A; border-radius: 14px; padding: 44px 24px;
  text-align: center; transition: transform .35s ease, box-shadow .35s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(11,31,58,0.25); }
.value-icon {
  width: 68px; height: 68px; margin: 0 auto 20px;
  border: 1.5px solid rgba(212,175,55,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 30px; height: 30px; }
.value-name { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.value-desc { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ---------- 운영철학 ---------- */
.about-philosophy { padding: 120px 24px; background: #fff; }
.aph-inner { max-width: 1180px; margin: 0 auto; }

.aph-grid {
  margin-top: 48px; display: grid;
  grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: stretch;
}

.aph-list { display: flex; flex-direction: column; gap: 14px; }
.aph-item {
  display: flex; align-items: center; gap: 20px;
  background: #f6f7f9; border: 1px solid #ececec;
  border-radius: 14px; padding: 18px 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.aph-item:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(11,31,58,0.08); }

.aph-badge {
  width: 104px; height: 70px; flex-shrink: 0; background: #0B1F3A;
  border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.aph-num { font-size: 24px; font-weight: 800; color: #D4AF37; }
.aph-icon svg { width: 26px; height: 26px; display: block; }
.aph-body { flex: 1; }
.aph-title { font-size: 16.5px; font-weight: 700; color: #0B1F3A; margin-bottom: 6px; }
.aph-desc { font-size: 13px; color: #6b7280; line-height: 1.65; }

/* ---- 인용구 카드 : 사진 전체 배경 + 오버레이 통합형으로 교체 ---- */
.aph-quote-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 100%;
  box-shadow: 0 20px 40px rgba(11,31,58,0.1);
}

.aph-quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,31,58,.94) 0%,
    rgba(11,31,58,.72) 32%,
    rgba(11,31,58,.28) 55%,
    rgba(11,31,58,.55) 74%,
    rgba(11,31,58,.92) 100%
  );
}

.aph-quote-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px 26px;
  color: #fff;
  text-align: center;
}

.aph-quote-mark { font-size: 32px; color: #D4AF37; font-family: Georgia, serif; line-height: 1; }
.aph-quote-text { font-size: 21px; font-weight: 800; line-height: 1.5; margin-top: 6px; color: #fff; }
.aph-quote-text .gold { color: #D4AF37; }
.aph-quote-divider { width: 36px; height: 1px; background: rgba(212,175,55,.6); margin: 16px auto; }
.aph-quote-sub { font-size: 13px; color: #dfe3ea; line-height: 1.65; }

.aph-tag { text-align: left; }
.aph-tag-eyebrow { display: block; font-size: 12px; letter-spacing: .2em; color: #D4AF37; font-weight: 700; margin-bottom: 6px; }
.aph-tag-main { display: block; font-size: 15px; font-weight: 800; color: #fff; }

/* ---------- 신뢰 지표 ---------- */
.about-stats {
  position: relative; padding: 100px 24px; background-size: cover; background-position: center;
}
.about-stats::before { content:""; position:absolute; inset:0; background: rgba(11,31,58,0.82); }
.as-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }

/* ---------- 다짐/약속 인용구 ---------- */
.about-pledge { padding: 110px 24px; background: #fff; text-align: center; }
.ap-inner { max-width: 760px; margin: 0 auto; }
.ap-quote-mark { font-size: 60px; color: #D4AF37; font-family: Georgia, serif; line-height: 1; margin-bottom: 10px; }
.ap-quote { font-size: 22px; font-weight: 700; color: #0B1F3A; line-height: 1.7; }
.ap-quote strong { color: #D4AF37; }

/* ---------- CTA 전화 배너 ---------- */
.about-cta { background: #0B1F3A; padding: 40px 24px; }
.ac-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.ac-left { display:flex; align-items:center; gap:10px; color:#fff; font-size:16px; }
.ac-icon { font-size: 20px; }
.ac-phone {
  font-size: 30px; font-weight: 800; color: #D4AF37; letter-spacing: 1px; text-decoration: none;
  border: 1.5px solid #D4AF37; padding: 10px 28px; border-radius: 40px;
}
.ac-btn {
  background: #D4AF37; color: #0B1F3A; font-weight: 700; font-size: 14px;
  padding: 14px 26px; border-radius: 40px; text-decoration: none; transition: opacity .3s;
}
.ac-btn:hover { opacity: 0.85; }

/* ---------- 반응형 ---------- */
@media (max-width: 900px) {
  .ag-inner { grid-template-columns: 1fr; gap: 40px; }
  .ag-image img { height: 320px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .aph-grid { grid-template-columns: 1fr; }
  .aph-quote-card { min-height: 340px; }
}
@media (max-width: 600px) {
  .sub-hero-title { font-size: 30px; }
  .ag-title, .av-title { font-size: 24px; }
  .value-grid { grid-template-columns: 1fr; }
  .ac-inner { flex-direction: column; text-align: center; }
  .ac-phone { font-size: 24px; }
  .aph-item { flex-direction: column; align-items: flex-start; text-align: left; }
  .aph-badge { width: auto; align-self: flex-start; padding: 10px 16px; }
  .aph-quote-content { padding: 30px 22px 20px; }
  .aph-quote-text { font-size: 19px; }
}
