/* Interior page background — about, career */
.about-page { background: #f2f2f4; }

/* Interior hero — about, career, contact, job, viewpoint */
.about-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 82px 0 22px;
  color: #fff;
  overflow: hidden;
  background: #08090d;
}

.about-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.5) 0%, rgba(5, 6, 10, 0.72) 100%);
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 70px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.about-hero-lead {
  margin: 12px 0 0;
  font-size: clamp(18px, 2vw, 31px);
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  line-height: 1.42;
}

/* Intro section layout — about, career */
.about-intro {
  padding: 92px 0 96px;
  overflow: hidden;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(340px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.about-title {
  margin: 0 0 20px;
  font-size: clamp(50px, 6.4vw, 88px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #151327;
}

.about-subtitle {
  margin: 0;
  max-width: 760px;
  font-size: clamp(18px, 2vw, 31px);
  color: #373646;
  font-weight: 300;
  line-height: 1.42;
}

.about-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: -52px;
  right: -84px;
  width: 72%;
  height: 84%;
  background: #e4dfeb;
  z-index: 0;
}

/* Body text section — about, career */
.about-body {
  padding: 26px 0 120px;
}

.about-body-grid {
  display: grid;
  grid-template-columns: minmax(500px, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

.about-body-title {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #151327;
}

.about-body-content {
  color: #1f1f29;
}

.about-body-lead {
  margin: 0 0 22px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.about-body-content p {
  margin: 0 0 20px;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
  color: #2e2d3a;
}

.about-body-content p:last-child {
  margin-bottom: 0;
}

/* Section primitives — home, about */
.section-padding { padding: 120px 0; }

.section-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

/* Career block — home, about */
.career-tail {
  background: #0e0e14;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.career-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: stretch;
}

.career-copy { align-self: center; }

.career-tail .section-title {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(36px, 5.6vw, 64px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.career-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.career-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 14, 0.04) 0%, rgba(8, 8, 14, 0.16) 100%);
  pointer-events: none;
}

.career-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Form elements — contact, job */
.form-row { margin-bottom: 16px; }

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #2b2b3d;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.form-label .required {
  color: #be314f;
  font-weight: 700;
}

.form-check {
  margin: 12px 0 22px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #4a4a5b;
  line-height: 1.45;
}

.form-check input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #4A1E46;
  flex-shrink: 0;
}

.form-check a {
  color: #4A1E46;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes waveBG {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Shared responsive */
@media (max-width: 1060px) {
  .about-body-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  /* Hero — about, career (contact/job/viewpoint override below in their own files) */
  .about-hero { min-height: 200px; padding: 80px 0 20px; }
  .about-hero h1 { font-size: clamp(36px, 10vw, 56px); }
  /* Intro — about, career */
  .about-intro { padding: 72px 0 56px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-visual { max-width: none; margin-left: 0; }
  .about-visual::before { top: -24px; right: -22px; width: 66%; height: 76%; }
  /* Body — about, career */
  .about-body { padding: 10px 0 92px; }
  .about-body-grid { grid-template-columns: 1fr; gap: 30px; }
  /* Career block — home, about */
  .career-actions { flex-direction: column; align-items: stretch; }
  .career-layout { grid-template-columns: 1fr; }
  .career-tail .career-media {
    align-self: start;
    min-height: 0;
  }
  .career-tail .career-media img {
    height: auto;
    object-fit: contain;
  }
  /* Section intro — home, about */
  .section-intro { font-size: 18px; }
}

@media (max-width: 560px) {
  /* Hero — about, career (contact/job override in their own files) */
  .about-hero { min-height: 180px; padding-bottom: 18px; }
  /* Intro — about, career */
  .about-intro { padding-top: 62px; }
  /* Form — contact, job */
  .form-row { margin-bottom: 14px; }
}
